:root {
  color-scheme: dark;
  --page-padding-x: clamp(16px, 3.5vw, 72px);
  --card-padding-x: 18px;
  --bg-0: #0b0c16;
  --bg-1: #120a2b;
  --bg-2: #080a12;
  --surface-0: rgba(12, 14, 26, 0.72);
  --surface-1: rgba(10, 12, 24, 0.62);
  --surface-border: rgba(255, 255, 255, 0.12);
  --surface-border-soft: rgba(255, 255, 255, 0.08);
  --text-0: rgba(255, 255, 255, 0.92);
  --text-1: rgba(255, 255, 255, 0.72);
  --text-2: rgba(255, 255, 255, 0.56);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 10px 22px rgba(0, 0, 0, 0.22);
  --accent-0: #a855f7;
  --accent-1: #06b6d4;
  --accent-2: #7c3aed;
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --ring: 0 0 0 3px rgba(168, 85, 247, 0.25);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
}

html[data-theme="light"] {
  color-scheme: light;
  --bg-0: #f4f3ff;
  --bg-1: #eef2ff;
  --bg-2: #f7f7fb;
  --surface-0: rgba(255, 255, 255, 0.9);
  --surface-1: rgba(255, 255, 255, 0.85);
  --surface-border: rgba(20, 24, 50, 0.14);
  --surface-border-soft: rgba(20, 24, 50, 0.1);
  --text-0: rgba(11, 12, 22, 0.92);
  --text-1: rgba(11, 12, 22, 0.64);
  --text-2: rgba(11, 12, 22, 0.5);
  --shadow: 0 18px 40px rgba(10, 14, 28, 0.12);
  --shadow-soft: 0 10px 22px rgba(10, 14, 28, 0.08);
  --ring: 0 0 0 3px rgba(6, 182, 212, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text-0);
  background: radial-gradient(1100px 520px at 16% -10%, rgba(168, 85, 247, 0.32), transparent 58%),
    radial-gradient(980px 560px at 82% 6%, rgba(6, 182, 212, 0.18), transparent 62%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
}

html[data-theme="light"] body {
  background: radial-gradient(980px 520px at 24% -10%, rgba(168, 85, 247, 0.18), transparent 58%),
    radial-gradient(860px 520px at 82% 8%, rgba(6, 182, 212, 0.12), transparent 62%),
    linear-gradient(180deg, var(--bg-0), var(--bg-2));
}

.page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 26px var(--page-padding-x) 46px;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 6px var(--card-padding-x) 18px;
}

.brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.logo {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.95), rgba(6, 182, 212, 0.95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 2px;
}

.title h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.title p {
  margin: 6px 0 0;
  color: var(--text-1);
  font-size: 14px;
}

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

.pill {
  appearance: none;
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-0);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

html[data-theme="light"] .pill {
  background: rgba(255, 255, 255, 0.7);
}

.icon-btn {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-0);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

html[data-theme="light"] .icon-btn {
  background: rgba(255, 255, 255, 0.7);
}

.pill:focus-visible,
.icon-btn:focus-visible,
input:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: none;
  box-shadow: var(--shadow-soft), var(--ring);
}

.icon {
  width: 16px;
  height: 16px;
}

.stack {
  display: grid;
  gap: 32px;
  margin-top: 8px;
}

.footer {
  margin-top: 28px;
  padding: 18px 0 0;
  border-top: 1px solid var(--surface-border-soft);
}

.footer-inner {
  display: grid;
  gap: 18px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-name {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.footer-note {
  margin-top: 4px;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.5;
}

.footer-contact {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  color: var(--text-2);
  font-size: 13px;
}

.footer-contact a,
.footer-links a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 1px;
}

html[data-theme="light"] .footer-contact a,
html[data-theme="light"] .footer-links a {
  border-bottom-color: rgba(20, 24, 50, 0.18);
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--text-0);
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 12px;
  justify-content: flex-end;
  justify-self: end;
}

.prose {
  color: var(--text-1);
  line-height: 1.7;
  max-width: 90ch;
}

.prose h3 {
  margin: 18px 0 8px;
  font-size: 14px;
  color: var(--text-0);
}

.prose p {
  margin: 0 0 10px;
}

.prose ul {
  margin: 0 0 10px;
  padding-left: 18px;
}

.prose li {
  margin: 6px 0;
}

.cards-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.cards-2col > .card {
  height: 100%;
}

.card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--surface-border);
  background: linear-gradient(180deg, var(--surface-0), var(--surface-1));
  box-shadow: var(--shadow);
  padding: 18px var(--card-padding-x) 16px;
}

html[data-theme="dark"] .card {
  position: relative;
  overflow: hidden;
}

html[data-theme="dark"] .card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(520px 220px at 6% 8%, rgba(168, 85, 247, 0.18), transparent 55%),
    radial-gradient(420px 220px at 98% 26%, rgba(6, 182, 212, 0.12), transparent 55%);
  pointer-events: none;
}

.card > * {
  position: relative;
}

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

.card-header h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.card-header--center {
  justify-content: center;
  text-align: center;
}

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

.section-lede {
  margin: 0 auto;
  max-width: 76ch;
  color: var(--text-1);
  line-height: 1.65;
  text-align: center;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.kpi {
  border: 1px solid var(--surface-border-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 14px 12px;
}

html[data-theme="light"] .kpi {
  background: rgba(255, 255, 255, 0.75);
}

.kpi-label {
  color: var(--text-2);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.kpi-value {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.kpi-desc {
  margin-top: 8px;
  color: var(--text-1);
  font-size: 13px;
  line-height: 1.55;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.feature-card {
  border: 1px solid var(--surface-border-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 14px 12px;
  display: grid;
  gap: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  transform-origin: center;
  will-change: transform;
}

.feature-card:hover {
  transform: scale(1.03);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

html[data-theme="light"] .feature-card:hover {
  border-color: rgba(20, 24, 50, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .feature-card {
    transition: none;
  }

  .feature-card:hover {
    transform: none;
  }
}

html[data-theme="light"] .feature-card {
  background: rgba(255, 255, 255, 0.75);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: radial-gradient(22px 22px at 30% 30%, rgba(168, 85, 247, 0.42), transparent 60%),
    radial-gradient(22px 22px at 70% 70%, rgba(6, 182, 212, 0.32), transparent 60%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid var(--surface-border-soft);
  display: grid;
  place-items: center;
  color: var(--text-0);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-card h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.feature-card p {
  margin: 0;
  color: var(--text-1);
  font-size: 13px;
  line-height: 1.55;
}

.cta {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  padding: 18px 0 8px;
}

.cta h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta p {
  margin: 0;
  color: var(--text-1);
  max-width: 76ch;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 6px;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--surface-border-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

html[data-theme="light"] .faq-item {
  background: rgba(255, 255, 255, 0.75);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-0);
  font-weight: 750;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "›";
  color: var(--text-2);
  font-size: 18px;
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(-90deg);
}

.faq-body {
  padding: 0 14px 12px;
  color: var(--text-1);
  line-height: 1.6;
  font-size: 13px;
}

.faq-body p {
  margin: 0;
}

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

.pricing-card {
  border: 1px solid var(--surface-border-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  display: grid;
  gap: 10px;
}

html[data-theme="light"] .pricing-card {
  background: rgba(255, 255, 255, 0.75);
}

.pricing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pricing-name {
  font-weight: 850;
  letter-spacing: -0.02em;
  font-size: 14px;
}

.pricing-tag {
  border-radius: 999px;
  border: 1px solid var(--surface-border);
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-1);
}

html[data-theme="light"] .pricing-tag {
  background: rgba(255, 255, 255, 0.9);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-price strong {
  font-size: 26px;
  letter-spacing: -0.03em;
}

.pricing-price span {
  color: var(--text-2);
  font-size: 13px;
}

.pricing-meta {
  color: var(--text-1);
  font-size: 13px;
  line-height: 1.55;
}

.pricing-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 4px;
}

.pricing-note {
  color: var(--text-2);
  font-size: 12px;
  line-height: 1.45;
}

.primary {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.95), rgba(6, 182, 212, 0.95));
  color: rgba(6, 8, 14, 0.92);
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(6, 182, 212, 0.16), 0 18px 30px rgba(168, 85, 247, 0.14);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero {
  display: grid;
  gap: 14px;
  padding: 18px 0 12px;
  text-align: center;
  justify-items: center;
}

.hero h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero p {
  margin: 0;
  color: var(--text-1);
  max-width: 72ch;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 6px;
  justify-content: center;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: grid;
  place-items: center;
  padding: 18px;
  z-index: 100;
}

.modal {
  width: min(560px, 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--surface-border);
  background: linear-gradient(180deg, var(--surface-0), var(--surface-1));
  box-shadow: var(--shadow);
  padding: 16px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modal-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.modal-lede {
  margin: 10px 0 0;
  color: var(--text-1);
  line-height: 1.6;
}

.modal-form {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 2px;
}

.modal-note {
  margin: 10px 0 0;
  color: var(--text-2);
  font-size: 12px;
  line-height: 1.45;
}

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

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

.feature {
  border: 1px solid var(--surface-border-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 14px 12px;
}

html[data-theme="light"] .feature {
  background: rgba(255, 255, 255, 0.75);
}

.feature h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.feature p {
  margin: 8px 0 0;
  color: var(--text-1);
  font-size: 13px;
  line-height: 1.55;
}

.list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-1);
  line-height: 1.55;
}

.bullet {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--surface-border-soft);
  display: grid;
  place-items: center;
  flex: 0 0 20px;
  margin-top: 2px;
}

.bullet svg {
  width: 12px;
  height: 12px;
}

.cols {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: start;
}

.cols--1col {
  grid-template-columns: 1fr;
}

.box {
  border: 1px solid var(--surface-border-soft);
  border-radius: var(--radius-lg);
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
}

html[data-theme="light"] .box {
  background: rgba(255, 255, 255, 0.75);
}

.box h3 {
  margin: 0;
  font-size: 14px;
}

.chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.chip {
  border-radius: 999px;
  border: 1px solid var(--surface-border);
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-0);
}

html[data-theme="light"] .chip {
  background: rgba(20, 24, 50, 0.03);
}

.demo {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 14px;
}

.demo-pane {
  border: 1px solid var(--surface-border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

html[data-theme="light"] .demo-pane {
  background: rgba(255, 255, 255, 0.75);
}

.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--surface-border-soft);
  background: rgba(255, 255, 255, 0.02);
}

html[data-theme="light"] .demo-toolbar {
  background: rgba(20, 24, 50, 0.03);
}

.demo-title {
  font-weight: 650;
  font-size: 12px;
  color: var(--text-1);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.demo-controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.demo-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mini-btn {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-0);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

html[data-theme="light"] .mini-btn {
  background: rgba(255, 255, 255, 0.7);
}

.mini-btn svg {
  width: 14px;
  height: 14px;
}

.demo-chip {
  border-radius: 999px;
  border: 1px solid var(--surface-border);
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-1);
}

html[data-theme="light"] .demo-chip {
  background: rgba(255, 255, 255, 0.9);
}

.demo-doc {
  padding: 14px;
  display: grid;
  place-items: center;
}

.demo-invoice {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

html[data-theme="light"] .demo-invoice {
  border-color: rgba(20, 24, 50, 0.14);
  box-shadow: 0 18px 40px rgba(10, 14, 28, 0.12);
}

.demo-page {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(10, 14, 28, 0.14);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  position: relative;
}

.demo-page-inner {
  padding: 16px 18px;
  color: rgba(10, 14, 28, 0.76);
  font-size: 11px;
  line-height: 1.35;
}

.demo-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.demo-lines {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.demo-line {
  height: 8px;
  border-radius: 999px;
  background: rgba(10, 14, 28, 0.08);
}

.demo-line.w-90 {
  width: 90%;
}

.demo-line.w-70 {
  width: 70%;
}

.demo-line.w-60 {
  width: 60%;
}

.demo-line.w-45 {
  width: 45%;
}

.demo-stamp {
  position: absolute;
  right: 18px;
  bottom: 22px;
  border: 2px solid rgba(239, 68, 68, 0.46);
  color: rgba(239, 68, 68, 0.72);
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  transform: rotate(-6deg);
  font-size: 12px;
}

.demo-form {
  padding: 12px;
  display: grid;
  gap: 12px;
}

.select-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.select-controls {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  gap: 8px;
  align-items: center;
  width: min(340px, 100%);
}

.hint {
  margin: 0;
  color: var(--text-2);
  font-size: 12px;
  line-height: 1.45;
}

.select-row label {
  color: var(--text-2);
  font-size: 12px;
  font-weight: 650;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--text-2);
  font-size: 11px;
  font-weight: 650;
}

.control {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--surface-border-soft);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-0);
  padding: 10px 12px;
  outline: none;
}

html[data-theme="light"] .control {
  background: rgba(255, 255, 255, 0.9);
}

textarea.control {
  min-height: 58px;
  resize: vertical;
}

.form-card {
  border: 1px solid var(--surface-border-soft);
  border-radius: var(--radius-md);
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 10px;
}

html[data-theme="light"] .form-card {
  background: rgba(255, 255, 255, 0.85);
}

.form-card-title {
  font-weight: 750;
  letter-spacing: -0.01em;
  font-size: 13px;
  color: var(--text-0);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.demo-footer {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 2px;
}

.form-actions {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .page {
    padding: 18px var(--page-padding-x) 40px;
  }

  .title h1 {
    font-size: 28px;
  }

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

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

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

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

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

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

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

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

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

  .footer-contact {
    justify-self: start;
  }

  .footer-links {
    justify-content: flex-start;
    justify-self: start;
  }
}
