body {
  background:#020817 !important;
  color:#fff !important;
  font-family: Arial, sans-serif !important;
}

:root {
  --bg: #020817;
  --panel: rgba(6, 27, 58, 0.72);
  --panel-strong: rgba(8, 34, 74, 0.88);
  --line: rgba(56, 189, 248, 0.24);
  --line-strong: rgba(56, 189, 248, 0.52);
  --blue: #0B5CFF;
  --cyan: #38BDF8;
  --text: #FFFFFF;
  --muted: #94A3B8;
  --soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 26px 80px rgba(11, 92, 255, 0.28);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 18% 8%, rgba(11, 92, 255, 0.36), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(56, 189, 248, 0.24), transparent 28%),
    linear-gradient(180deg, #020817 0%, #031124 45%, #020817 100%) !important;
  color: var(--text) !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.09) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(56, 189, 248, 0.07) 42%, transparent 44%, transparent 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(var(--max), calc(100% - 28px));
  margin: 14px auto 0;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2, 8, 23, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34), inset 0 0 30px rgba(56, 189, 248, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.28);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #cbd5e1;
  font-size: 14px;
}

.desktop-nav a,
.mobile-nav a,
.site-footer a {
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.site-footer a:hover {
  color: var(--cyan);
  text-shadow: 0 0 16px rgba(56, 189, 248, 0.7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(56, 189, 248, 0.36);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.8);
  box-shadow: 0 0 36px rgba(56, 189, 248, 0.28);
}

.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 48px rgba(11, 92, 255, 0.42);
}

.btn-ghost {
  background: rgba(6, 27, 58, 0.64);
}

.header-cta {
  min-height: 46px;
  padding: 0 18px;
  background: linear-gradient(135deg, rgba(11, 92, 255, 0.95), rgba(56, 189, 248, 0.78));
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(6, 27, 58, 0.7);
  padding: 11px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 999px;
}

.mobile-nav {
  position: fixed;
  z-index: 45;
  top: 96px;
  left: 14px;
  right: 14px;
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(2, 8, 23, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
  gap: 12px;
}

.section-shell {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
  min-height: 680px;
  padding: 86px 0 64px;
}

.hero-bg {
  position: absolute;
  inset: 34px -5vw 34px;
  z-index: -1;
  border-radius: 44px;
  border: 1px solid rgba(56, 189, 248, 0.13);
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.2), rgba(6, 27, 58, 0.52)),
    radial-gradient(circle at 70% 30%, rgba(11, 92, 255, 0.34), transparent 32%);
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.32;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

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

.hero-subtitle {
  max-width: 710px;
  margin-bottom: 28px;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span,
.device-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 27, 58, 0.56);
  color: #dbeafe;
  box-shadow: inset 0 0 24px rgba(56, 189, 248, 0.04);
}

.hero-console,
.glass-card,
.order-panel,
.price-card,
.download-card,
.qr-card,
.client-card,
.article-card,
.faq-list details,
.seo-panel,
.admin-panel,
.login-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(6, 27, 58, 0.82), rgba(2, 8, 23, 0.66));
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), inset 0 0 42px rgba(56, 189, 248, 0.05);
}

.hero-console {
  position: relative;
  border-radius: 34px;
  padding: 22px;
  overflow: hidden;
  animation: floaty 5s ease-in-out infinite;
}

.hero-console::before,
.price-card.featured::before,
.dashboard-demo::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(56, 189, 248, 0.38), transparent);
  opacity: 0.42;
}

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

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 24px #22c55e;
}

.signal-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 24px;
  background: rgba(2, 8, 23, 0.52);
}

.signal-card span,
.mini-grid span,
.status-line span {
  color: var(--muted);
  font-size: 13px;
}

.signal-card strong {
  display: block;
  margin: 8px 0 20px;
  font-size: 52px;
  line-height: 1;
}

.signal-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  height: 74px;
  align-items: end;
}

.signal-bars i {
  display: block;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.52);
}

.signal-bars i:nth-child(1) { height: 36%; }
.signal-bars i:nth-child(2) { height: 58%; }
.signal-bars i:nth-child(3) { height: 78%; }
.signal-bars i:nth-child(4) { height: 100%; }

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.mini-grid div {
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.mini-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.compact {
  margin-left: 0;
  text-align: left;
}

.order-strip,
.stats,
.features,
.pricing,
.apps,
.devices,
.self-service,
.reviews,
.faq,
.blog-preview,
.final-cta,
.seo-section {
  padding: 74px 0;
}

.order-strip {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 28px;
  align-items: start;
}

.order-panel {
  border-radius: var(--radius);
  padding: 24px;
}

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

label {
  display: grid;
  gap: 8px;
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 16px;
  padding: 14px 15px;
  background: rgba(2, 8, 23, 0.72);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(56, 189, 248, 0.82);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

textarea {
  resize: vertical;
}

.inline-order-form {
  display: grid;
  gap: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.stats article {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(6, 27, 58, 0.58);
}

.stats strong {
  font-size: 28px;
  line-height: 1.1;
}

.stats span {
  margin-top: 8px;
  color: var(--muted);
}

.feature-grid,
.pricing-grid,
.app-grid,
.review-grid,
.article-grid {
  display: grid;
  gap: 18px;
}

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

.pricing-grid {
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

.app-grid,
.review-grid,
.article-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.glass-card,
.price-card,
.download-card,
.article-card {
  position: relative;
  border-radius: var(--radius);
  padding: 24px;
  overflow: hidden;
}

.glass-card::after,
.download-card::after,
.article-card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.7), transparent);
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 16px;
  background: rgba(11, 92, 255, 0.18);
  color: var(--cyan);
  font-weight: 900;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.2);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price-card.featured {
  transform: translateY(-12px);
  border-color: rgba(56, 189, 248, 0.66);
  box-shadow: 0 26px 84px rgba(11, 92, 255, 0.34);
}

.price-card strong {
  display: block;
  margin: 4px 0 18px;
  font-size: 40px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  color: #cbd5e1;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

.price-card .btn {
  margin-top: auto;
}

.badge,
.status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  color: #031124;
  background: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

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

.download-card strong {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(56, 189, 248, 0.08);
  font-size: 28px;
}

.download-card small {
  color: var(--muted);
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.dashboard-demo {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(2, 8, 23, 0.46);
  overflow: hidden;
}

.qr-card,
.client-card {
  position: relative;
  border-radius: 28px;
  padding: 24px;
}

.fake-qr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 160px;
  height: 160px;
  margin-bottom: 20px;
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: #e0f2fe;
  box-shadow: 0 0 48px rgba(56, 189, 248, 0.25);
}

.fake-qr i {
  border-radius: 10px;
  background: #020817;
}

.demo-actions,
.demo-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}

.status.active {
  background: #22c55e;
  color: #02110a;
}

.demo-tools {
  margin-top: 20px;
}

.demo-tools button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(11, 92, 255, 0.16);
  color: #dbeafe;
  cursor: pointer;
}

.review-grid .glass-card strong {
  color: #fde68a;
  letter-spacing: 0.1em;
}

.review-grid .glass-card span {
  color: var(--cyan);
  font-weight: 800;
}

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

.faq-list details {
  border-radius: 20px;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.article-card {
  min-height: 170px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.72);
}

.final-cta {
  margin-bottom: 72px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.26), transparent 42%),
    rgba(6, 27, 58, 0.56);
  box-shadow: var(--shadow);
}

.site-footer {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(2, 8, 23, 0.76);
}

.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 18px;
}

.site-footer p {
  max-width: 520px;
  margin: 12px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: #cbd5e1;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(2, 8, 23, 0.82);
  backdrop-filter: blur(16px);
}

.modal.is-open {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: #031124;
  box-shadow: 0 30px 100px rgba(11, 92, 255, 0.36);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.order-form label:nth-last-child(2),
.order-form .btn {
  grid-column: 1 / -1;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  max-width: 360px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(2, 8, 23, 0.92);
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: 86px 0 46px;
}

.page-hero-inner {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at right top, rgba(56, 189, 248, 0.26), transparent 38%),
    linear-gradient(145deg, rgba(6, 27, 58, 0.82), rgba(2, 8, 23, 0.68));
  box-shadow: var(--shadow);
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 24px;
  align-items: start;
}

.seo-panel {
  border-radius: 28px;
  padding: 26px;
}

.seo-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: #cbd5e1;
}

.setup-steps {
  margin-top: 18px;
}

.setup-steps ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: #cbd5e1;
}

.admin-body {
  min-height: 100vh;
  padding: 26px;
}

.admin-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

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

.login-card,
.admin-panel {
  border-radius: 28px;
  padding: 24px;
}

.login-card {
  width: min(480px, 100%);
  margin: 80px auto;
}

.admin-layout {
  display: none;
  gap: 18px;
}

.admin-layout.is-visible {
  display: grid;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.admin-stats article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.admin-stats strong {
  display: block;
  font-size: 30px;
}

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

.orders-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.orders-table th,
.orders-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.14);
  text-align: left;
  vertical-align: middle;
}

.orders-table th {
  color: var(--cyan);
  font-size: 13px;
}

.orders-table select {
  min-width: 120px;
}

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

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero,
  .order-strip,
  .dashboard-demo,
  .seo-grid {
    grid-template-columns: 1fr;
  }

  .stats,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid,
  .app-grid,
  .review-grid,
  .article-grid,
  .device-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    border-radius: 24px;
  }

  .brand span {
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-bg {
    inset: 18px -14px 18px;
    border-radius: 28px;
  }

  .hero-actions,
  .demo-actions,
  .site-footer,
  .admin-top {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-row span,
  .btn {
    width: 100%;
  }

  .field-grid,
  .stats,
  .feature-grid,
  .pricing-grid,
  .app-grid,
  .review-grid,
  .article-grid,
  .device-grid,
  .order-form,
  .admin-stats,
  .admin-form {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .section-heading.compact {
    text-align: left;
  }

  .section-heading {
    margin-left: 0;
  }

  .page-hero-inner {
    padding: 28px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
