:root {
  --green-950: #07291c;
  --green-900: #0b3525;
  --green-800: #0d4b32;
  --green-700: #17613f;
  --green-600: #2d7b4f;
  --lime-600: #78b53d;
  --lime-500: #8cc63f;
  --lime-400: #a6d65b;
  --cream-50: #fbfcf9;
  --cream-100: #f4f7f1;
  --cream-200: #e7eee4;
  --ink-950: #101812;
  --ink-800: #27342b;
  --ink-650: #4e5d53;
  --ink-500: #6d796f;
  --white: #ffffff;
  --warning: #f3b742;
  --danger: #c94747;
  --border: rgba(13, 75, 50, 0.14);
  --shadow-sm: 0 12px 34px rgba(7, 41, 28, 0.08);
  --shadow-md: 0 24px 70px rgba(7, 41, 28, 0.16);
  --shadow-lg: 0 40px 100px rgba(4, 27, 18, 0.28);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 82px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink-950);
  background: var(--cream-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink-950);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.15vw, 5.25rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.65vw, 3.55rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

::selection {
  color: var(--green-950);
  background: var(--lime-400);
}

:focus-visible {
  outline: 3px solid var(--lime-500);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section-light {
  background: var(--cream-100);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.demo-banner {
  padding: 8px 20px;
  color: #3d2b06;
  background: #fff0ba;
  border-bottom: 1px solid #efd584;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

body:not(.is-demo) .demo-banner,
body:not(.is-demo) .demo-only,
body:not(.is-demo) .contact-note {
  display: none;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-color: var(--border);
  box-shadow: 0 10px 40px rgba(7, 41, 28, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  position: relative;
  z-index: 2;
  width: 184px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.1vw, 30px);
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  color: var(--ink-650);
  font-size: 0.93rem;
  font-weight: 680;
  white-space: nowrap;
  transition: color var(--transition);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--lime-500);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--green-800);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  background: var(--cream-100);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--green-950);
  background: linear-gradient(135deg, var(--lime-400), var(--lime-500));
  box-shadow: 0 12px 26px rgba(140, 198, 63, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, #b5e56b, #91cd45);
  box-shadow: 0 17px 34px rgba(140, 198, 63, 0.3);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.button-light {
  color: var(--green-950);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  border-radius: 10px;
  font-size: 0.88rem;
}

.button-full {
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--lime-400);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green-700);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--lime-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(140, 198, 63, 0.13);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(140, 198, 63, 0.26), transparent 26%),
    radial-gradient(circle at 58% 110%, rgba(90, 160, 76, 0.2), transparent 42%),
    linear-gradient(135deg, var(--green-950) 0%, #0b3a28 54%, #0b2e21 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(166, 214, 91, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  top: -410px;
  right: -230px;
  width: 820px;
  height: 820px;
}

.hero::after {
  right: 40px;
  bottom: -590px;
  width: 980px;
  height: 980px;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to right, transparent 0%, #000 65%, #000 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(490px, 0.9fr);
  align-items: center;
  gap: 72px;
  padding-top: 82px;
  padding-bottom: 88px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.75rem, 3.9vw, 3.5rem);
  line-height: 1.04;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--lime-400);
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 630;
}

.hero-points svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--lime-400);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual-wrap {
  position: relative;
}

.dashboard-card {
  position: relative;
  padding: 18px;
  color: var(--ink-950);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-2.5deg) rotateX(1deg);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18px -18px -22px 20px;
  background: rgba(140, 198, 63, 0.13);
  border: 1px solid rgba(166, 214, 91, 0.18);
  border-radius: 28px;
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 5px 16px;
}

.dashboard-head > div {
  display: grid;
  gap: 2px;
}

.dashboard-kicker {
  color: var(--ink-500);
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dashboard-head strong {
  color: var(--green-950);
  font-size: 1.02rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: var(--green-800);
  background: #eaf6dc;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.live-badge span {
  width: 8px;
  height: 8px;
  background: var(--lime-600);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(120, 181, 61, 0.17);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(120, 181, 61, 0.14); }
  50% { box-shadow: 0 0 0 8px rgba(120, 181, 61, 0.03); }
}

.map-panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.field-map {
  width: 100%;
  height: auto;
}

.map-status {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px 9px 9px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(13, 75, 50, 0.1);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(7, 41, 28, 0.12);
  backdrop-filter: blur(8px);
}

.map-status-a {
  top: 15px;
  left: 15px;
}

.map-status-b {
  right: 15px;
  bottom: 15px;
}

.map-status > span:last-child {
  display: grid;
}

.map-status small {
  color: var(--ink-500);
  font-size: 0.62rem;
  line-height: 1.2;
}

.map-status strong {
  color: var(--green-950);
  font-size: 0.72rem;
  line-height: 1.35;
}

.status-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.status-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.status-green {
  color: var(--white);
  background: var(--green-800);
}

.status-lime {
  color: var(--green-950);
  background: var(--lime-400);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 13px;
}

.dashboard-stats div {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 10px 11px;
  background: var(--cream-100);
  border: 1px solid rgba(13, 75, 50, 0.06);
  border-radius: 11px;
}

.dashboard-stats span {
  color: var(--ink-500);
  font-size: 0.61rem;
  font-weight: 700;
  text-transform: uppercase;
}

.dashboard-stats strong {
  overflow: hidden;
  color: var(--green-950);
  font-size: 0.68rem;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prototype-note {
  margin: 25px 20px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

.value-strip {
  position: relative;
  z-index: 3;
  color: var(--white);
  background: var(--green-800);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.value-strip-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.value-strip-grid > div {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.value-strip-grid > div:first-child {
  padding-left: 0;
}

.value-strip-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.value-strip-grid svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--lime-400);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-strip-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.5;
}

.value-strip-grid strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-650);
  font-size: 1.04rem;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.narrow {
  max-width: 760px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: 60px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.problem-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 31px 27px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(7, 41, 28, 0.04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.problem-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -80px;
  width: 160px;
  height: 160px;
  background: rgba(140, 198, 63, 0.08);
  border-radius: 50%;
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(120, 181, 61, 0.34);
  box-shadow: var(--shadow-sm);
}

.problem-card > span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--lime-600);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.problem-card p {
  margin-bottom: 0;
  color: var(--ink-650);
  font-size: 0.92rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 385px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 36px rgba(7, 41, 28, 0.035);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(120, 181, 61, 0.38);
  box-shadow: var(--shadow-sm);
}

.feature-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 0%, rgba(166, 214, 91, 0.22), transparent 32%),
    linear-gradient(150deg, var(--green-800), var(--green-950));
  border-color: transparent;
}

.feature-card.featured h3,
.feature-card.featured p,
.feature-card.featured li {
  color: var(--white);
}

.feature-card.featured p,
.feature-card.featured li {
  color: rgba(255, 255, 255, 0.72);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--green-800);
  background: #eaf4df;
  border-radius: 15px;
}

.featured .feature-icon {
  color: var(--green-950);
  background: var(--lime-400);
}

.feature-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 1.32rem;
}

.feature-card p {
  margin-bottom: 20px;
  color: var(--ink-650);
  font-size: 0.93rem;
}

.feature-card ul {
  display: grid;
  gap: 8px;
  padding: 19px 0 0;
  margin: auto 0 0;
  color: var(--ink-650);
  border-top: 1px solid var(--border);
  list-style: none;
}

.feature-card li {
  position: relative;
  padding-left: 17px;
  font-size: 0.84rem;
}

.feature-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--lime-500);
  border-radius: 50%;
}

.featured ul {
  border-color: rgba(255, 255, 255, 0.14);
}

.detail-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: 75px;
  margin-top: 22px;
  padding: 54px;
  background: var(--cream-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.detail-panel-copy {
  align-self: center;
}

.detail-panel-copy h3 {
  font-size: clamp(1.7rem, 2.55vw, 2.45rem);
}

.detail-panel-copy p:last-child {
  margin-bottom: 0;
  color: var(--ink-650);
}

.detail-list {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

details {
  border-bottom: 1px solid var(--border);
}

details:last-child {
  border-bottom: 0;
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 23px;
  color: var(--green-950);
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary > span:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

summary svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green-700);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.details-plus {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  background: var(--cream-100);
  border-radius: 50%;
}

.details-plus::before,
.details-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--green-800);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.details-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] .details-plus::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0);
}

details > div {
  padding: 0 24px 24px;
}

details ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 0;
  color: var(--ink-650);
  font-size: 0.89rem;
}

.fuel-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 12%, rgba(140, 198, 63, 0.23), transparent 25%),
    linear-gradient(135deg, #0b3d2a, var(--green-950));
}

.fuel-section::after {
  content: "";
  position: absolute;
  right: -220px;
  bottom: -390px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(166, 214, 91, 0.13);
  border-radius: 50%;
}

.fuel-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.75fr);
  align-items: center;
  gap: 100px;
}

.fuel-copy h2 {
  color: var(--white);
}

.fuel-copy > p:not(.eyebrow) {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.03rem;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.check-list svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  margin-top: 3px;
  fill: none;
  stroke: var(--lime-400);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.light-list li {
  color: rgba(255, 255, 255, 0.82);
}

.fuel-visual {
  display: flex;
  justify-content: center;
}

.gauge-card {
  width: min(100%, 430px);
  padding: 24px;
  color: var(--ink-950);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.gauge-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 14px;
  color: var(--green-950);
  font-weight: 780;
  border-bottom: 1px solid var(--border);
}

.gauge-live {
  padding: 6px 9px;
  color: var(--green-800);
  background: #eaf6dc;
  border-radius: 999px;
  font-size: 0.68rem;
}

.gauge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0 25px;
}

.gauge-wrap svg {
  width: 245px;
}

.gauge-wrap strong {
  margin-top: -13px;
  color: var(--green-950);
  font-size: 1.08rem;
}

.gauge-wrap span {
  color: var(--ink-500);
  font-size: 0.78rem;
}

.event-list {
  display: grid;
  gap: 10px;
}

.event-list > div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  background: var(--cream-100);
  border-radius: 12px;
}

.event-list > div > span:last-child {
  display: grid;
}

.event-list small {
  color: var(--ink-650);
  font-size: 0.65rem;
  line-height: 1.3;
}

.event-list strong {
  color: var(--green-950);
  font-size: 0.77rem;
}

.event-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(13, 75, 50, 0.06);
}

.event-dot.ok { background: var(--lime-600); }
.event-dot.warn { background: var(--warning); }
.event-dot.info { background: var(--green-600); }

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  counter-reset: steps;
  list-style: none;
}

.steps-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 66px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(120, 181, 61, 0.4), transparent);
}

.steps-grid li {
  position: relative;
  z-index: 1;
  min-height: 290px;
  padding: 28px 25px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 34px rgba(7, 41, 28, 0.04);
}

.step-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.step-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  color: var(--green-800);
  background: #eaf4df;
  border: 8px solid var(--cream-100);
  border-radius: 50%;
}

.step-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steps-grid p {
  margin-bottom: 0;
  color: var(--ink-650);
  font-size: 0.9rem;
}

.integrations-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  align-items: center;
  gap: 85px;
}

.integrations-copy {
  margin-bottom: 0;
}

.integrations-copy p:not(.eyebrow) {
  margin-bottom: 27px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-700);
  font-weight: 780;
}

.text-link:hover {
  color: var(--lime-600);
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.integration-grid article {
  min-height: 200px;
  padding: 23px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 34px rgba(7, 41, 28, 0.035);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.integration-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 181, 61, 0.38);
  box-shadow: var(--shadow-sm);
}

.integration-grid article > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--green-800);
  background: #eaf4df;
  border-radius: 11px;
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.05em;
}

.integration-grid h3 {
  font-size: 1.03rem;
}

.integration-grid p {
  margin-bottom: 0;
  color: var(--ink-650);
  font-size: 0.82rem;
}

.benefits-section {
  position: relative;
  overflow: hidden;
  background: var(--green-800);
}

.benefits-section::before {
  content: "";
  position: absolute;
  top: -260px;
  left: -200px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(166, 214, 91, 0.13);
  border-radius: 50%;
}

.benefits-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  align-items: center;
  gap: 80px;
}

.benefits-card h2 {
  color: var(--white);
}

.benefits-card > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.benefit-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
}

.benefit-list > div > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--green-950);
  background: var(--lime-400);
  border-radius: 12px;
}

.benefit-list svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-list h3 {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 1.04rem;
}

.benefit-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.85rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.24fr);
  gap: 85px;
}

.faq-heading {
  margin-bottom: 0;
}

.faq-list {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  padding: 24px 25px;
  font-size: 1rem;
}

.faq-list p {
  margin: 0;
  color: var(--ink-650);
  font-size: 0.91rem;
}

.support-section {
  padding: 62px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(140, 198, 63, 0.13), transparent 35%),
    var(--green-950);
}

.support-layout {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.support-icon {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  color: var(--green-950);
  background: var(--lime-400);
  border-radius: 28px;
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.18);
}

.support-icon svg {
  grid-area: 1 / 1;
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.35;
}

.support-icon span {
  grid-area: 1 / 1;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.support-layout h2 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.support-layout > div:nth-child(2) > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.support-contacts {
  display: grid;
  gap: 10px;
}

.support-contacts a {
  min-width: 290px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  transition: background var(--transition), border-color var(--transition);
}

.support-contacts a:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(166, 214, 91, 0.35);
}

.support-contacts svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--lime-400);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-contacts a > span {
  display: grid;
}

.support-contacts small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
}

.support-contacts strong {
  color: var(--white);
  font-size: 0.83rem;
}

.contact-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(140, 198, 63, 0.1), transparent 28%),
    var(--cream-50);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(530px, 1.18fr);
  align-items: start;
  gap: 90px;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.contact-copy > p:not(.eyebrow):not(.contact-note) {
  max-width: 560px;
  color: var(--ink-650);
  font-size: 1.02rem;
}

.contact-direct {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-direct a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(7, 41, 28, 0.04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contact-direct a:hover {
  transform: translateY(-2px);
  border-color: rgba(120, 181, 61, 0.4);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--green-800);
  background: #eaf4df;
  border-radius: 12px;
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-direct a > span:last-child {
  display: grid;
}

.contact-direct small {
  color: var(--ink-500);
  font-size: 0.68rem;
}

.contact-direct strong {
  color: var(--green-950);
  font-size: 0.9rem;
}

.contact-note {
  margin-top: 15px;
  color: #8a6518;
  font-size: 0.75rem;
}

.contact-form {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-status {
  margin-bottom: 20px;
  padding: 12px 14px;
  border-radius: 11px;
  font-size: 0.86rem;
  font-weight: 650;
}

.form-status.is-error {
  color: #7c2525;
  background: #fdeaea;
  border: 1px solid #f2c1c1;
}

.form-status.is-success {
  color: #174f2c;
  background: #e7f5e5;
  border: 1px solid #bfe0b9;
}

.form-row {
  margin-bottom: 18px;
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-row .field {
  margin-bottom: 0;
}

.field label {
  color: var(--green-950);
  font-size: 0.83rem;
  font-weight: 750;
}

.field label span {
  color: var(--danger);
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink-950);
  background: var(--cream-50);
  border: 1px solid rgba(13, 75, 50, 0.18);
  border-radius: 11px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

input,
select {
  min-height: 49px;
  padding: 10px 13px;
}

textarea {
  min-height: 125px;
  padding: 12px 13px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #93a096;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--lime-600);
  box-shadow: 0 0 0 4px rgba(140, 198, 63, 0.13);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(201, 71, 71, 0.1);
}

.field-error {
  min-height: 0;
  color: var(--danger);
  font-size: 0.72rem;
  line-height: 1.35;
}

.field-error:empty {
  display: none;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  margin: 4px 0 10px;
  color: var(--ink-650);
  font-size: 0.78rem;
  line-height: 1.55;
  cursor: pointer;
}

.consent input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--green-700);
}

.consent a {
  color: var(--green-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-error {
  display: block;
  margin-bottom: 15px;
}

.form-footnote {
  display: block;
  margin: 13px 0 0;
  color: var(--ink-500);
  font-size: 0.69rem;
  line-height: 1.5;
  text-align: center;
}

body.is-demo .placeholder-value {
  text-decoration: underline dotted rgba(243, 183, 66, 0.85);
  text-underline-offset: 4px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #061d14;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(270px, 1.35fr) repeat(3, minmax(150px, 0.65fr));
  gap: 55px;
  padding-top: 72px;
  padding-bottom: 55px;
}

.footer-brand img {
  width: 205px;
  height: auto;
  margin-bottom: 20px;
  padding: 10px;
  background: var(--white);
  border-radius: 12px;
}

.footer-brand p {
  max-width: 310px;
  margin-bottom: 0;
  font-size: 0.84rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 11px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 790;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  font-size: 0.82rem;
}

.footer-column a:hover {
  color: var(--lime-400);
}

.footer-bottom {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.72rem;
}

.demo-only {
  color: #f5d984;
}

/* Privacy and utility pages */
.utility-page {
  min-height: 100vh;
  background: var(--cream-100);
}

.utility-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.utility-header .header-inner {
  justify-content: space-between;
}

.utility-main {
  padding: 72px 0 100px;
}

.utility-card {
  max-width: 900px;
  padding: clamp(28px, 5vw, 60px);
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.utility-card h1 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
}

.utility-card h2 {
  margin-top: 42px;
  margin-bottom: 13px;
  font-size: 1.45rem;
}

.utility-card h3 {
  margin-top: 28px;
  font-size: 1.08rem;
}

.utility-card p,
.utility-card li {
  color: var(--ink-650);
}

.utility-card .lead {
  font-size: 1.06rem;
}

.utility-card .notice {
  padding: 16px 18px;
  color: #6b4c0b;
  background: #fff4cc;
  border: 1px solid #efd88e;
  border-radius: 12px;
}

.utility-card .button {
  margin-top: 24px;
}

.success-mark {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--green-950);
  background: var(--lime-400);
  border-radius: 24px;
}

.success-mark svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1080px) {
  :root {
    --container: 980px;
  }

  .header-cta {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.85fr);
    gap: 45px;
  }

  .value-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 15px 0;
  }

  .value-strip-grid > div:nth-child(2) {
    border-right: 0;
  }

  .value-strip-grid > div:first-child,
  .value-strip-grid > div:nth-child(3) {
    padding-left: 0;
  }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-panel {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .fuel-layout,
  .benefits-layout {
    gap: 55px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::before {
    display: none;
  }

  .integrations-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .integration-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .support-layout {
    grid-template-columns: 90px 1fr;
  }

  .support-icon {
    width: 84px;
    height: 84px;
  }

  .support-contacts {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
  }

  .support-contacts a {
    min-width: 0;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(470px, 1.22fr);
    gap: 55px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(2, 0.7fr);
  }

  .footer-column:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 86px 0;
  }

  .brand {
    width: 162px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    z-index: 1;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 25px 20px 40px;
    margin: 0;
    background: rgba(255, 255, 255, 0.985);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 17px 8px;
    color: var(--green-950);
    font-size: 1.08rem;
    border-bottom: 1px solid var(--border);
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-layout {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 62px;
    padding-top: 70px;
    padding-bottom: 78px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual-wrap {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .dashboard-card {
    transform: none;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .fuel-layout,
  .benefits-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .fuel-layout {
    gap: 48px;
  }

  .fuel-visual {
    justify-content: flex-start;
  }

  .benefits-layout {
    gap: 45px;
  }

  .faq-layout {
    gap: 35px;
  }

  .contact-layout {
    gap: 42px;
  }

  .contact-copy {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.65rem);
  }

  .hero h1 {
    font-size: clamp(2.1875rem, 9vw, 2.5rem);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.75rem);
  }

  .demo-banner {
    padding-inline: 14px;
    font-size: 0.69rem;
  }

  .header-inner {
    gap: 15px;
  }

  .brand {
    width: 145px;
  }

  .hero-layout {
    padding-top: 54px;
    padding-bottom: 65px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .dashboard-card {
    padding: 11px;
    border-radius: 20px;
  }

  .dashboard-card::before {
    inset: 13px -8px -12px 10px;
    border-radius: 20px;
  }

  .dashboard-head {
    padding: 5px 5px 11px;
  }

  .dashboard-head strong {
    font-size: 0.86rem;
  }

  .dashboard-kicker {
    font-size: 0.56rem;
  }

  .live-badge {
    padding: 5px 7px;
    font-size: 0.58rem;
  }

  .map-status {
    padding: 6px 8px 6px 6px;
    gap: 6px;
  }

  .map-status-a {
    top: 8px;
    left: 8px;
  }

  .map-status-b {
    right: 8px;
    bottom: 8px;
  }

  .status-icon {
    width: 27px;
    height: 27px;
    border-radius: 8px;
  }

  .status-icon svg {
    width: 15px;
    height: 15px;
  }

  .map-status strong {
    font-size: 0.58rem;
  }

  .map-status small {
    font-size: 0.52rem;
  }

  .dashboard-stats {
    gap: 5px;
    padding-top: 8px;
  }

  .dashboard-stats div {
    padding: 8px 6px;
  }

  .dashboard-stats span {
    font-size: 0.49rem;
  }

  .dashboard-stats strong {
    font-size: 0.55rem;
  }

  .prototype-note {
    margin-top: 18px;
    font-size: 0.66rem;
  }

  .value-strip-grid {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .value-strip-grid > div,
  .value-strip-grid > div:first-child,
  .value-strip-grid > div:nth-child(3) {
    min-height: 68px;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .value-strip-grid > div:last-child {
    border-bottom: 0;
  }

  .problem-grid,
  .feature-grid,
  .steps-grid,
  .integration-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 0;
  }

  .problem-card > span {
    margin-bottom: 25px;
  }

  .feature-card {
    min-height: 0;
  }

  .detail-panel {
    padding: 28px 18px;
    border-radius: 22px;
  }

  summary {
    padding: 20px 18px;
    font-size: 0.92rem;
  }

  details > div {
    padding: 0 18px 20px;
  }

  .fuel-layout {
    grid-template-columns: 1fr;
  }

  .gauge-card {
    padding: 18px;
  }

  .steps-grid li {
    min-height: 0;
  }

  .integration-grid article {
    min-height: 0;
  }

  .support-layout {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .support-icon {
    width: 76px;
    height: 76px;
  }

  .support-contacts {
    grid-template-columns: 1fr;
  }

  .two-columns {
    grid-template-columns: 1fr;
  }

  .form-row .field {
    margin-bottom: 18px;
  }

  .form-row .field:last-child {
    margin-bottom: 0;
  }

  .contact-form {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 58px;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }

  .utility-main {
    padding: 36px 0 70px;
  }

  .utility-card {
    padding: 27px 20px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Horizontal brand lockup used in the navigation header. */
.site-header .brand,
.utility-header .brand {
  width: 214px;
  height: 57px;
  display: flex;
  align-items: center;
}

.site-header .brand img,
.utility-header .brand img {
  width: 100%;
  height: auto;
}

@media (max-width: 680px) {
  .site-header .brand,
  .utility-header .brand {
    width: 176px;
    height: 47px;
  }
}

.language-switch{display:flex;align-items:center;gap:4px;margin-left:auto;border:1px solid rgba(11,61,42,.18);border-radius:999px;padding:3px;background:#fff}.language-switch a{display:inline-flex;align-items:center;justify-content:center;min-width:34px;height:30px;padding:0 8px;border-radius:999px;font-size:.78rem;font-weight:800;letter-spacing:.05em;color:#315547;text-decoration:none}.language-switch a.is-active{background:#0b3d2a;color:#fff}.utility-header-inner .language-switch{margin-left:auto}@media(max-width:880px){.header-inner{flex-wrap:wrap}.language-switch{order:2;margin-left:auto}.primary-nav{order:4;width:100%}.header-cta{order:3}}
