      * {
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
      }

      html {
        scroll-behavior: smooth;
      }

      html,
      body {
        width: 100%;
        max-width: 100vw;
        min-height: 100%;
        margin: 0;
        background: #1a2a38;
        overflow-x: hidden;
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
      }

      html::-webkit-scrollbar,
      body::-webkit-scrollbar,
      *::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
      }

      main {
        display: grid;
        width: 100%;
        height: 100dvh;
        max-height: 100dvh;
        place-items: center;
        position: relative;
        z-index: 10;
        overflow: hidden;
      }

      /* Visible indexable content below the interactive hero */
      .seo-content {
        position: relative;
        z-index: 20;
        width: 100%;
        margin: 0;
        padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 48px) 72px;
        background:
          linear-gradient(180deg, rgba(9, 11, 12, 0.92) 0%, #13202c 28%, #1a2a38 100%);
        color: rgba(235, 242, 248, 0.92);
        font-family: "Outfit", sans-serif;
        font-weight: 400;
        line-height: 1.65;
        -webkit-user-select: text;
        user-select: text;
      }

      .seo-content__inner {
        width: min(920px, 100%);
        margin: 0 auto;
      }

      .seo-content h1 {
        margin: 0 0 18px;
        font-family: "Syne", sans-serif;
        font-size: clamp(1.6rem, 3.4vw, 2.4rem);
        font-weight: 700;
        line-height: 1.2;
        color: #f4f8fc;
      }

      .seo-content h2 {
        margin: 40px 0 14px;
        font-family: "Syne", sans-serif;
        font-size: clamp(1.2rem, 2.2vw, 1.55rem);
        font-weight: 600;
        color: #e8f3ff;
      }

      .seo-content p {
        margin: 0 0 14px;
        font-size: 1.02rem;
        color: rgba(220, 230, 238, 0.88);
      }

      .seo-content ul {
        margin: 0 0 8px;
        padding-left: 1.2em;
      }

      .seo-content li {
        margin: 0 0 10px;
      }

      .seo-offers {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 14px;
        margin: 18px 0 8px;
      }

      .seo-offer {
        margin: 0;
        padding: 18px 16px;
        border: 1px solid rgba(120, 190, 255, 0.22);
        border-radius: 12px;
        background: rgba(8, 18, 28, 0.55);
      }

      .seo-offer h3 {
        margin: 0 0 6px;
        font-family: "Syne", sans-serif;
        font-size: 1.05rem;
        font-weight: 600;
        color: #f2f7fb;
      }

      .seo-offer p {
        margin: 0;
        font-size: 0.95rem;
        color: rgba(190, 210, 225, 0.85);
      }

      .seo-offer__price {
        margin-top: 10px !important;
        color: #7fd4ff !important;
        font-weight: 600;
      }

      .seo-content a {
        color: #7fd4ff;
        text-decoration: none;
      }

      .seo-content a:hover {
        text-decoration: underline;
      }

      .seo-content__meta {
        margin-top: 28px;
        padding-top: 22px;
        border-top: 1px solid rgba(140, 180, 210, 0.2);
        font-size: 0.95rem;
        color: rgba(190, 210, 225, 0.8);
      }

      .seo-content__meta p {
        margin: 0 0 8px;
        font-size: inherit;
      }

      html:has(.tariffs-panel.active),
      html:has(.servers-panel.active),
      html:has(.licenses-panel.active),
      html:has(.company-panel.active),
      html:has(#ssl-panel.active),
      html:has(#domains-panel.active),
      html:has(.form-container.active),
      html:has(.form-container.is-closing),
      html:has(#site-chat[aria-hidden="false"]),
      html:has(#site-message[aria-hidden="false"]),
      body:has(.tariffs-panel.active),
      body:has(.servers-panel.active),
      body:has(.licenses-panel.active),
      body:has(.company-panel.active),
      body:has(#ssl-panel.active),
      body:has(#domains-panel.active),
      body:has(.form-container.active),
      body:has(.form-container.is-closing),
      body:has(#site-chat[aria-hidden="false"]),
      body:has(#site-message[aria-hidden="false"]) {
        overflow: hidden !important;
        overscroll-behavior: none;
      }

      .logo-container {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
        height: 100%;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .logo-container.is-ready {
        opacity: 1;
        pointer-events: auto;
      }

      .logo-container.hidden {
        opacity: 0 !important;
        transform: scale(0.9);
        pointer-events: none !important;
      }

      /* Мягкая «тень-основание» под логотипом */
      .logo-container::before {
        content: "";
        position: absolute;
        top: 58%;
        left: 50%;
        z-index: 0;
        width: min(52vw, 52vh);
        height: min(14vw, 14vh);
        transform: translate(-50%, 0) rotateX(62deg) scale(0.85);
        border-radius: 50%;
        background: radial-gradient(
          ellipse at center,
          rgba(0, 0, 0, 0.72) 0%,
          rgba(0, 20, 40, 0.35) 42%,
          transparent 72%
        );
        opacity: 0;
        pointer-events: none;
        filter: blur(6px);
      }

      .logo-container.is-ready::before {
        animation: fadeInLogoShadow 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
      }

      .logo-container::after {
        content: none;
        display: none;
      }

      .logo-stage {
        position: relative;
        z-index: 1;
        width: min(92vw, 92vh);
        height: min(92vw, 92vh);
        opacity: 0;
      }

      .logo-container.is-ready .logo-stage {
        animation: fadeInLogo 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
      }

      /* Отдельный слой только под scale — стабильный композитинг без субпиксельного дрожания */
      .logo-pulse {
        width: 100%;
        height: 100%;
        transform-origin: 50% 48%;
        transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        contain: layout style;
      }

      .logo-container.is-ready .logo-pulse {
        /* linear + синусоида keyframes = непрерывная скорость, без толчка на 50% */
        animation: logoFloat 8.5s linear 2.4s infinite;
      }

      .shield-identity {
        position: absolute;
        left: 50%;
        top: 7.5%;
        z-index: 12;
        width: min(78%, 420px);
        transform: translateX(-50%);
        text-align: center;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s;
      }

      .shield-identity.is-visible {
        opacity: 1;
        visibility: visible;
      }

      .shield-identity__name {
        margin: 0;
        font-family: "Syne", "Avenir Next", "Segoe UI", sans-serif;
        font-size: clamp(15px, 2.1vw, 22px);
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #f4f8fc;
        text-shadow: 0 0 18px rgba(0, 170, 255, 0.35), 0 2px 10px rgba(0, 0, 0, 0.65);
        line-height: 1.25;
      }

      .shield-identity__email {
        margin: 6px 0 0;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: clamp(12px, 1.5vw, 15px);
        font-weight: 500;
        letter-spacing: 0.04em;
        color: #7fd4ff;
        text-shadow: 0 0 12px rgba(0, 170, 255, 0.28), 0 1px 8px rgba(0, 0, 0, 0.55);
        word-break: break-all;
        line-height: 1.35;
      }

      .logo__image {
        display: block;
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: contain;
        image-rendering: auto;
        -ms-interpolation-mode: bicubic;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
        -webkit-user-drag: none;
        user-drag: none;
        -webkit-user-select: none;
        user-select: none;
        pointer-events: none;
      }

      /* Чувствительная зона для ключа в самом центре замка */
      .lock-zone {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: min(7vw, 7vh);
        height: min(7vw, 7vh);
        border-radius: 50%;
        z-index: 20;
        cursor: url('/key_cursor.svg') 10 15, pointer;
        outline: none;
      }

      /* Стили для формы авторизации */
      .form-container {
        position: fixed;
        width: min(400px, 90vw);
        padding: 35px 30px;
        background: rgba(9, 11, 12, 0.65);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
        z-index: 30;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        color: #fff;
        opacity: 0;
        transform: translate(-50%, -42%) scale(0.94);
        pointer-events: none;
        transition:
          opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
          transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
          box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
          width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
          max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
          padding 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        top: 50%;
        left: 50%;
      }

      .form-container.active {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        pointer-events: all;
      }

      .form-container.is-closing {
        opacity: 0;
        transform: translate(-50%, -46%) scale(0.9);
        pointer-events: none;
      }

      .terms-link {
        color: #7fd4ff;
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-color: rgba(0, 170, 255, 0.55);
      }

      @keyframes termsGlowPulse {
        0%, 100% {
          color: rgba(100, 170, 210, 0.32);
          text-shadow: none;
          text-decoration-color: rgba(0, 170, 255, 0.12);
        }
        50% {
          color: #ffffff;
          text-shadow:
            0 0 8px rgba(0, 220, 255, 1),
            0 0 18px rgba(0, 170, 255, 0.85),
            0 0 32px rgba(255, 140, 50, 0.35);
          text-decoration-color: rgba(255, 255, 255, 0.95);
        }
      }

      #register-form.is-code-ready #register-terms:not(:checked) ~ .terms-link {
        animation: termsGlowPulse 1.35s ease-in-out infinite;
      }

      .terms-sheet {
        position: absolute;
        top: 50%;
        right: calc(50% + min(200px, 45vw) + 18px);
        z-index: 29;
        width: min(420px, 38vw);
        max-height: min(76vh, 680px);
        display: flex;
        flex-direction: column;
        background: rgba(9, 11, 12, 0.78);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        color: #e8f3ff;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-50%) translateX(-42px);
        transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .terms-sheet.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(-50%) translateX(0);
      }

      .terms-sheet__head {
        flex-shrink: 0;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        padding: 18px 18px 12px 22px;
        border-bottom: 1px solid rgba(42, 74, 102, 0.65);
      }

      .terms-sheet__eyebrow {
        margin: 0 0 6px;
        color: #7fd4ff;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }

      .terms-sheet__title {
        margin: 0;
        font-family: "Syne", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.3;
        color: #f4f8fc;
      }

      .terms-sheet__close {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        border: none;
        border-radius: 50%;
        background: transparent;
        color: rgba(255, 255, 255, 0.4);
        font-size: 26px;
        line-height: 1;
        cursor: pointer;
      }

      .terms-sheet__close:hover {
        color: #ff5500;
        background: rgba(255, 85, 0, 0.1);
      }

      .terms-sheet__body {
        padding: 16px 22px 22px;
        overflow-y: auto;
        min-height: 0;
        font-size: 13px;
        line-height: 1.55;
        color: rgba(214, 232, 245, 0.88);
        -webkit-user-select: text;
        user-select: text;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 170, 255, 0.45) transparent;
      }

      .terms-sheet__body::-webkit-scrollbar {
        width: 6px;
        display: block;
        height: 6px;
      }

      .terms-sheet__body::-webkit-scrollbar-thumb {
        background: rgba(0, 170, 255, 0.4);
        border-radius: 99px;
      }

      .terms-sheet__body h3 {
        margin: 16px 0 6px;
        font-family: "Syne", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #7fd4ff;
      }

      .terms-sheet__body h3:first-child {
        margin-top: 0;
      }

      .terms-sheet__body p,
      .terms-sheet__body ul {
        margin: 0 0 8px;
      }

      .terms-sheet__body ul {
        padding-left: 18px;
      }

      .terms-sheet__body a {
        color: #7fd4ff;
        text-decoration: none;
      }

      .terms-sheet__body a:hover {
        text-decoration: underline;
      }

      .terms-sheet__meta {
        margin-top: 14px;
        padding-top: 12px;
        border-top: 1px solid rgba(42, 74, 102, 0.65);
        font-size: 12px;
        color: rgba(143, 176, 198, 0.9);
      }

      @media (max-width: 1100px) {
        .terms-sheet {
          right: auto;
          left: 50%;
          width: min(400px, 90vw);
          max-height: min(78vh, 640px);
          z-index: 32;
          transform: translate(-50%, -50%) translateX(-36px);
        }

        .terms-sheet.is-open {
          transform: translate(-50%, -50%);
        }
      }

      /* Кнопка закрытия формы */
      .form-close {
        position: absolute;
        top: 16px;
        right: 16px;
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.4);
        font-size: 28px;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
      }

      .form-close:hover {
        color: #FF5500;
        background: rgba(255, 85, 0, 0.1);
        transform: rotate(90deg);
      }

      /* Вкладки (Tabs) */
      .form-tabs {
        display: flex;
        margin-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 10px;
        gap: 20px;
      }

      .form-tab {
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.5);
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        padding: 5px 0;
        position: relative;
        transition: color 0.3s ease;
      }

      .form-tab::after {
        content: '';
        position: absolute;
        bottom: -11px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #00aaff;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
        box-shadow: 0 0 8px #00aaff;
      }

      .form-tab.active {
        color: #fff;
      }

      .form-tab.active::after {
        transform: scaleX(1);
        transform-origin: left;
      }

      /* Стили форм */
      .auth-form {
        display: none;
        flex-direction: column;
        gap: 20px;
        animation: fadeForm 0.4s ease forwards;
      }

      .auth-form.active {
        display: flex;
      }

      .form-container.is-session .form-tabs {
        display: none;
      }

      .form-container.is-session {
        width: min(760px, 94vw);
        max-height: min(88vh, 920px);
        padding: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background:
          linear-gradient(
            180deg,
            rgba(55, 75, 95, 0.35) 0%,
            rgba(12, 18, 26, 0.82) 38%,
            rgba(18, 32, 48, 0.78) 100%
          );
        border: 1px solid rgba(150, 185, 210, 0.28);
        border-top: 2px solid rgba(255, 120, 40, 0.75);
        border-radius: 12px;
        box-shadow:
          inset 0 1px 0 rgba(210, 225, 240, 0.16),
          inset 0 -2px 6px rgba(0, 0, 0, 0.35),
          0 0 22px rgba(0, 160, 255, 0.16),
          0 0 16px rgba(255, 120, 40, 0.1);
      }

      .form-container.is-session::before {
        display: none;
      }

      .form-container.is-session .form-close {
        top: 8px;
        right: 8px;
        width: 28px;
        height: 28px;
        font-size: 22px;
        z-index: 2;
      }

      .form-container.is-session:not(.is-cabinet) {
        width: min(248px, 78vw);
        max-height: none;
        display: block;
        border-radius: 10px;
      }

      .form-container.is-session:not(.is-cabinet) .form-close {
        top: 4px;
        right: 4px;
        width: 24px;
        height: 24px;
        font-size: 20px;
      }

      .session-card {
        align-items: center;
        text-align: center;
        gap: 0;
        padding: 18px 16px 12px;
      }

      .account-card {
        align-items: stretch;
        text-align: left;
        gap: 0;
        padding: 20px 20px 14px;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: min(88vh, 920px);
        overscroll-behavior: contain;
        scrollbar-width: thin;
      }

      .account-card::-webkit-scrollbar {
        width: 7px;
        height: 7px;
        display: block;
      }

      .account-card::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, rgba(0, 170, 255, 0.55), rgba(255, 120, 40, 0.35));
        border-radius: 8px;
      }

      .account-card__head {
        text-align: center;
        margin-bottom: 8px;
        padding-right: 28px;
      }

      .account-name {
        margin: 0;
        padding-bottom: 6px;
        width: 100%;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 20px;
        font-weight: 500;
        letter-spacing: 0.02em;
        line-height: 1.2;
        color: #d6e8f5;
        text-shadow: 0 0 10px rgba(0, 160, 255, 0.18);
        border-bottom: 1.5px solid transparent;
        border-image: linear-gradient(
          90deg,
          transparent,
          rgba(255, 120, 40, 0.75) 20%,
          rgba(0, 170, 255, 0.7) 55%,
          rgba(180, 205, 220, 0.55) 100%
        ) 1;
      }

      .account-email {
        margin: 8px 0 0;
        padding-bottom: 8px;
        width: 100%;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0.02em;
        color: #8fd0ff;
        word-break: break-all;
        line-height: 1.3;
        border-bottom: 1px solid rgba(255, 120, 40, 0.2);
        box-shadow: 0 1px 0 rgba(0, 140, 220, 0.08);
        text-shadow:
          0 1px 0 rgba(0, 0, 0, 0.4),
          0 0 14px rgba(0, 170, 255, 0.35);
      }

      .org-profile {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 12px;
      }

      .org-profile__lead {
        margin: 0;
        font-size: 15px;
        line-height: 1.45;
        color: rgba(210, 236, 255, 0.82);
        text-shadow: 0 0 12px rgba(0, 170, 255, 0.28);
      }

      .org-profile__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 14px;
      }

      .org-profile__grid > * {
        min-width: 0;
        max-width: 100%;
      }

      .org-profile__grid .span-2 {
        grid-column: 1 / -1;
      }

      .org-director-name-group,
      .org-director-name-group .input-wrapper {
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
      }

      #org-director-name {
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .org-profile__section {
        grid-column: 1 / -1;
        margin: 6px 0 0;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: #9fd4ff;
        text-shadow: 0 0 10px rgba(0, 170, 255, 0.4);
      }

      .form-container.is-session .input-group {
        gap: 6px;
      }

      .form-container.is-session .input-group label {
        font-size: 13px;
        letter-spacing: 0.6px;
        color: #b8e4ff;
        text-shadow: 0 0 8px rgba(0, 170, 255, 0.35);
      }

      .form-container.is-session .input-wrapper {
        filter: drop-shadow(0 0 8px rgba(0, 160, 255, 0.18))
          drop-shadow(0 0 5px rgba(255, 120, 40, 0.1));
      }

      .form-container.is-session .input-wrapper input,
      .form-container.is-session .input-wrapper select,
      .form-container.is-session .org-type-combo__btn {
        padding: 12px 14px;
        font-size: 17px;
        font-weight: 500;
        letter-spacing: 0.02em;
        color: #f2fbff !important;
        text-shadow:
          0 1px 1px rgba(0, 0, 0, 0.55),
          0 0 10px rgba(0, 180, 255, 0.45);
        border: 1px solid rgba(80, 190, 255, 0.38);
        border-top-color: rgba(255, 150, 70, 0.7);
        border-radius: 9px;
        background:
          linear-gradient(
            180deg,
            rgba(0, 150, 255, 0.16) 0%,
            rgba(8, 18, 28, 0.72) 42%,
            rgba(255, 110, 30, 0.08) 100%
          ) !important;
        box-shadow:
          inset 0 0 18px rgba(0, 170, 255, 0.16),
          inset 0 1px 0 rgba(180, 230, 255, 0.22),
          0 0 14px rgba(0, 160, 255, 0.22),
          0 0 8px rgba(255, 120, 40, 0.12);
        transition: border-color 0.25s ease, box-shadow 0.25s ease, text-shadow 0.25s ease;
      }

      .form-container.is-session .input-wrapper select,
      .form-container.is-session .org-type-combo__btn {
        background-image:
          linear-gradient(
            180deg,
            rgba(0, 150, 255, 0.16) 0%,
            rgba(8, 18, 28, 0.72) 42%,
            rgba(255, 110, 30, 0.08) 100%
          ),
          linear-gradient(45deg, transparent 50%, rgba(160, 220, 255, 0.95) 50%),
          linear-gradient(135deg, rgba(160, 220, 255, 0.95) 50%, transparent 50%) !important;
        background-position: 0 0, calc(100% - 18px) 52%, calc(100% - 12px) 52% !important;
        background-size: auto, 7px 7px, 7px 7px !important;
        background-repeat: no-repeat !important;
      }

      .form-container.is-session .org-type-combo__btn {
        padding-right: 34px;
        appearance: none;
        outline: none;
        font-size: 19px;
      }

      .form-container.is-session .input-wrapper input::placeholder {
        color: rgba(170, 215, 245, 0.42);
        text-shadow: none;
      }

      .form-container.is-session .input-wrapper input:focus,
      .form-container.is-session .input-wrapper select:focus,
      .form-container.is-session .org-type-combo__btn:focus,
      .org-type-combo.is-open .org-type-combo__btn {
        border-color: rgba(90, 210, 255, 0.75);
        border-top-color: rgba(255, 160, 70, 0.95);
        box-shadow:
          inset 0 0 22px rgba(0, 180, 255, 0.22),
          0 0 18px rgba(0, 170, 255, 0.38),
          0 0 12px rgba(255, 120, 40, 0.2);
        text-shadow:
          0 1px 1px rgba(0, 0, 0, 0.55),
          0 0 14px rgba(80, 210, 255, 0.65);
      }

      .form-container.is-session .input-glow {
        border-color: rgba(0, 190, 255, 0.85);
        box-shadow:
          0 0 14px rgba(0, 170, 255, 0.45),
          0 0 8px rgba(255, 120, 40, 0.2);
      }

      .form-container.is-session .org-ghost {
        position: absolute;
        inset: 0;
        z-index: 2;
        display: flex;
        align-items: center;
        padding: 12px 14px;
        overflow: hidden;
        white-space: pre;
        font-size: 17px;
        font-weight: 500;
        letter-spacing: 0.02em;
        line-height: 1.2;
        pointer-events: none;
      }

      .form-container.is-session .org-ghost__prefix {
        color: transparent;
        text-shadow: none;
      }

      .form-container.is-session .org-ghost__suffix {
        color: rgba(186, 228, 255, 0.4);
        text-shadow: 0 0 8px rgba(0, 170, 255, 0.22);
        pointer-events: auto;
        cursor: pointer;
      }

      .form-container.is-session .input-wrapper.has-ghost input::placeholder {
        color: transparent;
      }

      .form-container.is-session .input-wrapper input {
        position: relative;
        z-index: 1;
      }

      .form-container.is-session .input-wrapper input:-webkit-autofill,
      .form-container.is-session .input-wrapper input:-webkit-autofill:hover,
      .form-container.is-session .input-wrapper input:-webkit-autofill:focus,
      .form-container.is-session .input-wrapper input:-webkit-autofill:active {
        -webkit-text-fill-color: #f2fbff !important;
        caret-color: #f2fbff;
        -webkit-box-shadow:
          0 0 0 1000px rgba(8, 22, 36, 0.92) inset,
          inset 0 0 18px rgba(0, 170, 255, 0.16),
          0 0 14px rgba(0, 160, 255, 0.22) !important;
      }

      .input-wrapper select {
        width: 100%;
        padding: 14px 16px;
        background: rgba(9, 11, 12, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        color: #fff;
        font-size: 15px;
        outline: none;
        cursor: pointer;
        appearance: none;
        background-image: linear-gradient(45deg, transparent 50%, rgba(180, 205, 220, 0.7) 50%),
          linear-gradient(135deg, rgba(180, 205, 220, 0.7) 50%, transparent 50%);
        background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
        background-size: 6px 6px, 6px 6px;
        background-repeat: no-repeat;
      }

      .input-wrapper select option,
      .input-wrapper select optgroup {
        background: #0c1824;
        color: #e8f2fa;
      }

      .org-type-combo {
        position: relative;
      }

      .org-type-combo.is-open {
        z-index: 40;
      }

      .org-type-combo__native {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        opacity: 0 !important;
        pointer-events: none !important;
        padding: 0 !important;
        border: 0 !important;
        overflow: hidden !important;
      }

      .org-type-combo__btn {
        width: 100%;
        text-align: left;
        cursor: pointer;
        font-family: inherit;
      }

      .org-type-combo__btn.is-placeholder {
        color: rgba(170, 215, 245, 0.42) !important;
        text-shadow: none;
      }

      .org-type-combo__menu {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 6px);
        z-index: 40;
        display: none;
        width: 100%;
        max-height: min(52vh, 460px);
        overflow-x: hidden;
        overflow-y: auto;
        padding: 8px 0;
        border-radius: 10px;
        border: 1px solid rgba(80, 190, 255, 0.42);
        border-top-color: rgba(255, 150, 70, 0.78);
        background:
          linear-gradient(
            180deg,
            rgba(12, 28, 44, 0.96) 0%,
            rgba(8, 16, 26, 0.97) 55%,
            rgba(18, 24, 32, 0.96) 100%
          );
        box-shadow:
          inset 0 0 22px rgba(0, 170, 255, 0.12),
          inset 0 1px 0 rgba(180, 230, 255, 0.16),
          0 16px 40px rgba(0, 0, 0, 0.55),
          0 0 22px rgba(0, 160, 255, 0.22),
          0 0 12px rgba(255, 120, 40, 0.12);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        color: #e8f6ff;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 170, 255, 0.45) rgba(8, 16, 24, 0.4);
      }

      .org-type-combo__menu::-webkit-scrollbar {
        width: 7px;
        height: 7px;
        display: block;
      }

      .org-type-combo__menu::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, rgba(0, 170, 255, 0.55), rgba(255, 120, 40, 0.35));
        border-radius: 8px;
      }

      .org-type-combo.is-open .org-type-combo__menu,
      .org-type-combo__menu.is-open {
        display: block;
      }

      .org-type-combo__group {
        padding: 8px 0 4px;
      }

      .org-type-combo__group-label {
        margin: 0;
        padding: 8px 16px 6px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: #9fd4ff;
        text-shadow: 0 0 10px rgba(0, 170, 255, 0.4);
      }

      .org-type-combo__option {
        display: block;
        width: 100%;
        padding: 10px 16px;
        border: 0;
        background: transparent;
        color: #e8f6ff;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0.02em;
        line-height: 1.3;
        text-align: left;
        cursor: pointer;
        font-family: inherit;
        text-shadow: 0 0 8px rgba(0, 170, 255, 0.18);
      }

      .org-type-combo__option:hover,
      .org-type-combo__option.is-active {
        background:
          linear-gradient(
            90deg,
            rgba(0, 150, 255, 0.18),
            rgba(255, 120, 40, 0.08) 70%,
            transparent
          );
        color: #fff;
      }

      .org-type-combo__option.is-selected {
        color: #8fd0ff;
        box-shadow: inset 3px 0 0 rgba(255, 140, 50, 0.85);
      }

      .org-profile__status {
        margin: 0;
        min-height: 1.2em;
        font-size: 13px;
        color: #8fd0ff;
      }

      .org-profile__status.is-error {
        color: #ff9a7a;
      }

      .account-logout {
        width: 100%;
        margin-top: 10px;
        padding: 8px 12px;
        border: 1px solid rgba(150, 185, 210, 0.35);
        border-top: 2px solid rgba(255, 120, 40, 0.75);
        border-radius: 7px;
        background:
          linear-gradient(
            180deg,
            rgba(55, 75, 95, 0.45) 0%,
            rgba(12, 18, 26, 0.75) 100%
          );
        color: #d6e8f5;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        cursor: pointer;
        transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
      }

      .account-logout:hover {
        color: #fff;
        border-color: rgba(0, 170, 255, 0.5);
        border-top-color: rgba(255, 150, 60, 0.95);
        box-shadow:
          0 0 16px rgba(0, 160, 255, 0.22),
          0 0 12px rgba(255, 120, 40, 0.12);
        background:
          linear-gradient(
            180deg,
            rgba(70, 100, 130, 0.55) 0%,
            rgba(18, 32, 48, 0.82) 100%
          );
      }

      .site-toast {
        position: fixed;
        top: 22px;
        left: 50%;
        z-index: 160;
        display: flex;
        align-items: center;
        justify-content: center;
        width: max-content;
        max-width: min(420px, calc(100vw - 32px));
        padding: 12px 22px 13px;
        border-radius: 10px;
        border: 1px solid rgba(150, 185, 210, 0.28);
        background:
          linear-gradient(
            180deg,
            rgba(18, 32, 48, 0.72) 0%,
            rgba(9, 11, 12, 0.88) 100%
          );
        box-shadow:
          inset 0 1px 0 rgba(210, 225, 240, 0.12),
          0 16px 36px rgba(0, 0, 0, 0.45),
          0 0 18px rgba(0, 170, 255, 0.14);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        color: #e8f6ff;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate(-50%, -12px);
        transition:
          opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
          transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
          visibility 0.5s;
      }

      .site-toast.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
      }

      .site-toast__stripe {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(
          90deg,
          transparent 0%,
          rgba(255, 120, 40, 0.95) 18%,
          rgba(0, 170, 255, 0.9) 52%,
          rgba(180, 205, 220, 0.7) 82%,
          transparent 100%
        );
        box-shadow: 0 0 10px rgba(0, 170, 255, 0.45);
      }

      .site-toast__text {
        margin: 0;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.04em;
        line-height: 1.35;
        text-align: center;
        text-shadow: 0 0 12px rgba(0, 170, 255, 0.28);
      }

      .hp-field {
        position: absolute !important;
        left: -10000px !important;
        top: auto !important;
        width: 1px !important;
        height: 1px !important;
        overflow: hidden !important;
      }

      @keyframes fadeForm {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Поля ввода (Inputs) */
      .input-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }

      .input-group label {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 600;
        letter-spacing: 0.8px;
        text-transform: uppercase;
      }

      #register-form label[for="register-full-name"],
      #register-form label[for="register-email"] {
        font-size: calc(11px * 1.02);
        color: rgba(236, 246, 255, 0.88);
        font-weight: 700;
        letter-spacing: 0.7px;
        -webkit-font-smoothing: antialiased;
        text-shadow: 0 0 0.4px rgba(255, 255, 255, 0.35);
      }

      .input-wrapper {
        position: relative;
        width: 100%;
      }

      .input-wrapper input {
        width: 100%;
        padding: 14px 16px;
        background: rgba(9, 11, 12, 0.8) !important;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        color: #fff !important;
        font-size: 15px;
        outline: none;
        transition: all 0.3s ease;
      }

      /* Стили для автозаполнения браузера (чтобы не перебивали темную тему) */
      .input-wrapper input:-webkit-autofill,
      .input-wrapper input:-webkit-autofill:hover,
      .input-wrapper input:-webkit-autofill:focus,
      .input-wrapper input:-webkit-autofill:active {
        -webkit-text-fill-color: #fff !important;
        -webkit-box-shadow: 0 0 0px 1000px #090b0c inset !important;
        transition: background-color 5000s ease-in-out 0s;
      }

      .input-wrapper input::placeholder {
        color: rgba(255, 255, 255, 0.2);
      }

      /* Светящийся эффект для инпута при фокусе */
      .input-glow {
        position: absolute;
        inset: -1px;
        border-radius: 8px;
        pointer-events: none;
        border: 1px solid #00aaff;
        opacity: 0;
        transition: opacity 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 0 10px rgba(0, 170, 255, 0.4);
      }

      .input-wrapper input:focus {
        border-color: transparent;
      }

      .input-wrapper input:focus + .input-glow {
        opacity: 1;
      }

      .input-wrapper input:disabled {
        opacity: 0.45;
        cursor: not-allowed;
      }

      /* Опции формы (Checkbox & Forgot password) */
      .form-options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
      }

      .checkbox-container {
        display: flex;
        align-items: center;
        position: relative;
        padding-left: 26px;
        cursor: pointer;
        color: rgba(255, 255, 255, 0.6);
        user-select: none;
        transition: color 0.3s ease;
      }

      .checkbox-container:hover {
        color: #fff;
      }

      .checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
      }

      .checkmark {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        height: 16px;
        width: 16px;
        background-color: rgba(9, 11, 12, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 4px;
        transition: all 0.3s ease;
      }

      .checkbox-container input:checked ~ .checkmark {
        background-color: #00aaff;
        border-color: #00aaff;
        box-shadow: 0 0 8px rgba(0, 170, 255, 0.5);
      }

      .checkmark::after {
        content: "";
        position: absolute;
        display: none;
      }

      .checkbox-container input:checked ~ .checkmark::after {
        display: block;
      }

      .checkbox-container .checkmark::after {
        left: 5px;
        top: 2px;
        width: 4px;
        height: 8px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
      }

      .forgot-link {
        color: rgba(255, 255, 255, 0.22);
        text-decoration: none;
        pointer-events: none;
        cursor: default;
        text-shadow: none;
        transition: color 0.3s ease, text-shadow 0.3s ease, opacity 0.3s ease;
      }

      .forgot-link.is-ready {
        color: #7fd4ff;
        pointer-events: auto;
        cursor: pointer;
        text-shadow: 0 0 12px rgba(0, 170, 255, 0.55);
      }

      .forgot-link.is-ready:hover {
        color: #d6f6ff;
        text-shadow: 0 0 16px rgba(0, 200, 255, 0.75);
      }

      .register-code-group.is-code-locked > label {
        opacity: 0.4;
      }

      .register-code-group.is-code-locked .input-wrapper input:disabled {
        opacity: 0.38;
        cursor: not-allowed;
        background: rgba(0, 16, 32, 0.45);
        color: rgba(180, 210, 230, 0.45);
        pointer-events: none;
      }

      .code-row {
        display: flex;
        gap: 8px;
        align-items: stretch;
      }

      .code-row .input-wrapper {
        flex: 1;
        min-width: 0;
      }

      .code-row.is-sent .input-wrapper input:not(:disabled) {
        border-color: rgba(0, 170, 255, 0.42);
      }

      .code-row.is-sent .input-glow {
        opacity: 0.45;
      }

      .code-send-btn {
        flex-shrink: 0;
        border: 1px solid rgba(0, 170, 255, 0.45);
        border-radius: 8px;
        background: rgba(0, 40, 70, 0.55);
        color: #cfefff;
        padding: 0 14px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
        transition: background 0.2s ease, border-color 0.2s ease, min-width 0.2s ease;
      }

      .code-send-btn:hover:not(:disabled) {
        background: rgba(0, 90, 140, 0.55);
        border-color: rgba(0, 200, 255, 0.65);
      }

      .code-send-btn:disabled {
        opacity: 0.55;
        cursor: not-allowed;
      }

      .code-send-btn.is-waiting {
        min-width: 76px;
        padding: 0 10px;
        font-variant-numeric: tabular-nums;
        letter-spacing: 0.06em;
        opacity: 0.9;
        color: #9ad8ff;
      }

      .code-row.is-code-ready .code-send-btn {
        display: none;
      }

      .form-note {
        display: none;
        align-items: flex-start;
        gap: 8px;
        margin: 8px 0 0;
        padding: 0;
        border: 0;
        background: none;
        color: #9ad8ff;
      }

      .form-note.is-visible {
        display: flex;
        animation: fadeForm 0.35s ease;
      }

      .form-note__icon {
        flex-shrink: 0;
        display: grid;
        place-items: center;
        width: 16px;
        height: 16px;
        margin-top: 1px;
        border: 0;
        border-radius: 0;
        background: none;
        color: #7fd4ff;
      }

      .form-note__icon svg {
        width: 16px;
        height: 16px;
        display: none;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      .form-note.is-ok .form-note__mail,
      .form-note.is-error .form-note__warn {
        display: block;
      }

      .form-note.is-error {
        color: rgba(255, 176, 148, 0.95);
      }

      .form-note.is-error .form-note__icon {
        color: #ff8855;
      }

      .form-note__text {
        margin: 0;
        font-size: 12px;
        line-height: 1.4;
        letter-spacing: 0.01em;
        color: inherit;
      }

      .form-note.is-ok .form-note__text {
        color: #cfefff;
        text-shadow: 0 0 12px rgba(0, 170, 255, 0.28);
      }

      .register-code-group.is-sent .code-hint {
        color: rgba(207, 239, 255, 0.88);
      }

      .code-hint {
        margin: 6px 0 0;
        font-size: 12px;
        color: rgba(180, 210, 230, 0.72);
        line-height: 1.35;
      }

      /* Кнопка отправки формы (Submit Button) */
      .submit-btn {
        position: relative;
        width: 100%;
        padding: 15px;
        background: linear-gradient(135deg, #0088ff 0%, #00d5ff 100%);
        border: none;
        border-radius: 8px;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 136, 255, 0.3);
      }

      .submit-btn span {
        position: relative;
        z-index: 2;
      }

      .submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
        z-index: 1;
      }

      .submit-btn:hover::before {
        left: 100%;
      }

      .submit-btn:hover {
        box-shadow: 0 0 25px rgba(0, 170, 255, 0.5);
        transform: translateY(-2px);
      }

      .submit-btn:active {
        transform: translateY(1px);
      }

      .submit-btn:disabled {
        opacity: 0.45;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
      }

      .submit-btn:disabled:hover {
        transform: none;
        box-shadow: none;
      }

      .submit-btn:disabled:hover::before {
        left: -100%;
      }

      #org-profile-save {
        background: linear-gradient(135deg, #0088ff 0%, #00d5ff 100%);
        color: #fff;
        box-shadow: 0 4px 15px rgba(0, 136, 255, 0.3);
        filter: brightness(0.86);
      }

      #org-profile-save:hover {
        box-shadow: 0 0 25px rgba(0, 170, 255, 0.5);
        filter: brightness(0.9);
      }

      /* Тени вынесены отдельно — меньше пересэмплинга маски+фильтров на линиях схемы */
      .logo__image--style-2 {
        -webkit-mask-image: radial-gradient(
          circle,
          #000 36%,
          rgba(0, 0, 0, 0.95) 50%,
          rgba(0, 0, 0, 0.5) 66%,
          transparent 86%
        );
        mask-image: radial-gradient(
          circle,
          #000 36%,
          rgba(0, 0, 0, 0.95) 50%,
          rgba(0, 0, 0, 0.5) 66%,
          transparent 86%
        );
        filter:
          drop-shadow(0 10px 22px rgba(0, 8, 24, 0.55))
          drop-shadow(0 0 18px rgba(0, 170, 255, 0.22))
          drop-shadow(0 -3px 14px rgba(255, 190, 70, 0.1))
          brightness(1.04)
          contrast(1.02)
          saturate(1.12);
      }

      /* Задний фон: сразу мягкий голубой холст, стойки — через короткую паузу */
      .background-container {
        position: fixed;
        inset: 0;
        z-index: 1;
        background: #1a2a38;
        overflow: hidden;
      }

      .background-image {
        position: absolute;
        inset: 0;
        background-image: url('/fon_ser/server_racks_background.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0;
        filter: brightness(1.2) contrast(1.1);
        animation: fadeInBg 2s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
      }

      @supports not (background-image: url('x.webp')) {
        .background-image {
          background-image: url('/fon_ser/server_racks_background.jpg');
        }
      }

      .background-vignette {
        position: absolute;
        inset: 0;
        opacity: 0;
        background: radial-gradient(
          circle,
          transparent 15%,
          rgba(9, 11, 12, 0.4) 55%,
          #090b0c 95%
        );
        animation: fadeInBg 2s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
        pointer-events: none;
      }

      @keyframes fadeInBg {
        from {
          opacity: 0;
        }
        to {
          opacity: 0.85;
        }
      }

      @keyframes fadeInLogo {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      @keyframes fadeInLogoShadow {
        from {
          opacity: 0;
          transform: translate(-50%, 0) rotateX(62deg) scale(0.55);
        }
        to {
          opacity: 0.9;
          transform: translate(-50%, 0) rotateX(62deg) scale(1);
        }
      }

      /* Синусоидальный scale: амплитуда как раньше (~3.5%), без рывка на пике */
      @keyframes logoFloat {
        0%,
        100% {
          transform: translate3d(0, 0, 0) scale(1);
        }
        12.5% {
          transform: translate3d(0, 0, 0) scale(1.0065);
        }
        25% {
          transform: translate3d(0, 0, 0) scale(1.0175);
        }
        37.5% {
          transform: translate3d(0, 0, 0) scale(1.029);
        }
        50% {
          transform: translate3d(0, 0, 0) scale(1.035);
        }
        62.5% {
          transform: translate3d(0, 0, 0) scale(1.029);
        }
        75% {
          transform: translate3d(0, 0, 0) scale(1.0175);
        }
        87.5% {
          transform: translate3d(0, 0, 0) scale(1.0065);
        }
      }


      /* Аудиоплеер */
      .audio-control {
        position: fixed;
        bottom: 24px;
        right: 24px;
        z-index: 100;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(9, 11, 12, 0.6);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        outline: none;
      }

      .audio-control:hover {
        background: rgba(14, 18, 20, 0.85);
        border-color: rgba(0, 170, 255, 0.4);
        box-shadow: 0 0 15px rgba(0, 170, 255, 0.25);
        transform: scale(1.05);
      }

      .audio-control:active {
        transform: scale(0.95);
      }

      /* Переключатель языка — рядом с музыкой */
      .lang-switch {
        position: fixed;
        bottom: 24px;
        right: 84px;
        z-index: 100;
        display: flex;
        align-items: center;
        gap: 2px;
        padding: 4px;
        border-radius: 999px;
        background: rgba(9, 11, 12, 0.6);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px) scale(0.96);
        transition: opacity 0.5s ease, transform 0.5s ease;
      }

      .lang-switch.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
      }

      .lang-switch__mail {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        margin-right: 2px;
        border-radius: 999px;
        color: rgba(200, 220, 235, 0.7);
        text-decoration: none;
        transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
        outline: none;
        padding: 0;
        background: transparent;
        border: none;
        appearance: none;
        -webkit-appearance: none;
        line-height: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px) scale(0.92);
      }

      .lang-switch__mail.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
      }

      .lang-switch__mail:hover {
        color: #c5dff0;
        background: transparent;
        box-shadow: none;
      }

      .lang-switch__mail:focus-visible {
        color: #dff0ff;
        box-shadow: none;
      }

      .lang-switch__mail svg {
        width: 18px;
        height: 18px;
        display: block;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      .lang-switch__chat,
      .lang-switch__send {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        margin-right: 2px;
        border: none;
        border-radius: 999px;
        background: transparent;
        color: rgba(200, 220, 235, 0.7);
        cursor: pointer;
        transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
        outline: none;
        padding: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px) scale(0.92);
      }

      .lang-switch__chat.is-visible,
      .lang-switch__send.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
      }

      .lang-switch__chat:hover,
      .lang-switch__send:hover {
        color: #c5dff0;
        background: rgba(0, 140, 220, 0.18);
        box-shadow: 0 0 10px rgba(0, 160, 255, 0.18);
      }

      .lang-switch__chat.active,
      .lang-switch__send.active {
        color: #dff0ff;
        background: rgba(0, 140, 220, 0.25);
        box-shadow: 0 0 12px rgba(0, 170, 255, 0.24);
      }

      .lang-switch__chat:focus-visible,
      .lang-switch__send:focus-visible {
        color: #dff0ff;
        box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.45);
      }

      .lang-switch__chat svg,
      .lang-switch__send svg {
        width: 18px;
        height: 18px;
        display: block;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      .site-chat {
        position: fixed;
        top: auto;
        bottom: 86px;
        right: 18px;
        width: min(245px, 25vw);
        height: auto;
        min-width: 196px;
        min-height: 202px;
        border: 1px solid rgba(150, 185, 210, 0.35);
        border-top: 2px solid rgba(255, 120, 40, 0.75);
        border-radius: 18px;
        background: linear-gradient(
          180deg,
          rgba(55, 75, 95, 0.42) 0%,
          rgba(12, 18, 26, 0.86) 100%
        );
        box-shadow:
          0 12px 28px rgba(0, 0, 0, 0.45),
          0 0 18px rgba(0, 150, 235, 0.18);
        z-index: 96;
        display: none;
        flex-direction: column;
        overflow: hidden;
      }

      .site-chat.active {
        display: flex;
      }

      .site-chat__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 8px 10px;
        border-bottom: 1px solid rgba(0, 170, 255, 0.25);
        color: #d6e8f5;
        font-family: "Syne", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 14px;
        letter-spacing: 0.6px;
      }

      .site-chat__header-actions {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
      }

      .site-chat__logout {
        display: none;
        border: 1px solid rgba(150, 185, 210, 0.35);
        border-radius: 6px;
        background: rgba(8, 14, 20, 0.55);
        color: rgba(214, 232, 245, 0.9);
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 11px;
        padding: 4px 8px;
        cursor: pointer;
        white-space: nowrap;
      }

      .site-chat__logout.is-visible {
        display: inline-flex;
      }

      .site-chat__close {
        width: 24px;
        height: 24px;
        border: none;
        border-radius: 50%;
        background: transparent;
        color: rgba(200, 220, 235, 0.75);
        cursor: pointer;
        font-size: 18px;
        line-height: 1;
      }

      .site-chat__messages {
        flex: 1;
        overflow-y: auto;
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 8px;
      }

      .site-chat__msg {
        max-width: 88%;
        padding: 7px 9px;
        border-radius: 8px;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 13px;
        line-height: 1.25;
      }

      .site-chat__msg--staff {
        align-self: flex-start;
        background: rgba(48, 70, 92, 0.66);
        border: 1px solid rgba(108, 145, 174, 0.38);
        color: rgba(214, 232, 245, 0.95);
      }

      .site-chat__msg--user {
        align-self: flex-end;
        background: rgba(21, 92, 135, 0.64);
        border: 1px solid rgba(0, 170, 255, 0.42);
        color: #eef8ff;
      }

      .site-chat__form {
        display: flex;
        gap: 6px;
        padding: 9px;
        border-top: 1px solid rgba(0, 170, 255, 0.2);
      }

      .site-chat__input {
        flex: 1;
        min-width: 0;
        border: 1px solid rgba(120, 160, 190, 0.35);
        border-radius: 7px;
        background: rgba(8, 14, 20, 0.72);
        color: #d6e8f5;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 13px;
        padding: 7px 8px;
        outline: none;
      }

      .site-chat__send {
        border: 1px solid rgba(150, 185, 210, 0.35);
        border-top: 2px solid rgba(255, 120, 40, 0.75);
        border-radius: 7px;
        background: linear-gradient(
          180deg,
          rgba(55, 75, 95, 0.45) 0%,
          rgba(12, 18, 26, 0.75) 100%
        );
        color: #d6e8f5;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        padding: 0 10px;
        cursor: pointer;
      }

      .site-message {
        position: fixed;
        top: auto;
        bottom: 86px;
        right: 18px;
        width: min(245px, 25vw);
        min-width: 196px;
        border: 1px solid rgba(150, 185, 210, 0.35);
        border-top: 2px solid rgba(255, 120, 40, 0.75);
        border-radius: 18px;
        background: linear-gradient(
          180deg,
          rgba(55, 75, 95, 0.42) 0%,
          rgba(12, 18, 26, 0.86) 100%
        );
        box-shadow:
          0 12px 28px rgba(0, 0, 0, 0.45),
          0 0 18px rgba(0, 150, 235, 0.18);
        z-index: 96;
        display: none;
        flex-direction: column;
        overflow: hidden;
      }

      .site-message.active {
        display: flex;
      }

      .site-message__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 8px 10px;
        border-bottom: 1px solid rgba(0, 170, 255, 0.25);
        color: #d6e8f5;
        font-family: "Syne", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 14px;
        letter-spacing: 0.6px;
      }

      .site-message__close {
        border: 0;
        background: transparent;
        color: #d6e8f5;
        font-size: 22px;
        line-height: 1;
        cursor: pointer;
        padding: 0 4px;
      }

      .site-message__form {
        display: flex;
        flex-direction: column;
        gap: 7px;
        padding: 9px;
      }

      .site-message__form input,
      .site-message__form textarea {
        width: 100%;
        border: 1px solid rgba(120, 160, 190, 0.35);
        border-radius: 7px;
        background: rgba(8, 14, 20, 0.72);
        color: #d6e8f5;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 13px;
        padding: 7px 8px;
        outline: none;
        box-sizing: border-box;
      }

      .site-message__form textarea {
        min-height: 72px;
        resize: vertical;
      }

      .site-message__form button {
        border: 1px solid rgba(150, 185, 210, 0.35);
        border-top: 2px solid rgba(255, 120, 40, 0.75);
        border-radius: 7px;
        background: linear-gradient(
          180deg,
          rgba(55, 75, 95, 0.45) 0%,
          rgba(12, 18, 26, 0.75) 100%
        );
        color: #d6e8f5;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        padding: 8px 10px;
        cursor: pointer;
      }

      .site-message__status {
        margin: 0;
        padding: 0 9px 9px;
        color: rgba(200, 230, 245, 0.85);
        font-size: 12px;
        line-height: 1.35;
      }

      .lang-switch__btn {
        min-width: 40px;
        height: 36px;
        padding: 0 10px;
        border: none;
        border-radius: 999px;
        background: transparent;
        color: rgba(200, 220, 235, 0.55);
        font-family: "Cinzel", "Palatino Linotype", Palatino, serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.8px;
        cursor: pointer;
        transition: all 0.25s ease;
        outline: none;
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px) scale(0.92);
      }

      .lang-switch__btn.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
      }

      .lang-switch__btn:hover {
        color: #c5dff0;
      }

      .lang-switch__btn.active {
        background: rgba(0, 140, 220, 0.22);
        color: #b8d8ec;
        box-shadow: 0 0 10px rgba(0, 160, 255, 0.2);
      }

      /* Иконка эквалайзера */
      .sound-wave {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        gap: 3px;
        width: 20px;
        height: 18px;
      }

      .sound-wave__bar {
        display: block;
        width: 3px;
        height: 100%;
        border: 1px solid rgba(70, 150, 220, 0.72);
        background: linear-gradient(
          180deg,
          rgba(168, 176, 124, 0.95) 0%,
          rgba(124, 132, 138, 0.92) 100%
        );
        border-radius: 2px;
        transform-origin: bottom center;
        transform: scaleY(0.2);
        box-shadow:
          0 0 6px rgba(154, 164, 120, 0.32),
          0 0 10px rgba(118, 128, 136, 0.2);
      }

      /* Анимации полос при воспроизведении */
      .audio-control--playing .sound-wave__bar {
        animation-name: eq-bounce;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        animation-fill-mode: both;
      }

      .audio-control--playing .sound-wave__bar:nth-child(1) {
        animation-duration: 0.45s;
        animation-delay: 0s;
      }

      .audio-control--playing .sound-wave__bar:nth-child(2) {
        animation-duration: 0.7s;
        animation-delay: -0.2s;
      }

      .audio-control--playing .sound-wave__bar:nth-child(3) {
        animation-duration: 0.55s;
        animation-delay: -0.35s;
      }

      .audio-control--playing .sound-wave__bar:nth-child(4) {
        animation-duration: 0.85s;
        animation-delay: -0.1s;
      }

      /* Высота полос на паузе */
      .audio-control:not(.audio-control--playing) .sound-wave__bar {
        animation: none;
        transform: scaleY(0.18);
        border-color: rgba(78, 142, 205, 0.62);
        background: linear-gradient(
          180deg,
          rgba(132, 138, 102, 0.7) 0%,
          rgba(102, 110, 116, 0.6) 100%
        );
        box-shadow: 0 0 4px rgba(116, 124, 110, 0.18);
        transition: transform 0.25s ease, background-color 0.25s ease;
      }

      @keyframes eq-bounce {
        0% {
          transform: scaleY(0.22);
        }
        100% {
          transform: scaleY(1);
        }
      }

      @media (max-width: 720px) {
        .lang-switch {
          bottom: 16px;
          right: 72px;
          padding: 3px;
        }

        .lang-switch__mail {
          width: 32px;
          height: 32px;
        }

        .lang-switch__mail svg {
          width: 16px;
          height: 16px;
        }

        .lang-switch__chat,
        .lang-switch__send {
          width: 32px;
          height: 32px;
        }

        .lang-switch__chat svg,
        .lang-switch__send svg {
          width: 16px;
          height: 16px;
        }

        .lang-switch__btn {
          min-width: 34px;
          height: 32px;
          font-size: 11px;
          padding: 0 8px;
        }

        .site-chat,
        .site-message {
          right: 12px;
          top: auto;
          bottom: 82px;
          width: min(64vw, 238px);
          height: auto;
          min-width: 0;
        }

        .audio-control {
          bottom: 16px;
          right: 16px;
        }
      }

      /* Кнопки-облака — полностью прозрачные */
      .stone-btn {
        position: fixed;
        z-index: 100;
        overflow: visible;
        border: 1.5px solid rgba(200, 225, 245, 0.55);
        border-radius: 48% 52% 50% 50% / 55% 48% 52% 45%;
        color: #e8f2fa;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: calc(15px * 1.22);
        font-weight: 600;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        cursor: pointer;
        outline: none;
        opacity: 0;
        pointer-events: none;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow:
          0 0 0 1px rgba(0, 40, 80, 0.25),
          0 0 12px rgba(120, 190, 255, 0.12);
        text-shadow:
          0 1px 2px rgba(0, 0, 0, 0.85),
          0 0 8px rgba(0, 0, 0, 0.55),
          0 0 14px rgba(0, 80, 140, 0.35);
        transition:
          opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
          color 0.3s ease,
          text-shadow 0.3s ease,
          border-color 0.3s ease,
          box-shadow 0.3s ease,
          filter 0.3s ease;
      }

      .stone-btn.is-visible {
        opacity: 1;
        pointer-events: auto;
      }

      .stone-btn::before,
      .stone-btn::after {
        content: "";
        position: absolute;
        left: 14%;
        right: 14%;
        height: 2px;
        border-radius: 2px;
        pointer-events: none;
        opacity: 0;
        transform: scaleX(0.6);
        transition: opacity 0.28s ease, transform 0.28s ease;
        background: linear-gradient(
          90deg,
          transparent 0%,
          rgba(255, 120, 40, 0.85) 18%,
          rgba(0, 170, 255, 0.75) 52%,
          rgba(180, 205, 220, 0.55) 82%,
          transparent 100%
        );
        box-shadow:
          0 0 8px rgba(255, 120, 40, 0.25),
          0 0 10px rgba(0, 160, 255, 0.2);
        z-index: 0;
      }

      .stone-btn::before {
        top: 16%;
      }

      .stone-btn::after {
        bottom: 14%;
        background: linear-gradient(
          90deg,
          transparent 0%,
          rgba(255, 120, 40, 0.55) 15%,
          rgba(0, 170, 255, 0.7) 50%,
          rgba(170, 195, 215, 0.45) 85%,
          transparent 100%
        );
      }

      .stone-btn.is-visible:hover {
        color: #fff;
        background: transparent;
        border-color: rgba(230, 245, 255, 0.85);
        box-shadow:
          0 0 0 1px rgba(0, 100, 180, 0.35),
          0 0 18px rgba(100, 190, 255, 0.35);
        filter: none;
        text-shadow:
          0 1px 2px rgba(0, 0, 0, 0.9),
          0 0 12px rgba(0, 170, 255, 0.45),
          0 0 20px rgba(120, 200, 255, 0.3);
      }

      .stone-btn.is-visible:active,
      .stone-btn.is-visible.active {
        color: #9ecceb;
        background: transparent;
        border-color: rgba(150, 185, 210, 0.55);
        border-top-color: rgba(255, 120, 40, 0.9);
        box-shadow:
          0 0 0 1px rgba(0, 140, 220, 0.35),
          0 0 16px rgba(0, 170, 255, 0.28),
          0 0 14px rgba(255, 120, 40, 0.18);
        filter: none;
        text-shadow:
          0 1px 2px rgba(0, 0, 0, 0.85),
          0 0 14px rgba(0, 170, 255, 0.5);
      }

      .stone-btn.is-visible:active::before,
      .stone-btn.is-visible:active::after,
      .stone-btn.is-visible.active::before,
      .stone-btn.is-visible.active::after {
        opacity: 1;
        transform: scaleX(1);
      }

      .stone-btn.is-visible.active {
        color: #8fd0ff;
        border-color: rgba(150, 185, 210, 0.5);
        border-top-color: rgba(255, 140, 50, 0.95);
        text-shadow:
          0 1px 2px rgba(0, 0, 0, 0.85),
          0 0 16px rgba(0, 170, 255, 0.55);
      }

      @keyframes cloudSwayA {
        0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
        25% { transform: translate3d(4px, -7px, 0) rotate(1.5deg); }
        50% { transform: translate3d(-3px, -3px, 0) rotate(-1deg); }
        75% { transform: translate3d(3px, -9px, 0) rotate(2deg); }
      }

      @keyframes cloudSwayB {
        0%, 100% { transform: translate3d(0, 0, 0) rotate(1.5deg); }
        30% { transform: translate3d(-5px, -8px, 0) rotate(-2deg); }
        55% { transform: translate3d(3px, -2px, 0) rotate(1deg); }
        80% { transform: translate3d(-2px, -10px, 0) rotate(-1.5deg); }
      }

      @keyframes cloudSwayC {
        0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
        20% { transform: translate3d(5px, -5px, 0) rotate(2deg); }
        45% { transform: translate3d(-4px, -9px, 0) rotate(-2deg); }
        70% { transform: translate3d(2px, -3px, 0) rotate(1deg); }
      }

      @keyframes cloudSwayD {
        0%, 100% { transform: translate3d(0, 0, 0) rotate(2deg); }
        35% { transform: translate3d(-3px, -6px, 0) rotate(-1.5deg); }
        60% { transform: translate3d(5px, -10px, 0) rotate(1deg); }
        85% { transform: translate3d(-4px, -4px, 0) rotate(-2deg); }
      }

      /* Backup */
      .tariffs-btn {
        top: calc(24px + 5vh);
        right: 24px;
        min-width: calc(148px * 1.28);
        padding: calc(18px * 1.28) calc(28px * 1.28) calc(20px * 1.28);
        border-radius: 50% 48% 52% 46% / 58% 52% 48% 42%;
        transform: translateY(-20px) scale(0.88);
      }

      .tariffs-btn.is-visible {
        transform: translate3d(0, 0, 0) rotate(-2deg);
        animation: cloudSwayA 7.5s ease-in-out infinite;
      }

      .tariffs-btn.is-visible:hover {
        animation-duration: 4.5s;
      }

      .tariffs-btn.is-visible:active,
      .tariffs-btn.is-visible.active {
        animation-play-state: paused;
        transform: translate3d(0, 3px, 0) scale(0.97) rotate(-1deg);
      }

      /* Кабинет клиента — зеркало Backup, слева */
      .cabinet-btn {
        top: calc(24px + 5vh);
        left: 24px;
        right: auto;
        min-width: calc(168px * 1.28);
        padding: calc(18px * 1.28) calc(22px * 1.28) calc(20px * 1.28);
        border-radius: 48% 52% 46% 54% / 52% 48% 55% 45%;
        transform: translateY(-20px) scale(0.88);
      }

      .cabinet-btn.is-visible {
        transform: translate3d(0, 0, 0) rotate(2deg);
        animation: cloudSwayD 7.8s ease-in-out infinite;
        animation-delay: -0.8s;
      }

      .cabinet-btn.is-visible:hover {
        animation-duration: 4.6s;
      }

      .cabinet-btn.is-visible:active,
      .cabinet-btn.is-visible.active {
        animation-play-state: paused;
        transform: translate3d(0, 3px, 0) scale(0.97) rotate(1deg);
      }

      /* Servers */
      .servers-btn {
        top: calc(24px + 76px * 1.28 + 5vh);
        right: 22px;
        left: auto;
        min-width: calc(156px * 1.28);
        padding: calc(17px * 1.28) calc(26px * 1.28) calc(19px * 1.28);
        letter-spacing: 0.5px;
        border-radius: 46% 54% 48% 52% / 50% 45% 55% 50%;
        transform: translateY(-20px) scale(0.88);
      }

      .servers-btn.is-visible {
        transform: translate3d(0, 0, 0) rotate(1.5deg);
        animation: cloudSwayB 8.2s ease-in-out infinite;
        animation-delay: -1.2s;
      }

      .servers-btn.is-visible:hover {
        animation-duration: 5s;
      }

      .servers-btn.is-visible:active,
      .servers-btn.is-visible.active {
        animation-play-state: paused;
        transform: translate3d(0, 3px, 0) scale(0.97) rotate(1deg);
      }

      /* 1С Лицензии */
      .licenses-btn {
        top: calc(24px + 152px * 1.28 + 5vh);
        right: 18px;
        left: auto;
        min-width: calc(176px * 1.28);
        padding: calc(16px * 1.28) calc(22px * 1.28) calc(18px * 1.28);
        letter-spacing: 0.4px;
        font-size: calc(13.5px * 1.18);
        border-radius: 52% 48% 45% 55% / 48% 55% 45% 52%;
        transform: translateY(-20px) scale(0.88);
      }

      .licenses-btn.is-visible {
        transform: translate3d(0, 0, 0) rotate(-1deg);
        animation: cloudSwayC 9s ease-in-out infinite;
        animation-delay: -2.4s;
      }

      .licenses-btn.is-visible:hover {
        animation-duration: 5.2s;
      }

      .licenses-btn.is-visible:active,
      .licenses-btn.is-visible.active {
        animation-play-state: paused;
        transform: translate3d(0, 3px, 0) scale(0.97) rotate(0deg);
      }

      /* SSL Сертификаты */
      .ssl-btn {
        top: calc(24px + 228px * 1.28 + 5vh);
        right: 16px;
        left: auto;
        min-width: calc(188px * 1.28);
        padding: calc(16px * 1.28) calc(20px * 1.28) calc(18px * 1.28);
        letter-spacing: 0.35px;
        font-size: calc(13px * 1.18);
        border-radius: 50% 48% 52% 46% / 55% 48% 52% 45%;
        transform: translateY(-20px) scale(0.88);
      }

      .ssl-btn.is-visible {
        transform: translate3d(0, 0, 0) rotate(1deg);
        animation: cloudSwayA 8.4s ease-in-out infinite;
        animation-delay: -3.4s;
      }

      .ssl-btn.is-visible:hover {
        animation-duration: 4.9s;
      }

      .ssl-btn.is-visible:active,
      .ssl-btn.is-visible.active {
        animation-play-state: paused;
        transform: translate3d(0, 3px, 0) scale(0.97) rotate(0.5deg);
      }

      /* Домены */
      .domains-btn {
        top: calc(24px + 304px * 1.28 + 5vh);
        right: 24px;
        left: auto;
        min-width: calc(148px * 1.28);
        padding: calc(17px * 1.28) calc(26px * 1.28) calc(19px * 1.28);
        letter-spacing: 0.5px;
        border-radius: 46% 54% 48% 52% / 50% 45% 55% 50%;
        transform: translateY(-20px) scale(0.88);
      }

      .domains-btn.is-visible {
        transform: translate3d(0, 0, 0) rotate(-1.5deg);
        animation: cloudSwayB 8.8s ease-in-out infinite;
        animation-delay: -4.2s;
      }

      .domains-btn.is-visible:hover {
        animation-duration: 5s;
      }

      .domains-btn.is-visible:active,
      .domains-btn.is-visible.active {
        animation-play-state: paused;
        transform: translate3d(0, 3px, 0) scale(0.97) rotate(-1deg);
      }

      /* Company — ниже всех кнопок */
      .company-btn {
        top: calc(24px + 380px * 1.28 + 5vh);
        right: 26px;
        left: auto;
        min-width: calc(156px * 1.28);
        padding: calc(17px * 1.28) calc(24px * 1.28) calc(19px * 1.28);
        letter-spacing: 0.5px;
        border-radius: 48% 52% 55% 45% / 52% 48% 52% 48%;
        transform: translateY(-20px) scale(0.88);
      }

      .company-btn.is-visible {
        transform: translate3d(0, 0, 0) rotate(2deg);
        animation: cloudSwayD 8.6s ease-in-out infinite;
        animation-delay: -5.1s;
      }

      .company-btn.is-visible:hover {
        animation-duration: 4.8s;
      }

      .company-btn.is-visible:active,
      .company-btn.is-visible.active {
        animation-play-state: paused;
        transform: translate3d(0, 3px, 0) scale(0.97) rotate(1deg);
      }

      @media (prefers-reduced-motion: reduce) {
        .tariffs-btn.is-visible,
        .cabinet-btn.is-visible,
        .servers-btn.is-visible,
        .licenses-btn.is-visible,
        .ssl-btn.is-visible,
        .domains-btn.is-visible,
        .company-btn.is-visible {
          animation: none !important;
        }

        #register-form.is-code-ready #register-terms:not(:checked) ~ .terms-link {
          animation: none !important;
          color: #e8fbff;
          text-shadow: 0 0 12px rgba(0, 170, 255, 0.45);
        }
      }

      /* Панели: тонкие шрифты */
      .licenses-panel,
      .servers-panel,
      .tariffs-panel,
      .company-panel {
        font-weight: 400;
      }

      .licenses-panel .licenses-title,
      .licenses-panel .licenses-col__title,
      .servers-panel .servers-title,
      .servers-panel .server-card__name,
      .servers-panel .server-card__badge,
      .tariffs-panel .tariffs-title,
      .tariffs-panel .tariff-card__name,
      .tariffs-panel .storage-calc__title,
      .tariffs-panel .storage-calc__price-label,
      .company-panel .company-title,
      .company-panel .company-meta dt {
        font-weight: 500;
      }

      .licenses-panel .licenses-list__price,
      .servers-panel .server-card__cpu,
      .servers-panel .server-card__price,
      .tariffs-panel .tariff-card__storage,
      .tariffs-panel .tariff-card__price,
      .tariffs-panel .storage-calc__value,
      .tariffs-panel .storage-calc__price,
      .company-panel .company-meta dd {
        font-weight: 500;
      }

      /* Панель 1С лицензий */
      .licenses-panel {
        position: absolute;
        top: 50%;
        bottom: auto;
        left: 50%;
        width: min(1280px, 96vw);
        max-height: min(92vh, 860px);
        height: min(92vh, 860px);
        padding: 14px 18px 10px;
        background:
          linear-gradient(
            165deg,
            rgba(28, 42, 58, 0.74) 0%,
            rgba(9, 11, 12, 0.8) 45%,
            rgba(14, 28, 42, 0.74) 100%
          );
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(150, 185, 210, 0.28);
        border-radius: 16px;
        box-shadow:
          0 20px 50px rgba(0, 0, 0, 0.6),
          inset 0 1px 0 rgba(200, 220, 235, 0.18),
          0 0 28px rgba(0, 140, 220, 0.12);
        z-index: 30;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        color: #fff;
        opacity: 0;
        transform: translate(20%, -50%);
        pointer-events: none;
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        display: flex;
        flex-direction: column;
      }

      .licenses-panel.active {
        opacity: 1;
        transform: translate(-50%, -50%);
        pointer-events: all;
      }

      .licenses-panel .tariffs-close {
        position: absolute;
        top: 8px;
        right: 12px;
        z-index: 2;
      }

      .licenses-title {
        margin: 0 0 2px;
        text-align: center;
        font-family: "Syne", "Avenir Next", "Segoe UI", sans-serif;
        font-size: clamp(26px, 3.4vh, 36px);
        font-weight: 500;
        letter-spacing: 1.2px;
        color: #d4e4f0;
        text-shadow: 0 0 16px rgba(0, 160, 255, 0.25);
        flex-shrink: 0;
      }

      .licenses-subtitle {
        margin: 0 auto 8px;
        max-width: 780px;
        text-align: center;
        font-size: clamp(13px, 1.8vh, 18px);
        color: rgba(190, 215, 235, 0.78);
        padding-bottom: 6px;
        border-bottom: 2px solid transparent;
        border-image: linear-gradient(
          90deg,
          transparent 0%,
          rgba(255, 120, 40, 0.75) 20%,
          rgba(0, 170, 255, 0.7) 50%,
          rgba(180, 205, 220, 0.55) 80%,
          transparent 100%
        ) 1;
        flex-shrink: 0;
      }

      .licenses-columns {
        display: grid;
        grid-template-columns: 1.2fr 0.9fr;
        gap: 14px;
        min-height: 0;
        flex: 1;
        align-items: stretch;
      }

      .licenses-col {
        display: flex;
        flex-direction: column;
        min-height: 0;
        padding: 10px 14px 8px;
        background:
          linear-gradient(
            180deg,
            rgba(55, 75, 95, 0.28) 0%,
            rgba(12, 18, 26, 0.72) 100%
          );
        border: 1px solid rgba(150, 185, 210, 0.22);
        border-top: 2px solid rgba(255, 120, 40, 0.65);
        border-radius: 10px;
        box-shadow: inset 0 1px 0 rgba(210, 225, 240, 0.12);
        overflow: hidden;
      }

      .licenses-col__title {
        margin: 0 0 6px;
        font-family: "Syne", "Avenir Next", "Segoe UI", sans-serif;
        font-size: clamp(12px, 1.6vh, 16px);
        font-weight: 500;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: #e8d4bc;
        text-align: center;
        flex-shrink: 0;
      }

      .licenses-list {
        list-style: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0;
      }

      .licenses-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 0.2vh 2px;
        border-bottom: 1px solid rgba(255, 120, 40, 0.14);
        font-size: clamp(13px, 1.85vh, 19px);
        line-height: 1.2;
        color: rgba(215, 230, 240, 0.92);
        flex: 1 1 auto;
        min-height: 0;
      }

      .licenses-list li:last-child {
        border-bottom: none;
      }

      .licenses-list__name {
        flex: 1;
        min-width: 0;
      }

      .licenses-list__price-wrap {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
      }

      .licenses-list__price {
        flex-shrink: 0;
        font-weight: 500;
        font-size: clamp(14px, 2vh, 20px);
        color: #8fd0ff;
        font-variant-numeric: tabular-nums;
        text-shadow: 0 0 10px rgba(0, 160, 255, 0.2);
      }

      .licenses-check {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-shrink: 0;
      }

      .licenses-check input {
        appearance: none;
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        margin: 0;
        border: 1.5px solid rgba(150, 185, 210, 0.55);
        border-radius: 4px;
        background: rgba(8, 14, 22, 0.65);
        cursor: pointer;
        position: relative;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      }

      .licenses-check input:hover {
        border-color: rgba(0, 170, 255, 0.75);
        box-shadow: 0 0 8px rgba(0, 160, 255, 0.25);
      }

      .licenses-check input:checked {
        border-color: rgba(255, 140, 50, 0.9);
        background:
          linear-gradient(
            135deg,
            rgba(255, 120, 40, 0.85) 0%,
            rgba(0, 150, 230, 0.75) 100%
          );
        box-shadow: 0 0 10px rgba(255, 120, 40, 0.3);
      }

      .licenses-check input:checked::after {
        content: "";
        position: absolute;
        left: 5px;
        top: 1px;
        width: 5px;
        height: 9px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
      }

      .licenses-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid rgba(150, 185, 210, 0.2);
        flex-shrink: 0;
      }

      .licenses-actions__total {
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: clamp(14px, 1.9vh, 18px);
        color: rgba(200, 220, 235, 0.85);
      }

      .licenses-actions__total strong {
        color: #8fd0ff;
        font-weight: 600;
        font-variant-numeric: tabular-nums;
      }

      .licenses-invoice-btn {
        margin: 0;
        padding: 9px 18px;
        border: 1px solid rgba(150, 185, 210, 0.35);
        border-top: 2px solid rgba(255, 120, 40, 0.75);
        border-radius: 8px;
        background:
          linear-gradient(
            180deg,
            rgba(55, 75, 95, 0.45) 0%,
            rgba(12, 18, 26, 0.75) 100%
          );
        color: #d6e8f5;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: clamp(13px, 1.7vh, 16px);
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        cursor: pointer;
        white-space: nowrap;
        transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
      }

      .licenses-invoice-btn:hover {
        color: #fff;
        border-color: rgba(0, 170, 255, 0.5);
        border-top-color: rgba(255, 150, 60, 0.95);
        box-shadow:
          0 0 16px rgba(0, 160, 255, 0.22),
          0 0 12px rgba(255, 120, 40, 0.12);
      }

      .licenses-invoice-btn:active {
        transform: translateY(1px);
      }

      .licenses-note {
        margin: 6px 0 0;
        text-align: center;
        font-size: clamp(11px, 1.4vh, 14px);
        color: rgba(170, 195, 215, 0.65);
        flex-shrink: 0;
      }

      /* Панель серверов */
      .servers-panel {
        position: absolute;
        top: 50%;
        left: 50%;
        width: min(1040px, 96vw);
        max-height: none;
        padding: 22px 18px 16px;
        background:
          linear-gradient(
            165deg,
            rgba(28, 42, 58, 0.72) 0%,
            rgba(9, 11, 12, 0.78) 45%,
            rgba(14, 28, 42, 0.72) 100%
          );
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(150, 185, 210, 0.28);
        border-radius: 16px;
        box-shadow:
          0 20px 50px rgba(0, 0, 0, 0.6),
          inset 0 1px 0 rgba(200, 220, 235, 0.18),
          inset 0 -1px 0 rgba(80, 120, 150, 0.2),
          0 0 28px rgba(0, 140, 220, 0.12);
        z-index: 30;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        color: #fff;
        opacity: 0;
        transform: translate(20%, -50%);
        pointer-events: none;
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
      }

      .servers-panel.active {
        opacity: 1;
        transform: translate(-50%, -50%);
        pointer-events: all;
      }

      .servers-panel .tariffs-close {
        position: absolute;
        top: 8px;
        right: 8px;
      }

      .servers-title {
        margin: 0 0 10px;
        text-align: center;
        font-family: "Syne", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 42px;
        font-weight: 500;
        letter-spacing: 1.5px;
        color: #d4e4f0;
        text-shadow:
          0 1px 0 rgba(255, 255, 255, 0.12),
          0 0 16px rgba(0, 160, 255, 0.25);
      }

      .servers-subtitle {
        margin: 0 auto 16px;
        max-width: 560px;
        text-align: center;
        font-size: 25px;
        color: rgba(190, 215, 235, 0.82);
        padding-bottom: 12px;
        border-bottom: 2px solid transparent;
        border-image: linear-gradient(
          90deg,
          transparent 0%,
          rgba(255, 120, 40, 0.85) 18%,
          rgba(0, 170, 255, 0.75) 50%,
          rgba(180, 205, 220, 0.65) 82%,
          transparent 100%
        ) 1;
      }

      .servers-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
      }

      .server-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px 12px 14px;
        background:
          linear-gradient(
            180deg,
            rgba(55, 75, 95, 0.35) 0%,
            rgba(12, 18, 26, 0.82) 38%,
            rgba(18, 32, 48, 0.78) 100%
          );
        border: 1px solid rgba(150, 185, 210, 0.28);
        border-top: 2px solid rgba(255, 120, 40, 0.75);
        border-radius: 10px;
        box-shadow:
          inset 0 1px 0 rgba(210, 225, 240, 0.16),
          inset 0 -2px 6px rgba(0, 0, 0, 0.35),
          0 0 14px rgba(0, 120, 200, 0.08);
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.3s ease, box-shadow 0.3s ease;
      }

      .servers-panel.active .server-card {
        opacity: 1;
        transform: translateY(0);
      }

      .servers-panel.active .server-card:nth-child(1) { transition-delay: 0.08s; }
      .servers-panel.active .server-card:nth-child(2) { transition-delay: 0.16s; }
      .servers-panel.active .server-card:nth-child(3) { transition-delay: 0.24s; }

      .server-card:hover {
        border-color: rgba(0, 170, 255, 0.45);
        border-top-color: rgba(255, 150, 60, 0.95);
        box-shadow:
          inset 0 1px 0 rgba(220, 235, 245, 0.22),
          0 0 22px rgba(0, 160, 255, 0.2),
          0 0 16px rgba(255, 120, 40, 0.12);
      }

      .server-card__name {
        margin: 0 0 10px;
        padding-bottom: 8px;
        width: 100%;
        font-family: "Syne", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 20px;
        font-weight: 500;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: #e8d4bc;
        border-bottom: 1.5px solid transparent;
        border-image: linear-gradient(
          90deg,
          transparent,
          rgba(255, 120, 40, 0.75) 20%,
          rgba(0, 170, 255, 0.7) 55%,
          rgba(180, 205, 220, 0.55) 100%
        ) 1;
      }

      .server-card__cpu {
        margin: 0 0 5px;
        font-size: 25px;
        font-weight: 500;
        color: #d6e8f5;
        line-height: 1.2;
        text-shadow: 0 0 10px rgba(0, 160, 255, 0.18);
      }

      .server-card__freq {
        margin: 0 0 12px;
        font-size: 20px;
        color: rgba(170, 200, 220, 0.72);
      }

      .server-card__specs {
        list-style: none;
        margin: 0 0 14px;
        padding: 0;
        width: 100%;
        font-size: 21px;
        line-height: 1.4;
        color: rgba(215, 230, 240, 0.9);
      }

      .server-card__specs li {
        padding: 5px 0;
        border-bottom: 1px solid rgba(255, 120, 40, 0.2);
        box-shadow: 0 1px 0 rgba(0, 140, 220, 0.08);
      }

      .server-card__specs li:last-child {
        border-bottom: 1.5px solid transparent;
        border-image: linear-gradient(
          90deg,
          rgba(255, 120, 40, 0.55),
          rgba(0, 170, 255, 0.55),
          rgba(170, 195, 215, 0.45)
        ) 1;
      }

      .server-card__price {
        margin: 0;
        font-size: 36px;
        font-weight: 500;
        color: #8fd0ff;
        line-height: 1.1;
        text-shadow:
          0 1px 0 rgba(0, 0, 0, 0.4),
          0 0 14px rgba(0, 170, 255, 0.35);
      }

      .server-card__period {
        font-size: 18px;
        color: rgba(180, 205, 225, 0.65);
        font-weight: 500;
      }

      .server-card__year {
        margin: 7px 0 0;
        font-size: 19px;
        color: rgba(180, 205, 220, 0.7);
      }

      .server-card .tariff-order-btn {
        margin-top: 12px;
      }

      .server-card__badge {
        margin: 10px 0 0;
        padding-top: 8px;
        width: 100%;
        font-family: "Syne", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 15px;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: #ff9a4a;
        border-top: 1.5px solid transparent;
        border-image: linear-gradient(
          90deg,
          rgba(255, 120, 40, 0.7),
          rgba(0, 170, 255, 0.55),
          rgba(180, 200, 215, 0.45)
        ) 1;
        text-shadow: 0 0 8px rgba(255, 140, 50, 0.25);
      }

      /* Панель тарифов */
      .tariffs-panel {
        position: absolute;
        top: 50%;
        left: 50%;
        width: min(900px, 94vw);
        max-height: min(92vh, 920px);
        padding: 22px 20px 16px;
        background:
          linear-gradient(
            165deg,
            rgba(28, 42, 58, 0.72) 0%,
            rgba(9, 11, 12, 0.78) 45%,
            rgba(14, 28, 42, 0.72) 100%
          );
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(150, 185, 210, 0.28);
        border-radius: 16px;
        box-shadow:
          0 20px 50px rgba(0, 0, 0, 0.6),
          inset 0 1px 0 rgba(200, 220, 235, 0.18),
          inset 0 -1px 0 rgba(80, 120, 150, 0.2),
          0 0 28px rgba(0, 140, 220, 0.12);
        z-index: 30;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        color: #fff;
        opacity: 0;
        transform: translate(20%, -50%);
        pointer-events: none;
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-x: hidden;
        overflow-y: auto;
      }

      .tariffs-panel.active {
        opacity: 1;
        transform: translate(-50%, -50%);
        pointer-events: all;
      }

      .tariffs-close {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.4);
        font-size: 26px;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
      }

      .tariffs-close:hover {
        color: #FF5500;
        background: rgba(255, 85, 0, 0.1);
        transform: rotate(90deg);
      }

      .tariffs-title {
        margin: 0 0 14px;
        text-align: center;
        font-family: "Syne", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 36px;
        font-weight: 500;
        letter-spacing: 1.5px;
        color: #d4e4f0;
        text-shadow:
          0 1px 0 rgba(255, 255, 255, 0.12),
          0 0 16px rgba(0, 160, 255, 0.25);
        padding-bottom: 12px;
        border-bottom: 2px solid transparent;
        border-image: linear-gradient(
          90deg,
          transparent 0%,
          rgba(255, 120, 40, 0.85) 18%,
          rgba(0, 170, 255, 0.75) 50%,
          rgba(180, 205, 220, 0.65) 82%,
          transparent 100%
        ) 1;
      }

      .tariffs-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
      }

      .tariff-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
        padding: 14px 12px 12px;
        background:
          linear-gradient(
            180deg,
            rgba(55, 75, 95, 0.35) 0%,
            rgba(12, 18, 26, 0.82) 38%,
            rgba(18, 32, 48, 0.78) 100%
          );
        border: 1px solid rgba(150, 185, 210, 0.28);
        border-top: 2px solid rgba(255, 120, 40, 0.75);
        border-radius: 10px;
        box-shadow:
          inset 0 1px 0 rgba(210, 225, 240, 0.16),
          inset 0 -2px 6px rgba(0, 0, 0, 0.35),
          0 0 14px rgba(0, 120, 200, 0.08);
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
      }

      .tariffs-panel.active .tariff-card {
        opacity: 1;
        transform: translateX(0);
      }

      .tariffs-panel.active .tariff-card:nth-child(1) {
        transition-delay: 0.12s;
      }

      .tariffs-panel.active .tariff-card:nth-child(2) {
        transition-delay: 0.24s;
      }

      .tariffs-panel.active .tariff-card:nth-child(3) {
        transition-delay: 0.36s;
      }

      /* SSL: равные колонки — длинные названия не сжимают Wildcard */
      #ssl-panel {
        width: min(940px, 96vw);
      }

      #ssl-panel .tariffs-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
      }

      #ssl-panel .tariff-card {
        min-width: 0;
      }

      #ssl-panel .tariff-card__storage {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        font-size: clamp(18px, 1.7vw, 28px);
        line-height: 1.2;
        max-width: 100%;
      }

      #ssl-panel .tariff-order-btn {
        width: 100%;
        box-sizing: border-box;
      }

      .tariff-card:hover {
        border-color: rgba(0, 170, 255, 0.45);
        border-top-color: rgba(255, 150, 60, 0.95);
        box-shadow:
          inset 0 1px 0 rgba(220, 235, 245, 0.22),
          0 0 22px rgba(0, 160, 255, 0.2),
          0 0 16px rgba(255, 120, 40, 0.12);
      }

      .tariff-card__name {
        margin: 0 0 8px;
        padding-bottom: 6px;
        width: 100%;
        font-family: "Syne", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 17px;
        font-weight: 500;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: #e8d4bc;
        border-bottom: 1.5px solid transparent;
        border-image: linear-gradient(
          90deg,
          transparent,
          rgba(255, 120, 40, 0.75) 20%,
          rgba(0, 170, 255, 0.7) 55%,
          rgba(180, 205, 220, 0.55) 100%
        ) 1;
      }

      .tariff-card__storage {
        margin: 0 0 4px;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 32px;
        font-weight: 500;
        color: #d6e8f5;
        line-height: 1.15;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        text-shadow: 0 0 10px rgba(0, 160, 255, 0.18);
      }

      .tariff-card__speed {
        margin: 0 0 8px;
        padding-bottom: 8px;
        width: 100%;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 19px;
        font-weight: 500;
        color: rgba(170, 200, 220, 0.72);
        letter-spacing: 0.3px;
        border-bottom: 1px solid rgba(255, 120, 40, 0.2);
        box-shadow: 0 1px 0 rgba(0, 140, 220, 0.08);
      }

      .tariff-card__price {
        margin: 0;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 32px;
        font-weight: 500;
        color: #8fd0ff;
        text-shadow:
          0 1px 0 rgba(0, 0, 0, 0.4),
          0 0 14px rgba(0, 170, 255, 0.35);
      }

      .tariff-card__currency {
        font-size: 17px;
        font-weight: 500;
        color: rgba(180, 205, 225, 0.65);
        margin-left: 4px;
      }

      .tariff-card__note {
        margin: 10px 0 0;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 17px;
        color: rgba(190, 215, 235, 0.55);
      }

      .tariff-order-btn {
        margin-top: 12px;
        width: 100%;
        padding: 9px 12px;
        border: 1px solid rgba(150, 185, 210, 0.35);
        border-top: 2px solid rgba(255, 120, 40, 0.75);
        border-radius: 8px;
        background:
          linear-gradient(
            180deg,
            rgba(55, 75, 95, 0.45) 0%,
            rgba(12, 18, 26, 0.75) 100%
          );
        color: #d6e8f5;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        cursor: pointer;
        transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
      }

      .tariff-order-btn:hover {
        color: #fff;
        border-color: rgba(0, 170, 255, 0.5);
        border-top-color: rgba(255, 150, 60, 0.95);
        box-shadow:
          0 0 16px rgba(0, 160, 255, 0.22),
          0 0 12px rgba(255, 120, 40, 0.12);
        background:
          linear-gradient(
            180deg,
            rgba(70, 100, 130, 0.55) 0%,
            rgba(18, 32, 48, 0.82) 100%
          );
      }

      .tariff-order-btn:active {
        transform: translateY(1px);
      }

      .storage-calc .tariff-order-btn {
        margin-top: 10px;
        max-width: 280px;
        align-self: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
      }

      /* Калькулятор объёма — шкала с рычажком */
      .storage-calc {
        margin-top: 14px;
        padding: 12px 14px 10px;
        background:
          linear-gradient(
            180deg,
            rgba(55, 75, 95, 0.35) 0%,
            rgba(12, 18, 26, 0.82) 38%,
            rgba(18, 32, 48, 0.78) 100%
          );
        border: 1px solid rgba(150, 185, 210, 0.28);
        border-top: 2px solid rgba(255, 120, 40, 0.75);
        border-radius: 10px;
        box-shadow:
          inset 0 1px 0 rgba(210, 225, 240, 0.16),
          inset 0 -2px 6px rgba(0, 0, 0, 0.35),
          0 0 14px rgba(0, 120, 200, 0.08);
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.55s ease 0.35s, transform 0.55s ease 0.35s;
      }

      .tariffs-panel.active .storage-calc {
        opacity: 1;
        transform: translateY(0);
      }

      .storage-calc__title {
        margin: 0 0 2px;
        text-align: center;
        font-family: "Syne", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #e8d4bc;
      }

      .storage-calc__value {
        margin: 0 0 4px;
        text-align: center;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 32px;
        font-weight: 500;
        color: #d6e8f5;
        line-height: 1.1;
        text-shadow: 0 0 10px rgba(0, 160, 255, 0.18);
      }

      .storage-calc__speed {
        margin: 0 0 8px;
        text-align: center;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 19px;
        font-weight: 500;
        color: rgba(170, 200, 220, 0.72);
      }

      .storage-calc__track-wrap {
        position: relative;
        padding: 10px 6px 2px;
      }

      .storage-calc__rail {
        position: relative;
        height: 8px;
        border-radius: 999px;
        background: rgba(90, 130, 160, 0.38);
        box-shadow:
          0 1px 0 rgba(180, 210, 230, 0.15) inset,
          0 2px 6px rgba(0, 0, 0, 0.45);
      }

      .storage-calc__fill {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0%;
        border-radius: 999px;
        background: linear-gradient(90deg, #1a6a9a, #00aaff);
        box-shadow: 0 0 12px rgba(0, 170, 255, 0.45);
        pointer-events: none;
      }

      .storage-calc__input {
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        width: 100%;
        margin: 0;
        transform: translateY(-50%);
        -webkit-appearance: none;
        appearance: none;
        background: transparent;
        height: 28px;
        cursor: pointer;
        z-index: 2;
        accent-color: transparent;
      }

      .storage-calc__input:focus {
        outline: none;
      }

      .storage-calc__input::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 18px;
        height: 28px;
        border-radius: 4px 4px 6px 6px;
        background:
          linear-gradient(
            180deg,
            #7a9ab0 0%,
            #3a5568 35%,
            #1a2838 70%,
            #0a1520 100%
          );
        border: 1px solid rgba(160, 200, 230, 0.55);
        box-shadow:
          0 1px 0 rgba(220, 235, 245, 0.35) inset,
          0 4px 10px rgba(0, 0, 0, 0.55),
          0 0 10px rgba(0, 160, 255, 0.25);
        cursor: grab;
      }

      .storage-calc__input::-moz-range-thumb {
        width: 18px;
        height: 28px;
        border-radius: 4px 4px 6px 6px;
        background:
          linear-gradient(
            180deg,
            #7a9ab0 0%,
            #3a5568 35%,
            #1a2838 70%,
            #0a1520 100%
          );
        border: 1px solid rgba(160, 200, 230, 0.55);
        box-shadow:
          0 1px 0 rgba(220, 235, 245, 0.35) inset,
          0 4px 10px rgba(0, 0, 0, 0.55);
        cursor: grab;
      }

      .storage-calc__input::-webkit-slider-runnable-track {
        height: 8px;
        background: transparent;
        border: none;
      }

      .storage-calc__input::-moz-range-track {
        height: 8px;
        background: transparent;
        border: none;
      }

      .storage-calc__input::-moz-range-progress {
        height: 8px;
        background: transparent;
        border: none;
      }

      .storage-calc__marks {
        display: flex;
        justify-content: space-between;
        margin-top: 6px;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 15px;
        color: rgba(180, 205, 225, 0.55);
      }

      .storage-calc__price-row {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        justify-content: center;
        gap: 6px 12px;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1.5px solid transparent;
        border-image: linear-gradient(
          90deg,
          rgba(255, 120, 40, 0.55),
          rgba(0, 170, 255, 0.55),
          rgba(170, 195, 215, 0.45)
        ) 1;
      }

      .storage-calc__price-label {
        font-family: "Syne", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 13px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #e8d4bc;
      }

      .storage-calc__price {
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 34px;
        font-weight: 500;
        color: #8fd0ff;
        text-shadow:
          0 1px 0 rgba(0, 0, 0, 0.4),
          0 0 14px rgba(0, 170, 255, 0.35);
        line-height: 1;
      }

      .storage-calc__rate {
        width: 100%;
        margin: 4px 0 0;
        text-align: center;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 16px;
        color: rgba(170, 200, 220, 0.72);
      }

      /* Панель Company */
      .company-panel {
        position: absolute;
        top: 50%;
        left: 50%;
        width: min(780px, 96vw);
        max-height: min(88vh, 820px);
        padding: 26px 28px 22px;
        background:
          linear-gradient(
            165deg,
            rgba(28, 42, 58, 0.72) 0%,
            rgba(9, 11, 12, 0.78) 45%,
            rgba(14, 28, 42, 0.72) 100%
          );
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(150, 185, 210, 0.28);
        border-radius: 16px;
        box-shadow:
          0 20px 50px rgba(0, 0, 0, 0.6),
          inset 0 1px 0 rgba(200, 220, 235, 0.18),
          inset 0 -1px 0 rgba(80, 120, 150, 0.2),
          0 0 28px rgba(0, 140, 220, 0.12);
        z-index: 30;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        color: #fff;
        opacity: 0;
        transform: translate(-20%, -50%);
        pointer-events: none;
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-x: hidden;
        overflow-y: auto;
      }

      .company-panel.active {
        opacity: 1;
        transform: translate(-50%, -50%);
        pointer-events: all;
      }

      .company-panel .tariffs-close {
        position: absolute;
        top: 12px;
        right: 12px;
      }

      .company-panel .company-title {
        margin: 0 0 14px;
        padding-right: 28px;
        text-align: center;
        font-family: "Syne", "Avenir Next", "Segoe UI", sans-serif;
        font-size: clamp(28px, 3.2vw, 36px);
        font-weight: 500;
        letter-spacing: 1.2px;
        color: #d4e4f0;
        text-shadow:
          0 1px 0 rgba(255, 255, 255, 0.12),
          0 0 16px rgba(0, 160, 255, 0.25);
        padding-bottom: 10px;
        border-bottom: 2px solid transparent;
        border-image: linear-gradient(
          90deg,
          transparent 0%,
          rgba(255, 120, 40, 0.85) 18%,
          rgba(0, 170, 255, 0.75) 50%,
          rgba(180, 205, 220, 0.65) 82%,
          transparent 100%
        ) 1;
      }

      .company-content {
        opacity: 0;
        transform: translateX(-28px);
        transition: opacity 0.55s ease 0.15s, transform 0.55s ease 0.15s;
      }

      .company-panel.active .company-content {
        opacity: 1;
        transform: translateX(0);
      }

      .company-lead {
        margin: 0 0 16px;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: clamp(16px, 1.7vw, 20px);
        line-height: 1.45;
        color: rgba(215, 230, 240, 0.9);
        text-align: center;
      }

      .company-meta {
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 10px;
        margin: 0;
      }

      .company-meta div {
        min-width: 0;
        padding: 12px 14px;
        text-align: center;
        background:
          linear-gradient(
            180deg,
            rgba(55, 75, 95, 0.35) 0%,
            rgba(12, 18, 26, 0.82) 38%,
            rgba(18, 32, 48, 0.78) 100%
          );
        border: 1px solid rgba(150, 185, 210, 0.28);
        border-top: 2px solid rgba(255, 120, 40, 0.75);
        border-radius: 10px;
        box-shadow:
          inset 0 1px 0 rgba(210, 225, 240, 0.16),
          inset 0 -2px 6px rgba(0, 0, 0, 0.35),
          0 0 14px rgba(0, 120, 200, 0.08);
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
      }

      .company-meta div:hover {
        border-color: rgba(0, 170, 255, 0.45);
        border-top-color: rgba(255, 150, 60, 0.95);
        box-shadow:
          inset 0 1px 0 rgba(220, 235, 245, 0.22),
          0 0 22px rgba(0, 160, 255, 0.2),
          0 0 16px rgba(255, 120, 40, 0.12);
      }

      .company-meta div:first-child {
        grid-column: 1 / -1;
      }

      .company-meta div:nth-child(2),
      .company-meta div:nth-child(3) {
        grid-column: span 6;
      }

      .company-meta div:nth-child(4) {
        grid-column: span 4;
      }

      .company-meta div:nth-child(5) {
        grid-column: span 8;
      }

      .company-meta dt {
        margin: 0 0 5px;
        font-family: "Syne", "Avenir Next", "Segoe UI", sans-serif;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 1.1px;
        text-transform: uppercase;
        color: #e8d4bc;
        text-align: center;
      }

      .company-meta dd {
        margin: 0;
        font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
        font-size: clamp(21px, 2.1vw, 26px);
        font-weight: 500;
        line-height: 1.35;
        color: #d6e8f5;
        overflow-wrap: anywhere;
        word-break: break-word;
        text-align: center;
      }

      .company-meta a {
        color: #8fd0ff;
        text-decoration: none;
        text-shadow: 0 0 10px rgba(0, 160, 255, 0.2);
        overflow-wrap: anywhere;
        word-break: break-word;
      }

      .company-meta a:hover {
        color: #b8e4ff;
        text-decoration: underline;
      }

      @media (max-width: 720px) {
        .company-panel {
          padding: 14px 10px 10px;
          width: min(88vw, 340px);
          border-radius: 12px;
          transform: translate(-20%, calc(-50% - 8vh)) scale(1.25);
          transform-origin: center center;
        }

        .company-panel.active {
          transform: translate(-50%, calc(-50% - 8vh)) scale(1.25);
        }

        .company-panel .tariffs-close {
          top: 6px;
          right: 8px;
          font-size: 22px;
          width: 28px;
          height: 28px;
          line-height: 28px;
        }

        .company-panel .company-title {
          font-size: 16px;
          margin-bottom: 6px;
          padding-bottom: 6px;
          padding-right: 24px;
          letter-spacing: 0.6px;
        }

        .company-lead {
          font-size: 12px;
          margin-bottom: 8px;
          line-height: 1.3;
        }

        .company-meta {
          display: flex;
          flex-wrap: wrap;
          gap: 5px;
        }

        .company-meta > div:first-child {
          flex: 1 1 100%;
        }

        .company-meta > div:nth-child(2),
        .company-meta > div:nth-child(3) {
          flex: 1 1 calc(50% - 3px);
        }

        .company-meta div {
          padding: 6px 8px;
          border-radius: 8px;
        }

        .company-meta dt {
          font-size: 12px;
          letter-spacing: 0.6px;
          margin-bottom: 2px;
        }

        .company-meta dd {
          font-size: 15px;
          line-height: 1.2;
        }

        .company-meta__inn {
          flex: 0 0 auto;
          width: max-content;
          min-width: 7.6em;
          max-width: 38%;
          padding: 6px 8px;
        }

        .company-meta__contact {
          flex: 1 1 0;
          min-width: 0;
        }

        .company-meta__inn dd {
          font-size: 13px;
          overflow-wrap: normal;
          word-break: normal;
          white-space: nowrap;
        }

        .company-meta__contact dd,
        .company-meta__contact a {
          font-size: 12px;
          overflow-wrap: normal;
          word-break: normal;
          white-space: nowrap;
        }
      }

      @media (max-width: 420px) {
        .company-panel {
          padding: 12px 8px 8px;
          width: min(86vw, 300px);
        }

        .company-panel .company-title {
          font-size: 14px;
          margin-bottom: 5px;
          padding-bottom: 5px;
        }

        .company-lead {
          font-size: 11px;
          margin-bottom: 6px;
        }

        .company-meta {
          gap: 4px;
        }

        .company-meta div {
          padding: 5px 6px;
        }

        .company-meta dt {
          font-size: 11px;
        }

        .company-meta dd {
          font-size: 14px;
        }

        .company-meta__inn {
          min-width: 7.2em;
          max-width: 36%;
          padding: 5px 6px;
        }

        .company-meta__inn dd {
          font-size: 11px;
        }

        .company-meta__contact dd,
        .company-meta__contact a {
          font-size: 11px;
        }
      }

      @media (max-width: 720px) {
        /* Оставляем справа полосу под кнопки — логотип не пересекается с ними */
        .logo-stage {
          width: min(84vw, 84vh);
          height: min(84vw, 84vh);
        }

        .logo-container::before {
          width: min(44vw, 44vh);
          height: min(12vw, 12vh);
        }

        .shield-identity {
          top: 5.5%;
          width: min(86%, 360px);
        }

        .stone-btn {
          font-size: 12px;
          letter-spacing: 0.35px;
        }

        .tariffs-btn,
        .company-btn,
        .servers-btn,
        .licenses-btn,
        .ssl-btn,
        .domains-btn {
          top: calc(10px + 5vh);
          right: 8px;
          left: auto;
          min-width: 0;
          width: auto;
          max-width: min(144px, 37vw);
          padding: 9px 13px 10px;
          font-size: 12px;
          line-height: 1.15;
          box-sizing: border-box;
        }

        .cabinet-btn {
          top: calc(10px + 5vh);
          left: 8px;
          right: auto;
          min-width: 0;
          width: auto;
          max-width: min(144px, 37vw);
          padding: 9px 13px 10px;
          font-size: 11px;
          line-height: 1.15;
          box-sizing: border-box;
        }

        .tariffs-btn {
          top: calc(10px + 5vh);
          min-width: 0;
        }

        .servers-btn {
          top: calc(10px + 55px + 5vh);
          min-width: 0;
        }

        .licenses-btn {
          top: calc(10px + 110px + 5vh);
          min-width: 0;
          font-size: 11px;
          letter-spacing: 0.25px;
          padding: 9px 11px 10px;
        }

        .ssl-btn {
          top: calc(10px + 165px + 5vh);
          min-width: 0;
          font-size: 11px;
          letter-spacing: 0.2px;
          padding: 9px 11px 10px;
        }

        .domains-btn {
          top: calc(10px + 220px + 5vh);
          min-width: 0;
        }

        .company-btn {
          top: calc(10px + 275px + 5vh);
          min-width: 0;
        }

        .licenses-panel {
          padding: 10px 10px 8px;
          width: min(96vw, 1280px);
          max-height: min(90vh, 860px);
          height: min(90vh, 860px);
          top: 50%;
          bottom: auto;
        }

        .licenses-title {
          font-size: 20px;
        }

        .licenses-subtitle {
          font-size: 12px;
          margin-bottom: 8px;
          padding-bottom: 6px;
        }

        .licenses-columns {
          grid-template-columns: 1fr 1fr;
          gap: 8px;
        }

        .licenses-col {
          padding: 8px 8px 6px;
        }

        .licenses-col__title {
          font-size: 11px;
          margin-bottom: 4px;
        }

        .licenses-list li {
          font-size: 11px;
          padding: 3px 0;
          gap: 4px;
        }

        .licenses-list__price {
          font-size: 12px;
        }

        .licenses-list__price-wrap {
          gap: 6px;
        }

        .licenses-check input {
          width: 14px;
          height: 14px;
        }

        .licenses-check input:checked::after {
          left: 4px;
          top: 0;
          width: 4px;
          height: 8px;
        }

        .licenses-actions {
          flex-wrap: wrap;
          gap: 8px;
          margin-top: 6px;
          padding-top: 6px;
        }

        .licenses-actions__total {
          font-size: 11px;
        }

        .licenses-invoice-btn {
          padding: 7px 12px;
          font-size: 11px;
        }

        .licenses-note {
          font-size: 10px;
          margin-top: 6px;
        }

        .servers-panel {
          padding: 14px 10px 10px;
          width: min(98vw, 980px);
        }

        .servers-title {
          font-size: 22px;
        }

        .servers-subtitle {
          font-size: 15px;
          margin-bottom: 10px;
        }

        .servers-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 6px;
        }

        .server-card {
          padding: 10px 5px 8px;
        }

        .server-card__name {
          font-size: 12px;
          margin-bottom: 4px;
          padding-bottom: 4px;
        }

        .server-card__cpu {
          font-size: 14px;
        }

        .server-card__freq {
          font-size: 12px;
          margin-bottom: 4px;
        }

        .server-card__specs {
          font-size: 13px;
          margin-bottom: 6px;
        }

        .server-card__price {
          font-size: 18px;
        }

        .server-card__period {
          font-size: 12px;
        }

        .server-card__year,
        .server-card__badge {
          font-size: 12px;
        }

        .server-card .tariff-order-btn {
          margin-top: 8px;
          padding: 7px 8px;
          font-size: 12px;
        }

        .tariffs-panel {
          padding: 16px 12px 12px;
          width: min(96vw, 900px);
        }

        .tariffs-title {
          font-size: 20px;
          margin-bottom: 10px;
        }

        .tariffs-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 8px;
        }

        .tariff-card {
          padding: 10px 6px 8px;
        }

        .tariff-card__name {
          font-size: 10px;
          letter-spacing: 0.5px;
        }

        .tariff-card__storage {
          font-size: 16px;
          margin-bottom: 2px;
        }

        .tariff-card__speed {
          font-size: 12px;
          margin-bottom: 4px;
        }

        .tariff-card__price {
          font-size: 15px;
        }

        .tariff-order-btn {
          margin-top: 8px;
          padding: 7px 8px;
          font-size: 12px;
        }

        .storage-calc {
          margin-top: 10px;
          padding: 10px 10px 8px;
        }

        .storage-calc__value {
          font-size: 22px;
          margin-bottom: 4px;
        }

        .storage-calc__price {
          font-size: 22px;
        }

        .storage-calc__rate {
          font-size: 12px;
        }

        .tariffs-panel.active .tariff-card {
          transform: translateY(0);
        }

        .tariff-card {
          transform: translateY(16px);
        }

        /* Домены: крупнее, выше */
        #domains-panel {
          transform: translate(20%, calc(-50% + 2vh)) scale(1.05);
          transform-origin: center center;
        }

        #domains-panel.active {
          transform: translate(-50%, calc(-50% + 2vh)) scale(1.05);
        }

        /* SSL: все 3 тарифа, компактнее и ниже */
        #ssl-panel {
          transform: translate(20%, calc(-50% + 6vh)) scale(0.92);
          transform-origin: center center;
          width: min(96vw, 900px);
          padding: 14px 10px 10px;
        }

        #ssl-panel.active {
          transform: translate(-50%, calc(-50% + 6vh)) scale(0.92);
        }

        #ssl-panel .tariffs-grid {
          grid-template-columns: repeat(3, minmax(0, 1fr));
          gap: 8px;
        }

        #ssl-panel .tariff-card {
          display: flex;
          min-width: 0;
          padding: 10px 6px 8px;
        }

        #ssl-panel .tariff-card__storage {
          font-size: clamp(13px, 3.6vw, 18px);
          white-space: normal;
          overflow: visible;
          text-overflow: unset;
          line-height: 1.15;
        }

        #ssl-panel .tariff-card__speed {
          font-size: 11px;
          margin-bottom: 4px;
          padding-bottom: 4px;
        }

        #ssl-panel .tariff-card__price {
          font-size: 15px;
        }

        #ssl-panel .tariff-order-btn {
          margin-top: 6px;
          padding: 6px 6px;
          font-size: 11px;
          width: 100%;
        }

        /* На телефоне: при открытии таблиц — скрыть парящие кнопки */
        body:has(#tariffs-panel.active) .stone-btn,
        body:has(#servers-panel.active) .stone-btn,
        body:has(#licenses-panel.active) .stone-btn,
        body:has(#company-panel.active) .stone-btn,
        body:has(#domains-panel.active) .stone-btn,
        body:has(.form-container.active) .stone-btn:not(.cabinet-btn),
        body:has(.form-container.is-closing) .stone-btn:not(.cabinet-btn) {
          opacity: 0 !important;
          pointer-events: none !important;
          animation: none !important;
        }

        .org-profile__grid {
          grid-template-columns: 1fr;
        }

        .form-container.is-session {
          width: min(96vw, 760px);
          max-height: min(90vh, 920px);
        }

        .form-container.is-session:not(.is-cabinet) {
          width: min(248px, 86vw);
          max-height: none;
        }
      }

      @media (max-width: 420px) {
        .logo-stage {
          width: min(78vw, 78vh);
          height: min(78vw, 78vh);
        }

        .logo-container::before {
          width: min(40vw, 40vh);
          height: min(11vw, 11vh);
        }

        .tariffs-btn,
        .company-btn,
        .servers-btn,
        .licenses-btn,
        .ssl-btn,
        .domains-btn {
          right: 6px;
          max-width: min(124px, 35vw);
          padding: 8px 10px 9px;
          font-size: 11px;
        }

        .cabinet-btn {
          left: 6px;
          right: auto;
          max-width: min(124px, 35vw);
          padding: 8px 10px 9px;
          font-size: 10px;
          top: calc(8px + 5vh);
        }

        .tariffs-btn {
          top: calc(8px + 5vh);
        }

        .servers-btn {
          top: calc(8px + 50px + 5vh);
        }

        .licenses-btn {
          top: calc(8px + 100px + 5vh);
          font-size: 10px;
          padding: 8px 9px 9px;
        }

        .ssl-btn {
          top: calc(8px + 150px + 5vh);
          font-size: 10px;
          padding: 8px 9px 9px;
        }

        .domains-btn {
          top: calc(8px + 200px + 5vh);
        }

        .company-btn {
          top: calc(8px + 250px + 5vh);
        }
      }
    
