:root {
  --black: #030304;
  --black-soft: #09090b;
  --obsidian: #101014;
  --platinum: #fff8ed;
  --platinum-soft: #f2eadc;
  --silver: #e5ddd1;
  --muted: #c8beb0;
  --red: #b90b1d;
  --red-hot: #ff2b42;
  --red-deep: #4d020b;
  --line: rgba(255, 255, 255, 0.12);
  --line-bright: rgba(255, 255, 255, 0.2);
  --shadow: 0 28px 58px rgba(0, 0, 0, 0.54);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--platinum);
  background:
    linear-gradient(115deg, rgba(185, 11, 29, 0.18) 0%, transparent 25%),
    linear-gradient(235deg, rgba(255, 255, 255, 0.08) 0%, transparent 28%),
    linear-gradient(180deg, #050506 0%, #0a0a0d 42%, #030304 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), transparent 74%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(105deg, transparent 0 8%, rgba(255, 255, 255, 0.035) 12%, transparent 18% 100%),
    linear-gradient(68deg, transparent 0 62%, rgba(185, 11, 29, 0.18) 72%, transparent 84% 100%);
  opacity: 0.5;
  animation: backgroundSheen 14s ease-in-out infinite alternate;
  pointer-events: none;
}

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

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

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

.section-padding {
  padding: 66px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background:
    linear-gradient(180deg, rgba(8, 8, 10, 0.9), rgba(5, 5, 6, 0.72)),
    rgba(5, 5, 6, 0.82);
  backdrop-filter: blur(14px) saturate(118%);
}

.nav-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--platinum);
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 15px 34px rgba(185, 11, 29, 0.24),
    0 0 34px rgba(255, 41, 66, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 9px 13px;
  color: var(--platinum-soft);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  border-color: rgba(255, 122, 135, 0.36);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 26px rgba(185, 11, 29, 0.18);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 34px;
  padding-bottom: 46px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 72%;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(185, 11, 29, 0.24), transparent 39%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 42%);
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.9fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ff7f8c;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2.75rem, 5vw, 4.45rem);
  color: #fff7eb;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
}

h1 span {
  display: block;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.4vw, 3.7rem);
  color: #fff4e5;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

h3 {
  margin-bottom: 10px;
  color: #fff7ec;
  font-size: 1.08rem;
}

.hero-subheadline,
.copy-block,
.form-intro {
  color: #eee5d8;
  font-size: clamp(1rem, 1.8vw, 1.14rem);
}

.hero-subheadline {
  max-width: 625px;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 38%);
  opacity: 0.55;
  pointer-events: none;
}

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

.button:focus-visible,
.nav-links a:focus-visible,
.nav-toggle:focus-visible,
.brand:focus-visible {
  outline: 2px solid rgba(255, 122, 135, 0.86);
  outline-offset: 4px;
}

.button-primary {
  border-color: rgba(255, 122, 135, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, #ff334c 0%, #b70b1d 48%, #58030b 100%);
  color: #fff;
  box-shadow:
    0 18px 44px rgba(185, 11, 29, 0.36),
    0 0 0 5px rgba(185, 11, 29, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -14px 24px rgba(67, 0, 8, 0.3);
}

.button-primary:hover {
  box-shadow:
    0 24px 62px rgba(255, 41, 66, 0.42),
    0 0 0 6px rgba(185, 11, 29, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -14px 24px rgba(67, 0, 8, 0.34);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  color: #fff8ed;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 38px rgba(0, 0, 0, 0.22);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof {
  display: grid;
  max-width: 520px;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.hero-proof div {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  padding: 10px 12px;
  color: #e9e1d5;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: #fff8ec;
  font-size: 0.94rem;
}

.hero-proof span {
  font-size: 0.8rem;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  max-width: 100%;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% 0 -7% 8%;
  z-index: -1;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 41, 66, 0.34), transparent 42%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.12), transparent 55%);
  filter: blur(10px);
}

.dashboard-card,
.glass-card,
.pilot-card,
.cta-card,
.demo-form {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.035) 42%, rgba(185, 11, 29, 0.06)),
    linear-gradient(180deg, rgba(16, 16, 20, 0.88), rgba(7, 7, 9, 0.82));
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px) saturate(116%);
}

.dashboard-card::before,
.glass-card::before,
.pilot-card::before,
.cta-card::before,
.demo-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 24% 76%, rgba(255, 255, 255, 0.055)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%);
  opacity: 0.38;
  pointer-events: none;
}

.dashboard-card {
  border-radius: 26px;
  padding: clamp(16px, 2.5vw, 22px);
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
}

.dashboard-card > * {
  position: relative;
  z-index: 1;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: -3px -3px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 0 12px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.window-bar span:first-child {
  background: #ff4157;
  box-shadow: 0 0 18px rgba(255, 41, 66, 0.5);
}

.window-bar img {
  width: 24px;
  height: 24px;
  margin-left: auto;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 8px 18px rgba(185, 11, 29, 0.2);
}

.window-bar strong {
  color: rgba(255, 248, 237, 0.88);
}

.dashboard-topline,
.phone-header,
.lead-note,
.pilot-card,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-topline strong,
.dashboard-topline span,
.metric-row span,
.phone-header span,
.lead-note p {
  display: block;
}

.muted-label,
.metric-row span,
.phone-header span,
.lead-note p {
  color: var(--muted);
  font-size: 0.82rem;
}

.status-pill {
  border: 1px solid rgba(255, 41, 66, 0.38);
  border-radius: 999px;
  padding: 7px 11px;
  color: #ff9ca6;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    rgba(185, 11, 29, 0.14);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(255, 41, 66, 0.16);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 16px 0;
}

.metric-row div {
  min-height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.metric-row strong {
  display: block;
  margin-top: 4px;
  font-size: 1.72rem;
}

.phone-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 28%),
    linear-gradient(180deg, rgba(4, 4, 6, 0.98), rgba(14, 14, 18, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 20px 46px rgba(0, 0, 0, 0.34);
}

.phone-header {
  justify-content: flex-start;
  margin-bottom: 14px;
}

.avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bow-gold);
  color: var(--rich-black);
  font-size: 0.78rem;
  font-weight: 900;
}

.message-stack {
  display: grid;
  gap: 8px;
}

.message {
  width: fit-content;
  max-width: 88%;
  border-radius: 14px;
  padding: 9px 11px;
  color: #f7f5f0;
  font-size: 0.88rem;
}

.message-alert {
  width: 100%;
  border: 1px solid rgba(255, 41, 66, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    rgba(185, 11, 29, 0.15);
  color: #ff9ba4;
  text-align: center;
}

.message-out {
  justify-self: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 38%),
    linear-gradient(135deg, #e31831, #850713);
  box-shadow:
    0 12px 30px rgba(185, 11, 29, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.message-in {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.lead-note {
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.035);
}

.lead-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--red-hot);
  box-shadow: 0 0 22px rgba(255, 41, 66, 0.8);
}

.two-column,
.services-grid,
.form-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.copy-block p {
  margin-bottom: 14px;
}

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

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

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

.glass-card,
.service-item,
.industry-tile {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.glass-card {
  min-height: 250px;
  border-radius: 20px;
  padding: 22px;
}

.glass-card:hover,
.industry-tile:hover,
.service-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 41, 66, 0.34);
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.52),
    0 0 42px rgba(185, 11, 29, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.step-number {
  display: inline-flex;
  margin-bottom: 42px;
  color: #ff6373;
  font-weight: 900;
}

.glass-card p,
.service-item p,
.pilot-card p,
.cta-card p,
.site-footer p {
  color: #e8dfd2;
}

.services-section {
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 14% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), rgba(185, 11, 29, 0.22), transparent);
}

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

.service-item {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  padding: 17px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-item > span {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: #e71e34;
  box-shadow: 0 0 20px rgba(255, 41, 66, 0.75);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.industry-tile {
  min-height: 118px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(185, 11, 29, 0.1), transparent 72%),
    rgba(255, 255, 255, 0.035);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pilot-card {
  border-radius: 24px;
  padding: clamp(24px, 4.4vw, 42px);
  overflow: hidden;
  position: relative;
}

.pilot-card::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 41, 66, 0.18));
  pointer-events: none;
}

.pilot-card > * {
  position: relative;
  z-index: 1;
}

.cta-card {
  border-radius: 24px;
  padding: clamp(34px, 6vw, 58px);
  text-align: center;
}

.cta-card h2 {
  margin-left: auto;
  margin-right: auto;
}

.demo-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border-radius: 22px;
  padding: clamp(20px, 3.5vw, 28px);
}

.demo-form label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: #efe6d9;
  font-size: 0.88rem;
  font-weight: 700;
}

.demo-form .message-field,
.form-submit {
  grid-column: 1 / -1;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(0, 0, 0, 0.3);
  color: #fff;
  outline: none;
  padding: 14px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
  color: rgba(229, 221, 209, 0.62);
}

.demo-form textarea {
  resize: vertical;
}

.demo-form select {
  color-scheme: dark;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: rgba(255, 41, 66, 0.62);
  box-shadow: 0 0 0 4px rgba(201, 20, 38, 0.14);
  background: rgba(0, 0, 0, 0.34);
}

.form-submit {
  position: relative;
  z-index: 1;
  width: 100%;
  cursor: pointer;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

@keyframes backgroundSheen {
  from {
    transform: translate3d(-1.5%, 0, 0);
  }

  to {
    transform: translate3d(1.5%, -1%, 0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .services-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .dashboard-card {
    transform: none;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section-padding {
    padding: 58px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 10px;
    background: rgba(10, 10, 12, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    border-radius: 12px;
    padding: 14px;
  }

  h1 {
    font-size: clamp(2.75rem, 12.2vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .hero-actions,
  .pilot-card,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .hero-proof div {
    border-radius: 14px;
    padding: 9px;
  }

  .hero-proof strong {
    font-size: 0.88rem;
  }

  .hero-proof span {
    font-size: 0.72rem;
  }

  .metric-row,
  .steps-grid,
  .industry-grid,
  .demo-form {
    grid-template-columns: 1fr;
  }

  .glass-card {
    min-height: 210px;
  }

  .step-number {
    margin-bottom: 34px;
  }

  .demo-form .message-field,
  .form-submit {
    grid-column: auto;
  }
}

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