:root {
  color-scheme: light;
  --bg: #f8f4ec;
  --bg-soft: #fffaf1;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #20211f;
  --ink-muted: #626158;
  --line: #e5dccb;
  --gold: #c68b2f;
  --gold-strong: #a86f18;
  --gold-soft: #f1d9a9;
  --green: #557d5d;
  --green-soft: #dfe9df;
  --charcoal: #282a25;
  --shadow: 0 22px 70px rgba(43, 38, 29, 0.13);
  --radius-sm: 8px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --container: 1120px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(198, 139, 47, 0.14), transparent 28rem),
    linear-gradient(180deg, #fbf7ef 0%, var(--bg) 42%, #f6f1e7 100%);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 68px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(229, 220, 203, 0.82);
  background: rgba(248, 244, 236, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-symbol {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid rgba(198, 139, 47, 0.45);
  border-radius: 8px;
  background: linear-gradient(135deg, #2f382f, #557d5d);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.brand-symbol::before,
.brand-symbol::after {
  position: absolute;
  content: "";
  border-radius: 999px;
}

.brand-symbol::before {
  inset: 9px 8px auto;
  height: 2px;
  background: var(--gold-soft);
}

.brand-symbol::after {
  top: 14px;
  left: 8px;
  width: 15px;
  height: 8px;
  border: 2px solid var(--gold-soft);
  border-bottom: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 26px;
  color: var(--ink-muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 40px;
  border: 1px solid rgba(32, 33, 31, 0.14);
  border-radius: 999px;
  background: var(--charcoal);
  color: #fffaf1;
  padding: 0 16px;
  font-size: 0.91rem;
  font-weight: 750;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #141512;
  box-shadow: 0 12px 26px rgba(32, 33, 31, 0.18);
  transform: translateY(-1px);
}

.hero {
  padding-top: 48px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 42px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 11vw, 5.65rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--charcoal);
  font-size: clamp(2rem, 7vw, 3.65rem);
  line-height: 1.01;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-subhead {
  max-width: 670px;
  margin-bottom: 28px;
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 4vw, 1.24rem);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  background: var(--charcoal);
  color: #fffaf1;
  box-shadow: 0 18px 38px rgba(32, 33, 31, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #11120f;
  box-shadow: 0 22px 46px rgba(32, 33, 31, 0.24);
}

.button-secondary {
  border-color: rgba(32, 33, 31, 0.14);
  background: rgba(255, 253, 248, 0.72);
  color: var(--charcoal);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(198, 139, 47, 0.5);
  background: #fffdf8;
}

.wide {
  width: 100%;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.pilot-note {
  margin: 16px 0 0;
  color: var(--ink-muted);
  font-size: 0.96rem;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.map-panel {
  position: absolute;
  inset: 34px 0 auto;
  height: 380px;
  overflow: hidden;
  border: 1px solid rgba(229, 220, 203, 0.88);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(85, 125, 93, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 125, 93, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 76% 20%, rgba(198, 139, 47, 0.2), transparent 11rem),
    linear-gradient(145deg, #fffaf0, #eef2e9);
  background-size:
    42px 42px,
    42px 42px,
    auto,
    auto;
  box-shadow: var(--shadow);
}

.map-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 20% 70%, rgba(85, 125, 93, 0.12), transparent 9rem),
    linear-gradient(130deg, transparent 0 42%, rgba(255, 255, 255, 0.62) 42% 48%, transparent 48%);
}

.map-line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: rgba(85, 125, 93, 0.44);
  transform-origin: left;
}

.line-one {
  top: 108px;
  left: 42px;
  width: 190px;
  transform: rotate(17deg);
}

.line-two {
  top: 244px;
  left: 80px;
  width: 250px;
  transform: rotate(-14deg);
}

.line-three {
  top: 180px;
  left: 190px;
  width: 170px;
  transform: rotate(33deg);
}

.pin {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 3px solid #fffaf1;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 10px 20px rgba(46, 68, 51, 0.24);
}

.pin-one {
  top: 92px;
  left: 56px;
}

.pin-two {
  top: 198px;
  right: 52px;
  background: var(--gold);
}

.pin-three {
  bottom: 76px;
  left: 42%;
}

.signal-wave {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(198, 139, 47, 0.42);
  border-radius: 999px;
  opacity: 0.68;
  animation: pulse 3.8s ease-in-out infinite;
}

.wave-one {
  top: 60px;
  right: 36px;
  width: 110px;
  height: 110px;
}

.wave-two {
  bottom: 74px;
  left: 24px;
  width: 78px;
  height: 78px;
  border-color: rgba(85, 125, 93, 0.42);
  animation-delay: 900ms;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.42;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }
}

.dashboard-card {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
  margin: 84px auto 0;
  border: 1px solid rgba(229, 220, 203, 0.88);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 28px 80px rgba(43, 38, 29, 0.2);
  backdrop-filter: blur(20px);
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 18px;
}

.dashboard-top p {
  margin-bottom: 4px;
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.dashboard-top h2 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.15;
}

.status-pill,
.label-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(85, 125, 93, 0.18);
  border-radius: 999px;
  background: var(--green-soft);
  color: #36573d;
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
}

.status-pill {
  padding: 7px 10px;
}

.status-pill .icon {
  width: 15px;
  height: 15px;
}

.prospect-stack {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.prospect-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(229, 220, 203, 0.9);
  border-radius: var(--radius-md);
  background: #fffdf8;
  padding: 14px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.prospect-card:hover {
  border-color: rgba(198, 139, 47, 0.46);
  box-shadow: 0 12px 26px rgba(43, 38, 29, 0.1);
  transform: translateY(-2px);
}

.prospect-card.is-active {
  border-color: rgba(198, 139, 47, 0.5);
  background: linear-gradient(135deg, #fffdf8, #fff5df);
}

.prospect-card p {
  margin-bottom: 3px;
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.prospect-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.label-row span {
  padding: 5px 8px;
}

.score-ring {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fffdf8 0 52%, transparent 53%),
    conic-gradient(var(--gold) 0 78%, rgba(229, 220, 203, 0.8) 78% 100%);
  color: var(--charcoal);
  font-weight: 900;
}

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

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

.section-heading.narrow {
  max-width: 720px;
}

.section-heading p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.card-grid,
.use-case-grid {
  display: grid;
  gap: 14px;
}

.info-card,
.use-case-card,
.pricing-card,
.contrast-box {
  border: 1px solid rgba(229, 220, 203, 0.88);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 12px 34px rgba(43, 38, 29, 0.06);
}

.info-card,
.use-case-card {
  padding: 22px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.info-card:hover,
.use-case-card:hover {
  border-color: rgba(85, 125, 93, 0.28);
  box-shadow: 0 18px 42px rgba(43, 38, 29, 0.1);
  transform: translateY(-3px);
}

.info-card p {
  margin: 0;
  color: var(--ink-muted);
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-soft), #fff4dc);
  color: var(--green);
}

.value-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0) 0%, rgba(255, 253, 248, 0.64) 48%, rgba(255, 253, 248, 0) 100%);
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(229, 220, 203, 0.88);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.78);
  padding: 16px;
}

.step-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fffaf1;
  font-weight: 900;
}

.process-list strong {
  color: var(--charcoal);
  font-size: 1.03rem;
}

.deliverables-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.checklist,
.pricing-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li,
.pricing-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--charcoal);
  font-weight: 720;
}

.checklist .icon,
.pricing-list .icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--green);
}

.spreadsheet-card {
  overflow: hidden;
  border: 1px solid rgba(229, 220, 203, 0.9);
  border-radius: var(--radius-lg);
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.sheet-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding: 14px;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.sheet-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #dfd0bb;
}

.sheet-toolbar span:nth-child(2) {
  background: var(--gold-soft);
}

.sheet-toolbar span:nth-child(3) {
  background: var(--green-soft);
}

.sheet-toolbar strong {
  margin-left: 4px;
}

.sheet-wrap {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 13px 12px;
  text-align: left;
  white-space: nowrap;
}

th {
  background: #f7f1e5;
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 850;
}

td {
  color: var(--charcoal);
  font-weight: 650;
}

.soft-blur {
  filter: blur(1.8px);
  opacity: 0.56;
}

.blur-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.1), rgba(255, 253, 248, 0.88));
  pointer-events: none;
}

.use-case-card h3 {
  margin-bottom: 0;
}

.contrast-box {
  margin-top: 16px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(85, 125, 93, 0.12), rgba(198, 139, 47, 0.14)),
    rgba(255, 253, 248, 0.8);
}

.contrast-box p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--charcoal);
  font-size: clamp(1.18rem, 5vw, 1.7rem);
  font-weight: 850;
  line-height: 1.16;
  text-align: center;
}

.pricing-section {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0) 0%, rgba(255, 253, 248, 0.82) 100%);
}

.pricing-grid {
  display: grid;
  gap: 18px;
}

.pricing-card {
  width: min(100%, 520px);
  padding: 26px;
}

.pricing-product {
  margin-bottom: 12px;
  color: var(--ink-muted);
  font-weight: 850;
}

.price {
  margin-bottom: 20px;
  color: var(--charcoal);
  font-size: clamp(3.1rem, 15vw, 5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.pricing-list {
  margin-bottom: 22px;
}

.pricing-actions {
  display: grid;
  gap: 10px;
}

.pricing-note {
  max-width: 620px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 1rem;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin-inline: auto;
}

details {
  border: 1px solid rgba(229, 220, 203, 0.9);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.78);
  padding: 0 18px;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  color: var(--charcoal);
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold-strong);
  border-bottom: 2px solid var(--gold-strong);
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

details[open] summary::after {
  transform: rotate(225deg);
}

details p {
  margin: -2px 0 18px;
  color: var(--ink-muted);
}

.final-cta {
  padding: 70px 0;
}

.final-cta-inner {
  overflow: hidden;
  border: 1px solid rgba(229, 220, 203, 0.9);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 0%, rgba(198, 139, 47, 0.24), transparent 16rem),
    linear-gradient(135deg, #2a2d27, #384239);
  color: #fffaf1;
  padding: 34px 22px;
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
  margin-inline: auto;
  color: #fffaf1;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: rgba(255, 250, 241, 0.78);
}

.final-cta .button-primary {
  background: #fffaf1;
  color: var(--charcoal);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 26px;
  background: rgba(255, 253, 248, 0.6);
}

.footer-grid {
  display: grid;
  gap: 20px;
}

.footer-brand {
  margin-bottom: 10px;
}

.site-footer p {
  margin: 0;
  color: var(--ink-muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--charcoal);
  font-weight: 750;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-strong);
}

.footer-disclaimer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-disclaimer p {
  max-width: 820px;
  font-size: 0.88rem;
}

.lead-modal {
  width: min(100% - 24px, 720px);
  max-height: min(760px, 92vh);
  overflow: auto;
  border: 0;
  border-radius: var(--radius-lg);
  background: transparent;
  padding: 0;
  color: var(--ink);
}

.lead-modal::backdrop {
  background: rgba(20, 21, 18, 0.48);
  backdrop-filter: blur(5px);
}

.modal-shell {
  position: relative;
  display: grid;
  gap: 22px;
  border: 1px solid rgba(229, 220, 203, 0.9);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 26px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffaf1;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.modal-close:hover,
.modal-close:focus-visible {
  background: var(--gold-soft);
  transform: rotate(6deg);
}

.modal-close span,
.modal-close span::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--charcoal);
}

.modal-close span {
  transform: rotate(45deg);
}

.modal-close span::after {
  content: "";
  transform: rotate(90deg);
}

.modal-copy {
  max-width: 560px;
  padding-right: 42px;
}

.modal-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 9vw, 3rem);
}

.modal-copy p:last-child {
  margin-bottom: 0;
  color: var(--ink-muted);
}

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

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

.form-field label {
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 850;
}

.form-field label span {
  color: var(--ink-muted);
  font-weight: 650;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(198, 139, 47, 0.76);
  box-shadow: 0 0 0 4px rgba(198, 139, 47, 0.16);
}

.form-submit {
  margin-top: 2px;
}

.form-success {
  margin: 0;
  border: 1px solid rgba(85, 125, 93, 0.22);
  border-radius: 8px;
  background: var(--green-soft);
  color: #35583d;
  padding: 12px;
  font-weight: 780;
}

@media (min-width: 560px) {
  .cta-row {
    flex-direction: row;
    width: auto;
  }

  .button {
    min-width: 190px;
  }

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

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

  .form-field.full,
  .form-submit,
  .form-success {
    grid-column: 1 / -1;
  }
}

@media (min-width: 760px) {
  .nav-links {
    display: flex;
  }

  .section {
    padding: 88px 0;
  }

  .hero {
    padding-top: 74px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
    align-items: center;
    gap: 48px;
  }

  .hero-copy {
    max-width: none;
  }

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

  .process-list li {
    align-content: start;
    min-height: 168px;
  }

  .deliverables-grid {
    grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
    gap: 50px;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.62fr);
    align-items: center;
    column-gap: 56px;
  }

  .pricing-card {
    grid-row: span 2;
  }

  .pricing-note {
    align-self: start;
  }

  .final-cta-inner {
    padding: 58px 42px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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