:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --card: rgba(15, 23, 42, .76);
  --text: #e5e7eb;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, .22);
  --accent: #38bdf8;
  --accent-2: #22c55e;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .14), transparent 34rem),
    radial-gradient(circle at top right, rgba(34, 197, 94, .10), transparent 28rem),
    var(--bg);
}

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

.acceptOkay {
  color: #7dd3fc;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(15, 23, 42, .84);
  backdrop-filter: blur(18px);
}

.header-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 15px;
}

.main-nav a:hover {
  color: var(--white);
}

.nav-btn {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white) !important;
}

.hero {
  padding: 92px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(56, 189, 248, .08);
  font-size: 14px;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .96;
  letter-spacing: -0.07em;
}

.hero p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  color: #03111f;
  background: linear-gradient(135deg, var(--accent), #7dd3fc);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, .04);
}

.terminal-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, .94), rgba(17, 24, 39, .78));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
}

.terminal-top {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.terminal-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(148, 163, 184, .8);
}

.terminal-card pre {
  margin: 0;
  padding: 28px;
  overflow-x: auto;
}

.terminal-card code {
  color: #d1fae5;
  font-size: 15px;
  line-height: 1.8;
}

.section {
  padding: 54px 0 88px;
}

.section h2 {
  margin: 0 0 24px;
  font-size: 36px;
  letter-spacing: -0.04em;
}

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

.card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .035);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  color: var(--muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

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

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

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

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

  .footer-row {
    flex-direction: column;
  }
}

.auth-section,
.account-section {
  padding: 72px 0 92px;
}

.auth-wrap {
  display: flex;
  justify-content: center;
}

.auth-card,
.panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
}

.auth-card {
  width: min(520px, 100%);
  padding: 34px;
  margin: 0 auto;
}

.auth-alt {
  text-align: center;
}

.auth-alt a {
  color: #7dd3fc;
}

.auth-form button {
  margin-top: 10px;
}

.account-nav a {
  margin-bottom: 0.2rem;
}

.auth-card h1,
.panel h1 {
  margin: 0 0 12px;
  font-size: 36px;
  letter-spacing: -0.05em;
}

.auth-text,
.panel p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.form-card {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  color: #cbd5e1;
  font-size: 14px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--white);
  background: rgba(15, 23, 42, .72);
  outline: none;
}

.form-field textarea {
  min-height: 130px;
  padding-top: 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: rgba(56, 189, 248, .7);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, .12);
}

.form-help {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-error {
  color: #fca5a5;
  font-size: 13px;
}

.form-error-box {
  padding: 12px 14px;
  border: 1px solid rgba(248, 113, 113, .3);
  border-radius: 14px;
  background: rgba(127, 29, 29, .24);
}

.auth-bottom {
  margin: 22px 0 0;
  color: var(--muted);
}

.auth-bottom a {
  color: #7dd3fc;
}

.global-messages {
  padding-top: 22px;
}

.account-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.account-sidebar {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .035);
  overflow: hidden;
}

.account-user {
  display: grid;
  gap: 6px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.account-user strong {
  color: var(--white);
}

.account-user span {
  color: var(--muted);
  font-size: 14px;
  word-break: break-word;
}

.account-nav {
  display: grid;
  padding: 10px;
}

.account-nav a,
.account-nav button {
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 14px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.account-nav a:hover,
.account-nav button:hover,
.account-nav .active {
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

.panel {
  padding: 30px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.account-cards {
  margin-top: 12px;
}

.message {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(34, 197, 94, .28);
  color: #bbf7d0;
  background: rgba(20, 83, 45, .24);
}

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

  .account-sidebar {
    position: static;
  }

  .panel-head {
    flex-direction: column;
  }
}

.order-list {
  display: grid;
  gap: 12px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
}

.order-item:hover {
  background: rgba(255, 255, 255, .06);
}

.order-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.order-item span,
.order-item small {
  color: var(--muted);
}

.order-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  min-width: 170px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(56, 189, 248, .12);
  border: 1px solid rgba(56, 189, 248, .24);
  font-size: 13px;
  font-weight: 700;
}

.status-large {
  min-height: 38px;
  padding: 0 16px;
  font-size: 14px;
}

.empty-state {
  padding: 34px;
  border: 1px dashed var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .025);
}

.empty-state h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.empty-state p {
  margin-bottom: 20px;
}

.order-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.detail-block {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .03);
}

.detail-block h3 {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.detail-block p {
  margin: 0;
  color: var(--white);
}

.detail-block a {
  color: #7dd3fc;
  word-break: break-word;
}

.detail-section {
  margin-top: 28px;
}

.detail-section h2 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.text-box {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #dbeafe;
  background: rgba(15, 23, 42, .54);
  line-height: 1.7;
}

.text-box p {
  margin: 0 0 12px;
}

.file-list {
  display: grid;
  gap: 10px;
}

.file-item {
  display: flex;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #7dd3fc;
  background: rgba(255, 255, 255, .035);
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .order-item {
    flex-direction: column;
  }

  .order-meta {
    justify-items: start;
  }

  .order-detail-grid {
    grid-template-columns: 1fr;
  }
}

.payment-box {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(56, 189, 248, .26);
  border-radius: 20px;
  background: rgba(56, 189, 248, .07);
}

.payment-box span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.payment-box strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.disabled-link {
  pointer-events: none;
  opacity: .65;
}

@media (max-width: 700px) {
  .payment-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.site-footer {
  flex-shrink: 0;
}

.page-hero {
  padding: 84px 0 42px;
}

.page-eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(56, 189, 248, .08);
  font-size: 14px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.page-body {
  padding: 24px 0 84px;
}

.content-panel h2 {
  margin: 34px 0 14px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.content-panel h2:first-child {
  margin-top: 0;
}

.content-panel h3 {
  margin: 26px 0 10px;
  font-size: 22px;
}

.content-panel p,
.content-panel li {
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.75;
}

.content-panel p {
  margin: 0 0 16px;
}

.content-panel ul,
.content-panel ol {
  padding-left: 22px;
  margin: 0 0 18px;
}

.client-acceptance-actions {
  display: flex;
  gap: 5px;
}

.content-panel strong {
  color: #ffffff;
}

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

  .content-panel p,
  .content-panel li {
    font-size: 16px;
  }
}

.pro-lead {
  margin-bottom: 26px;
  padding: 24px;
  border: 1px solid rgba(56, 189, 248, .22);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(56, 189, 248, .10), rgba(15, 23, 42, .18));
}

.pro-lead p {
  margin: 0;
  color: #dbeafe;
  font-size: 19px;
  line-height: 1.7;
}

.pro-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

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

.pro-card,
.case-card,
.price-card,
.article-preview,
.contact-box,
.price-notice,
.price-note {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .035);
}

.pro-card {
  padding: 24px;
}

.pro-card h2,
.price-card h2 {
  margin: 14px 0 12px;
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.pro-card p,
.price-card p {
  margin: 0 0 16px;
}

.pro-card ul,
.price-card ul {
  margin-bottom: 0;
}

.pro-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  width: fit-content;
  padding: 0 10px;
  border: 1px solid rgba(56, 189, 248, .24);
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(56, 189, 248, .09);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pro-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  padding: 28px;
  border: 1px solid rgba(34, 197, 94, .24);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, .12), transparent 28rem),
    rgba(255, 255, 255, .035);
}

.pro-cta h2 {
  margin: 0 0 8px;
}

.pro-cta p {
  margin: 0;
  max-width: 680px;
}

.case-list {
  display: grid;
  gap: 22px;
}

.case-card {
  padding: 28px;
}

.case-head {
  margin-bottom: 18px;
}

.case-head h2 {
  margin: 14px 0 0;
  font-size: 30px;
  letter-spacing: -0.05em;
}

.case-card>p {
  margin-bottom: 24px;
  max-width: 850px;
}

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

.case-columns>div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 23, 42, .42);
}

.case-columns h3 {
  margin-top: 0;
}

.blog-rubrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.article-preview-list {
  margin-top: 34px;
}

.article-preview-list>h2 {
  margin-bottom: 18px;
}

.article-preview {
  padding: 22px;
  margin-bottom: 14px;
}

.article-preview h3 {
  margin-top: 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.price-card {
  padding: 24px;
}

.price-card strong {
  display: block;
  margin: 12px 0;
  color: #ffffff;
  font-size: 30px;
  letter-spacing: -0.05em;
}

.price-notice,
.price-note {
  padding: 26px;
  margin-bottom: 24px;
}

.price-notice h2,
.price-note h2 {
  margin-top: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
}

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

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 30px;
}

.contact-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-box {
  padding: 20px;
}

.contact-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.contact-box strong {
  display: block;
  color: #ffffff;
  line-height: 1.35;
}

.contact-box p {
  margin: 10px 0 0;
  font-size: 15px;
}

/* .content-panel {
  max-width: 1120px;
} */

@media (max-width: 980px) {

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

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {

  .pro-grid-3,
  .price-grid,
  .blog-rubrics,
  .case-columns {
    grid-template-columns: 1fr;
  }

  .pro-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-card,
  .pro-card,
  .price-card,
  .price-notice,
  .price-note {
    padding: 22px;
  }

  .case-head h2 {
    font-size: 25px;
  }
}

.service-intro {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
  padding: 28px;
  border: 1px solid rgba(56, 189, 248, .24);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .13), transparent 32rem),
    rgba(255, 255, 255, .035);
}

.service-intro p {
  margin: 0;
  color: #dbeafe;
  font-size: 19px;
  line-height: 1.7;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .035);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, .35);
  background: rgba(255, 255, 255, .055);
}

.service-card-primary {
  border-color: rgba(56, 189, 248, .34);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .12), transparent 24rem),
    rgba(255, 255, 255, .04);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.service-number {
  color: rgba(148, 163, 184, .55);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.service-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.service-card p {
  margin: 0 0 16px;
  color: #cbd5e1;
  line-height: 1.65;
}

.service-card ul {
  margin: 0 0 20px;
  padding-left: 19px;
}

.service-card li {
  color: #cbd5e1;
  line-height: 1.6;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  color: #7dd3fc;
  font-weight: 800;
}

.service-link:hover {
  color: #ffffff;
}

.section-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(56, 189, 248, .24);
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(56, 189, 248, .08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.service-workflow,
.service-stack,
.service-faq {
  margin-top: 34px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .032);
}

.service-workflow h2,
.service-stack h2,
.service-faq h2 {
  margin-top: 0;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.workflow-step {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 23, 42, .45);
}

.workflow-step span {
  color: #7dd3fc;
  font-weight: 900;
  letter-spacing: .08em;
}

.workflow-step h3 {
  margin: 12px 0 8px;
}

.workflow-step p {
  margin: 0;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
}

.service-stack {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: center;
}

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

.stack-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #e5e7eb;
  background: rgba(255, 255, 255, .045);
  font-size: 14px;
  font-weight: 700;
}

.service-faq details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, .38);
  overflow: hidden;
}

.service-faq details+details {
  margin-top: 10px;
}

.service-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #ffffff;
  font-weight: 800;
}

.service-faq details p {
  margin: 0;
  padding: 0 20px 18px;
  color: #cbd5e1;
}

.service-final-cta {
  margin-top: 34px;
}

@media (max-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {

  .service-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .service-workflow,
  .service-stack,
  .service-faq,
  .service-intro {
    padding: 22px;
    border-radius: 22px;
  }
}

.btn-primary:hover {
  color: #06111f !important;
}

.start-project-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
}

.start-project-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .04);
}

.start-project-card h2 {
  margin: 16px 0 12px;
  font-size: 30px;
  letter-spacing: -0.05em;
}

.start-project-card p {
  margin-bottom: 22px;
}

@media (max-width: 760px) {
  .start-project-panel {
    grid-template-columns: 1fr;
  }
}

.modx-landing {
  display: grid;
  gap: 34px;
}

.modx-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(56, 189, 248, .26);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .12), transparent 34rem),
    rgba(255, 255, 255, .035);
}

.modx-hero-text h2 {
  margin: 14px 0 14px;
  max-width: 760px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.modx-hero-text p {
  max-width: 790px;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.75;
}

.modx-hero-facts {
  display: grid;
  gap: 12px;
}

.modx-hero-facts div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 23, 42, .42);
}

.modx-hero-facts strong {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 22px;
}

.modx-hero-facts span {
  color: #cbd5e1;
  line-height: 1.5;
}

.modx-section {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .03);
}

.modx-section>h2,
.modx-seo-block h2,
.modx-price-panel h2 {
  margin-top: 0;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.055em;
}

.modx-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.modx-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, .42);
}

.modx-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.modx-card p {
  margin: 0;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.65;
}

.modx-feature-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.modx-feature {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, .42);
}

.modx-feature>span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(56, 189, 248, .26);
  border-radius: 15px;
  color: #7dd3fc;
  background: rgba(56, 189, 248, .08);
  font-weight: 900;
}

.modx-feature h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.modx-feature p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.65;
}

.modx-seo-block,
.modx-price-panel {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: start;
}

.modx-seo-block p,
.modx-price-panel p {
  color: #cbd5e1;
  line-height: 1.7;
}

.modx-seo-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.modx-seo-points div {
  padding: 16px;
  border: 1px solid rgba(56, 189, 248, .18);
  border-radius: 18px;
  color: #dbeafe;
  background: rgba(56, 189, 248, .06);
  font-weight: 700;
}

.modx-price-grid {
  display: grid;
  gap: 14px;
}

.modx-price-grid .price-card {
  padding: 22px;
}

.modx-price-grid .price-card h3 {
  margin: 14px 0 8px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.modx-price-grid .price-card strong {
  font-size: 28px;
}

@media (max-width: 1100px) {

  .modx-hero-panel,
  .modx-seo-block,
  .modx-price-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {

  .modx-hero-panel,
  .modx-section {
    padding: 22px;
    border-radius: 24px;
  }

  .modx-card-grid,
  .modx-seo-points {
    grid-template-columns: 1fr;
  }

  .modx-feature {
    grid-template-columns: 1fr;
  }
}

.support-hero-panel {
  border-color: rgba(34, 197, 94, .22);
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, .10), transparent 34rem),
    rgba(255, 255, 255, .035);
}

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

.support-warning {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: center;
  border-color: rgba(250, 204, 21, .24);
  background:
    radial-gradient(circle at top left, rgba(250, 204, 21, .08), transparent 32rem),
    rgba(255, 255, 255, .03);
}

.support-warning p {
  color: #cbd5e1;
  line-height: 1.7;
}

.support-warning-list {
  display: grid;
  gap: 12px;
}

.support-warning-list div {
  padding: 16px;
  border: 1px solid rgba(250, 204, 21, .20);
  border-radius: 18px;
  color: #fef3c7;
  background: rgba(250, 204, 21, .06);
  font-weight: 800;
}

.support-start {
  display: grid;
  gap: 22px;
}

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

.support-checklist div {
  position: relative;
  padding: 17px 17px 17px 44px;
  border: 1px solid rgba(56, 189, 248, .18);
  border-radius: 18px;
  color: #dbeafe;
  background: rgba(56, 189, 248, .055);
  font-weight: 700;
  line-height: 1.45;
}

.support-checklist div::before {
  content: "✓";
  position: absolute;
  top: 17px;
  left: 18px;
  color: #7dd3fc;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .support-task-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-warning {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {

  .support-task-grid,
  .support-checklist {
    grid-template-columns: 1fr;
  }
}

.shop-hero-panel {
  border-color: rgba(14, 165, 233, .26);
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, .13), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, .06), transparent 30rem),
    rgba(255, 255, 255, .035);
}

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

.shop-checkout-block,
.shop-seo-block {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: start;
}

.shop-checkout-block p,
.shop-seo-block p {
  color: #cbd5e1;
  line-height: 1.7;
}

.shop-checkout-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.shop-checkout-list div {
  position: relative;
  padding: 16px 16px 16px 42px;
  border: 1px solid rgba(14, 165, 233, .20);
  border-radius: 18px;
  color: #dbeafe;
  background: rgba(14, 165, 233, .06);
  font-weight: 800;
  line-height: 1.45;
}

.shop-checkout-list div::before {
  content: "•";
  position: absolute;
  top: 11px;
  left: 18px;
  color: #7dd3fc;
  font-size: 28px;
  line-height: 1;
}

.shop-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.shop-work-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(15, 23, 42, .42);
}

.shop-work-card h3 {
  margin: 16px 0 12px;
  font-size: 26px;
  letter-spacing: -0.05em;
}

.shop-work-card p {
  color: #cbd5e1;
  line-height: 1.7;
}

.shop-work-card ul {
  margin-bottom: 0;
}

.shop-start {
  display: grid;
  gap: 22px;
}

@media (max-width: 1100px) {
  .shop-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-checkout-block,
  .shop-seo-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {

  .shop-card-grid,
  .shop-checkout-list,
  .shop-work-grid {
    grid-template-columns: 1fr;
  }

  .shop-work-card {
    padding: 22px;
  }
}

.cabinet-hero-panel {
  border-color: rgba(168, 85, 247, .26);
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, .11), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, .07), transparent 30rem),
    rgba(255, 255, 255, .035);
}

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

.cabinet-scenarios,
.cabinet-tech-block,
.cabinet-security,
.cabinet-start {
  display: grid;
  gap: 22px;
}

.cabinet-scenarios>div:first-child,
.cabinet-tech-block>div:first-child,
.cabinet-security>div:first-child {
  max-width: 850px;
}

.cabinet-scenarios p,
.cabinet-tech-block p,
.cabinet-security p {
  color: #cbd5e1;
  line-height: 1.7;
}

.cabinet-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cabinet-scenario-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, .42);
}

.cabinet-scenario-grid h3 {
  margin: 16px 0 10px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.cabinet-scenario-grid p {
  margin: 0;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.65;
}

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

.cabinet-tech-card {
  padding: 26px;
  border: 1px solid rgba(168, 85, 247, .20);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, .07), transparent 22rem),
    rgba(15, 23, 42, .42);
}

.cabinet-tech-card h3 {
  margin: 0 0 12px;
  font-size: 30px;
  letter-spacing: -0.05em;
}

.cabinet-tech-card p {
  margin-bottom: 16px;
}

.cabinet-tech-card ul {
  margin-bottom: 0;
}

.cabinet-security {
  border-color: rgba(168, 85, 247, .22);
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, .08), transparent 30rem),
    rgba(255, 255, 255, .03);
}

@media (max-width: 1100px) {

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

@media (max-width: 700px) {

  .cabinet-card-grid,
  .cabinet-scenario-grid,
  .cabinet-tech-grid {
    grid-template-columns: 1fr;
  }

  .cabinet-tech-card {
    padding: 22px;
  }
}

.integration-hero-panel {
  border-color: rgba(245, 158, 11, .26);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, .10), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, .07), transparent 30rem),
    rgba(255, 255, 255, .035);
}

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

.integration-source-block,
.integration-flow,
.integration-tech-block,
.integration-risks,
.integration-start {
  display: grid;
  gap: 22px;
}

.integration-source-block>div:first-child,
.integration-flow>div:first-child,
.integration-tech-block>div:first-child {
  max-width: 900px;
}

.integration-source-block p,
.integration-flow p,
.integration-tech-block p {
  color: #cbd5e1;
  line-height: 1.7;
}

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

.integration-source-grid div {
  padding: 22px;
  border: 1px solid rgba(245, 158, 11, .20);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, .07), transparent 20rem),
    rgba(15, 23, 42, .42);
}

.integration-source-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 20px;
}

.integration-source-grid span {
  display: block;
  color: #cbd5e1;
  line-height: 1.55;
}

.integration-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.integration-flow-steps div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, .42);
}

.integration-flow-steps span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #fbbf24;
  font-weight: 900;
  letter-spacing: .08em;
}

.integration-flow-steps strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 18px;
}

.integration-flow-steps p {
  margin: 0;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
}

.integration-tech-block .stack-tags {
  margin-top: 0;
}

.integration-risks {
  border-color: rgba(245, 158, 11, .22);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, .08), transparent 30rem),
    rgba(255, 255, 255, .03);
}

@media (max-width: 1100px) {

  .integration-card-grid,
  .integration-flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .integration-source-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {

  .integration-card-grid,
  .integration-flow-steps {
    grid-template-columns: 1fr;
  }
}

.server-hero-panel {
  border-color: rgba(20, 184, 166, .28);
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, .11), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, .07), transparent 30rem),
    rgba(255, 255, 255, .035);
}

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

.server-stack-block,
.server-compare-block,
.server-diagnostics,
.server-security-block,
.server-start {
  display: grid;
  gap: 22px;
}

.server-stack-block>div:first-child,
.server-compare-block>div:first-child,
.server-security-block>div:first-child {
  max-width: 900px;
}

.server-stack-block p,
.server-compare-block p,
.server-security-block p {
  color: #cbd5e1;
  line-height: 1.7;
}

.server-compare-block {
  border-color: rgba(20, 184, 166, .22);
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, .08), transparent 30rem),
    rgba(255, 255, 255, .03);
}

.server-diagnostics {
  border-color: rgba(56, 189, 248, .20);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .08), transparent 30rem),
    rgba(255, 255, 255, .03);
}

.server-security-block {
  border-color: rgba(248, 113, 113, .22);
  background:
    radial-gradient(circle at top left, rgba(248, 113, 113, .07), transparent 30rem),
    rgba(255, 255, 255, .03);
}

@media (max-width: 1100px) {
  .server-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .server-card-grid {
    grid-template-columns: 1fr;
  }
}

.blog-hero,
.article-hero {
  padding: 84px 0 44px;
}

.blog-hero h1,
.article-hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.065em;
}

.blog-hero p,
.article-hero p {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.blog-body {
  padding: 28px 0 86px;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.blog-categories span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, .04);
  font-size: 14px;
  font-weight: 700;
}

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

.blog-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .035);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  padding: 18px;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, .34);
  background: rgba(255, 255, 255, .055);
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
}

.blog-card-top,
.blog-card-meta,
.article-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.blog-card-top {
  justify-content: space-between;
  margin-bottom: 18px;
}

.blog-card-top small,
.blog-card-meta,
.article-meta-line {
  color: var(--muted);
  font-size: 14px;
}

.blog-card h2,
.blog-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.blog-card p {
  margin: 0 0 22px;
  color: #cbd5e1;
  line-height: 1.65;
}

.blog-card-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  color: var(--muted);
}

.blog-pagination a {
  color: #7dd3fc;
  font-weight: 800;
}

.article-breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.article-breadcrumbs a {
  color: #7dd3fc;
}

.article-meta-line {
  margin-bottom: 20px;
}

.article-body {
  padding: 24px 0 84px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.article-content {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .04);
}

.article-content h2 {
  margin: 38px 0 16px;
  font-size: 34px;
  letter-spacing: -0.055em;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  margin: 28px 0 12px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.article-content p,
.article-content li {
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.78;
}

.article-content p {
  margin: 0 0 17px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 20px;
  padding-left: 22px;
}

.article-content strong {
  color: #ffffff;
}

.article-content code {
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #bae6fd;
  background: rgba(15, 23, 42, .7);
}

.article-content blockquote {
  margin: 28px 0;
  padding: 22px;
  border-left: 3px solid #38bdf8;
  border-radius: 18px;
  color: #dbeafe;
  background: rgba(56, 189, 248, .07);
}

.article-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 12px;
}

.article-side-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
}

.article-side-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.article-side-card strong {
  display: block;
  color: #ffffff;
  line-height: 1.35;
}

.article-cta {
  display: grid;
  gap: 12px;
  align-items: center;
  margin-top: 42px;
  padding: 26px;
  border: 1px solid rgba(34, 197, 94, .24);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, .10), transparent 24rem),
    rgba(255, 255, 255, .035);
}

.article-cta h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.article-cta p {
  margin: 0;
}

.article-related {
  padding: 0 0 86px;
}

.article-related h2 {
  margin: 0 0 20px;
  font-size: 34px;
  letter-spacing: -0.055em;
}

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

@media (max-width: 980px) {

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

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {

  .blog-hero,
  .article-hero {
    padding-top: 56px;
  }

  .blog-grid,
  .blog-grid-related,
  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-content {
    padding: 24px;
    border-radius: 24px;
  }

  .article-content h2 {
    font-size: 28px;
  }

  .article-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

.cases-hero,
.case-hero {
  padding: 84px 0 44px;
}

.cases-hero h1,
.case-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.065em;
}

.cases-hero p,
.case-hero p {
  max-width: 850px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.cases-body,
.case-body {
  padding: 28px 0 86px;
}

.cases-intro-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: 28px;
  margin-bottom: 26px;
  padding: 32px;
  border: 1px solid rgba(56, 189, 248, .22);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .09), transparent 28rem),
    rgba(255, 255, 255, .035);
}

.cases-intro-panel h2 {
  margin: 12px 0;
  font-size: 38px;
  letter-spacing: -0.06em;
}

.cases-intro-panel p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.7;
}

.cases-intro-tags {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 10px;
}

.cases-intro-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, .045);
  font-size: 14px;
  font-weight: 800;
}

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

.case-preview-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .035);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.case-preview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, .34);
  background: rgba(255, 255, 255, .055);
}

.case-preview-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 25px;
}

.case-preview-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.case-preview-top small {
  color: var(--muted);
  font-size: 13px;
}

.case-preview-card h2,
.case-preview-card h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.case-preview-card p {
  margin: 0 0 20px;
  color: #cbd5e1;
  line-height: 1.65;
}

.case-stack-line {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #93c5fd;
  font-size: 14px;
  line-height: 1.45;
}

.case-more {
  display: inline-flex;
  margin-top: 16px;
  color: #7dd3fc;
  font-weight: 900;
}

.cases-final-cta {
  margin-top: 28px;
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: start;
}

.case-content {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .04);
}

.case-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}

.case-summary-grid div {
  padding: 20px;
  border: 1px solid rgba(56, 189, 248, .18);
  border-radius: 22px;
  background: rgba(56, 189, 248, .055);
}

.case-summary-grid span {
  display: block;
  margin-bottom: 10px;
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-summary-grid p {
  margin: 0;
  color: #dbeafe;
  line-height: 1.6;
}

.case-rich-text h2 {
  margin: 38px 0 16px;
  font-size: 34px;
  letter-spacing: -0.055em;
}

.case-rich-text h2:first-child {
  margin-top: 0;
}

.case-rich-text h3 {
  margin: 28px 0 12px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.case-rich-text p,
.case-rich-text li {
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.78;
}

.case-rich-text p {
  margin: 0 0 17px;
}

.case-rich-text ul,
.case-rich-text ol {
  margin: 0 0 20px;
  padding-left: 22px;
}

@media (max-width: 1080px) {

  .cases-intro-panel,
  .case-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {

  .cases-hero,
  .case-hero {
    padding-top: 56px;
  }

  .cases-grid,
  .case-summary-grid {
    grid-template-columns: 1fr;
  }

  .cases-intro-panel,
  .case-content {
    padding: 24px;
    border-radius: 24px;
  }
}

.prices-landing {
  display: grid;
  gap: 34px;
}

.prices-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(34, 197, 94, .24);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, .10), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, .06), transparent 30rem),
    rgba(255, 255, 255, .035);
}

.prices-hero-panel h2 {
  margin: 14px 0 14px;
  max-width: 860px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.065em;
}

.prices-hero-panel p {
  max-width: 820px;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.75;
}

.prices-hero-note {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(34, 197, 94, .24);
  border-radius: 24px;
  background: rgba(15, 23, 42, .45);
}

.prices-hero-note strong {
  color: #ffffff;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.prices-hero-note span {
  color: #cbd5e1;
  line-height: 1.6;
}

.prices-section {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .03);
}

.prices-section>h2,
.prices-factors h2,
.prices-format h2 {
  margin-top: 0;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.055em;
}

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

.price-service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(15, 23, 42, .42);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.price-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, .32);
  background: rgba(255, 255, 255, .055);
}

.price-service-card-accent {
  border-color: rgba(56, 189, 248, .30);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .09), transparent 22rem),
    rgba(15, 23, 42, .42);
}

.price-service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.price-service-top strong {
  color: #ffffff;
  font-size: 22px;
  white-space: nowrap;
}

.price-service-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.price-service-card p {
  margin: 0 0 16px;
  color: #cbd5e1;
  line-height: 1.65;
}

.price-service-card ul {
  margin: auto 0 0;
  padding-left: 19px;
}

.price-service-card li {
  color: #cbd5e1;
  line-height: 1.6;
}

.prices-factors,
.prices-format {
  display: grid;
  gap: 22px;
}

.prices-factors p,
.prices-format p {
  max-width: 900px;
  color: #cbd5e1;
  line-height: 1.7;
}

.prices-factor-grid,
.price-format-grid {
  display: grid;
  gap: 14px;
}

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

.prices-factor-grid div {
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, .18);
  border-radius: 18px;
  color: #dbeafe;
  background: rgba(56, 189, 248, .055);
  font-weight: 800;
  line-height: 1.45;
}

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

.price-format-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, .42);
}

.price-format-grid h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.05em;
}

.price-format-grid p {
  margin: 0;
}

.prices-final-cta {
  margin-top: 0;
}

@media (max-width: 1180px) {

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

  .prices-hero-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {

  .prices-grid,
  .prices-factor-grid,
  .price-format-grid {
    grid-template-columns: 1fr;
  }

  .prices-hero-panel,
  .prices-section {
    padding: 22px;
    border-radius: 24px;
  }

  .price-service-top {
    flex-direction: column;
  }
}

/* SPIGOTDEV PRICES PAGE IMPROVEMENT */
.content-template-default .prices-landing {
  max-width: 1180px;
  margin: 0 auto;
}

.prices-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.price-service-card {
  position: relative;
  min-height: 360px;
  padding: 30px !important;
  border-radius: 30px !important;
  overflow: hidden;
}

.price-service-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(56, 189, 248, .08);
  pointer-events: none;
}

.price-service-card-accent::after {
  background: rgba(56, 189, 248, .14);
}

.price-service-top {
  align-items: center !important;
  margin-bottom: 24px !important;
}

.price-service-top strong {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #06111f !important;
  background: linear-gradient(135deg, #7dd3fc, #38bdf8);
  font-size: 20px !important;
  font-weight: 950;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.price-service-card h3 {
  max-width: 520px;
  margin-bottom: 14px !important;
  font-size: 30px !important;
  line-height: 1.04 !important;
}

.price-service-card p {
  max-width: 620px;
  margin-bottom: 22px !important;
  font-size: 17px;
  line-height: 1.7 !important;
}

.price-service-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: auto !important;
  padding-left: 0 !important;
  list-style: none;
}

.price-service-card li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.45 !important;
}

.price-service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #7dd3fc;
  font-weight: 900;
}

.prices-section>h2,
.prices-factors h2,
.prices-format h2 {
  max-width: 860px;
}

.prices-factor-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.prices-factor-grid div {
  min-height: 68px;
  display: flex;
  align-items: center;
}

.price-format-grid article {
  min-height: 190px;
}

@media (max-width: 980px) {
  .prices-grid {
    grid-template-columns: 1fr !important;
  }

  .price-service-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .price-service-card {
    padding: 22px !important;
    border-radius: 24px !important;
  }

  .price-service-top {
    align-items: flex-start !important;
    flex-direction: column;
  }

  .price-service-card h3 {
    font-size: 25px !important;
  }

  .price-service-card ul {
    grid-template-columns: 1fr;
  }

  .prices-factor-grid {
    grid-template-columns: 1fr !important;
  }
}

/* /SPIGOTDEV PRICES PAGE IMPROVEMENT */


/* SPIGOTDEV CONTACTS PAGE */
.contacts-landing {
  display: grid;
  gap: 30px;
  max-width: 1120px;
  margin: 0 auto;
}

.contacts-main-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(56, 189, 248, .24);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .10), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, .06), transparent 30rem),
    rgba(255, 255, 255, .035);
}

.contacts-main-text h2 {
  margin: 14px 0 14px;
  max-width: 760px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.065em;
}

.contacts-main-text p {
  max-width: 760px;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.75;
}

.contacts-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contacts-direct-card {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 24px;
  border: 1px solid rgba(56, 189, 248, .24);
  border-radius: 24px;
  background: rgba(15, 23, 42, .45);
}

.contacts-direct-card span {
  color: #93c5fd;
  font-size: 13px;
}

.contacts-phone {
  color: #ffffff;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.contacts-email {
  color: #7dd3fc;
  font-size: 18px;
  font-weight: 800;
}

.contacts-direct-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.6;
}

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

.contact-method-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .035);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.contact-method-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, .34);
  background: rgba(255, 255, 255, .055);
}

.contact-method-card-accent {
  border-color: rgba(34, 197, 94, .28);
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, .09), transparent 24rem),
    rgba(255, 255, 255, .04);
}

.contact-method-card h3 {
  margin: 18px 0 12px;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.contact-method-card p {
  margin: 0 0 20px;
  color: #cbd5e1;
  line-height: 1.65;
}

.contact-method-card a {
  margin-top: auto;
  color: #7dd3fc;
  font-weight: 900;
}

.contacts-info-panel {
  display: grid;
  gap: 22px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .03);
}

.contacts-info-panel h2 {
  margin: 12px 0 0;
  max-width: 820px;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.055em;
}

.contacts-directions {
  border-color: rgba(168, 85, 247, .20);
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, .07), transparent 30rem),
    rgba(255, 255, 255, .03);
}

.contacts-final-cta {
  margin-top: 0;
}

@media (max-width: 1000px) {
  .contacts-main-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {

  .contacts-main-panel,
  .contacts-info-panel {
    padding: 22px;
    border-radius: 24px;
  }

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

  .contact-method-card {
    min-height: auto;
  }

  .contacts-phone {
    font-size: 24px;
  }
}

/* /SPIGOTDEV CONTACTS PAGE */


/* SPIGOTDEV HOME PRODUCTION */
.home-hero-production {
  padding: 88px 0 64px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 460px;
  gap: 52px;
  align-items: center;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  margin-bottom: 28px;
  border: 1px solid rgba(56, 189, 248, .25);
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(56, 189, 248, .08);
  font-size: 14px;
  font-weight: 800;
}

.home-hero-content h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .96;
  letter-spacing: -0.075em;
}

.home-hero-content p {
  max-width: 720px;
  margin: 28px 0 0;
  color: #bfd3ee;
  font-size: 20px;
  line-height: 1.6;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.home-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, .04);
  font-size: 13px;
  font-weight: 700;
}

.home-terminal-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .08), transparent 28rem),
    rgba(15, 23, 42, .62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.terminal-top {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.terminal-top span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #64748b;
}

.terminal-body {
  padding: 28px 26px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #dbeafe;
  font-size: 14px;
  line-height: 1.75;
}

.terminal-body p {
  margin: 0 0 8px;
}

.terminal-body strong {
  color: #a7f3d0;
}

.home-section {
  padding: 54px 0;
}

.home-section-head {
  max-width: 850px;
  margin-bottom: 24px;
}

.home-section-head h2,
.home-about-grid h2,
.home-blog-panel h2,
.home-final-cta h2 {
  margin: 12px 0 12px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.065em;
}

.home-section-head p,
.home-about-grid p,
.home-blog-panel p {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.7;
}

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

.home-service-card {
  position: relative;
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .035);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.home-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, .34);
  background: rgba(255, 255, 255, .055);
}

.home-service-card>span {
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
}

.home-service-card h3 {
  margin: 18px 0 12px;
  color: #ffffff;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.home-service-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.65;
}

.home-about-section {
  padding-top: 34px;
}

.home-about-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr);
  gap: 34px;
  padding: 34px;
  border: 1px solid rgba(56, 189, 248, .22);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .09), transparent 32rem),
    rgba(255, 255, 255, .032);
}

.home-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-proof-grid div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, .45);
}

.home-proof-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 22px;
}

.home-proof-grid span {
  display: block;
  color: #cbd5e1;
  line-height: 1.55;
}

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

.home-case-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .035);
}

.home-case-card h3 {
  margin: 18px 0 12px;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.home-case-card p {
  color: #cbd5e1;
  line-height: 1.65;
}

.home-case-card a {
  color: #7dd3fc;
  font-weight: 900;
}

.home-process-section {
  padding-top: 30px;
}

.home-blog-panel {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(168, 85, 247, .22);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, .08), transparent 30rem),
    rgba(255, 255, 255, .032);
}

.home-blog-panel p {
  max-width: 760px;
}

.home-final {
  padding: 26px 0 86px;
}

.home-final-cta {
  margin-top: 0;
}

@media (max-width: 1100px) {

  .home-hero-grid,
  .home-about-grid {
    grid-template-columns: 1fr;
  }

  .home-terminal-card {
    max-width: 620px;
  }

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

@media (max-width: 720px) {
  .home-hero-production {
    padding: 56px 0 38px;
  }

  .home-services-grid,
  .home-cases-grid,
  .home-proof-grid {
    grid-template-columns: 1fr;
  }

  .home-about-grid,
  .home-blog-panel {
    padding: 24px;
    border-radius: 24px;
  }

  .home-blog-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .terminal-body {
    font-size: 13px;
  }
}

/* /SPIGOTDEV HOME PRODUCTION */

/* SPIGOTDEV MOBILE APP NAV */
.mobile-app-nav,
.mobile-app-more,
.mobile-app-more-backdrop {
  display: none;
}

@media (max-width: 820px) {
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    backdrop-filter: blur(18px);
    background: rgba(15, 23, 42, .82);
  }

  .site-header .nav,
  .site-header nav,
  .site-nav,
  .header-nav {
    display: none !important;
  }

  .mobile-app-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    min-height: 70px;
    padding: 8px;
    border: 1px solid rgba(148, 163, 184, .24);
    border-radius: 26px;
    background:
      linear-gradient(180deg, rgba(30, 41, 59, .94), rgba(15, 23, 42, .96));
    box-shadow:
      0 18px 60px rgba(0, 0, 0, .42),
      inset 0 1px 0 rgba(255, 255, 255, .06);
    backdrop-filter: blur(22px);
  }

  .mobile-app-nav__item {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border: 0;
    border-radius: 20px;
    color: #94a3b8;
    background: transparent;
    text-decoration: none;
    font: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-app-nav__item.is-active {
    color: #ffffff;
    background: rgba(56, 189, 248, .10);
  }

  .mobile-app-nav__item.is-active::before {
    content: "";
    position: absolute;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: #38bdf8;
  }

  .mobile-app-nav__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    color: inherit;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
  }

  .mobile-app-nav__text {
    overflow: hidden;
    max-width: 100%;
    color: inherit;
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-app-nav__item--main {
    transform: translateY(-17px);
    color: #06111f;
  }

  .mobile-app-nav__plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 3px;
    border: 4px solid rgba(15, 23, 42, .98);
    border-radius: 999px;
    color: #06111f;
    background: linear-gradient(135deg, #7dd3fc, #38bdf8);
    box-shadow: 0 16px 35px rgba(56, 189, 248, .26);
    font-size: 32px;
    font-weight: 950;
    line-height: 1;
  }

  .mobile-app-nav__item--main .mobile-app-nav__text {
    color: #dbeafe;
    font-size: 11px;
  }

  .mobile-app-nav__button {
    appearance: none;
  }

  .mobile-app-more-backdrop {
    position: fixed;
    inset: 0;
    z-index: 130;
    background: rgba(2, 6, 23, .58);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
    backdrop-filter: blur(4px);
  }

  .mobile-app-more-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-app-more {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(94px + env(safe-area-inset-bottom));
    z-index: 140;
    display: block;
    padding: 10px 14px 16px;
    border: 1px solid rgba(148, 163, 184, .24);
    border-radius: 28px;
    background:
      radial-gradient(circle at top left, rgba(56, 189, 248, .12), transparent 28rem),
      linear-gradient(180deg, rgba(30, 41, 59, .98), rgba(15, 23, 42, .98));
    box-shadow: 0 24px 80px rgba(0, 0, 0, .50);
    transform: translateY(24px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }

  .mobile-app-more.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-app-more__handle {
    width: 46px;
    height: 4px;
    margin: 0 auto 14px;
    border-radius: 999px;
    background: rgba(148, 163, 184, .42);
  }

  .mobile-app-more__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
  }

  .mobile-app-more__head strong {
    display: block;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: -0.04em;
  }

  .mobile-app-more__head span {
    display: block;
    margin-top: 2px;
    color: #94a3b8;
    font-size: 13px;
  }

  .mobile-app-more__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(148, 163, 184, .24);
    border-radius: 999px;
    color: #e5e7eb;
    background: rgba(255, 255, 255, .04);
    font-size: 24px;
    line-height: 1;
  }

  .mobile-app-more__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-app-more__grid a {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 18px;
    color: #e5e7eb;
    background: rgba(255, 255, 255, .035);
    text-decoration: none;
  }

  .mobile-app-more__grid a.is-active {
    border-color: rgba(56, 189, 248, .35);
    background: rgba(56, 189, 248, .10);
  }

  .mobile-app-more__grid a span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    color: #7dd3fc;
    background: rgba(56, 189, 248, .10);
    font-size: 15px;
    font-weight: 950;
  }

  .mobile-app-more__grid a strong {
    overflow: hidden;
    color: #ffffff;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  html.mobile-app-more-opened {
    overflow: hidden;
  }
}

@media (max-width: 390px) {
  .mobile-app-nav {
    left: 8px;
    right: 8px;
    border-radius: 22px;
  }

  .mobile-app-nav__text {
    font-size: 10px;
  }

  .mobile-app-nav__plus {
    width: 52px;
    height: 52px;
  }
}

/* /SPIGOTDEV MOBILE APP NAV */

/* SPIGOTDEV MOBILE APP NAV FIX */
@media (max-width: 820px) {
  .mobile-app-nav {
    min-height: 76px !important;
    padding: 9px !important;
  }

  .mobile-app-nav__item {
    gap: 6px !important;
  }

  .mobile-app-nav__icon {
    width: 30px !important;
    height: 30px !important;
    min-height: 30px !important;
    color: #9fb5d4 !important;
  }

  .mobile-app-nav__icon svg {
    display: block;
    width: 25px;
    height: 25px;
    fill: currentColor;
  }

  .mobile-app-nav__item.is-active .mobile-app-nav__icon,
  .mobile-app-nav__item:hover .mobile-app-nav__icon {
    color: #7dd3fc !important;
  }

  .mobile-app-nav__text {
    font-size: 11px !important;
    font-weight: 900 !important;
  }

  .mobile-app-nav__item--main {
    transform: translateY(-20px) !important;
  }

  .mobile-app-nav__plus {
    width: 60px !important;
    height: 60px !important;
    font-size: 34px !important;
    font-weight: 950 !important;
  }

  .mobile-app-more {
    bottom: calc(102px + env(safe-area-inset-bottom)) !important;
  }

  .mobile-app-more__grid a {
    min-height: 64px !important;
  }
}

@media (max-width: 390px) {
  .mobile-app-nav__icon svg {
    width: 23px;
    height: 23px;
  }

  .mobile-app-nav__plus {
    width: 56px !important;
    height: 56px !important;
  }
}

/* /SPIGOTDEV MOBILE APP NAV FIX */


/* SPIGOTDEV SITE SETTINGS */
.site-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.site-logo img {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 42px;
  object-fit: contain;
}

.site-logo span {
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer-logo img {
  display: block;
  width: auto;
  max-width: 170px;
  max-height: 44px;
  object-fit: contain;
}

.footer-logo span {
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(160px, .6fr));
  gap: 28px;
}

.footer-brand p {
  max-width: 380px;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: #ffffff;
}

.footer-links a {
  color: #94a3b8;
}

.footer-links a:hover {
  color: #7dd3fc;
}

@media (max-width: 880px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-logo img {
    max-width: 150px;
    max-height: 38px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* /SPIGOTDEV SITE SETTINGS */
/* SPIGOTDEV HEADER FIX 2026-06 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(148, 163, 184, .16);
  background: rgba(15, 23, 42, .92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  min-height: 68px;
}

.site-logo {
  flex: 0 0 auto;
  display: inline-flex !important;
  align-items: center;
  text-decoration: none;
}

.site-logo span {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.06em;
}

.site-logo img {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 42px;
  object-fit: contain;
}

.site-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 22px !important;
  margin-left: auto;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #ffffff;
}

.site-nav .nav-login {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, .02);
}

.site-nav .nav-login:hover {
  border-color: rgba(56, 189, 248, .38);
  background: rgba(56, 189, 248, .08);
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .site-nav {
    display: none !important;
  }

  .site-logo span {
    font-size: 22px;
  }
}

/* /SPIGOTDEV HEADER FIX 2026-06 */


/* SPIGOTDEV LEGAL DOCUMENTS */
/* .content-template-legal {
  max-width: 980px;
} */

.legal-note {
  margin-bottom: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(56, 189, 248, .22);
  border-radius: 22px;
  color: #cbd5e1;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .08), transparent 24rem),
    rgba(15, 23, 42, .42);
  line-height: 1.7;
}

.legal-document h2 {
  margin: 34px 0 14px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p,
.legal-document li {
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.78;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document ul,
.legal-document ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-document a {
  color: #7dd3fc;
  font-weight: 800;
}

.legal-document strong {
  color: #ffffff;
}

@media (max-width: 680px) {
  .legal-document h2 {
    font-size: 25px;
  }

  .legal-document p,
  .legal-document li {
    font-size: 16px;
  }

  .legal-note {
    padding: 18px;
    border-radius: 18px;
  }
}

/* /SPIGOTDEV LEGAL DOCUMENTS */


/* SPIGOTDEV CASE EXTERNAL LINK */
.case-project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(56, 189, 248, .28);
  border-radius: 999px;
  color: #7dd3fc !important;
  background: rgba(56, 189, 248, .08);
  font-weight: 900;
}

.case-project-link:hover {
  color: #ffffff !important;
  border-color: rgba(56, 189, 248, .45);
}

/* /SPIGOTDEV CASE EXTERNAL LINK */


/* SPIGOTDEV PORTFOLIO CASES */
.portfolio-section {
  padding: 44px 0 86px;
}

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

.portfolio-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .08), transparent 24rem),
    rgba(255, 255, 255, .035);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.portfolio-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, .32);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .12), transparent 24rem),
    rgba(255, 255, 255, .05);
}

.portfolio-card__main {
  flex: 1;
  display: block;
  padding: 26px;
  color: inherit;
  text-decoration: none;
}

.portfolio-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.portfolio-card__num {
  color: rgba(148, 163, 184, .55);
  font-size: 13px;
  font-weight: 950;
}

.portfolio-card h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.portfolio-card p {
  margin: 0 0 18px;
  color: #cbd5e1;
  line-height: 1.65;
}

.portfolio-stack {
  display: inline-flex;
  margin-top: auto;
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.5;
}

.portfolio-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 26px 24px;
}

.portfolio-card__actions a,
.case-project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(56, 189, 248, .28);
  border-radius: 999px;
  color: #7dd3fc !important;
  background: rgba(56, 189, 248, .08);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.portfolio-card__actions a:hover,
.case-project-link:hover {
  color: #ffffff !important;
  border-color: rgba(56, 189, 248, .45);
}

.case-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.case-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.case-summary-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .035);
}

.case-summary-grid span {
  display: block;
  margin-bottom: 10px;
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.case-summary-grid p {
  margin: 0;
  color: #dbeafe;
  font-size: 16px;
  line-height: 1.65;
}

.case-content h2 {
  margin-top: 38px;
}

.case-content ul {
  margin-bottom: 24px;
}

@media (max-width: 1100px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {

  .portfolio-grid,
  .case-summary-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card {
    min-height: auto;
    border-radius: 24px;
  }

  .portfolio-card__main {
    padding: 22px;
  }

  .portfolio-card__actions {
    padding: 0 22px 22px;
  }

  .portfolio-card h2 {
    font-size: 25px;
  }
}

/* /SPIGOTDEV PORTFOLIO CASES */


/* SPIGOTDEV HOME CASES LINK */
.home-more-link {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* /SPIGOTDEV HOME CASES LINK */


/* SPIGOTDEV ARTICLE CTA BOX */
.article-cta-box {
  margin: 36px 0 8px;
  padding: 28px;
  border: 1px solid rgba(56, 189, 248, .24);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .10), transparent 28rem),
    rgba(15, 23, 42, .52);
}

.article-cta-box h2 {
  margin-top: 0 !important;
}

.article-cta-box p:last-child {
  margin-bottom: 0;
}

.article-cta-box .btn {
  margin-top: 8px;
}

/* /SPIGOTDEV ARTICLE CTA BOX */

/* SPIGOTDEV FILE INPUT */
.form-field input[type="file"] {
  width: 100%;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px dashed rgba(125, 211, 252, .34) !important;
  border-radius: 18px !important;
  color: #cbd5e1;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .08), transparent 22rem),
    rgba(255, 255, 255, .035);
  cursor: pointer;
}

.form-field input[type="file"]::file-selector-button {
  min-height: 34px;
  margin-right: 12px;
  padding: 0 16px;
  border: 1px solid rgba(56, 189, 248, .35);
  border-radius: 999px;
  color: #06111f;
  background: linear-gradient(135deg, #7dd3fc, #38bdf8);
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.form-field input[type="file"]::-webkit-file-upload-button {
  min-height: 34px;
  margin-right: 12px;
  padding: 0 16px;
  border: 1px solid rgba(56, 189, 248, .35);
  border-radius: 999px;
  color: #06111f;
  background: linear-gradient(135deg, #7dd3fc, #38bdf8);
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.form-field input[type="file"]:hover {
  border-color: rgba(125, 211, 252, .58) !important;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .12), transparent 22rem),
    rgba(255, 255, 255, .05);
}

.form-field input[type="file"]:hover::file-selector-button {
  box-shadow: 0 10px 24px rgba(56, 189, 248, .18);
  transform: translateY(-1px);
}

.form-field input[type="file"]:hover::-webkit-file-upload-button {
  box-shadow: 0 10px 24px rgba(56, 189, 248, .18);
  transform: translateY(-1px);
}

.form-field input[type="file"]:focus {
  outline: none;
  border-color: rgba(125, 211, 252, .72) !important;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, .12);
}

.form-field input[type="file"]+.form-help,
.form-field .form-help {
  margin-top: 10px;
}

/* /SPIGOTDEV FILE INPUT */
/* SPIGOTDEV CRM */
.panel-head-row,
.form-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.order-client-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 26px;
}

.btn-danger,
.btn-danger-soft {
  border-color: rgba(248, 113, 113, .38) !important;
  background: rgba(127, 29, 29, .24) !important;
  color: #fecaca !important;
}

.danger-box {
  margin: 18px 0 24px;
  padding: 18px 20px;
  border: 1px solid rgba(248, 113, 113, .35);
  border-radius: 20px;
  background: rgba(127, 29, 29, .18);
  color: #fecaca;
}

.nav-badge {
  display: inline-flex;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #38bdf8;
  color: #06111f;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.account-nav-link--messages {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 560px;
  overflow: auto;
  padding: 18px;
  margin: 22px 0;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 24px;
  background: rgba(15, 23, 42, .42);
}

.chat-thread--staff {
  max-height: 520px;
}

.chat-message {
  max-width: 82%;
  padding: 14px 16px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
}

.chat-message--me {
  align-self: flex-end;
  border-color: rgba(56, 189, 248, .32);
  background: rgba(56, 189, 248, .10);
}

.chat-message--other {
  align-self: flex-start;
}

.chat-message__meta {
  margin-bottom: 8px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
}

.chat-message__body {
  color: #e5e7eb;
  font-size: 15px;
  line-height: 1.6;
}

.chat-files {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.chat-files a {
  color: #7dd3fc;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.chat-form {
  margin-top: 22px;
}

.message-order-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.message-order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
  color: #e5e7eb;
  text-decoration: none;
}

.message-order-card strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
}

.message-order-card span {
  color: #94a3b8;
  font-size: 14px;
}

.empty-state {
  padding: 22px;
  border: 1px dashed rgba(148, 163, 184, .28);
  border-radius: 20px;
  color: #94a3b8;
  background: rgba(255, 255, 255, .025);
}

.staff-section {
  padding: 42px 0;
}

.staff-layout {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
}

.staff-sidebar,
.staff-panel {
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 28px;
  background: rgba(15, 23, 42, .72);
}

.staff-sidebar {
  padding: 22px;
  height: fit-content;
  position: sticky;
  top: 88px;
}

.staff-sidebar__brand {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 950;
}

.staff-sidebar nav {
  display: grid;
  gap: 8px;
}

.staff-sidebar a {
  padding: 12px 14px;
  border-radius: 14px;
  color: #cbd5e1;
  text-decoration: none;
}

.staff-sidebar a:hover {
  background: rgba(255, 255, 255, .06);
  color: #ffffff;
}

.staff-panel {
  padding: 28px;
}

.staff-filter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px auto;
  gap: 12px;
  margin: 22px 0;
}

.staff-filter input,
.staff-filter select {
  min-height: 48px;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 16px;
  color: #e5e7eb;
  background: rgba(15, 23, 42, .74);
  padding: 0 14px;
}

.staff-table-wrap {
  overflow: auto;
}

.staff-table {
  width: 100%;
  border-collapse: collapse;
}

.staff-table th,
.staff-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(148, 163, 184, .16);
  text-align: left;
  color: #cbd5e1;
}

.staff-table th {
  color: #94a3b8;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.staff-table a {
  color: #7dd3fc;
  font-weight: 850;
}

.staff-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.staff-description {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, .20);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
  color: #cbd5e1;
  line-height: 1.7;
}

.activity-log {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.activity-log__item {
  padding: 16px 18px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
}

.activity-log__item strong {
  display: block;
  color: #ffffff;
  margin-bottom: 5px;
}

.activity-log__item span,
.activity-log__item small {
  color: #94a3b8;
}

.activity-log__item p {
  margin: 8px 0;
  color: #cbd5e1;
}

@media (max-width: 920px) {
  .staff-layout {
    grid-template-columns: 1fr;
  }

  .staff-sidebar {
    position: static;
  }

  .staff-grid-2,
  .staff-filter {
    grid-template-columns: 1fr;
  }

  .chat-message {
    max-width: 94%;
  }
}

/* /SPIGOTDEV CRM */


/* SPIGOTDEV MESSAGE LIST FIX */
.message-order-card__last {
  display: block;
  margin-top: 8px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

/* /SPIGOTDEV MESSAGE LIST FIX */






/* SPIGOTDEV ACCOUNT UNIFIED EXTRAS */
.account-nav-link--messages {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-badge[hidden] {
  display: none !important;
}

.nav-badge {
  display: inline-flex;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #38bdf8;
  color: #06111f;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  flex: 0 0 auto;
}

.account-logout-form {
  margin: 0;
}

.account-logout-form button {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.message-order-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.message-order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
  color: #e5e7eb;
  text-decoration: none;
}

.message-order-card strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
}

.message-order-card span,
.message-order-card__last {
  display: block;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.5;
}

.message-order-card__last {
  margin-top: 8px;
  color: #64748b;
  font-size: 13px;
}

.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 560px;
  overflow: auto;
  padding: 18px;
  margin: 24px 0;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 24px;
  background: rgba(15, 23, 42, .42);
}

.chat-message {
  max-width: 82%;
  padding: 14px 16px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
}

.chat-message--me {
  align-self: flex-end;
  border-color: rgba(56, 189, 248, .32);
  background: rgba(56, 189, 248, .10);
}

.chat-message--other {
  align-self: flex-start;
}

.chat-message__meta {
  margin-bottom: 8px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
}

.chat-message__body {
  color: #e5e7eb;
  font-size: 15px;
  line-height: 1.6;
}

.chat-files {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.chat-files a {
  color: #7dd3fc;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-actions-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.danger-box {
  margin: 18px 0 24px;
  padding: 18px 20px;
  border: 1px solid rgba(248, 113, 113, .35);
  border-radius: 20px;
  background: rgba(127, 29, 29, .18);
  color: #fecaca;
}

.btn-danger,
.btn-danger-soft {
  border-color: rgba(248, 113, 113, .38) !important;
  background: rgba(127, 29, 29, .24) !important;
  color: #fecaca !important;
}

@media (max-width: 720px) {
  .chat-message {
    max-width: 94%;
  }

  .message-order-card {
    align-items: flex-start;
  }
}

/* /SPIGOTDEV ACCOUNT UNIFIED EXTRAS */


/* SPIGOTDEV STAFF ORDER FILES */
.staff-order-files {
  display: grid;
  gap: 10px;
  margin: 14px 0 26px;
}

.staff-order-file {
  display: block;
  padding: 13px 16px;
  border: 1px solid rgba(56, 189, 248, .24);
  border-radius: 16px;
  background: rgba(56, 189, 248, .07);
  color: #7dd3fc;
  font-weight: 850;
  text-decoration: none;
  word-break: break-word;
}

.staff-order-file:hover {
  border-color: rgba(56, 189, 248, .48);
  background: rgba(56, 189, 248, .12);
}

/* /SPIGOTDEV STAFF ORDER FILES */


/* SPIGOTDEV CLIENT CHAT COMPACT 2026-07-09 */
.chat-panel {
  padding: 28px !important;
}

.chat-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 16px;
}

.chat-topbar__title {
  min-width: 0;
}

.chat-topbar__title strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.2;
}

.chat-topbar__title span {
  display: block;
  margin-top: 4px;
  color: #93a9c7;
  font-size: 14px;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-back-link {
  flex: 0 0 auto;
  min-height: 42px;
  padding-inline: 20px !important;
}

.chat-thread--client {
  height: 390px;
  max-height: 390px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px !important;
  margin: 0 0 16px !important;
  gap: 8px !important;
  border-radius: 22px !important;
  scroll-behavior: smooth;
}

.chat-thread--client::-webkit-scrollbar {
  width: 8px;
}

.chat-thread--client::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, .45);
  border-radius: 999px;
}

.chat-thread--client::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, .35);
  border-radius: 999px;
}

.chat-thread--client .chat-message {
  max-width: min(72%, 560px) !important;
  padding: 10px 12px !important;
  border-radius: 16px !important;
}

.chat-message--staff {
  align-self: flex-start !important;
  border-color: rgba(148, 163, 184, .24) !important;
  background: rgba(255, 255, 255, .045) !important;
}

.chat-message--client {
  align-self: flex-end !important;
  border-color: rgba(56, 189, 248, .34) !important;
  background: rgba(56, 189, 248, .11) !important;
}

.chat-thread--client .chat-message__meta {
  margin-bottom: 5px !important;
  font-size: 11px !important;
  line-height: 1.35 !important;
  color: #9fb4d1 !important;
}

.chat-thread--client .chat-message__body {
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.chat-thread--client .chat-files {
  margin-top: 6px !important;
  gap: 4px !important;
}

.chat-thread--client .chat-files a {
  font-size: 13px !important;
  line-height: 1.35 !important;
  word-break: break-word;
}

.chat-empty-state {
  margin: auto;
  width: 100%;
}

.chat-compact-form {
  margin: 0;
}

.chat-compose-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px 150px;
  gap: 10px;
  align-items: stretch;
}

.chat-compose-message,
.chat-file-control {
  margin: 0;
}

.chat-compose-message textarea {
  width: 100%;
  height: 46px !important;
  min-height: 46px !important;
  max-height: 96px !important;
  resize: vertical;
  padding: 13px 16px !important;
  border-radius: 16px !important;
  line-height: 1.35 !important;
}

.chat-file-control input[type="file"] {
  height: 46px !important;
  min-height: 46px !important;
  padding: 6px 8px !important;
  border-radius: 16px !important;
  white-space: nowrap;
}

.chat-file-control input[type="file"]::file-selector-button {
  min-height: 32px !important;
  height: 32px !important;
  padding: 0 12px !important;
  margin-right: 8px !important;
  font-size: 13px !important;
}

.chat-file-control input[type="file"]::-webkit-file-upload-button {
  min-height: 32px !important;
  height: 32px !important;
  padding: 0 12px !important;
  margin-right: 8px !important;
  font-size: 13px !important;
}

.chat-send-btn {
  min-height: 46px !important;
  height: 46px !important;
  padding-inline: 18px !important;
  white-space: nowrap;
}

.chat-form-errors {
  margin-bottom: 10px;
}

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

@media (max-width: 980px) {
  .chat-compose-row {
    grid-template-columns: 1fr;
  }

  .chat-thread--client {
    height: 420px;
    max-height: 420px;
  }

  .chat-thread--client .chat-message {
    max-width: 92% !important;
  }

  .chat-file-control input[type="file"],
  .chat-send-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .chat-panel {
    padding: 20px !important;
  }

  .chat-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .chat-back-link {
    width: 100%;
    justify-content: center;
  }

  .chat-thread--client {
    height: 360px;
    max-height: 360px;
    padding: 12px !important;
  }

  .chat-thread--client .chat-message {
    max-width: 96% !important;
  }
}

/* /SPIGOTDEV CLIENT CHAT COMPACT 2026-07-09 */


/* SPIGOTDEV CHAT INPUT POLISH 2026-07-09 */
.chat-compose-message textarea,
.chat-compose-row textarea#id_body {
  width: 100%;
  height: 46px;
  min-height: 46px;
  max-height: 132px;
  resize: none;
  overflow-y: auto;
  padding: 13px 16px !important;
  border: 1px solid rgba(148, 163, 184, .26) !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .08), transparent 18rem),
    rgba(15, 23, 42, .82) !important;
  color: #e5e7eb !important;
  caret-color: #7dd3fc;
  line-height: 1.35 !important;
  box-shadow: none !important;
  outline: none !important;
  color-scheme: dark;
}

.chat-compose-message textarea::placeholder,
.chat-compose-row textarea#id_body::placeholder {
  color: #64748b;
}

.chat-compose-message textarea:focus,
.chat-compose-row textarea#id_body:focus {
  border-color: rgba(125, 211, 252, .62) !important;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, .10) !important;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .12), transparent 18rem),
    rgba(15, 23, 42, .92) !important;
}

.chat-file-control {
  position: relative;
  min-width: 0;
  height: 46px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border: 1px dashed rgba(125, 211, 252, .36);
  border-radius: 16px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .08), transparent 18rem),
    rgba(15, 23, 42, .62);
  cursor: pointer;
  overflow: hidden;
}

.chat-file-control:hover {
  border-color: rgba(125, 211, 252, .62);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, .12), transparent 18rem),
    rgba(15, 23, 42, .78);
}

.chat-file-control input[type="file"] {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  cursor: pointer !important;
  padding: 0 !important;
  border: 0 !important;
}

.chat-file-button {
  display: inline-flex;
  height: 32px;
  padding: 0 14px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #7dd3fc, #38bdf8);
  color: #06111f;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
  pointer-events: none;
}

.chat-file-name {
  min-width: 0;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.2;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}

.chat-message,
.chat-message__body,
.chat-files,
.chat-files a {
  overflow-wrap: anywhere;
  word-wrap: break-word;
  word-break: break-word;
}

.chat-message__body {
  max-width: 100%;
}

.chat-thread--client .chat-message {
  min-width: 0;
}

@media (max-width: 980px) {
  .chat-file-control {
    width: 100%;
  }
}

/* /SPIGOTDEV CHAT INPUT POLISH 2026-07-09 */


/* SPIGOTDEV ACCOUNT DASHBOARD REAL DATA */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 28px;
}

.dashboard-stat-card {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
  text-decoration: none;
}

.dashboard-stat-card strong {
  display: block;
  color: #ffffff;
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.dashboard-stat-card span {
  display: block;
  margin-top: 8px;
  color: #93a9c7;
  font-size: 14px;
  line-height: 1.45;
}

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

.dashboard-block {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, .20);
  border-radius: 22px;
  background: rgba(255, 255, 255, .025);
}

.dashboard-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.dashboard-block__head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
}

.dashboard-block__head a {
  color: #7dd3fc;
  font-weight: 850;
  text-decoration: none;
}

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

.dashboard-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 16px;
  background: rgba(15, 23, 42, .42);
  color: #e5e7eb;
  text-decoration: none;
}

.dashboard-list-item strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
}

.dashboard-list-item span {
  display: block;
  margin-top: 4px;
  color: #93a9c7;
  font-size: 13px;
  line-height: 1.4;
}

.dashboard-list-item em {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  color: #7dd3fc;
  background: rgba(56, 189, 248, .10);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.dashboard-messages-state {
  margin-top: 0;
}

@media (max-width: 1040px) {

  .dashboard-stats,
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {

  .dashboard-stats,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-list-item {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* /SPIGOTDEV ACCOUNT DASHBOARD REAL DATA */


/* SPIGOTDEV ACCOUNT DASHBOARD REAL DATA */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 28px;
}

.dashboard-stat-card {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
  text-decoration: none;
}

.dashboard-stat-card strong {
  display: block;
  color: #ffffff;
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.dashboard-stat-card span {
  display: block;
  margin-top: 8px;
  color: #93a9c7;
  font-size: 14px;
  line-height: 1.45;
}

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

.dashboard-block {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, .20);
  border-radius: 22px;
  background: rgba(255, 255, 255, .025);
}

.dashboard-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.dashboard-block__head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
}

.dashboard-block__head a {
  color: #7dd3fc;
  font-weight: 850;
  text-decoration: none;
}

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

.dashboard-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 16px;
  background: rgba(15, 23, 42, .42);
  color: #e5e7eb;
  text-decoration: none;
}

.dashboard-list-item strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
}

.dashboard-list-item span {
  display: block;
  margin-top: 4px;
  color: #93a9c7;
  font-size: 13px;
  line-height: 1.4;
}

.dashboard-list-item em {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  color: #7dd3fc;
  background: rgba(56, 189, 248, .10);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.dashboard-messages-state {
  margin-top: 0;
}

.nav-badge[hidden] {
  display: none !important;
}

@media (max-width: 1040px) {

  .dashboard-stats,
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {

  .dashboard-stats,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-list-item {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* /SPIGOTDEV ACCOUNT DASHBOARD REAL DATA */


/* SPIGOTDEV DASHBOARD MESSAGES/FLES */
.dashboard-message-alert {
  padding: 12px 14px;
  border: 1px solid rgba(56, 189, 248, .28);
  border-radius: 16px;
  background: rgba(56, 189, 248, .10);
  color: #bfdbfe;
  font-size: 14px;
  line-height: 1.5;
}

.dashboard-message-alert strong {
  color: #7dd3fc;
  font-weight: 950;
}

.dashboard-message-item small {
  display: block;
  margin-top: 8px;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* /SPIGOTDEV DASHBOARD MESSAGES/FLES */


/* SPIGOTDEV DASHBOARD REORDER FIX */
.dashboard-top-grid,
.dashboard-wide-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

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

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

.dashboard-block,
.dashboard-list-item,
.dashboard-file-card,
.dashboard-single-message,
.dashboard-stat-card {
  min-width: 0;
  max-width: 100%;
}

.dashboard-block {
  overflow: hidden;
}

.dashboard-list-item>div,
.dashboard-single-message>div,
.dashboard-file-card {
  min-width: 0;
}

.dashboard-list-item strong,
.dashboard-list-item span,
.dashboard-file-card strong,
.dashboard-file-card span,
.dashboard-single-message strong,
.dashboard-single-message span,
.dashboard-single-message p {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.dashboard-file-card {
  display: block;
  padding: 15px 16px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 16px;
  background: rgba(15, 23, 42, .42);
  color: #e5e7eb;
  text-decoration: none;
}

.dashboard-file-card strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
}

.dashboard-file-card span {
  display: block;
  margin-top: 6px;
  color: #93a9c7;
  font-size: 13px;
  line-height: 1.4;
}

.dashboard-single-message {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 18px;
  background: rgba(15, 23, 42, .42);
  color: #e5e7eb;
  text-decoration: none;
}

.dashboard-single-message.is-unread {
  border-color: rgba(56, 189, 248, .36);
  background: rgba(56, 189, 248, .08);
}

.dashboard-single-message strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.35;
}

.dashboard-single-message span {
  display: block;
  margin-top: 5px;
  color: #93a9c7;
  font-size: 13px;
  line-height: 1.4;
}

.dashboard-single-message p {
  margin: 12px 0 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .dashboard-top-grid {
    grid-template-columns: 1fr;
  }

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

/* /SPIGOTDEV DASHBOARD REORDER FIX */


/* SPIGOTDEV STAFF COMPACT LOGS 2026-07-09 */
.staff-nav,
.staff-sidebar .staff-nav {
  display: grid;
  gap: 8px;
}

.staff-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  color: #cbd5e1;
  text-decoration: none;
}

.staff-nav a:hover,
.staff-nav a.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, .075);
}

.staff-panel--compact {
  padding: 28px;
}

.staff-page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.staff-page-head h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .95;
  letter-spacing: -1.5px;
}

.staff-page-head p {
  margin: 10px 0 0;
  color: #93a9c7;
  line-height: 1.55;
}

.staff-page-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.staff-log-groups {
  display: grid;
  gap: 12px;
}

.staff-log-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
  color: #e5e7eb;
  text-decoration: none;
}

.staff-log-group:hover {
  border-color: rgba(56, 189, 248, .34);
  background: rgba(56, 189, 248, .06);
}

.staff-log-group__main {
  min-width: 0;
}

.staff-log-group__main strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.staff-log-group__main span {
  display: block;
  margin-top: 5px;
  color: #93a9c7;
  font-size: 13px;
  line-height: 1.45;
}

.staff-log-group__main small {
  display: block;
  margin-top: 7px;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.staff-log-group__meta {
  justify-self: end;
  width: 76px;
  min-height: 60px;
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: 16px;
  background: rgba(56, 189, 248, .10);
  text-align: center;
}

.staff-log-group__meta b {
  display: block;
  color: #7dd3fc;
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
}

.staff-log-group__meta span {
  display: block;
  margin-top: 4px;
  color: #93a9c7;
  font-size: 11px;
  line-height: 1.2;
}

.staff-order-log-list {
  display: grid;
  gap: 10px;
}

.staff-order-log-item {
  padding: 14px 16px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 16px;
  background: rgba(15, 23, 42, .42);
}

.staff-order-log-item__top,
.staff-order-log-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.staff-order-log-item__top strong {
  color: #ffffff;
  font-size: 15px;
}

.staff-order-log-item__top span,
.staff-order-log-item__bottom span {
  color: #93a9c7;
  font-size: 12px;
}

.staff-order-log-item p {
  margin: 8px 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .staff-page-head {
    flex-direction: column;
  }

  .staff-log-group {
    grid-template-columns: 1fr;
  }

  .staff-log-group__meta {
    justify-self: start;
  }
}

/* /SPIGOTDEV STAFF COMPACT LOGS 2026-07-09 */

/* SPIGOTDEV CLOSED ORDERS */
.closed-orders-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.closed-orders-list {
  margin-top: 22px;
}

.staff-closed-orders-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.staff-closed-order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
  color: #e5e7eb;
  text-decoration: none;
}

.staff-closed-order-card:hover {
  border-color: rgba(56, 189, 248, .34);
  background: rgba(56, 189, 248, .06);
}

.staff-closed-order-card div {
  min-width: 0;
}

.staff-closed-order-card strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.staff-closed-order-card span {
  display: block;
  margin-top: 5px;
  color: #93a9c7;
  font-size: 13px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.staff-closed-order-card b {
  flex: 0 0 auto;
  color: #7dd3fc;
  font-size: 16px;
  font-weight: 950;
}

@media (max-width: 720px) {
  .closed-orders-stats {
    grid-template-columns: 1fr;
  }

  .staff-closed-order-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* /SPIGOTDEV CLOSED ORDERS */

/* SPIGOTDEV CLOSED CHAT NOTICE */
.closed-chat-notice {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 16px;
  background: rgba(255, 255, 255, .035);
  color: #93a9c7;
  font-size: 14px;
  line-height: 1.5;
}

/* /SPIGOTDEV CLOSED CHAT NOTICE */


/* SPIGOTDEV PROFILE COMPACT FORM */
.profile-form-compact {
  max-width: 720px;
}

.profile-form-compact .form-row,
.profile-form-compact .form-group,
.profile-form-compact p {
  max-width: 720px;
}

.profile-form-compact input,
.profile-form-compact select,
.profile-form-compact textarea {
  width: 100%;
  max-width: 720px;
}

.profile-form-compact .btn,
.profile-form-compact button[type="submit"],
.profile-form-compact input[type="submit"] {
  width: auto;
  min-width: 220px;
  max-width: 100%;
  padding-left: 28px;
  padding-right: 28px;
}

@media (max-width: 760px) {
  .profile-form-compact {
    max-width: none;
  }

  .profile-form-compact .btn,
  .profile-form-compact button[type="submit"],
  .profile-form-compact input[type="submit"] {
    width: 100%;
  }
}

/* /SPIGOTDEV PROFILE COMPACT FORM */