:root {
  color-scheme: light;
  --rail: 278px;
  --bg: #f5f7f1;
  --paper: #fffdf7;
  --panel: #ffffff;
  --ink: #14211b;
  --muted: #617169;
  --line: #dbe4dc;
  --line-strong: #b8c8bd;
  --primary: #63bd34;
  --primary-dark: #285c1d;
  --primary-soft: #e8f7df;
  --forest: #0f1a15;
  --sage: #edf3e9;
  --amber: #f3b43f;
  --shadow: 0 24px 60px rgba(21, 34, 27, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  padding-left: var(--rail);
  background:
    linear-gradient(90deg, rgba(99, 189, 52, 0.06), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.site-header {
  width: var(--rail);
  min-height: 100vh;
  padding: 28px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(99, 189, 52, 0.12), rgba(15, 26, 21, 0)),
    var(--forest);
  color: #f7fff5;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
}

.site-brand {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.2;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--primary);
  color: #0f1a15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  overflow: hidden;
}

.brand-mark.logo-mark {
  background: #020706;
  padding: 0;
}

.brand-mark.logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.site-nav {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #c8d8cf;
  padding: 11px 12px;
  font-size: 0.94rem;
  font-weight: 850;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover {
  border-color: rgba(99, 189, 52, 0.38);
  background: rgba(99, 189, 52, 0.1);
  color: #ffffff;
  transform: translateX(3px);
}

.header-cta,
.primary-cta,
.secondary-cta,
.price-card a,
.contact-card button {
  border-radius: var(--radius);
  min-height: 44px;
  padding: 11px 16px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-cta {
  width: 100%;
  margin-top: auto;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #0f1a15;
}

.primary-cta,
.contact-card button {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #0f1a15;
}

.secondary-cta,
.price-card a {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--primary-dark);
}

.secondary-cta.subtle {
  color: var(--muted);
}

main > section {
  scroll-margin-top: 28px;
}

.hero-section,
.seo-section,
.feature-section,
.pricing-section,
.contact-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-section {
  min-height: 100vh;
  padding: 72px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.6rem, 5.2vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.03;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.18rem;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.contact-section p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

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

.hero-trust-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-trust-row span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
  animation: preview-slide-in 720ms ease both;
}

.hero-preview::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--amber), #64a7ff);
}

.preview-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
}

.preview-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  border: 1px solid rgba(99, 189, 52, 0.35);
  border-radius: 999px;
  background: #fff;
  color: var(--primary-dark);
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(21, 34, 27, 0.08);
  animation: badge-pulse 2200ms ease-in-out 900ms infinite;
}

.preview-brief {
  display: grid;
  gap: 5px;
}

.preview-brief span,
.preview-metrics span,
.lane-ruler span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
}

.preview-brief strong {
  font-size: 1.48rem;
}

.preview-brief small {
  color: var(--primary-dark);
  font-weight: 850;
}

.seo-section {
  padding: 76px 0 34px;
}

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

.seo-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 22px;
}

.seo-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.preview-lane {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(20, 33, 27, 0.06) 1px, transparent 1px),
    var(--sage);
  background-size: 42px 100%;
  padding: 14px;
}

.lane-ruler {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.lane-body {
  min-height: 260px;
  border: 2px solid #64786c;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
  transform-origin: right center;
  animation: trailer-arrive 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both;
}

.lane-body::after {
  content: "Rear doors";
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
}

.lane-cab {
  position: absolute;
  left: -34px;
  top: 84px;
  width: 34px;
  height: 86px;
  border-radius: 8px 0 0 8px;
  background: #0f1a15;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.16);
}

.lane-door {
  position: absolute;
  right: 0;
  width: 4px;
  height: 50%;
  background: #23342d;
  transform-origin: right center;
}

.lane-door.left {
  top: 0;
  animation: door-open-left 1200ms ease 780ms both;
}

.lane-door.right {
  bottom: 0;
  animation: door-open-right 1200ms ease 780ms both;
}

.cargo {
  position: absolute;
  border-radius: 6px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 12px 20px rgba(21, 34, 27, 0.16);
  animation: cargo-drop 720ms cubic-bezier(0.18, 0.85, 0.24, 1.12) both;
}

.cargo-one {
  left: 24px;
  top: 34px;
  width: 118px;
  height: 78px;
  background: #137a5b;
  animation-delay: 980ms;
}

.cargo-two {
  left: 154px;
  top: 34px;
  width: 148px;
  height: 88px;
  background: #6347b5;
  animation-delay: 1120ms;
}

.cargo-three {
  left: 24px;
  top: 140px;
  width: 238px;
  height: 86px;
  background: #46576e;
  animation-delay: 1260ms;
}

.cargo-four {
  left: 278px;
  top: 142px;
  width: 104px;
  height: 84px;
  background: #d08b28;
  animation-delay: 1400ms;
}

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

.preview-metrics div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px;
  display: grid;
  gap: 5px;
  animation: metric-rise 560ms ease both;
}

.preview-metrics div:nth-child(1) {
  animation-delay: 1540ms;
}

.preview-metrics div:nth-child(2) {
  animation-delay: 1660ms;
}

.preview-metrics div:nth-child(3) {
  animation-delay: 1780ms;
}

@keyframes preview-slide-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes trailer-arrive {
  from {
    opacity: 0;
    transform: translateX(42px) scaleX(0.92);
  }
  to {
    opacity: 1;
    transform: translateX(0) scaleX(1);
  }
}

@keyframes door-open-left {
  from {
    transform: rotateY(0);
  }
  to {
    transform: rotateY(-58deg);
  }
}

@keyframes door-open-right {
  from {
    transform: rotateY(0);
  }
  to {
    transform: rotateY(58deg);
  }
}

@keyframes cargo-drop {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes metric-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes badge-pulse {
  0%,
  100% {
    box-shadow: 0 8px 22px rgba(21, 34, 27, 0.08);
  }
  50% {
    box-shadow: 0 8px 26px rgba(99, 189, 52, 0.28);
  }
}

.preview-metrics strong {
  color: var(--ink);
  font-size: 1rem;
}

.demo-section {
  width: min(100% - 44px, 1180px);
  margin: 0 auto;
  padding: 82px 0 42px;
}

.demo-heading {
  max-width: 780px;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.demo-workbench,
.demo-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.demo-workbench {
  padding: 16px;
  overflow: hidden;
}

.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 900;
}

.demo-toolbar span {
  color: var(--muted);
}

.demo-toolbar strong {
  border: 1px solid rgba(99, 189, 52, 0.34);
  border-radius: var(--radius);
  background: rgba(99, 189, 52, 0.12);
  color: var(--primary-dark);
  padding: 8px 10px;
  font-size: 0.78rem;
}

.demo-trailer-scene {
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 55% 18%, rgba(99, 189, 52, 0.16), transparent 30%),
    linear-gradient(180deg, #f7fbf6, #e5eee8);
  display: grid;
  place-items: center;
  perspective: 1300px;
  overflow: hidden;
}

.demo-trailer-shell {
  position: relative;
  width: min(86%, 660px);
  height: 255px;
  border: 3px solid rgba(35, 52, 45, 0.72);
  border-right-width: 8px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(20, 33, 27, 0.14) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20, 33, 27, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.78);
  background-size: 54px 100%, 100% 51px, auto;
  box-shadow:
    0 34px 46px rgba(21, 34, 27, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  transform: rotateX(58deg) rotateZ(-13deg) rotateY(0deg);
  transform-style: preserve-3d;
  transform-origin: center;
  animation: demo-trailer-arrive 980ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.demo-ruler {
  position: absolute;
  bottom: -32px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
}

.demo-ruler.r0 { left: 0; }
.demo-ruler.r1 { left: 30%; }
.demo-ruler.r2 { left: 60%; }
.demo-ruler.r3 { right: 0; }

.demo-wall {
  position: absolute;
  pointer-events: none;
  border: 2px solid rgba(35, 52, 45, 0.55);
  background: rgba(82, 123, 105, 0.14);
  box-shadow: inset 0 0 32px rgba(99, 189, 52, 0.08);
  transform-style: preserve-3d;
}

.demo-wall.left-wall,
.demo-wall.right-wall {
  top: 0;
  width: 62px;
  height: 100%;
}

.demo-wall.left-wall {
  left: 0;
  transform-origin: left center;
  transform: rotateY(72deg) translateZ(30px);
}

.demo-wall.right-wall {
  right: 0;
  transform-origin: right center;
  transform: rotateY(-72deg) translateZ(30px);
}

.demo-wall.front-wall {
  left: 0;
  top: 0;
  width: 100%;
  height: 56px;
  transform-origin: top center;
  transform: rotateX(-72deg) translateZ(28px);
}

.demo-door {
  position: absolute;
  right: -9px;
  width: 8px;
  height: 50%;
  background: #14211b;
  transform-origin: right center;
  transform-style: preserve-3d;
}

.demo-door.left {
  top: 0;
  animation: demo-door-left 1600ms ease 650ms both;
}

.demo-door.right {
  bottom: 0;
  animation: demo-door-right 1600ms ease 650ms both;
}

.demo-wheel {
  position: absolute;
  bottom: -30px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #9fb0a8 0 18%, #17231d 19% 47%, #050807 48% 100%);
  border: 3px solid #0d1511;
  box-shadow: 0 6px 12px rgba(21, 34, 27, 0.28);
  transform: rotateX(-58deg) rotateZ(13deg);
}

.wheel-one { right: 78px; }
.wheel-two { right: 112px; }
.wheel-three { right: 146px; }

.demo-cargo {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  padding: 6px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    inset 8px 0 18px rgba(255, 255, 255, 0.08),
    8px 12px 0 rgba(10, 20, 15, 0.2),
    0 13px 18px rgba(20, 33, 27, 0.24);
  opacity: 0;
  transform: translate(170px, 36px) scale(0.92);
  transform-style: preserve-3d;
  animation: demo-cargo-place 900ms cubic-bezier(0.17, 0.84, 0.21, 1.08) both;
}

.demo-cargo::before,
.demo-cargo::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.demo-cargo::before {
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 48%);
}

.demo-cargo::after {
  right: -8px;
  top: 8px;
  width: 8px;
  height: calc(100% - 1px);
  border-radius: 0 5px 5px 0;
  background: rgba(0, 0, 0, 0.18);
  transform: skewY(44deg);
  transform-origin: left top;
}

.pallet-one {
  left: 38px;
  top: 32px;
  width: 118px;
  height: 78px;
  background: #137a5b;
  animation-delay: 950ms;
}

.pallet-two {
  left: 170px;
  top: 32px;
  width: 118px;
  height: 78px;
  background: #2268b8;
  animation-delay: 1150ms;
}

.pallet-three {
  left: 302px;
  top: 32px;
  width: 118px;
  height: 78px;
  background: #b86b2b;
  animation-delay: 1350ms;
}

.pallet-four {
  left: 38px;
  top: 128px;
  width: 118px;
  height: 78px;
  background: #4a5568;
  animation-delay: 1550ms;
}

.pallet-five {
  left: 38px;
  top: 92px;
  width: 118px;
  height: 62px;
  background: #805ad5;
  animation-name: demo-cargo-stack;
  animation-delay: 1950ms;
}

.long-piece {
  left: 170px;
  top: 132px;
  width: 250px;
  height: 70px;
  background: #d08b28;
  animation-delay: 1750ms;
}

.demo-progress {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 13px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: center;
}

.demo-progress span {
  color: var(--muted);
  font-weight: 900;
}

.demo-progress strong {
  color: var(--primary-dark);
}

.demo-progress i {
  grid-column: 1 / -1;
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #e4ecdf;
  overflow: hidden;
}

.demo-progress i::before {
  content: "";
  display: block;
  width: 92%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--amber));
  animation: demo-progress-fill 2600ms ease 1100ms both;
}

.demo-panel {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.demo-panel h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  line-height: 1.08;
}

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

.demo-metrics div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 13px;
  display: grid;
  gap: 5px;
}

.demo-metrics span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-metrics strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.demo-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.demo-list li + li {
  margin-top: 8px;
}

@keyframes demo-trailer-arrive {
  from {
    opacity: 0;
    transform: translateX(54px) rotateX(58deg) rotateZ(-13deg) rotateY(0deg) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateX(58deg) rotateZ(-13deg) rotateY(0deg) scale(1);
  }
}

@keyframes demo-door-left {
  from { transform: rotateY(0); }
  to { transform: rotateY(-62deg); }
}

@keyframes demo-door-right {
  from { transform: rotateY(0); }
  to { transform: rotateY(62deg); }
}

@keyframes demo-cargo-place {
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes demo-cargo-stack {
  0% {
    opacity: 0;
    transform: translate(170px, 36px) scale(0.92);
  }
  62% {
    opacity: 1;
    transform: translate(0, 22px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes demo-progress-fill {
  from { width: 0; }
  to { width: 92%; }
}

.feature-section,
.pricing-section,
.contact-section {
  padding: 88px 0;
}

.section-heading {
  margin-bottom: 34px;
}

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

.feature-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 22px;
  box-shadow: 0 10px 28px rgba(21, 34, 27, 0.06);
}

.feature-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-grid p,
.price-card p,
.price-card li {
  color: var(--muted);
  line-height: 1.55;
}

.pricing-section {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 12% 18%, rgba(99, 189, 52, 0.13), transparent 30%),
    linear-gradient(135deg, #f7faf4 0%, #eef5ea 48%, #f9fbf7 100%);
  border-block: 1px solid var(--line);
}

.pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.pricing-heading p {
  max-width: 640px;
}

.pricing-toggle {
  width: fit-content;
  margin: 0 0 34px auto;
  padding: 5px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  display: flex;
  gap: 5px;
  color: var(--muted);
  font-weight: 900;
  transition:
    border-color 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease;
}

.pricing-toggle:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(99, 189, 52, 0.16);
}

.pricing-toggle button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  padding: 10px 18px;
  font: inherit;
  cursor: pointer;
  transition:
    background 170ms ease,
    color 170ms ease,
    transform 170ms ease;
}

.pricing-toggle button:hover {
  color: var(--forest);
  background: rgba(99, 189, 52, 0.2);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(99, 189, 52, 0.35);
}

.pricing-toggle button.active {
  background: var(--forest);
  color: #fff;
}

.pricing-toggle button.active:hover {
  background: var(--primary);
  color: #0f1a15;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.price-card {
  min-height: 590px;
  height: 100%;
  border: 1px solid rgba(37, 56, 46, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88)),
    var(--panel);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 18px 42px rgba(21, 34, 27, 0.07);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--forest), var(--primary));
  opacity: 0.82;
}

.price-card:hover {
  border-color: rgba(99, 189, 52, 0.65);
  box-shadow: 0 24px 58px rgba(21, 34, 27, 0.14);
  transform: translateY(-5px);
}

.price-card.featured {
  border-color: var(--primary);
  background:
    linear-gradient(180deg, rgba(242, 255, 233, 0.98), rgba(255,255,255,0.94)),
    var(--panel);
  box-shadow: 0 22px 58px rgba(99, 189, 52, 0.18);
}

.price-card.beta-price-card {
  border-color: rgba(56, 103, 200, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.price-card.beta-price-card:hover {
  border-color: rgba(56, 103, 200, 0.62);
  box-shadow: 0 24px 58px rgba(56, 103, 200, 0.13);
}

.popular-badge {
  width: fit-content;
  border-radius: 6px;
  background: var(--forest);
  color: #fff;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 900;
}

.popular-badge.beta-badge {
  background: #3867c8;
}

.price-card h3 {
  margin-top: 16px;
  font-size: 1.3rem;
  min-height: 3.15rem;
}

.price {
  display: block;
  min-height: 46px;
  margin: 24px 0 8px;
  color: var(--primary-dark);
  font-size: 1.9rem;
  line-height: 1;
}

.price-period {
  color: var(--muted);
  font-size: 1rem;
}

.price-note {
  min-height: 48px;
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.4;
}

.price-card ul {
  margin: 14px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.price-card li {
  padding-left: 26px;
  position: relative;
  font-weight: 750;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--primary);
  color: var(--primary-dark);
  font-weight: 900;
}

.price-card a {
  margin-top: auto;
  width: 100%;
}

.price-card.featured a {
  border-color: var(--primary);
  background: var(--primary);
  color: #0f1a15;
}

.payment-trust-strip {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(21, 34, 27, 0.07);
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.payment-trust-strip div {
  border-left: 3px solid var(--primary);
  padding-left: 12px;
}

.payment-trust-strip span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.payment-trust-strip strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.35;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: start;
  gap: 48px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-card label {
  display: block;
  margin: 14px 0 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
  font: inherit;
  outline: none;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 189, 52, 0.16);
}

.contact-card textarea {
  resize: vertical;
}

.contact-card button {
  width: 100%;
  margin-top: 16px;
  font: inherit;
  cursor: pointer;
}

.contact-card button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.hidden-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-status {
  min-height: 20px;
  margin: 12px 0 0;
  font-weight: 800;
  line-height: 1.4;
}

.contact-status[data-tone="ok"] {
  color: var(--primary-dark);
}

.contact-status[data-tone="warning"] {
  color: #b04430;
}

.landing-footer {
  margin-left: 0;
  padding: 28px clamp(24px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.landing-footer strong,
.landing-footer span {
  display: block;
}

.landing-footer strong {
  color: var(--ink);
  margin-bottom: 4px;
}

.landing-footer nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 800;
}

.landing-footer a:hover {
  color: var(--primary-dark);
}

@media (max-width: 1120px) {
  :root {
    --rail: 236px;
  }

  .hero-section,
  .demo-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .price-card,
  .price-card.beta-price-card,
  .price-card:nth-child(4) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  body {
    padding-left: 0;
  }

  .site-header {
    width: auto;
    min-height: auto;
    padding: 14px 16px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    inset: auto;
  }

  .site-brand {
    min-width: 100%;
  }

  .site-nav {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
  }

  .site-nav a {
    text-align: center;
  }

  .header-cta {
    width: auto;
    margin-top: 0;
  }

  .hero-section,
  .demo-section,
  .seo-section,
  .feature-section,
  .pricing-section,
  .contact-section {
    width: min(100% - 28px, 1180px);
  }

  .hero-section {
    padding-top: 48px;
    grid-template-columns: 1fr;
  }

  .hero-preview {
    min-width: 0;
  }

  .demo-workbench,
  .demo-panel {
    min-width: 0;
  }

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

  .demo-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-trailer-scene {
    min-height: 320px;
  }

  .demo-trailer-shell {
    width: 94%;
    height: 220px;
  }

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

  .preview-metrics,
  .pricing-grid,
  .feature-grid,
  .seo-grid,
  .pricing-heading {
    grid-template-columns: 1fr;
  }

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

  .pricing-toggle {
    margin-inline: 0;
  }
}

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