    .container {
      width: min(var(--max, 1320px), calc(100% - 56px));
      max-width: 100%;
      margin: 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 16px 26px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 800;
      border: 2px solid transparent;
      cursor: pointer;
      transition: 0.2s ease;
      white-space: nowrap;
      text-decoration: none;
    }

    .btn-primary { background: var(--orange, #ff4b1f); color: #fff; }
    .btn-primary:hover { background: var(--orange-dark, #e43d12); }

    header {
      background: #fff;
      border-bottom: 1px solid var(--line, #ece7e1);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      position: relative;
    }

    .logo {
      width: 178px;
      height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .logo picture {
      display: flex;
      align-items: center;
      width: 100%;
      height: 100%;
    }

    .logo img {
      width: 100%;
      max-height: 58px;
      object-fit: contain;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      font-size: 14px;
      font-weight: 700;
      flex: 1;
    }

    .desktop-nav a {
      color: inherit;
      text-decoration: none;
    }

    .desktop-nav a.active {
      color: var(--orange, #ff4b1f);
      position: relative;
    }

    .desktop-nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -28px;
      width: 100%;
      height: 2px;
      background: var(--orange, #ff4b1f);
    }

    .desktop-cta { display: inline-flex; }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line, #ece7e1);
      border-radius: 12px;
      background: #fff;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      padding: 0;
    }

    .menu-toggle span {
      width: 20px;
      height: 2px;
      background: var(--text, #111827);
      border-radius: 99px;
      transition: 0.2s ease;
    }

    .mobile-menu {
      display: none;
      background: #fff;
      border-top: 1px solid var(--line, #ece7e1);
      box-shadow: 0 20px 35px rgba(17, 24, 39, 0.08);
    }

    .mobile-menu-inner {
      width: min(var(--max, 1320px), calc(100% - 28px));
      margin: 0 auto;
      padding: 14px 0 18px;
      display: grid;
      gap: 8px;
    }

    .mobile-menu a {
      padding: 14px 12px;
      border-radius: 12px;
      font-weight: 800;
      color: #1f2937;
      text-decoration: none;
    }

    .mobile-menu a:hover,
    .mobile-menu a.active {
      background: #fff5ef;
      color: var(--orange, #ff4b1f);
    }

    .mobile-menu .btn {
      margin-top: 6px;
      width: 100%;
    }

    body.menu-open .mobile-menu { display: block; }
    body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
    body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    footer {
      background: #fff;
      padding: 40px 0 0;
      margin-top: 20px;
    }

    .footer-wrap {
      width: min(var(--max, 1320px), calc(100% - 56px));
      max-width: 100%;
      margin: 0 auto;
    }

    .footer-panel {
      background: #3d2b83;
      border-radius: 28px 28px 0 0;
      padding: 52px 64px 28px;
      color: #fff;
      overflow: hidden;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1.05fr 1.15fr 1.1fr;
      gap: 48px;
      align-items: start;
      margin-bottom: 42px;
    }

    .footer-grid > * { min-width: 0; }

    .footer-logo {
      width: min(212px, 100%);
      background: #fff;
      padding: 10px 14px;
      border-radius: 0;
      margin-left: 0;
    }

    .footer-logo img {
      width: 100%;
      max-height: 72px;
      object-fit: contain;
    }

    footer p,
    footer li,
    footer a {
      color: #fff;
      font-size: 14px;
      line-height: 1.45;
      overflow-wrap: anywhere;
      text-decoration: none;
    }

    footer ul {
      list-style: none;
      display: grid;
      gap: 7px;
      padding: 0;
      margin: 0;
    }

    footer h4 {
      margin: 0 0 16px;
      font-size: 16px;
      line-height: 1.2;
      font-weight: 900;
      text-transform: uppercase;
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.18);
      padding-top: 24px;
      color: #fff;
      font-size: 13px;
      text-align: center;
    }

    @media (max-width: 1100px) {
      .footer-wrap { width: calc(100% - 28px); }
      .footer-panel { padding: 42px 34px 26px; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .footer-logo { margin-left: 0; }
    }

    @media (max-width: 820px) {
      .container {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: 14px;
        padding-right: 14px;
      }

      .nav { min-height: 72px; gap: 12px; }
      .logo { width: 140px; justify-content: flex-start; }
      .desktop-nav, .desktop-cta { display: none; }
      .menu-toggle { display: inline-flex; }

      .footer-panel { border-radius: 22px 22px 0 0; padding: 32px 16px 24px; }
      .footer-wrap {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: 14px;
        padding-right: 14px;
      }
      .footer-grid { grid-template-columns: 1fr; gap: 26px; }
      .footer-logo { width: min(190px, 100%); }
    }

    @media (max-width: 420px) {
      .container,
      .footer-wrap {
        padding-left: 10px;
        padding-right: 20px;
      }
    }