/*
Theme Name: MK DEV Solutions
Theme URI: https://mkdevsolutions.sk
Author: MK DEV Solutions
Description: Moderná WordPress šablóna
Version: 1.0.0
Text Domain: mkdev-solutions
*/

/* =========================================================
   I. ZÁKLADNÉ NASTAVENIA
========================================================= */

    /* ==============================
       I.I RESET
    ============================== */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* ==============================
       I.II GLOBAL
    ============================== */

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, Arial, sans-serif;
      background: #0b1120;
      color: #ffffff;
      line-height: 1.6;
    }

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

    button {
      font-family: inherit;
      border: none;
      cursor: pointer;
    }

    img {
      max-width: 100%;
      display: block;
    }

/* =========================================================
   II. HEADER
========================================================= */

    /* ==============================
       II.I HEADER WRAPPER
    ============================== */

    .site-header {
      position: fixed;
      top: 26px;
      left: 0;
      width: 100%;
      z-index: 999;
      background: rgba(8, 13, 28, 0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-header-inner {
      max-width: 1300px;
      margin: 0 auto;
      padding: 18px 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    /* ==============================
       II.II HEADER LOGO
    ============================== */

    .site-logo {
      display: flex;
      align-items: center;
      min-width: 220px;
      height: 55px;
      overflow: visible;
      margin-left: -380px;
    }

    .site-logo-img {
      width: 250px;
      height: auto;
      transform: scale(1.25);
      transform-origin: left center;
    }

    /* ==============================
       II.III HEADER NAVIGATION
    ============================== */

    .site-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 34px;
      margin-left: 120px;
    }

    .site-nav a {
      color: #e5e7eb;
      font-size: 15px;
      font-weight: 600;
      transition: 0.25s ease;
    }

    .site-nav a:hover {
      color: #60a5fa;
    }

    /* ==============================
       II.IV HEADER USER AREA
    ============================== */

    .user-area {
      min-width: 60px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 14px;
      margin-right: -190px;
      position: relative;
    }

    /* ==============================
       II.V HEADER PROFILE BUTTON
    ============================== */

    .profile-icon-btn {
      width: 46px;
      height: 46px;
      padding: 0;
      border-radius: 50%;
      background: linear-gradient(135deg, #2563eb, #38bdf8);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transition: 0.25s ease;
      box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
      color: #ffffff;
      font-size: 15px;
      font-weight: 900;
    }

    .profile-icon-btn:hover {
      transform: translateY(-2px);
    }

    /* ==============================
       II.VI HEADER PROFILE IMAGE
    ============================== */

    .profile-icon-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    /* ==============================
       II.VII LOGGED USER PROFILE
    ============================== */

    .user-profile {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #ffffff;
      background: transparent;
    }

    .user-avatar {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: linear-gradient(135deg, #2563eb, #38bdf8);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 13px;
      font-weight: 800;
    }

    .user-name {
      color: #e5e7eb;
      font-size: 14px;
      font-weight: 600;
    }

    /* ==============================
       II.VIII LOGIN BUTTON
    ============================== */

    .login-btn {
      padding: 11px 20px;
      border-radius: 999px;
      background: linear-gradient(135deg, #2563eb, #3b82f6);
      color: #ffffff;
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
      transition: 0.25s ease;
    }

    .login-btn:hover {
      transform: translateY(-2px);
    }

    /* ==============================
       II.IX PROFILE DROPDOWN WRAPPER
    ============================== */

    .profile-dropdown-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ==============================
       II.X PROFILE DROPDOWN BOX
    ============================== */

    .profile-dropdown {
      position: absolute;
      top: 58px;
      right: 0;
      width: 210px;
      padding: 10px;
      border-radius: 18px;
      background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.22), transparent 42%),
        rgba(8, 13, 28, 0.98);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(16px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-8px) scale(0.96);
      transform-origin: top right;
      transition:
        transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.22s ease,
        visibility 0.22s ease;
      z-index: 2000;
    }

    .profile-dropdown.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0) scale(1);
    }

    .profile-dropdown::before {
      content: "";
      position: absolute;
      top: -7px;
      right: 17px;
      width: 14px;
      height: 14px;
      background: rgba(8, 13, 28, 0.98);
      border-left: 1px solid rgba(255, 255, 255, 0.12);
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      transform: rotate(45deg);
    }

    /* ==============================
       II.XI PROFILE DROPDOWN HEADER
    ============================== */

    .profile-dropdown-header {
      padding: 10px 12px 12px;
      margin-bottom: 6px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .profile-dropdown-name {
      display: block;
      color: #ffffff;
      font-size: 14px;
      font-weight: 800;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* ==============================
       II.XII PROFILE DROPDOWN LINKS
    ============================== */

    .profile-dropdown-link {
      display: flex;
      align-items: center;
      width: 100%;
      padding: 11px 12px;
      border-radius: 12px;
      color: #dbeafe;
      font-size: 14px;
      font-weight: 700;
      transition: 0.22s ease;
    }

    .profile-dropdown-link:hover {
      background: rgba(59, 130, 246, 0.15);
      color: #ffffff;
      transform: translateX(3px);
    }

    .profile-dropdown-logout {
      color: #fecaca;
    }

    .profile-dropdown-logout:hover {
      background: rgba(239, 68, 68, 0.14);
      color: #ffffff;
    }

/* =========================================================
   III. HERO SECTION
========================================================= */

    /* ==============================
       III.I HERO WRAPPER
    ============================== */

    .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 140px 30px 80px;
      background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.25), transparent 35%),
        radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.2), transparent 35%),
        linear-gradient(180deg, #0b1120 0%, #111827 100%);
    }

    /* ==============================
       III.II HERO CONTENT
    ============================== */

    .hero-content {
      display: none;
    }

/* =========================================================
   IV. AUTH MODAL
========================================================= */

    /* ==============================
       IV.I MODAL WRAPPER + ANIMATION
    ============================== */

    .auth-modal {
      position: fixed;
      inset: 0;
      z-index: 5000;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 90px 24px 40px;
      overflow-y: auto;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .auth-modal.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .auth-modal-overlay {
      position: absolute;
      inset: 0;
      background: rgba(2, 6, 23, 0.78);
      backdrop-filter: blur(10px);
    }

    /* ==============================
       IV.II MODAL BOX + POP EFFECT
    ============================== */

    .auth-modal-box {
      position: relative;
      width: 100%;
      max-width: 420px;
      max-height: 78vh;
      overflow-y: auto;
      padding: 26px;
      border-radius: 28px;
      background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.25), transparent 38%),
        rgba(8, 13, 28, 0.96);
      border: 1px solid rgba(255, 255, 255, 0.11);
      box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
      scrollbar-width: thin;
      scrollbar-color: #38bdf8 rgba(15, 23, 42, 0.45);
      transform: translate(920px, -120px) scale(0.15);
      transform-origin: top right;
      opacity: 0;
      transition:
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.55s ease;
    }

    .auth-modal.active .auth-modal-box {
      transform: translate(0, 0) scale(1);
      opacity: 1;
    }

    /* ==============================
       IV.III MODAL SCROLLBAR
    ============================== */

    .auth-modal-box::-webkit-scrollbar {
      width: 8px;
    }

    .auth-modal-box::-webkit-scrollbar-track {
      background: rgba(15, 23, 42, 0.45);
      border-radius: 999px;
      margin: 18px 0;
    }

    .auth-modal-box::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, #2563eb, #38bdf8);
      border-radius: 999px;
    }

    .auth-modal-box::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, #1d4ed8, #0ea5e9);
    }

    /* ==============================
       IV.IV MODAL CLOSE BUTTON
    ============================== */

    .auth-modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
      font-size: 26px;
      line-height: 1;
    }

    /* ==============================
       IV.V MODAL HEADER
    ============================== */

    .auth-modal-header {
      text-align: center;
      margin-bottom: 18px;
    }

    .auth-modal-logo {
      width: 105px;
      height: auto;
      margin: 0 auto 18px;
    }

    .auth-modal-header h2 {
      font-size: 22px;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .auth-modal-header p {
      color: #94a3b8;
      font-size: 14px;
    }

    /* ==============================
       IV.VI LOGIN / REGISTER TABS
    ============================== */

    .auth-tabs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      padding: 6px;
      margin-bottom: 16px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
    }

    .auth-tab {
      padding: 12px 14px;
      border-radius: 999px;
      background: transparent;
      color: #94a3b8;
      font-size: 14px;
      font-weight: 800;
    }

    .auth-tab.active {
      background: linear-gradient(135deg, #2563eb, #38bdf8);
      color: #ffffff;
    }

    /* ==============================
       IV.VII ACCOUNT TYPE SWITCH
    ============================== */

    .account-type-switch {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      padding: 6px;
      margin-bottom: 20px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
    }

    .account-type-btn {
      padding: 12px 14px;
      border-radius: 999px;
      background: transparent;
      color: #94a3b8;
      font-size: 14px;
      font-weight: 800;
      transition: 0.25s ease;
    }

    .account-type-btn.active {
      background: linear-gradient(135deg, #2563eb, #38bdf8);
      color: #ffffff;
    }

    /* ==============================
       IV.VIII REGISTER FIELD GROUPS
    ============================== */

    .register-fields {
      display: none;
      flex-direction: column;
      gap: 15px;
      margin-bottom: 15px;
    }

    .register-fields.active {
      display: flex;
    }

    /* ==============================
       IV.IX AUTH FORMS
    ============================== */

    .auth-form {
      display: none;
    }

    .auth-form.active {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .auth-form label {
      display: flex;
      flex-direction: column;
      gap: 7px;
      color: #dbeafe;
      font-size: 13px;
      font-weight: 700;
    }

    .auth-form input {
      width: 100%;
      height: 43px;
      padding: 0 15px;
      border-radius: 14px;
      outline: none;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.25);
      color: #ffffff;
      font-size: 15px;
    }

    .auth-form input:focus {
      border-color: #38bdf8;
      box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
    }

    /* ==============================
       IV.X AUTH BUTTONS & LINKS
    ============================== */

    .auth-submit-btn {
      height: 45px;
      margin-top: 6px;
      border-radius: 14px;
      background: linear-gradient(135deg, #2563eb, #38bdf8);
      color: #ffffff;
      font-size: 15px;
      font-weight: 900;
      transition: 0.25s ease;
    }

    .auth-submit-btn:hover {
      transform: translateY(-2px);
    }

    .auth-small-link {
      margin-top: 6px;
      color: #93c5fd;
      font-size: 13px;
      text-align: center;
    }

    .auth-note {
      color: #94a3b8;
      font-size: 13px;
      text-align: center;
    }

/* =========================================================
   V. FOOTER
========================================================= */

    /* ==============================
       V.I FOOTER WRAPPER
    ============================== */

    .site-footer {
      display: none;
    }

/* =========================================================
   VI. RESPONSIVE
========================================================= */

    /* ==============================
       VI.I TABLET
    ============================== */

    @media (max-width: 900px) {
      .site-header-inner {
        flex-direction: column;
        gap: 18px;
      }

      .site-logo {
        justify-content: center;
        margin-left: 0;
      }

      .site-nav {
        flex-wrap: wrap;
        gap: 18px;
        margin-left: 0;
      }

      .user-area {
        justify-content: center;
        margin-right: 0;
      }

      .profile-dropdown {
        right: 50%;
        transform: translate(50%, -8px) scale(0.96);
      }

      .profile-dropdown.active {
        transform: translate(50%, 0) scale(1);
      }

      .profile-dropdown::before {
        right: 50%;
        transform: translateX(50%) rotate(45deg);
      }
    }

    /* ==============================
       VI.II MOBILE
    ============================== */

    @media (max-width: 480px) {
      .site-header-inner {
        padding: 16px 18px;
      }

      .site-logo-img {
        width: 130px;
      }

      .site-nav {
        gap: 14px;
      }

      .site-nav a {
        font-size: 14px;
      }

      .auth-modal-box {
        padding: 28px 20px;
        border-radius: 22px;
      }

      .profile-dropdown {
        width: 190px;
      }
    }
/* =========================================================
   VII. DASHBOARD PAGE
========================================================= */

    /* ==============================
       VII.I DASHBOARD PAGE WRAPPER
    ============================== */

    .dashboard-page {
      min-height: 100vh;
      padding-top: 170px;
      padding-bottom: 80px;
      background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 35%),
        radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.15), transparent 35%),
        linear-gradient(180deg, #0b1120 0%, #111827 100%);
    }

    /* ==============================
       VII.II DASHBOARD CONTAINER
    ============================== */

    .dashboard-container {
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 30px;
    }

    /* ==============================
       VII.III DASHBOARD HERO
    ============================== */

    .dashboard-hero {
      margin-bottom: 50px;
    }

    .dashboard-badge {
      display: inline-block;
      padding: 10px 18px;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.15);
      border: 1px solid rgba(96, 165, 250, 0.2);
      color: #93c5fd;
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .dashboard-hero h1 {
      font-size: 52px;
      line-height: 1.1;
      font-weight: 900;
      margin-bottom: 18px;
      color: #ffffff;
    }

    .dashboard-description {
      max-width: 720px;
      font-size: 18px;
      color: #94a3b8;
    }

    /* ==============================
       VII.IV DASHBOARD GRID
    ============================== */

    .dashboard-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    /* ==============================
       VII.V DASHBOARD CARDS
    ============================== */

    .dashboard-card {
      padding: 32px;
      border-radius: 24px;
      background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 35%),
        rgba(8, 13, 28, 0.88);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(18px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
      transition: 0.25s ease;
    }

    .dashboard-card:hover {
      transform: translateY(-6px);
      border-color: rgba(56, 189, 248, 0.25);
    }

    .dashboard-card h3 {
      font-size: 24px;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 14px;
    }

    .dashboard-card p {
      font-size: 15px;
      line-height: 1.7;
      color: #94a3b8;
    }

/* =========================================================
   VIII. SETTINGS PAGE
========================================================= */

    /* ==============================
       VIII.I SETTINGS HERO
    ============================== */

    .settings-hero {
      margin-bottom: 50px;
    }

    /* ==============================
       VIII.III SETTINGS GRID
    ============================== */

    .settings-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

  /* ==============================
    VIII.IV SETTINGS CARD
  ============================== */

  .settings-card {
    padding: 32px;
    border-radius: 24px;
    background:
      radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 35%),
      rgba(8, 13, 28, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  }

    /* ==============================
       VIII.II SETTINGS WINDOW SECTION
    ============================== */

    .settings-window-section {
      width: 100%;
    }

    /* ==============================
       VIII.III SETTINGS WINDOW
    ============================== */

    .settings-window {
      width: 100%;
      min-height: 680px;
      display: grid;
      grid-template-columns: 290px 1fr;
      border-radius: 30px;
      overflow: hidden;
      background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 36%),
        rgba(8, 13, 28, 0.92);
      border: 1px solid rgba(255, 255, 255, 0.09);
      box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(20px);
    }

    /* ==============================
       VIII.IV SETTINGS SIDEBAR
    ============================== */

    .settings-sidebar {
      padding: 28px;
      background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.2), transparent 38%),
        rgba(2, 6, 23, 0.55);
      border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .settings-sidebar-header {
      margin-bottom: 28px;
    }

    .settings-sidebar-badge {
      display: inline-block;
      padding: 8px 13px;
      margin-bottom: 14px;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.16);
      border: 1px solid rgba(96, 165, 250, 0.22);
      color: #93c5fd;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.08em;
    }

    .settings-sidebar-header h2 {
      color: #ffffff;
      font-size: 28px;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .settings-sidebar-header p {
      color: #94a3b8;
      font-size: 14px;
      line-height: 1.6;
    }

    /* ==============================
       VIII.V SETTINGS MENU
    ============================== */

    .settings-menu {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .settings-menu-item {
      width: 100%;
      min-height: 48px;
      padding: 12px 14px;
      border-radius: 15px;
      background: transparent;
      color: #cbd5e1;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      font-weight: 800;
      text-align: left;
      transition: 0.22s ease;
    }

    .settings-menu-item span {
      width: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .settings-menu-item:hover {
      background: rgba(59, 130, 246, 0.12);
      color: #ffffff;
      transform: translateX(3px);
    }

    .settings-menu-item.active {
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(56, 189, 248, 0.85));
      color: #ffffff;
      box-shadow: 0 12px 32px rgba(37, 99, 235, 0.28);
    }

    .settings-menu-item.danger {
      color: #fecaca;
    }

    .settings-menu-item.danger:hover {
      background: rgba(239, 68, 68, 0.12);
      color: #ffffff;
    }

    .settings-menu-item.danger.active {
      background: linear-gradient(135deg, rgba(220, 38, 38, 0.95), rgba(248, 113, 113, 0.82));
      color: #ffffff;
    }

    /* ==============================
       VIII.VI SETTINGS PANEL
    ============================== */

    .settings-panel {
      padding: 40px;
      min-width: 0;
    }

    .settings-tab-panel {
      display: none;
      animation: settingsPanelFade 0.32s ease;
    }

    .settings-tab-panel.active {
      display: block;
    }

    @keyframes settingsPanelFade {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

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

    /* ==============================
       VIII.VII SETTINGS PANEL HEADER
    ============================== */

    .settings-panel-header {
      margin-bottom: 30px;
    }

    .settings-panel-header h1 {
      color: #ffffff;
      font-size: 42px;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .settings-panel-header p {
      max-width: 680px;
      color: #94a3b8;
      font-size: 16px;
      line-height: 1.7;
    }

    .danger-badge {
      background: rgba(239, 68, 68, 0.16);
      border-color: rgba(248, 113, 113, 0.25);
      color: #fecaca;
    }

    /* ==============================
       VIII.VIII SETTINGS INFO GRID
    ============================== */

    .settings-info-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .settings-info-card {
      padding: 22px;
      border-radius: 20px;
      background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 40%),
        rgba(15, 23, 42, 0.68);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .settings-info-card span {
      display: block;
      margin-bottom: 8px;
      color: #94a3b8;
      font-size: 13px;
      font-weight: 800;
    }

    .settings-info-card strong {
      display: block;
      color: #ffffff;
      font-size: 18px;
      font-weight: 900;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    /* ==============================
       VIII.IX SETTINGS FORM GRID
    ============================== */

    .settings-form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      margin-bottom: 24px;
    }

    .settings-field {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .settings-field.full {
      grid-column: span 2;
    }

    .settings-field label {
      color: #dbeafe;
      font-size: 13px;
      font-weight: 800;
    }

    .settings-field input,
    .settings-field select {
      width: 100%;
      height: 48px;
      padding: 0 15px;
      border-radius: 15px;
      outline: none;
      background: rgba(15, 23, 42, 0.92);
      border: 1px solid rgba(148, 163, 184, 0.24);
      color: #ffffff;
      font-size: 15px;
      transition: 0.22s ease;
    }

    .settings-field input::placeholder {
      color: #64748b;
    }

    .settings-field input:focus,
    .settings-field select:focus {
      border-color: #38bdf8;
      box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
    }

    .settings-note {
      margin: 6px 0 22px;
      color: #94a3b8;
      font-size: 14px;
      line-height: 1.7;
    }

    /* ==============================
       VIII.X SETTINGS BUTTONS
    ============================== */

    .settings-save-btn {
      height: 48px;
      padding: 0 24px;
      border-radius: 15px;
      background: linear-gradient(135deg, #2563eb, #38bdf8);
      color: #ffffff;
      font-size: 14px;
      font-weight: 900;
      transition: 0.25s ease;
      box-shadow: 0 12px 32px rgba(37, 99, 235, 0.25);
    }

    .settings-save-btn:hover {
      transform: translateY(-2px);
    }

    .settings-danger-btn {
      height: 48px;
      padding: 0 24px;
      border-radius: 15px;
      background: linear-gradient(135deg, #dc2626, #f87171);
      color: #ffffff;
      font-size: 14px;
      font-weight: 900;
      transition: 0.25s ease;
      box-shadow: 0 12px 32px rgba(220, 38, 38, 0.25);
    }

    .settings-danger-btn:hover {
      transform: translateY(-2px);
    }

    /* ==============================
       VIII.XI DANGER BOX
    ============================== */

    .danger-box {
      padding: 26px;
      border-radius: 22px;
      background:
        radial-gradient(circle at top right, rgba(239, 68, 68, 0.16), transparent 36%),
        rgba(127, 29, 29, 0.16);
      border: 1px solid rgba(248, 113, 113, 0.18);
    }

    .danger-box h3 {
      color: #ffffff;
      font-size: 22px;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .danger-box p {
      max-width: 680px;
      color: #fecaca;
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    /* ==============================
       VIII.XII SETTINGS RESPONSIVE
    ============================== */

    @media (max-width: 1000px) {
      .settings-window {
        grid-template-columns: 1fr;
      }

      .settings-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .settings-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 700px) {
      .settings-page {
        padding-top: 140px;
      }

      .settings-panel {
        padding: 26px;
      }

      .settings-panel-header h1 {
        font-size: 32px;
      }

      .settings-info-grid,
      .settings-form-grid {
        grid-template-columns: 1fr;
      }

      .settings-field.full {
        grid-column: span 1;
      }

      .settings-menu {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .settings-window {
        border-radius: 24px;
      }

      .settings-sidebar {
        padding: 22px;
      }

      .settings-panel {
        padding: 22px;
      }
    }
/* =========================================================
   IX. HOMEPAGE HERO
========================================================= */

    /* ==============================
       IX.I HOMEPAGE WRAPPER
    ============================== */

    .homepage {
      min-height: 100vh;
      background: #050b18;
      overflow: hidden;
    }

    /* ==============================
       IX.II HERO SECTION
    ============================== */

    .mk-hero-section {
      position: relative;
      min-height: 100vh;
      padding: 165px 42px 70px;
      background:
        radial-gradient(circle at 78% 25%, rgba(37, 99, 235, 0.26), transparent 32%),
        radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.12), transparent 34%),
        linear-gradient(180deg, #050b18 0%, #071225 52%, #0b1730 100%);
      overflow: hidden;
    }

    .mk-hero-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(59, 130, 246, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.045) 1px, transparent 1px);
      background-size: 90px 90px;
      mask-image: radial-gradient(circle at center, black 0%, transparent 75%);
      pointer-events: none;
    }

    .mk-hero-section::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(5, 11, 24, 0.94) 0%, rgba(5, 11, 24, 0.52) 46%, rgba(5, 11, 24, 0.26) 100%);
      pointer-events: none;
    }

    .mk-hero-bg-glow {
      position: absolute;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      filter: blur(70px);
      opacity: 0.38;
      pointer-events: none;
      z-index: 1;
    }

    .mk-hero-bg-glow-one {
      top: 120px;
      right: 10%;
      background: rgba(37, 99, 235, 0.72);
    }

    .mk-hero-bg-glow-two {
      left: -160px;
      bottom: -160px;
      background: rgba(56, 189, 248, 0.38);
    }

    /* ==============================
       IX.III HERO CONTAINER
    ============================== */

    .mk-hero-container {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1450px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      align-items: center;
      gap: 58px;
    }

    /* ==============================
       IX.IV HERO LEFT CONTENT
    ============================== */

    .mk-hero-left {
      max-width: 660px;
    }

    .mk-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 11px 18px;
      margin-bottom: 30px;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.13);
      border: 1px solid rgba(96, 165, 250, 0.18);
      color: #38bdf8;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .mk-hero-title {
      margin-bottom: 26px;
      color: #ffffff;
      font-size: clamp(46px, 5.4vw, 82px);
      line-height: 1.05;
      font-weight: 950;
      letter-spacing: 0;
      text-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
    }

    .mk-hero-title span {
      color: #2f7cff;
      text-shadow: 0 0 32px rgba(47, 124, 255, 0.42);
    }

    .mk-hero-description {
      max-width: 600px;
      margin-bottom: 34px;
      color: #cbd5e1;
      font-size: 20px;
      line-height: 1.75;
    }

    .mk-hero-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .mk-hero-primary-btn,
    .mk-hero-secondary-btn {
      min-height: 58px;
      padding: 0 30px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      font-size: 16px;
      font-weight: 900;
      transition: 0.26s ease;
    }

    .mk-hero-primary-btn {
      background: linear-gradient(135deg, #2563eb, #0ea5e9);
      color: #ffffff;
      box-shadow: 0 18px 42px rgba(37, 99, 235, 0.36);
    }

    .mk-hero-primary-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 56px rgba(37, 99, 235, 0.48);
    }

    .mk-hero-secondary-btn {
      background: rgba(255, 255, 255, 0.035);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.22);
    }

    .mk-hero-secondary-btn:hover {
      transform: translateY(-3px);
      border-color: rgba(56, 189, 248, 0.55);
      background: rgba(56, 189, 248, 0.08);
    }

    /* ==============================
       IX.V HERO RIGHT VISUAL
    ============================== */

    .mk-hero-right {
      position: relative;
      min-height: 540px;
      display: flex;
      align-items: center;
      justify-content: center;
      perspective: 1300px;
    }

    .mk-laptop-card {
      position: relative;
      width: min(760px, 100%);
      min-height: 430px;
      padding: 26px;
      border-radius: 30px;
      background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.2), transparent 36%),
        linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.96));
      border: 1px solid rgba(148, 163, 184, 0.24);
      box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.52),
        0 0 80px rgba(37, 99, 235, 0.16);
      transform: rotateY(-12deg) rotateX(5deg) rotateZ(-1deg);
      transform-origin: center;
      overflow: hidden;
    }

    .mk-laptop-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 22%, transparent 70%, rgba(59, 130, 246, 0.08));
      pointer-events: none;
    }

    .mk-laptop-topbar {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .mk-laptop-topbar strong {
      display: block;
      color: #ffffff;
      font-size: 18px;
      font-weight: 950;
      line-height: 1;
    }

    .mk-laptop-topbar span {
      display: block;
      margin-top: 4px;
      color: #93c5fd;
      font-size: 12px;
      font-weight: 800;
    }

    .mk-laptop-avatar {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex !important;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #2563eb, #38bdf8);
      color: #ffffff !important;
      font-size: 13px !important;
      font-weight: 950 !important;
      box-shadow: 0 12px 26px rgba(37, 99, 235, 0.36);
    }

    .mk-laptop-dashboard {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 150px 1fr;
      gap: 18px;
    }

    .mk-laptop-sidebar {
      display: flex;
      flex-direction: column;
      gap: 9px;
      padding: 14px;
      border-radius: 20px;
      background: rgba(2, 6, 23, 0.55);
      border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .mk-laptop-sidebar span {
      padding: 10px 12px;
      border-radius: 12px;
      color: #94a3b8;
      font-size: 12px;
      font-weight: 800;
    }

    .mk-laptop-sidebar span.active {
      background: linear-gradient(135deg, #2563eb, #38bdf8);
      color: #ffffff;
    }

    .mk-laptop-main {
      min-width: 0;
      padding: 18px;
      border-radius: 22px;
      background: rgba(15, 23, 42, 0.62);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mk-laptop-label {
      color: #38bdf8;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 6px;
    }

    .mk-laptop-main h3 {
      color: #ffffff;
      font-size: 24px;
      line-height: 1.1;
      margin-bottom: 18px;
    }

    .mk-laptop-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 18px;
    }

    .mk-laptop-stats div {
      padding: 16px;
      border-radius: 18px;
      background: rgba(2, 6, 23, 0.48);
      border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .mk-laptop-stats span {
      display: block;
      color: #94a3b8;
      font-size: 11px;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .mk-laptop-stats strong {
      color: #ffffff;
      font-size: 28px;
      line-height: 1;
    }

    .mk-laptop-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 16px;
      border-radius: 18px;
      background: rgba(2, 6, 23, 0.42);
      border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .mk-laptop-list p {
      color: #ffffff;
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 2px;
    }

    .mk-laptop-list span {
      color: #94a3b8;
      font-size: 12px;
      font-weight: 700;
    }

    

    /* ==============================
       IX.VII HERO FEATURES
    ============================== */

      .mk-hero-features {
        position: relative;
        z-index: 3;
        width: min(1450px, 100%);
        margin: 48px auto 0;
        padding: 18px;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        border-radius: 24px;
        background: rgba(8, 13, 28, 0.72);
        border: 1px solid rgba(148, 163, 184, 0.16);
        backdrop-filter: blur(18px);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
      }

      .mk-hero-feature {
        display: grid;
        grid-template-columns: 54px minmax(0, 1fr);
        align-items: flex-start;
        gap: 16px;
        min-width: 0;
        padding: 18px 24px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
      }

      .mk-hero-feature:last-child {
        border-right: none;
      }

      .mk-hero-feature > span {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;
        border-radius: 15px;
        background:
          radial-gradient(circle at top right, rgba(56, 189, 248, 0.30), transparent 45%),
          rgba(37, 99, 235, 0.28);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 23px;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
      }

      .mk-hero-feature h3 {
        color: #ffffff;
        font-size: clamp(16px, 1.05vw, 18px);
        line-height: 1.24;
        margin-bottom: 8px;
        font-weight: 900;
        max-width: 16rem;
      }

      .mk-hero-feature p {
        color: #cbd5e1;
        font-size: 14px;
        line-height: 1.6;
        max-width: 19rem;
      }

      /* ==============================
      IX.VIII HERO RESPONSIVE
    ============================== */

    @media (max-width: 1200px) {
      .mk-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .mk-hero-left {
        max-width: 780px;
      }

      .mk-hero-right {
        min-height: 470px;
      }

      .mk-hero-features {
        grid-template-columns: repeat(2, 1fr);
        width: min(920px, 100%);
      }

      .mk-hero-feature:nth-child(2) {
        border-right: none;
      }

      .mk-hero-feature:nth-child(1),
      .mk-hero-feature:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
    }

    @media (max-width: 768px) {
      .mk-hero-section {
        padding: 190px 20px 60px;
      }

      .mk-hero-title {
        font-size: 44px;
      }

      .mk-hero-description {
        font-size: 17px;
      }

      .mk-hero-right {
        min-height: auto;
      }

      .mk-laptop-card {
        transform: none;
        min-height: auto;
      }

      .mk-laptop-dashboard {
        grid-template-columns: 1fr;
      }

      .mk-laptop-sidebar {
        display: none;
      }

      .mk-laptop-stats {
        grid-template-columns: 1fr;
      }

   

      .mk-hero-features {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 14px;
      }

      .mk-hero-feature {
        grid-template-columns: 48px minmax(0, 1fr);
        padding: 18px 16px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .mk-hero-feature:last-child {
        border-bottom: none;
      }
    }

    @media (max-width: 480px) {
      .mk-hero-section {
        padding-top: 210px;
      }

      .mk-hero-badge {
        font-size: 11px;
      }

      .mk-hero-title {
        font-size: 36px;
      }

      .mk-hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .mk-hero-primary-btn,
      .mk-hero-secondary-btn {
        width: 100%;
      }

      .mk-laptop-card {
        padding: 18px;
        border-radius: 24px;
      }
    }

    /* =========================================================
             X. MOBILE HEADER + BURGER MENU FIX
      ========================================================= */

    .header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .mobile-burger {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
    }

    .mobile-burger span {
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: #ffffff;
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 6000;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: 0.25s ease;
    }

    .mobile-menu.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .mobile-menu-overlay {
      position: absolute;
      inset: 0;
      background: rgba(2, 6, 23, 0.78);
      backdrop-filter: blur(10px);
    }

    .mobile-menu-panel {
      position: absolute;
      top: 0;
      right: 0;
      width: min(360px, 88vw);
      height: 100%;
      padding: 24px;
      background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.22), transparent 42%),
        rgba(8, 13, 28, 0.98);
      border-left: 1px solid rgba(255, 255, 255, 0.1);
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-menu.active .mobile-menu-panel {
      transform: translateX(0);
    }

    .mobile-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 34px;
    }

    .mobile-menu-logo {
      width: 145px;
      height: auto;
    }

    .mobile-menu-close {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
      font-size: 28px;
    }

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

    .mobile-nav a {
      padding: 14px 16px;
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.04);
      color: #e5e7eb;
      font-size: 16px;
      font-weight: 800;
      transition: 0.22s ease;
    }

    .mobile-nav a:hover {
      background: rgba(59, 130, 246, 0.16);
      color: #ffffff;
    }

    .mobile-menu-footer {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .mobile-menu-btn {
      width: 100%;
      min-height: 48px;
      border-radius: 15px;
      background: linear-gradient(135deg, #2563eb, #38bdf8);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 900;
    }

    .mobile-menu-btn.secondary {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    body.mobile-menu-open {
      overflow: hidden;
    }

    @media (max-width: 900px) {
      .site-header {
        top: 12px;
        width: calc(100% - 24px);
        left: 12px;
        border-radius: 22px;
      }

      .site-header-inner {
        padding: 12px 14px;
        flex-direction: row;
        gap: 12px;
      }

      .site-logo {
        min-width: auto;
        height: 52px;
        margin-left: 0;
      }

      .site-logo-img {
        width: 155px;
        transform: none;
      }

      .desktop-nav,
      .site-nav {
        display: none;
      }

      .header-actions {
        margin-left: auto;
      }

      .user-area {
        margin-right: 0;
        min-width: auto;
      }

      .profile-icon-btn {
        width: 42px;
        height: 42px;
      }

      .mobile-burger {
        display: flex;
      }

      .profile-dropdown {
        right: 0;
        transform: translateY(-8px) scale(0.96);
      }

      .profile-dropdown.active {
        transform: translateY(0) scale(1);
      }

      .profile-dropdown::before {
        right: 17px;
        transform: rotate(45deg);
      }
    }

    @media (max-width: 480px) {
      .site-logo-img {
        width: 135px;
      }

      .profile-icon-btn,
      .mobile-burger {
        width: 40px;
        height: 40px;
      }

      .mobile-menu-panel {
        width: 90vw;
        padding: 22px;
      }

      .auth-modal {
        padding: 80px 14px 28px;
      }

      .auth-modal-box {
        max-width: 100%;
        max-height: 82vh;
        transform: translateY(22px) scale(0.96);
      }

      .auth-modal.active .auth-modal-box {
        transform: translateY(0) scale(1);
      }
    }

    /* =========================================================
        XI. INTERACTIVE HERO DASHBOARD
      ========================================================= */

    /* ==============================
      XI.I DASHBOARD TABS
    ============================== */

    .mk-dashboard-tab {
      width: 100%;
      padding: 11px 12px;
      border-radius: 12px;
      background: transparent;
      color: #94a3b8;
      font-size: 12px;
      font-weight: 800;
      text-align: left;
      transition: 0.22s ease;
    }

    .mk-dashboard-tab:hover {
      background: rgba(59, 130, 246, 0.12);
      color: #ffffff;
    }

    .mk-dashboard-tab.active {
      background: linear-gradient(135deg, #2563eb, #38bdf8);
      color: #ffffff;
      box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
    }

    /* ==============================
      XI.II DASHBOARD PANELS
    ============================== */

    .mk-dashboard-panel {
      display: none;
      animation: heroPanelFade 0.35s ease;
    }

    .mk-dashboard-panel.active {
      display: block;
    }

    @keyframes heroPanelFade {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

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

    /* ==============================
      XI.III PROJECT LIST
    ============================== */

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

    .mk-project-item {
      padding: 16px;
      border-radius: 18px;
      background: rgba(2, 6, 23, 0.48);
      border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .mk-project-item strong {
      display: block;
      color: #ffffff;
      font-size: 14px;
      font-weight: 900;
      margin-bottom: 6px;
    }

    .mk-project-item span {
      color: #38bdf8;
      font-size: 12px;
      font-weight: 800;
    }

    /* ==============================
      XI.IV SUPPORT
    ============================== */

    .mk-support-preview {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .mk-support-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px;
      border-radius: 16px;
      background: rgba(2, 6, 23, 0.48);
      border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .mk-support-row strong {
      color: #ffffff;
      font-size: 13px;
      font-weight: 900;
    }

    .mk-support-row span {
      color: #38bdf8;
      font-size: 11px;
      font-weight: 800;
    }

    /* ==============================
      XI.V LIVE STATUS
    ============================== */

    .mk-dashboard-status {
      position: absolute;
      top: 24px;
      right: 78px;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #94a3b8;
      font-size: 11px;
      font-weight: 800;
      z-index: 10;
    }

    .mk-dashboard-status span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #22c55e;
      animation: pulseLive 1.4s infinite;
    }

    @keyframes pulseLive {
      0% {
        transform: scale(1);
        opacity: 1;
      }

      70% {
        transform: scale(1.7);
        opacity: 0;
      }

      100% {
        opacity: 0;
      }
    }

    /* ==============================
      XI.VI FLOAT ANIMATION
    ============================== */

    .mk-interactive-dashboard {
      animation: dashboardFloat 6s ease-in-out infinite;
    }

    

    @keyframes dashboardFloat {
      0% {
        transform: rotateY(-12deg) rotateX(5deg) rotateZ(-1deg) translateY(0);
      }

      50% {
        transform: rotateY(-12deg) rotateX(5deg) rotateZ(-1deg) translateY(-10px);
      }

      100% {
        transform: rotateY(-12deg) rotateX(5deg) rotateZ(-1deg) translateY(0);
      }
    }

/* =========================================================
   XII. HERO FINAL CLEAN FIX
========================================================= */

.mk-hero-section {
  overflow: hidden;
}

.mk-hero-container {
  align-items: center;
}

.mk-hero-right {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1300px;
}

.mk-laptop-card {
  position: relative;
  width: min(760px, 100%);
  margin: 0;
  transform: rotateY(-12deg) rotateX(5deg) rotateZ(-1deg);
}

.mk-interactive-dashboard {
  animation: dashboardFloat 6s ease-in-out infinite;
}

.mk-hero-features {
  position: relative;
  z-index: 3;
  margin-top: 60px;
}

/* ==============================
   XII.I REMOVE OLD PHONE CARD SAFELY
============================== */

.mk-phone-card,
.mk-phone-card-live {
  display: none !important;
}

/* ==============================
   XII.II HERO DASHBOARD BUTTON FIX
============================== */

.mk-laptop-sidebar .mk-dashboard-tab {
  appearance: none;
  border: 0;
  outline: 0;
}

.mk-laptop-sidebar .mk-dashboard-tab.active {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff;
}

/* ==============================
   XII.III HERO RESPONSIVE CLEAN
============================== */

@media (max-width: 1200px) {
  .mk-hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mk-hero-left {
    max-width: 820px;
  }

  .mk-hero-right {
    justify-content: center;
    min-height: 500px;
  }

  .mk-laptop-card {
    width: 100%;
    max-width: 760px;
  }

  .mk-hero-features {
    margin-top: 45px;
  }
}

@media (max-width: 768px) {
  .mk-hero-section {
    padding: 185px 20px 60px;
  }

  .mk-hero-container {
    gap: 36px;
  }

  .mk-hero-title {
    font-size: 44px;
  }

  .mk-hero-description {
    font-size: 17px;
  }

  .mk-hero-right {
    min-height: auto;
  }

  .mk-laptop-card,
  .mk-interactive-dashboard {
    width: 100%;
    transform: none;
    animation: none;
  }

  .mk-laptop-dashboard {
    grid-template-columns: 1fr;
  }

  .mk-laptop-sidebar {
    display: none;
  }

  .mk-laptop-stats {
    grid-template-columns: 1fr;
  }

  .mk-hero-features {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 35px;
    padding: 14px;
  }

  .mk-hero-feature {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 18px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mk-hero-feature:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .mk-hero-section {
    padding-top: 205px;
  }

  .mk-hero-badge {
    font-size: 11px;
  }

  .mk-hero-title {
    font-size: 36px;
  }

  .mk-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mk-hero-primary-btn,
  .mk-hero-secondary-btn {
    width: 100%;
  }

  .mk-laptop-card {
    padding: 18px;
    border-radius: 24px;
  }
}


/* =========================================================
   XIII. SETTINGS AVATAR UPLOAD + SAVE MESSAGE
========================================================= */

.settings-save-message {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 15px 18px;
  margin-bottom: 24px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 900;
}

.settings-save-message.success {
  color: #dcfce7;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.18), transparent 40%),
    rgba(20, 83, 45, 0.22);
  border: 1px solid rgba(74, 222, 128, 0.22);
}

.settings-save-message.error {
  color: #fecaca;
  background:
    radial-gradient(circle at top right, rgba(239, 68, 68, 0.18), transparent 40%),
    rgba(127, 29, 29, 0.22);
  border: 1px solid rgba(248, 113, 113, 0.22);
}

.settings-avatar-upload {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px;
  width: 100%;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 38%),
    rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.settings-avatar-preview {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 82px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.35);
}

.settings-avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.settings-avatar-preview span {
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
}

.settings-avatar-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.settings-avatar-info input[type="file"] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.settings-avatar-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
  transition: 0.25s ease;
}

.settings-avatar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.36);
}

.settings-avatar-info p {
  margin-top: 9px;
  color: #94a3b8;
  font-size: 13px;
}

@media (max-width: 600px) {
  .settings-avatar-upload {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* =========================================================
   XVII. REQUESTS + ADMIN TABLES + MODALS
========================================================= */
.dashboard-request-layout{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(340px,.85fr);gap:28px;align-items:start}.dashboard-admin-link{display:inline-flex;align-items:center;justify-content:center;margin-top:22px;min-height:46px;padding:0 20px;border-radius:14px;background:linear-gradient(135deg,#2563eb,#38bdf8);color:#fff;font-weight:900}.mkdev-textarea{width:100%;min-height:150px;padding:15px;border-radius:15px;outline:none;resize:vertical;background:rgba(15,23,42,.92);border:1px solid rgba(148,163,184,.24);color:#fff;font-size:15px;font-family:inherit;transition:.22s ease}.mkdev-textarea:focus{border-color:#38bdf8;box-shadow:0 0 0 4px rgba(56,189,248,.12)}.dashboard-empty-box{padding:18px;border-radius:18px;background:rgba(15,23,42,.68);border:1px solid rgba(148,163,184,.16);color:#94a3b8;font-weight:800}.dashboard-request-list{display:flex;flex-direction:column;gap:12px;margin-top:20px}.dashboard-request-item{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:16px;border-radius:18px;background:rgba(15,23,42,.72);border:1px solid rgba(148,163,184,.14)}.dashboard-request-item strong,.dashboard-request-item span{display:block}.dashboard-request-item strong{color:#fff;font-size:14px;margin-bottom:5px}.dashboard-request-item span{color:#94a3b8;font-size:12px;font-weight:800}.request-status{display:inline-flex!important;align-items:center;justify-content:center;min-height:28px;padding:0 10px;border-radius:999px;font-size:12px!important;font-weight:900!important;white-space:nowrap}.request-status-new{color:#dbeafe!important;background:rgba(59,130,246,.18);border:1px solid rgba(96,165,250,.22)}.request-status-approved{color:#dcfce7!important;background:rgba(34,197,94,.18);border:1px solid rgba(74,222,128,.22)}.request-status-rejected{color:#fecaca!important;background:rgba(239,68,68,.18);border:1px solid rgba(248,113,113,.22)}.request-status-done{color:#e0e7ff!important;background:rgba(99,102,241,.18);border:1px solid rgba(129,140,248,.22)}.settings-table-wrap{width:100%;overflow-x:auto;border-radius:20px;border:1px solid rgba(148,163,184,.14);background:rgba(15,23,42,.48)}.settings-data-table{width:100%;min-width:780px;border-collapse:collapse}.settings-data-table th,.settings-data-table td{padding:14px 16px;text-align:left;border-bottom:1px solid rgba(148,163,184,.10);color:#cbd5e1;font-size:13px}.settings-data-table th{color:#93c5fd;font-weight:900;background:rgba(2,6,23,.42)}.settings-request-row{cursor:pointer;transition:.2s ease}.settings-request-row:hover{background:rgba(59,130,246,.10)}.settings-request-modal{position:fixed;inset:0;z-index:9000;display:flex;align-items:center;justify-content:center;padding:24px;opacity:0;visibility:hidden;pointer-events:none;transition:.25s ease}.settings-request-modal.active{opacity:1;visibility:visible;pointer-events:auto}.settings-request-modal-overlay{position:absolute;inset:0;background:rgba(2,6,23,.78);backdrop-filter:blur(10px)}.settings-request-modal-box{position:relative;width:min(820px,100%);max-height:88vh;overflow-y:auto;padding:30px;border-radius:28px;background:radial-gradient(circle at top right,rgba(59,130,246,.20),transparent 38%),rgba(8,13,28,.98);border:1px solid rgba(148,163,184,.18);box-shadow:0 30px 90px rgba(0,0,0,.55);transform:translateY(15px) scale(.96);transition:.25s ease}.settings-request-modal.active .settings-request-modal-box{transform:translateY(0) scale(1)}.settings-request-modal-close{position:absolute;top:18px;right:18px;width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.08);color:#fff;font-size:28px}.settings-request-modal-box h2{margin-bottom:22px;color:#fff;font-size:30px}.request-modal-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-bottom:22px}.request-modal-grid div,.request-modal-description{padding:16px;border-radius:18px;background:rgba(15,23,42,.68);border:1px solid rgba(148,163,184,.14)}.request-modal-grid span{display:block;margin-bottom:6px;color:#94a3b8;font-size:12px;font-weight:900}.request-modal-grid strong,.request-modal-grid a{color:#fff;font-size:14px;font-weight:900}.request-modal-description h3{color:#fff;margin-bottom:10px}.request-modal-description p{color:#cbd5e1;line-height:1.7;white-space:pre-wrap}.request-modal-actions{margin-top:22px}.request-modal-buttons{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}.settings-save-btn.muted{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12)}body.request-modal-open{overflow:hidden}.settings-panel>.settings-save-message{position:sticky;top:0;z-index:20;margin-bottom:24px}@media(max-width:900px){.dashboard-request-layout{grid-template-columns:1fr}}@media(max-width:700px){.request-modal-grid{grid-template-columns:1fr}.settings-request-modal{padding:14px}.settings-request-modal-box{padding:22px;border-radius:22px}.request-modal-buttons button{width:100%}.dashboard-request-item{align-items:flex-start;flex-direction:column}}


.mkdev-file-upload {
  position: relative;
}

.mkdev-file-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.mkdev-file-label {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  border-radius: 18px;
  cursor: pointer;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.15), transparent 34%),
    rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(96, 165, 250, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.mkdev-file-label:hover,
.mkdev-file-input:focus-visible + .mkdev-file-label {
  transform: translateY(-1px);
  border-color: rgba(249, 115, 22, 0.48);
  background:
    radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.16), transparent 34%),
    rgba(15, 23, 42, 0.9);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.22), 0 0 0 4px rgba(249, 115, 22, 0.08);
}

.mkdev-file-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.mkdev-file-label strong,
.mkdev-file-label small {
  display: block;
}

.mkdev-file-label strong {
  font-size: 14px;
  font-weight: 950;
}

.mkdev-file-label small {
  margin-top: 4px;
  color: #9fb0cc;
  font-size: 13px;
  line-height: 1.45;
  word-break: break-word;
}

/* =========================================================
   XVIII. SETTINGS FINAL FIX - POSITION + NOTICES + FAST AVATAR
========================================================= */

.settings-page {
  padding-top: 210px !important;
}

.settings-panel > .settings-save-message {
  position: static !important;
  top: auto !important;
}

.settings-save-message-inline {
  margin-top: 16px;
  margin-bottom: 0;
}

.profile-avatar-img,
.profile-icon-img,
.settings-avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar-img {
  border-radius: 50%;
}

.profile-icon-btn {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
}

.settings-avatar-preview img {
  border-radius: 50%;
}

@media (max-width: 900px) {
  .settings-page {
    padding-top: 135px !important;
  }
}

@media (max-width: 600px) {
  .settings-save-message-inline {
    align-items: flex-start;
    line-height: 1.45;
  }
}

/* =========================================================
   XVIII. SETTINGS SCROLL FIX
========================================================= */

html,
body {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto !important;
}

.settings-page {
  min-height: 100vh;
  overflow: visible !important;
}

.settings-window {
  overflow: visible !important;
}

.settings-panel {
  overflow: visible !important;
}

@media (max-width: 900px) {
  .settings-page {
    padding-bottom: 90px !important;
  }
}

/* =========================================================
   XIX. SUBTLE HOMEPAGE POLISH
========================================================= */

.mk-hero-primary-btn,
.mk-hero-secondary-btn,
.mk-dashboard-tab,
.profile-icon-btn,
.mobile-burger,
.auth-submit-btn,
.account-type-btn,
.auth-tab {
  outline: none;
}

.mk-hero-primary-btn:focus-visible,
.mk-hero-secondary-btn:focus-visible,
.mk-dashboard-tab:focus-visible,
.profile-icon-btn:focus-visible,
.mobile-burger:focus-visible,
.auth-submit-btn:focus-visible,
.account-type-btn:focus-visible,
.auth-tab:focus-visible,
.site-nav a:focus-visible,
.mobile-nav a:focus-visible {
  box-shadow:
    0 0 0 3px rgba(5, 11, 24, 0.95),
    0 0 0 6px rgba(56, 189, 248, 0.62);
}

.site-nav a {
  outline: none;
  text-underline-offset: 6px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(56, 189, 248, 0.72);
}

.mk-hero-primary-btn:hover,
.mk-hero-primary-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(37, 99, 235, 0.44);
}

.mk-hero-secondary-btn:hover,
.mk-hero-secondary-btn:focus-visible {
  transform: translateY(-2px);
}

.mk-hero-primary-btn span {
  transition: transform 0.22s ease;
}

.mk-hero-primary-btn:hover span,
.mk-hero-primary-btn:focus-visible span {
  transform: translateX(2px);
}

.mk-laptop-main {
  min-height: 304px;
}

.mk-dashboard-panel {
  animation: heroPanelFade 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

@keyframes heroPanelFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.mk-dashboard-tab {
  transform: translateZ(0);
}

.mk-dashboard-tab:hover,
.mk-dashboard-tab:focus-visible {
  transform: translateX(2px);
}

.mk-stat-card,
.mk-project-item,
.mk-support-row,
.mk-laptop-list,
.mk-hero-feature {
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease,
    box-shadow 0.24s ease;
}

.mk-stat-card:hover,
.mk-project-item:hover,
.mk-support-row:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.18);
  background-color: rgba(15, 23, 42, 0.58);
}

.mk-hero-feature:hover {
  background: rgba(59, 130, 246, 0.055);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(2, 8, 23, 0.18);
}

.mk-hero-description {
  text-wrap: pretty;
}

.mk-laptop-main h3,
.mk-hero-feature h3 {
  text-wrap: pretty;
}

@media (max-width: 1200px) {
  .mk-hero-container {
    align-items: start;
  }

  .mk-hero-left {
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .mk-hero-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mk-hero-title {
    line-height: 1.08;
  }

  .mk-laptop-main {
    min-height: 0;
  }

  .mk-dashboard-status {
    top: 20px;
    right: 24px;
  }
}

@media (max-width: 480px) {
  .mk-hero-description {
    line-height: 1.65;
  }

  .mk-laptop-topbar {
    padding-right: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .mk-interactive-dashboard,
  .mk-dashboard-status span {
    animation: none !important;
  }

  .mk-hero-primary-btn:hover,
  .mk-hero-secondary-btn:hover,
  .mk-dashboard-tab:hover,
  .mk-stat-card:hover,
  .mk-project-item:hover,
  .mk-project-card:hover .mk-project-visual-image img,
  .mk-project-card:focus-within .mk-project-visual-image img,
  .mk-support-row:hover {
    transform: none;
  }
}

/* =========================================================
   XX. FINAL WEBSITE SECTIONS + BRAND ACCENTS
========================================================= */

:root {
  --mk-blue: #2563eb;
  --mk-blue-soft: #38bdf8;
  --mk-orange: #f97316;
  --mk-bg: #050b18;
  --mk-panel: rgba(8, 13, 28, 0.78);
  --mk-panel-strong: rgba(15, 23, 42, 0.86);
  --mk-border: rgba(148, 163, 184, 0.16);
  --mk-text: #ffffff;
  --mk-muted: #94a3b8;
  --mk-soft: #cbd5e1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header-inner {
  max-width: 1360px;
}

.site-logo {
  margin-left: 0;
  min-width: 250px;
  height: 64px;
}

.site-logo-img {
  width: 250px;
  transform: scale(1.18);
  transform-origin: left center;
}

.site-nav {
  margin-left: 0;
}

.user-area {
  margin-right: 0;
}

.header-project-cta {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #fed7aa;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.header-project-cta:hover,
.header-project-cta:focus-visible {
  transform: translateY(-2px);
  background: rgba(249, 115, 22, 0.16);
  border-color: rgba(249, 115, 22, 0.58);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fed7aa;
  text-decoration-color: rgba(249, 115, 22, 0.8);
}

.site-nav a.active,
.mobile-nav a.active {
  color: #fdba74;
}

.mk-hero-section {
  min-height: auto;
  padding-bottom: 96px;
}

.mk-hero-badge,
.mk-section-eyebrow {
  border-color: rgba(249, 115, 22, 0.28);
  color: #fdba74;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 45%),
    rgba(37, 99, 235, 0.1);
}

.mk-hero-title span {
  color: var(--mk-orange);
  text-shadow: 0 0 34px rgba(249, 115, 22, 0.34);
}

.mk-hero-primary-btn {
  background: linear-gradient(135deg, var(--mk-blue), #0ea5e9);
}

.mk-hero-primary-btn:hover,
.mk-hero-primary-btn:focus-visible,
.auth-submit-btn:hover,
.auth-submit-btn:focus-visible {
  box-shadow:
    0 22px 52px rgba(37, 99, 235, 0.34),
    0 0 34px rgba(249, 115, 22, 0.18);
}

.mk-dashboard-tab.active {
  background: linear-gradient(135deg, var(--mk-blue), var(--mk-orange));
}

.mk-dashboard-status span {
  background: var(--mk-orange);
}

.mk-feature-icon svg,
.mk-project-visual svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mk-feature-icon {
  color: #fed7aa;
}

.mk-hero-feature {
  color: inherit;
}

.mk-content-section {
  position: relative;
  padding: 104px 42px;
  background: linear-gradient(180deg, #050b18 0%, #071225 100%);
}

.mk-alt-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.16), transparent 32%),
    radial-gradient(circle at 10% 90%, rgba(249, 115, 22, 0.08), transparent 30%),
    #071225;
}

.mk-section-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.mk-section-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.mk-section-header.compact {
  max-width: 680px;
}

.mk-section-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.28);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mk-section-header h2,
.mk-split-section h2,
.mk-cta-section h2,
.mk-contact-layout h2,
.mk-page-hero h1 {
  color: var(--mk-text);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.08;
  margin-bottom: 18px;
  font-weight: 950;
  letter-spacing: 0;
}

.mk-section-header p,
.mk-split-section p,
.mk-cta-section p,
.mk-contact-layout p,
.mk-page-hero p {
  color: var(--mk-soft);
  font-size: 17px;
  line-height: 1.75;
}

.mk-services-grid,
.mk-project-grid,
.mk-case-grid,
.mk-process-grid,
.mk-why-grid {
  display: grid;
  gap: 20px;
}

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

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

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

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

.mk-why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mk-service-card,
.mk-project-card,
.mk-case-card,
.mk-process-step,
.mk-why-grid article,
.mk-values-grid article,
.mk-contact-form,
.mk-contact-panel,
.mk-legal-card {
  position: relative;
  padding: 26px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.84), rgba(2, 6, 23, 0.78));
  border: 1px solid var(--mk-border);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.mk-service-card:hover,
.mk-project-card:hover,
.mk-case-card:hover,
.mk-process-step:hover,
.mk-why-grid article:hover,
.mk-values-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.32);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.3), 0 0 36px rgba(249, 115, 22, 0.08);
}

.mk-card-number,
.mk-process-step span,
.mk-project-type {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 16px;
  color: #fdba74;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.mk-service-card h3,
.mk-project-card h3,
.mk-case-card h3,
.mk-process-step h3,
.mk-why-grid h3,
.mk-values-grid strong {
  display: block;
  color: var(--mk-text);
  font-size: 21px;
  line-height: 1.22;
  margin-bottom: 12px;
  font-weight: 950;
}

.mk-service-card p,
.mk-project-card p,
.mk-case-card p,
.mk-process-step p,
.mk-why-grid p,
.mk-values-grid span,
.mk-contact-panel span,
.mk-legal-card p {
  color: var(--mk-soft);
  font-size: 15px;
  line-height: 1.7;
}

.mk-service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0;
  list-style: none;
}

.mk-service-card li {
  color: var(--mk-muted);
  font-size: 14px;
  line-height: 1.55;
}

.mk-service-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--mk-orange);
}

.mk-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #fdba74;
  font-size: 14px;
  font-weight: 950;
  background: transparent;
  padding: 0;
}

.mk-card-link::after {
  content: "->";
  transition: transform 0.22s ease;
}

.mk-card-link:hover::after,
.mk-card-link:focus-visible::after {
  transform: translateX(3px);
}

.mk-project-card {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.mk-project-visual {
  min-height: 250px;
  padding: 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(37, 99, 235, 0.22), rgba(2, 6, 23, 0.6));
  border: 1px solid rgba(148, 163, 184, 0.14);
  overflow: hidden;
}

.mk-project-visual-image {
  position: relative;
  min-height: 250px;
  padding: 0;
  margin: 0;
  background: #020617;
}

.mk-project-visual-image::after,
.mk-case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 54%, rgba(2, 6, 23, 0.24)),
    radial-gradient(circle at 78% 16%, rgba(249, 115, 22, 0.16), transparent 30%);
}

.mk-project-visual-image img,
.mk-case-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.mk-project-card:hover .mk-project-visual-image img,
.mk-project-card:focus-within .mk-project-visual-image img {
  transform: scale(1.025);
  filter: saturate(1.05);
}

.mk-project-visual span,
.mk-project-visual div {
  display: block;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.mk-project-visual span {
  width: 46%;
  height: 14px;
  margin-bottom: 26px;
  background: linear-gradient(90deg, var(--mk-orange), var(--mk-blue-soft));
}

.mk-project-visual div {
  height: 42px;
  margin-bottom: 12px;
}

.mk-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mk-project-meta span,
.mk-tech-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.18);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 850;
}

.mk-case-card dl {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.mk-case-card dt {
  color: #fdba74;
  font-weight: 950;
}

.mk-case-card dd {
  margin: 0 0 10px;
  color: var(--mk-soft);
  line-height: 1.65;
}

.mk-case-media {
  position: relative;
  min-height: 210px;
  margin: 0 0 24px;
  border-radius: 18px;
  overflow: hidden;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.mk-app-page {
  background:
    radial-gradient(circle at 82% 12%, rgba(37, 99, 235, 0.22), transparent 30%),
    radial-gradient(circle at 16% 38%, rgba(249, 115, 22, 0.08), transparent 25%),
    var(--mk-bg);
  color: #ffffff;
}

.mk-app-hero {
  padding: 132px 24px 86px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.10);
}

.mk-app-hero-grid,
.mk-app-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 48px;
  align-items: center;
}

.mk-back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 26px;
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 900;
}

.mk-back-link::before {
  content: "<-";
  margin-right: 8px;
  color: var(--mk-orange);
}

.mk-app-hero h1 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
}

.mk-app-lead {
  max-width: 680px;
  color: #cbd5e1;
  font-size: 19px;
  line-height: 1.7;
}

.mk-app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.mk-app-hero-media,
.mk-app-showcase-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.mk-app-hero-media img,
.mk-app-showcase-media img {
  display: block;
  width: 100%;
  height: auto;
}

.mk-app-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.mk-app-feature-grid article {
  padding: 28px;
  border-radius: 22px;
  background: var(--mk-panel);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.mk-app-feature-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.14);
  color: #fdba74;
  font-size: 13px;
  font-weight: 950;
}

.mk-app-feature-grid h3,
.mk-app-showcase h2,
.mk-app-download h2 {
  color: #ffffff;
}

.mk-app-feature-grid p,
.mk-app-showcase p,
.mk-app-download p,
.mk-app-checklist {
  color: #cbd5e1;
  line-height: 1.7;
}

.mk-app-checklist {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.mk-app-checklist li {
  position: relative;
  padding-left: 28px;
}

.mk-app-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mk-orange);
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.42);
}

.mk-app-download {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 30px;
  align-items: center;
  padding: 34px;
  border-radius: 24px;
  background: var(--mk-panel-strong);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.mk-download-actions {
  display: grid;
  gap: 12px;
}

.mk-download-actions span,
.mk-download-actions a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
}

.mk-download-actions span {
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(96, 165, 250, 0.16);
}

.mk-download-actions a {
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--mk-orange), #fb923c);
  box-shadow: 0 14px 34px rgba(249, 115, 22, 0.22);
}

.mk-split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.mk-values-grid {
  display: grid;
  gap: 16px;
}

.mk-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mk-cta-section {
  position: relative;
  padding: 96px 42px;
  background:
    radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.18), transparent 28%),
    radial-gradient(circle at 18% 90%, rgba(37, 99, 235, 0.22), transparent 34%),
    #050b18;
  text-align: center;
}

.mk-cta-section .mk-section-inner {
  max-width: 820px;
}

.mk-cta-section .mk-hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.mk-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: start;
}

.mk-contact-panel {
  margin-top: 28px;
}

.button-reset {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.mk-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mk-contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #dbeafe;
  font-size: 13px;
  font-weight: 900;
}

.mk-contact-form .full {
  grid-column: 1 / -1;
}

.mk-form-choice {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 16px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(96, 165, 250, 0.18);
}

.mk-form-choice strong {
  color: #ffffff;
  font-size: 15px;
}

.mk-form-choice p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.55;
}

.mk-contact-form input,
.mk-contact-form select,
.mk-contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  outline: none;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: #ffffff;
  font: inherit;
}

.mk-contact-form textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}

.mk-contact-form input:focus,
.mk-contact-form select:focus,
.mk-contact-form textarea:focus {
  border-color: rgba(249, 115, 22, 0.64);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.mk-checkbox {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  align-items: start;
  margin: 18px 0;
}

.mk-checkbox input {
  min-height: 18px;
  margin-top: 2px;
}

.mk-honeypot {
  position: absolute;
  left: -9999px;
}

.mk-form-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 900;
}

.mk-form-notice.success {
  color: #dcfce7;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(74, 222, 128, 0.22);
}

.mk-form-notice.error {
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
}

.site-footer {
  display: block;
  padding: 72px 42px 28px;
  background: #040916;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.site-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, 1fr));
  gap: 34px;
  align-items: start;
}

.footer-logo img {
  width: 150px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 380px;
  color: var(--mk-muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h3 {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.footer-links a,
.site-footer-bottom a {
  color: var(--mk-muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.site-footer-bottom a:hover,
.site-footer-bottom a:focus-visible {
  color: #fdba74;
}

.site-footer-bottom {
  max-width: 1240px;
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--mk-muted);
}

.mk-page-hero {
  padding: 190px 42px 70px;
  background: #050b18;
}

.mk-legal-content {
  padding: 40px 42px 90px;
  background: #050b18;
}

.mk-legal-card {
  max-width: 860px;
}

.dashboard-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 28px;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.dashboard-sidebar {
  position: sticky;
  top: 112px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 36%),
    rgba(8, 13, 28, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.dashboard-sidebar > div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.dashboard-sidebar > div span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mk-blue), var(--mk-orange));
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  overflow: hidden;
  flex: 0 0 42px;
}

.dashboard-sidebar-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.dashboard-sidebar > div strong {
  color: #ffffff;
  font-size: 15px;
}

.dashboard-sidebar nav {
  display: grid;
  gap: 10px;
}

.dashboard-sidebar a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 850;
  border: 1px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.dashboard-sidebar a:hover,
.dashboard-sidebar a:focus-visible {
  color: #ffffff;
  background: rgba(37, 99, 235, 0.14);
  border-color: rgba(96, 165, 250, 0.18);
  transform: translateX(2px);
}

.dashboard-main {
  min-width: 0;
}

.dashboard-request-item small {
  display: block;
  margin-top: 8px;
  color: #fdba74;
  line-height: 1.5;
}

.dashboard-customer-order-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.dashboard-customer-order-card:hover,
.dashboard-customer-order-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.32);
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.28);
}

.dashboard-customer-order-card > div,
.dashboard-customer-order-card > .request-status {
  position: relative;
  z-index: 1;
}

.dashboard-customer-order-open {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
  color: transparent;
  background: transparent;
}

.dashboard-customer-order-open span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.11);
  border: 1px solid rgba(249, 115, 22, 0.24);
  font-size: 12px;
  font-weight: 950;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dashboard-customer-order-card:hover .dashboard-customer-order-open span,
.dashboard-customer-order-open:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.dashboard-history-order-card {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.62)),
    radial-gradient(circle at 100% 0%, rgba(99, 102, 241, 0.16), transparent 32%);
  border-color: rgba(129, 140, 248, 0.18);
}

.dashboard-history-order-card .dashboard-customer-order-open span {
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.14);
  border-color: rgba(96, 165, 250, 0.24);
}

.dashboard-live-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  margin-bottom: 28px;
  padding: 30px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 20%, rgba(249, 115, 22, 0.14), transparent 28%),
    rgba(8, 13, 28, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.dashboard-live-panel h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 32px;
}

.dashboard-live-panel p {
  max-width: 780px;
  color: #cbd5e1;
  line-height: 1.7;
}

.dashboard-live-meter {
  display: grid;
  align-content: center;
  justify-items: center;
  width: 132px;
  height: 132px;
  border-radius: 28px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.dashboard-live-meter strong {
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
}

.dashboard-live-meter span {
  margin-top: 8px;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.dashboard-progress-track,
.dashboard-mini-progress {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
}

.dashboard-progress-track {
  grid-column: 1 / -1;
}

.dashboard-progress-track span,
.dashboard-mini-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mk-blue), var(--mk-orange));
}

.dashboard-timeline-grid,
.dashboard-order-meta {
  display: grid;
  gap: 12px;
}

.dashboard-timeline-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-timeline-grid div {
  padding: 16px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.dashboard-timeline-grid span,
.dashboard-order-meta span {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 900;
}

.dashboard-timeline-grid strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
}

.dashboard-mini-progress {
  margin-top: 12px;
  height: 8px;
}

.dashboard-order-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
}

.dashboard-admin-section {
  margin-bottom: 34px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(8, 13, 28, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.dashboard-admin-section .settings-panel-header {
  margin-bottom: 22px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.dashboard-admin-section .settings-panel-header p {
  margin-left: auto;
  margin-right: auto;
}

.dashboard-admin-section .settings-panel-header h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 30px;
}

.dashboard-admin-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.dashboard-admin-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.dashboard-admin-table th,
.dashboard-admin-table td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  color: #cbd5e1;
  vertical-align: middle;
}

.dashboard-admin-table th {
  color: #93c5fd;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  background: rgba(2, 6, 23, 0.42);
}

.dashboard-role-form {
  display: contents;
}

.settings-save-btn.compact {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 12px;
}

.dashboard-view-section {
  display: none;
}

.dashboard-view-section.active {
  display: block;
  animation: dashboardViewIn 0.22s ease both;
}

.dashboard-main > .dashboard-view-section:not(.active),
.dashboard-request-layout > .dashboard-view-section:not(.active) {
  display: none !important;
}

.dashboard-main > .dashboard-view-section.active,
.dashboard-request-layout > .dashboard-view-section.active {
  display: block !important;
}

.dashboard-main > .dashboard-preview-card.dashboard-view-section.active,
.dashboard-main > .dashboard-chat-panel.dashboard-view-section.active {
  display: grid !important;
}

@keyframes dashboardViewIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.dashboard-sidebar a.active,
.dashboard-sidebar a[aria-current="page"] {
  color: #ffffff;
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(96, 165, 250, 0.24);
  box-shadow: inset 3px 0 0 #f97316;
}

.dashboard-nav-group {
  display: grid;
  gap: 7px;
  padding-top: 15px;
  margin-top: 13px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.dashboard-nav-group:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.dashboard-nav-group > span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 10px 2px;
  color: #7dd3fc;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dashboard-nav-group > span::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.45), rgba(96, 165, 250, 0));
}

.dashboard-payment-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: start;
}

.dashboard-payment-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.dashboard-payment-summary .dashboard-card {
  min-height: 142px;
}

.dashboard-payment-summary .dashboard-card h3 {
  font-size: clamp(22px, 2vw, 30px);
}

.dashboard-payment-summary .dashboard-card.warning {
  border-color: rgba(249, 115, 22, 0.28);
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.14), transparent 38%),
    rgba(15, 23, 42, 0.78);
}

.dashboard-customer-payments {
  grid-column: 1 / -1;
}

.dashboard-customer-payments > h3 {
  font-size: clamp(30px, 3vw, 44px);
}

.dashboard-customer-payments > p {
  max-width: 720px;
  color: #a7b4ce;
}

.dashboard-customer-payments .dashboard-payment-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-customer-payments .dashboard-payment-summary .dashboard-card {
  min-height: 118px;
  padding: 22px;
}

.dashboard-customer-payments .dashboard-payment-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.dashboard-customer-payments .dashboard-payment-status {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dashboard-customer-payments .dashboard-payment-status .settings-save-btn,
.dashboard-customer-payments .dashboard-payment-status .dashboard-empty-box {
  margin-top: auto;
}

.dashboard-payment-panel {
  margin-bottom: 22px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.54);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.settings-panel-header.compact {
  margin-bottom: 16px;
}

.settings-panel-header.compact h3 {
  margin: 10px 0 6px;
  color: #ffffff;
  font-size: 24px;
}

.dashboard-payment-status,
.dashboard-payment-form {
  padding: 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 40%),
    rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.dashboard-payment-status h3 {
  margin: 14px 0 10px;
  color: #ffffff;
  font-size: 34px;
}

.dashboard-payment-status p {
  color: #a7b4ce;
  line-height: 1.65;
}

.dashboard-payment-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.dashboard-payment-pills span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 900;
  background: rgba(37, 99, 235, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.22);
}

.dashboard-toggle-field {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 15px;
  color: #dbeafe;
  font-weight: 850;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.dashboard-toggle-field input {
  width: 18px;
  height: 18px;
  accent-color: #f97316;
}

.customer-bank-details {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.customer-bank-details div {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.34);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.customer-bank-details span,
.customer-bank-details strong {
  display: block;
}

.customer-bank-details span {
  color: #93c5fd;
  font-size: 12px;
  font-weight: 900;
}

.customer-bank-details strong {
  margin-top: 5px;
  color: #ffffff;
  overflow-wrap: anywhere;
}

.test-payment-box {
  width: min(860px, calc(100vw - 36px));
}

.test-payment-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  padding: 24px 28px;
}

.test-card-preview {
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.38), transparent 34%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(15, 23, 42, 0.94));
  border: 1px solid rgba(147, 197, 253, 0.28);
  box-shadow: 0 28px 70px rgba(2, 8, 23, 0.42);
}

.test-card-preview span,
.test-card-preview small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.test-card-preview strong {
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0;
}

.settings-save-btn.is-complete {
  background: linear-gradient(135deg, #16a34a, #86efac);
}

.dashboard-sidebar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-unread-badge {
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ef4444, #f97316);
  border: 1px solid rgba(254, 202, 202, 0.46);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12), 0 10px 24px rgba(127, 29, 29, 0.28);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

.dashboard-admin-table select,
.dashboard-role-form select,
.settings-field select {
  width: 100%;
  min-height: 42px;
  padding: 0 42px 0 13px;
  border-radius: 13px;
  color: #e5e7eb;
  background:
    linear-gradient(45deg, transparent 50%, #f97316 50%) calc(100% - 18px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.78));
  border: 1px solid rgba(96, 165, 250, 0.24);
  outline: none;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dashboard-admin-table select:hover,
.dashboard-role-form select:hover,
.settings-field select:hover,
.dashboard-admin-table select:focus,
.dashboard-role-form select:focus,
.settings-field select:focus {
  border-color: rgba(249, 115, 22, 0.54);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.10);
}

.dashboard-admin-table select option,
.dashboard-role-form select option,
.settings-field select option {
  color: #e5e7eb;
  background: #0b1224;
}

.dashboard-admin-orders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dashboard-current-jobs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dashboard-current-job {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 36%),
    rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.dashboard-current-job.completed {
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.14), transparent 38%),
    rgba(15, 23, 42, 0.74);
  border-color: rgba(74, 222, 128, 0.22);
}

.dashboard-current-job.completed .dashboard-mini-progress span {
  background: linear-gradient(90deg, #16a34a, #86efac);
}

.dashboard-current-job h3 {
  margin: 12px 0 6px;
  color: #ffffff;
  font-size: 19px;
}

.dashboard-current-job p {
  margin: 0;
  color: #94a3b8;
  line-height: 1.5;
}

.dashboard-current-job > strong {
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
}

.dashboard-admin-order-card {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: hidden;
  min-height: 260px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 38%),
    rgba(8, 13, 28, 0.92);
  border-color: rgba(96, 165, 250, 0.20);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.dashboard-admin-order-card:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.34);
  box-shadow: 0 22px 58px rgba(2, 6, 23, 0.34);
}

.dashboard-admin-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-admin-card-head h3 {
  margin: 8px 0 6px;
  color: #ffffff;
}

.dashboard-admin-card-head span,
.dashboard-admin-order-card p {
  color: #94a3b8;
  line-height: 1.6;
}

.dashboard-admin-card-head strong {
  color: #ffffff;
  font-size: 34px;
}

.dashboard-admin-order-meta,
.dashboard-admin-order-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dashboard-admin-order-meta span,
.dashboard-admin-order-footer span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.16);
  font-size: 12px;
  font-weight: 900;
}

.dashboard-admin-order-footer {
  position: relative;
  z-index: 3;
  justify-content: space-between;
}

.dashboard-order-modal {
  position: fixed;
  inset: 0;
  z-index: 9200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.dashboard-order-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dashboard-order-modal-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(37, 99, 235, 0.18), transparent 34%),
    rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(16px);
}

.dashboard-order-modal-box {
  position: relative;
  width: min(1260px, calc(100vw - 56px));
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  overflow-x: hidden;
  display: block;
  padding: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.24), transparent 36%),
    radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.10), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(4, 11, 26, 0.98)),
    rgba(8, 13, 28, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.20);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.64), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(14px) scale(0.97);
  transition: transform 0.22s ease;
}

.dashboard-order-modal-box::-webkit-scrollbar,
.dashboard-order-modal-chat .dashboard-chat-box::-webkit-scrollbar {
  width: 10px;
}

.dashboard-order-modal-box::-webkit-scrollbar-track,
.dashboard-order-modal-chat .dashboard-chat-box::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.62);
  border-radius: 999px;
}

.dashboard-order-modal-box::-webkit-scrollbar-thumb,
.dashboard-order-modal-chat .dashboard-chat-box::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2563eb, #f97316);
  border-radius: 999px;
}

.dashboard-order-modal.active .dashboard-order-modal-box {
  transform: translateY(0) scale(1);
}

.dashboard-order-modal-head,
.dashboard-order-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.dashboard-order-modal-head {
  position: sticky;
  top: 0;
  z-index: 5;
  margin: 0;
  padding: 26px 28px 22px;
  background:
    linear-gradient(180deg, rgba(8, 13, 28, 0.99), rgba(8, 13, 28, 0.94)),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 42%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  backdrop-filter: blur(16px);
}

.dashboard-order-modal-head > div {
  min-width: 0;
  max-width: calc(100% - 68px);
}

.dashboard-order-modal-head h3 {
  margin: 8px 0 6px;
  color: #ffffff;
  font-size: clamp(25px, 2.4vw, 42px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.dashboard-order-modal-head span {
  color: #93a4c4;
  font-weight: 800;
  display: block;
  overflow-wrap: anywhere;
}

.dashboard-order-modal-close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.18);
  font-size: 28px;
  line-height: 1;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.dashboard-order-modal-close:hover,
.dashboard-order-modal-close:focus-visible {
  transform: translateY(-1px);
  background: rgba(249, 115, 22, 0.16);
  border-color: rgba(249, 115, 22, 0.42);
}

.dashboard-order-modal-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
  min-width: 0;
  padding: 24px 28px;
}

.dashboard-order-mockup {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.96), rgba(8, 47, 73, 0.62));
  border: 1px solid rgba(96, 165, 250, 0.22);
  box-shadow: 0 22px 48px rgba(2, 8, 23, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dashboard-order-mockup-top {
  display: flex;
  gap: 7px;
  padding: 14px;
  background: rgba(2, 6, 23, 0.38);
  border-bottom: 1px solid rgba(148, 163, 184, 0.10);
}

.dashboard-order-mockup-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2563eb;
}

.dashboard-order-mockup-top span:first-child {
  background: #f97316;
}

.dashboard-order-mockup-body {
  display: grid;
  gap: 13px;
  padding: 22px;
}

.dashboard-order-mockup-body p,
.dashboard-order-mockup-body small {
  margin: 0;
  color: #a7b4ce;
  line-height: 1.65;
}

.dashboard-order-mockup-body h4 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.dashboard-order-mockup-body strong {
  color: #ffffff;
  font-size: clamp(36px, 3.5vw, 48px);
  line-height: 1;
}

.dashboard-order-modal-form {
  min-width: 0;
  padding: 20px;
  border-radius: 24px;
  background: rgba(2, 6, 23, 0.36);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dashboard-order-modal-form .settings-form-grid {
  gap: 14px;
  margin-bottom: 0;
}

.dashboard-order-modal-form .settings-field {
  min-width: 0;
}

.dashboard-order-modal-form .settings-field.full {
  grid-column: 1 / -1;
}

.dashboard-order-modal-form .settings-field input,
.dashboard-order-modal-form .settings-field select,
.dashboard-order-modal-form .mkdev-textarea,
.dashboard-order-modal-chat .mkdev-textarea {
  background: rgba(15, 23, 42, 0.78);
  border-color: rgba(148, 163, 184, 0.22);
}

.dashboard-order-modal-form .settings-field input[readonly] {
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.44);
}

.dashboard-order-modal-chat {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  gap: 16px;
  align-items: stretch;
  margin: 0 28px 24px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.70), rgba(30, 41, 59, 0.42));
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.dashboard-order-modal-chat .dashboard-chat-box {
  max-height: 240px;
  overflow-y: auto;
  margin: 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.34);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.dashboard-order-modal-chat .settings-field.full {
  grid-column: auto;
  min-width: 0;
}

.dashboard-order-modal-chat .mkdev-textarea {
  min-height: 148px;
  height: 100%;
}

.dashboard-order-modal-actions {
  position: sticky;
  bottom: 0;
  z-index: 5;
  justify-content: flex-end;
  margin: 0;
  padding: 18px 28px 24px;
  background:
    linear-gradient(0deg, rgba(8, 13, 28, 0.99), rgba(8, 13, 28, 0.92)),
    radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.12), transparent 34%);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  backdrop-filter: blur(16px);
}

.settings-save-btn.danger-soft {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.28);
  color: #fecaca;
}

.settings-save-btn.success-soft {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.92), rgba(34, 197, 94, 0.86));
  border: 1px solid rgba(134, 239, 172, 0.38);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(22, 163, 74, 0.18);
}

.settings-save-btn.success-soft:hover,
.settings-save-btn.success-soft:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(22, 163, 74, 0.28);
}

.settings-save-btn.muted {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e5e7eb;
}

body.order-modal-open {
  overflow: hidden;
}

.customer-order-modal {
  position: fixed;
  inset: 0;
  z-index: 9200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.customer-order-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.customer-order-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(12px);
}

.customer-order-modal-box {
  position: relative;
  width: min(1240px, calc(100vw - 44px));
  max-height: min(88vh, 860px);
  overflow-y: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  padding: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.22), transparent 36%),
    radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.10), transparent 34%),
    rgba(8, 13, 28, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.20);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.56);
  transform: translateY(14px) scale(0.97);
  transition: transform 0.22s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(96, 165, 250, 0.55) rgba(15, 23, 42, 0.4);
}

.customer-order-modal-box::-webkit-scrollbar {
  width: 10px;
}

.customer-order-modal-box::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.42);
}

.customer-order-modal-box::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, #2563eb, #f97316);
}

.customer-order-modal.active .customer-order-modal-box {
  transform: translateY(0) scale(1);
}

.customer-order-modal-head,
.customer-order-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.customer-order-modal-head {
  grid-column: 1 / -1;
  position: sticky;
  top: 0;
  z-index: 4;
  padding: 28px 88px 22px 30px;
  background:
    linear-gradient(180deg, rgba(8, 13, 28, 0.99), rgba(8, 13, 28, 0.92)),
    radial-gradient(circle at 90% 0%, rgba(37, 99, 235, 0.20), transparent 35%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.13);
  backdrop-filter: blur(16px);
}

.customer-order-modal-head .dashboard-order-modal-close {
  position: absolute;
  top: 28px;
  right: 30px;
}

.customer-order-modal-head h3 {
  margin: 8px 0 6px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.04;
  max-width: 880px;
}

.customer-order-modal-head span {
  color: #93a4c4;
  font-weight: 850;
}

.customer-order-hero {
  margin-left: 30px;
  margin-bottom: 30px;
  display: grid;
  gap: 14px;
  align-content: space-between;
  min-height: 360px;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(37, 99, 235, 0.17), rgba(249, 115, 22, 0.08)),
    rgba(15, 23, 42, 0.74);
  border: 1px solid rgba(96, 165, 250, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 52px rgba(2, 6, 23, 0.22);
}

.customer-order-hero > div:first-child {
  display: grid;
  align-items: start;
  justify-content: stretch;
  gap: 14px;
}

.customer-order-hero span,
.customer-order-detail-grid span,
.customer-order-readonly-section span {
  color: #93c5fd;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.customer-order-hero strong {
  color: #ffffff;
  font-size: clamp(58px, 7vw, 96px);
  line-height: 1;
  letter-spacing: 0;
}

.customer-order-detail-grid {
  margin-right: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: start;
}

.customer-order-detail-grid div,
.customer-order-readonly-section {
  padding: 18px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.customer-order-detail-grid strong {
  display: block;
  margin-top: 7px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.35;
}

.customer-order-readonly-section {
  grid-column: 1 / -1;
  margin: 0 30px;
  display: grid;
  gap: 9px;
}

.customer-order-readonly-section.highlight {
  border-color: rgba(249, 115, 22, 0.22);
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.10), transparent 42%),
    rgba(15, 23, 42, 0.72);
}

.customer-order-readonly-section p {
  margin: 0;
  color: #e5e7eb;
  line-height: 1.65;
  white-space: pre-wrap;
}

.customer-order-readonly-section small {
  color: #fed7aa;
  font-size: 12px;
  font-weight: 900;
}

.customer-order-modal-actions {
  grid-column: 1 / -1;
  justify-content: flex-end;
  padding: 0 30px 30px;
}

.dashboard-preview-card,
.dashboard-chat-panel {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.dashboard-preview-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.dashboard-chat-box {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.42);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.dashboard-chat-message {
  padding: 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.dashboard-chat-message.admin {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(96, 165, 250, 0.18);
}

.dashboard-chat-message span {
  display: block;
  margin-bottom: 6px;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 900;
}

.dashboard-chat-message p {
  margin: 0;
  color: #e5e7eb;
  line-height: 1.55;
}

.dashboard-chat-form {
  display: grid;
  gap: 12px;
}

.dashboard-chat-directory {
  display: grid;
  gap: 14px;
}

.dashboard-chat-thread {
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 38%),
    rgba(8, 13, 28, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.22);
}

.dashboard-chat-thread[open] {
  border-color: rgba(249, 115, 22, 0.28);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.32);
}

.dashboard-chat-thread summary {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

.dashboard-chat-thread summary::-webkit-details-marker {
  display: none;
}

.dashboard-chat-avatar {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.72), transparent 46%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(15, 23, 42, 0.92));
  border: 1px solid rgba(147, 197, 253, 0.26);
  font-size: 18px;
  font-weight: 950;
}

.dashboard-chat-summary-main {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.dashboard-chat-summary-main > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.dashboard-chat-summary-main strong,
.dashboard-chat-summary-main b {
  overflow: hidden;
  color: #ffffff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-chat-summary-main b {
  color: #bfdbfe;
  font-size: 14px;
}

.dashboard-chat-summary-main small,
.dashboard-chat-summary-meta small {
  overflow: hidden;
  color: #94a3b8;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-chat-summary-meta {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.dashboard-chat-summary-meta i {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.10);
  border: 1px solid rgba(249, 115, 22, 0.20);
  font-style: normal;
  transition: transform 0.2s ease;
}

.dashboard-chat-thread[open] .dashboard-chat-summary-meta i {
  transform: rotate(180deg);
}

.dashboard-chat-thread-body {
  display: grid;
  gap: 14px;
  padding: 0 18px 18px;
}

.dashboard-message-alert {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
  padding: 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.16), transparent 34%),
    rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(249, 115, 22, 0.24);
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.24);
}

.dashboard-message-alert h2 {
  margin: 8px 0 8px;
  color: #ffffff;
  font-size: clamp(22px, 3vw, 32px);
}

.dashboard-message-alert p:not(.dashboard-badge) {
  margin: 0 0 10px;
  color: #e5e7eb;
  line-height: 1.65;
}

.dashboard-message-alert span {
  color: #fed7aa;
  font-size: 12px;
  font-weight: 900;
}

.dashboard-order-message-preview {
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.09);
  border: 1px solid rgba(249, 115, 22, 0.18);
}

.dashboard-order-message-preview span {
  display: block;
  margin-bottom: 5px;
  color: #fed7aa;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-order-message-preview p {
  margin: 0;
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.55;
}

.mk-chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 8500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  pointer-events: none;
}

.mk-chat-toggle,
.mk-chat-panel {
  pointer-events: auto;
}

.mk-chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.96), rgba(14, 165, 233, 0.96));
  border: 1px solid rgba(147, 197, 253, 0.32);
  box-shadow: 0 18px 48px rgba(37, 99, 235, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mk-chat-toggle span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f97316;
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.82);
}

.mk-chat-toggle:hover,
.mk-chat-toggle:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 22px 56px rgba(37, 99, 235, 0.40), 0 0 28px rgba(249, 115, 22, 0.18);
}

.mk-chat-panel {
  width: min(390px, calc(100vw - 28px));
  max-height: min(620px, calc(100vh - 110px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border-radius: 22px;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.26), transparent 34%), rgba(8, 13, 28, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.96);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.mk-chat-widget.active .mk-chat-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.mk-chat-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.mk-chat-panel-header span,
.mk-chat-project span {
  display: block;
  margin-bottom: 4px;
  color: #f97316;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.mk-chat-panel-header strong,
.mk-chat-project strong {
  color: #ffffff;
  font-size: 16px;
}

.mk-chat-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mk-chat-close:hover,
.mk-chat-close:focus-visible {
  background: rgba(249, 115, 22, 0.22);
  transform: rotate(4deg);
}

.mk-chat-panel-body {
  min-height: 0;
  display: grid;
  gap: 14px;
  padding: 18px;
  overflow-y: auto;
}

.mk-chat-panel-body > p,
.mk-chat-empty {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.65;
}

.mk-chat-project {
  padding: 13px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.74);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.mk-chat-messages {
  display: grid;
  gap: 10px;
}

.mk-chat-message {
  max-width: 88%;
  padding: 11px 12px;
  border-radius: 15px 15px 15px 6px;
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.13);
}

.mk-chat-message.admin {
  margin-left: auto;
  border-radius: 15px 15px 6px 15px;
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(96, 165, 250, 0.20);
}

.mk-chat-message span {
  display: block;
  margin-bottom: 5px;
  color: #93c5fd;
  font-size: 11px;
  font-weight: 900;
}

.mk-chat-message p {
  margin: 0;
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.55;
}

.mk-chat-form {
  display: grid;
  gap: 10px;
}

.mk-chat-form textarea {
  width: 100%;
  min-height: 96px;
  padding: 13px;
  border-radius: 15px;
  resize: vertical;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.22);
  outline: none;
  font: inherit;
}

.mk-chat-form textarea:focus {
  border-color: rgba(56, 189, 248, 0.75);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.mk-chat-action,
.mk-chat-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 13px;
  font-weight: 900;
}

.mk-chat-action {
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  border: 1px solid rgba(147, 197, 253, 0.28);
}

.mk-chat-link {
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.10);
  border: 1px solid rgba(249, 115, 22, 0.24);
}

@media (max-width: 768px) {
  .dashboard-chat-thread summary {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .dashboard-chat-avatar {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .dashboard-chat-summary-meta {
    grid-column: 2;
    justify-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mk-chat-toggle,
  .mk-chat-panel,
  .mk-chat-close {
    transition: none;
  }
}

@media (max-width: 520px) {
  .mk-chat-widget {
    right: 14px;
    bottom: 14px;
  }

  .mk-chat-toggle {
    min-height: 48px;
    padding: 0 15px;
  }

  .mk-chat-panel {
    max-height: calc(100vh - 92px);
    border-radius: 20px;
  }
}

@media (max-width: 1100px) {
  .mk-services-grid,
  .mk-process-grid,
  .mk-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mk-project-card,
  .mk-split-section,
  .mk-app-hero-grid,
  .mk-app-showcase,
  .mk-app-download,
  .dashboard-live-panel,
  .dashboard-shell,
  .mk-contact-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-order-modal-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-order-modal-box {
    width: min(980px, calc(100vw - 36px));
    max-height: calc(100vh - 36px);
  }

  .dashboard-order-mockup {
    top: 0;
  }

  .dashboard-order-modal-chat {
    grid-template-columns: 1fr;
  }

  .dashboard-order-modal-chat .mkdev-textarea {
    min-height: 130px;
  }

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

  .customer-order-modal-box {
    grid-template-columns: 1fr;
  }

  .customer-order-hero,
  .customer-order-detail-grid,
  .customer-order-readonly-section {
    margin-left: 24px;
    margin-right: 24px;
  }

  .dashboard-order-mockup {
    position: relative;
  }

  .dashboard-sidebar {
    position: static;
  }

  .dashboard-sidebar nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .dashboard-nav-group {
    flex: 0 0 auto;
    min-width: 190px;
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
  }

  .dashboard-sidebar a {
    flex: 0 0 auto;
  }

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

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

  .dashboard-admin-orders,
  .dashboard-current-jobs,
  .dashboard-payment-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .header-project-cta {
    display: none;
  }

  .mk-content-section,
  .mk-cta-section {
    padding: 76px 20px;
  }

  .mk-app-hero {
    padding: 112px 20px 70px;
  }

  .mk-app-feature-grid {
    grid-template-columns: 1fr;
  }

  .customer-order-detail-grid {
    grid-template-columns: 1fr;
  }

  .customer-order-modal,
  .dashboard-order-modal {
    padding: 14px;
  }

  .customer-order-modal-box,
  .dashboard-order-modal-box {
    width: calc(100vw - 28px);
    padding: 0;
  }

  .customer-order-modal-box {
    border-radius: 22px;
  }

  .customer-order-modal-head {
    padding: 22px 76px 18px 20px;
  }

  .customer-order-modal-head .dashboard-order-modal-close {
    top: 22px;
    right: 20px;
  }

  .customer-order-modal-head h3 {
    font-size: clamp(26px, 9vw, 38px);
  }

  .customer-order-hero,
  .customer-order-detail-grid,
  .customer-order-readonly-section {
    margin-left: 20px;
    margin-right: 20px;
  }

  .customer-order-hero {
    min-height: auto;
  }

  .customer-order-modal-actions {
    padding: 0 20px 22px;
  }

  .dashboard-order-modal-head {
    top: 0;
    margin: 0;
    padding: 20px 20px 16px;
  }

  .dashboard-order-modal-head > div {
    max-width: calc(100% - 58px);
  }

  .dashboard-order-modal-actions {
    bottom: 0;
    margin: 0;
    padding: 16px 20px 20px;
  }

  .dashboard-order-modal-form {
    padding: 16px;
    border-radius: 20px;
  }

  .dashboard-order-modal-form .settings-form-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-order-modal-form .settings-field.full {
    grid-column: auto;
  }

  .mk-services-grid,
  .mk-project-grid,
  .mk-case-grid,
  .mk-process-grid,
  .mk-why-grid,
  .mk-form-grid,
  .dashboard-summary-grid,
  .dashboard-payment-summary {
    grid-template-columns: 1fr;
  }

  .dashboard-live-meter {
    width: 100%;
    height: auto;
    min-height: 112px;
  }

  .dashboard-sidebar {
    padding: 14px;
    border-radius: 20px;
  }

  .dashboard-timeline-grid,
  .dashboard-order-meta {
    grid-template-columns: 1fr;
  }

  .dashboard-order-modal {
    padding: 12px;
  }

  .dashboard-order-modal-box {
    padding: 0;
    border-radius: 20px;
  }

  .dashboard-order-modal-head {
    top: 0;
    margin: 0;
    padding: 18px 18px 14px;
  }

  .dashboard-order-modal-actions {
    bottom: 0;
    margin: 0;
    padding: 14px 18px 18px;
  }

  .dashboard-order-modal-actions .settings-save-btn {
    width: 100%;
  }

  .dashboard-message-alert {
    grid-template-columns: 1fr;
  }

  .mk-project-visual {
    min-height: 190px;
  }

  .site-footer {
    padding: 58px 22px 26px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .mk-section-header h2,
  .mk-split-section h2,
  .mk-cta-section h2,
  .mk-contact-layout h2 {
    font-size: 32px;
  }

  .mk-service-card,
  .mk-project-card,
  .mk-case-card,
  .mk-process-step,
  .mk-why-grid article,
  .mk-values-grid article,
  .mk-contact-form,
  .mk-contact-panel {
    padding: 22px;
  }

  .mk-app-actions,
  .mk-download-actions a {
    width: 100%;
  }

  .mk-app-actions a {
    width: 100%;
    justify-content: center;
  }

  .mk-app-download {
    padding: 24px;
  }
}

/* Portfolio showcase */
.mk-portfolio-disclosure {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.52);
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 700;
}

.mk-portfolio-disclosure span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.75);
}

.mk-project-visual-image figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(12px);
  color: #f8fafc;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mk-project-card[class*="mk-project-accent-"] {
  --project-accent: #38bdf8;
}

.mk-project-accent-violet { --project-accent: #8b5cf6 !important; }
.mk-project-accent-blue { --project-accent: #3b82f6 !important; }
.mk-project-accent-aqua { --project-accent: #06b6d4 !important; }
.mk-project-accent-green { --project-accent: #65a30d !important; }
.mk-project-accent-orange { --project-accent: #ea580c !important; }
.mk-project-accent-pink { --project-accent: #db2777 !important; }
.mk-project-accent-coral { --project-accent: #f97360 !important; }

.mk-project-card[class*="mk-project-accent-"] .mk-project-type,
.mk-project-card[class*="mk-project-accent-"] .mk-card-link {
  color: var(--project-accent);
}

.mk-project-card[class*="mk-project-accent-"]:hover {
  border-color: color-mix(in srgb, var(--project-accent) 55%, transparent);
  box-shadow: 0 28px 65px color-mix(in srgb, var(--project-accent) 16%, transparent);
}

@media (max-width: 600px) {
  .mk-portfolio-disclosure {
    align-items: flex-start;
    border-radius: 18px;
    line-height: 1.55;
  }

  .mk-project-visual-image figcaption {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    font-size: 9px;
  }
}

/* =========================================================
   RESPONSIVE SITE SCALE
   Keep the spacious desktop design, but present the full site at 60% scale.
   Tablet and mobile retain their native scale for readable text and controls.
========================================================= */

@media (min-width: 901px) {
  html {
    zoom: 0.6;
  }
}

@media (max-width: 900px) {
  html {
    zoom: 1;
  }
}
