:root {
  --green-950: #123760;
  --green-900: #1c4a8a;
  --green-800: #19618d;
  --green-700: #00876c;
  --green-600: #0a8965;
  --green-100: #dff1eb;
  --green-050: #eff8f5;
  --leaf: #68d39e;
  --leaf-soft: #eaf5df;
  --ink: #17362e;
  --muted: #64766f;
  --line: #dbe8e3;
  --paper: #ffffff;
  --wash: #f5f9f7;
  --shadow: 0 22px 60px rgba(18, 55, 96, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Mulish, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
p,
li,
summary,
a {
  overflow-wrap: break-word;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: white;
  background: var(--green-900);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.announcement {
  color: white;
  background: var(--green-950);
  font-size: 0.84rem;
}

.announcement .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 18px;
}

.announcement p {
  margin: 0;
}

.announcement a {
  color: #c8edba;
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(219, 232, 227, 0.82);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 170px;
  height: auto;
  object-fit: contain;
}

.brand-tag {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green-700);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.language-picker {
  display: flex;
  align-items: center;
}

.language-select {
  width: 146px;
  min-height: 42px;
  padding: 8px 30px 8px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background-color: white;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.language-select:hover {
  border-color: var(--green-700);
}

.language-select:focus-visible {
  outline: 3px solid rgba(68, 166, 113, 0.24);
  outline-offset: 2px;
}

.main-nav .nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--leaf), var(--green-900));
  box-shadow: 0 9px 22px rgba(28, 74, 138, 0.18);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  color: white;
  background: linear-gradient(135deg, #7be1ad, var(--green-950));
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: white;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 610px;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: #f4faf7;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, #f8fcfa 0%, rgba(248, 252, 250, 0.98) 36%, rgba(248, 252, 250, 0.86) 52%, rgba(248, 252, 250, 0.18) 78%, rgba(248, 252, 250, 0.03) 100%);
  content: "";
}

.hero-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.92) contrast(0.97);
}

.hero-grid {
  position: relative;
}

.hero-copy {
  max-width: 675px;
  padding: 84px 0 106px;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-700);
}

.hero .eyebrow::before {
  width: 30px;
  height: 2px;
  background: var(--leaf);
  content: "";
}

.hero h1 {
  max-width: 675px;
  margin: 0;
  color: var(--green-950);
  font-size: 4.4rem;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--green-700);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(214deg, var(--leaf) 0%, var(--green-900) 100%);
  box-shadow: 0 12px 30px rgba(28, 74, 138, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(214deg, #7be1ad 0%, var(--green-950) 100%);
  box-shadow: 0 16px 34px rgba(28, 74, 138, 0.28);
}

.button-secondary {
  border-color: rgba(28, 74, 138, 0.2);
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}

.button-light {
  color: var(--green-950);
  background: white;
}

.trust-bar {
  position: relative;
  z-index: 4;
  margin-top: -44px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(219, 232, 227, 0.86);
  border-radius: 8px;
  background: white;
  box-shadow: 0 20px 48px rgba(18, 55, 96, 0.13);
}

.trust-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 15px;
  padding: 27px 34px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: var(--green-700);
  background: var(--green-050);
  font-size: 1.25rem;
  font-weight: 800;
}

.trust-item strong,
.trust-item > div span {
  display: block;
}

.trust-item strong {
  font-size: 0.96rem;
}

.trust-item > div span {
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 112px 0;
}

.section-soft {
  background: var(--wash);
}

.anchor-alias {
  position: relative;
  top: -120px;
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section-dark {
  color: white;
  background: var(--green-950);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 56px;
}

.section-head .eyebrow {
  margin-bottom: 18px;
}

.section-head h2,
.split-copy h2,
.contact-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  letter-spacing: 0;
  line-height: 1.05;
}

.section-head > p,
.split-copy > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.split-copy > p {
  margin-top: 28px;
}

.devices-container {
  width: min(1240px, calc(100% - 40px));
}

.device-group + .device-group {
  margin-top: 96px;
  padding-top: 88px;
  border-top: 1px solid var(--line);
}

.device-group-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: end;
  gap: 40px;
  margin-bottom: 34px;
}

.device-group-kicker {
  margin: 0 0 8px;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.device-group-head h3 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 1.1;
}

.device-group-head > p {
  margin: 0;
  color: var(--muted);
}

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

.device-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 680px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.device-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.device-image {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: #eef7f4;
}

.device-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.device-card:hover .device-image img {
  transform: scale(1.025);
}

.device-image-select {
  background: linear-gradient(145deg, #d8eee9, #edf7f4);
}

.device-image img.is-contained {
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  transform: none;
}

.device-card:hover .device-image img.is-contained {
  transform: none;
}

.device-status {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 5px 16px rgba(18, 55, 96, 0.1);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}

.device-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55bc7a;
}

.device-leasing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2px 18px;
  margin: -2px 0 18px;
  padding: 13px 16px 14px;
  border-left: 3px solid #87283a;
  color: var(--green-950);
  background: rgba(135, 40, 58, 0.065);
}

.device-leasing[hidden] {
  display: none;
}

.device-leasing-label {
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.device-leasing-rate {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: #762235;
  font-size: 1.28rem;
  line-height: 1.08;
  white-space: nowrap;
}

.device-leasing-term {
  grid-column: 1;
  font-size: 0.7rem;
  font-weight: 700;
}

.device-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px 28px 24px;
}

.device-title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.device-category {
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.device-unit {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.device-card h3 {
  margin: 10px 0 14px;
  color: var(--green-950);
  font-size: 1.65rem;
  line-height: 1.2;
}

.device-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.device-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 24px 0 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.device-meta div {
  display: grid;
  gap: 3px;
}

.device-meta div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.device-meta dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-meta dd {
  margin: 0;
  color: var(--green-950);
  font-size: 1rem;
  font-weight: 780;
}

.device-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.device-facts[hidden] {
  display: none;
}

.device-facts li {
  padding: 5px 9px;
  border-radius: 999px;
  color: #3d655a;
  background: var(--green-050);
  font-size: 0.69rem;
  font-weight: 700;
}

.device-facts li::before {
  margin-right: 5px;
  color: var(--green-700);
  content: "✓";
  font-weight: 900;
}

.device-link {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 9px 10px 9px 15px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #5bcf98, var(--green-900));
  font-weight: 760;
  text-decoration: none;
}

.device-link:hover,
.device-link:focus-visible {
  background: linear-gradient(135deg, #74dda9, var(--green-950));
}

.device-link-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
}

.availability-note {
  max-width: 900px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.device-disclosures {
  display: grid;
  gap: 8px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.device-disclosures p {
  margin: 0;
}

.device-disclosures p[hidden] {
  display: none;
}

.device-disclosures sup {
  color: #b42332;
  font-weight: 900;
}

.device-disclosures a {
  color: var(--green-800);
  font-weight: 750;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: process;
}

.process-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--green-900);
  counter-increment: process;
}

.process-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.process-card:hover img {
  transform: scale(1.04);
}

.process-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 63, 50, 0.08) 20%, rgba(3, 44, 35, 0.94) 95%);
  content: "";
}

.process-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 226px;
  grid-template-rows: 42px 34px 72px;
  gap: 12px;
  padding: 27px;
}

.process-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.process-number::after {
  content: "0" counter(process);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-card h3 {
  align-self: end;
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 80px;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  color: #3d5d53;
}

.feature-list li::before {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  color: var(--green-700);
  background: var(--green-100);
  content: "✓";
  font-weight: 900;
}

.value-panel {
  position: relative;
  overflow: hidden;
  padding: 60px;
  border-radius: var(--radius-lg);
  color: white;
  background: var(--green-800);
  box-shadow: var(--shadow);
}

.value-panel::after {
  display: none;
}

.value-panel > * {
  position: relative;
  z-index: 1;
}

.value-panel .big-number {
  display: block;
  font-size: clamp(4.5rem, 9vw, 7.7rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.86;
}

.value-panel h3 {
  margin: 24px 0 12px;
  font-size: 1.75rem;
  line-height: 1.2;
}

.value-panel p {
  max-width: 450px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 26px 55px 26px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 25px;
  right: 6px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-700);
  background: var(--green-050);
  content: "+";
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 780px;
  margin: -6px 0 28px;
  color: var(--muted);
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.contact-copy {
  position: relative;
  overflow: hidden;
  padding: 62px;
  color: white;
  background: var(--green-800);
}

.contact-copy .eyebrow {
  color: #c9edb8;
}

.contact-copy h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.contact-copy > p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-points {
  display: grid;
  gap: 20px;
  margin: 38px 0 0;
}

.contact-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
}

.contact-point-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.contact-point strong,
.contact-point > div span {
  display: block;
}

.contact-point > div span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.contact-form-wrap {
  padding: 58px;
}

.contact-form-wrap h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.form-intro {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

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

.form-field label {
  font-size: 0.82rem;
  font-weight: 760;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #ceded8;
  border-radius: 12px;
  color: var(--ink);
  background: white;
  outline: none;
}

.form-field input,
.form-field select {
  height: 50px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 124px;
  padding: 13px 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(2, 113, 80, 0.1);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  margin: 4px 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green-700);
}

.checkbox-field a {
  color: var(--green-700);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}

.form-actions button {
  border: 0;
  cursor: pointer;
}

.form-actions button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  font-size: 0.88rem;
}

.form-status.success {
  color: var(--green-700);
  font-weight: 700;
}

.form-status.error {
  color: #a23d3d;
  font-weight: 700;
}

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

.site-footer {
  padding: 52px 0 26px;
  color: rgba(255, 255, 255, 0.76);
  background: #032f26;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.72fr 0.72fr minmax(220px, 0.95fr);
  gap: 42px;
  padding-bottom: 40px;
}

.footer-brand img {
  width: 176px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 410px;
  margin: 20px 0 0;
  font-size: 0.9rem;
}

.footer-column h3,
.footer-certification h3 {
  margin: 0 0 13px;
  color: white;
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 7px 0;
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: white;
}

.footer-certification {
  justify-self: end;
}

.footer-certification-mark {
  display: grid;
  width: 164px;
  height: 164px;
  padding: 6px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 4px;
  background: white;
}

.footer-certification img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
}

.footer-bottom p {
  max-width: 720px;
  margin: 0;
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 3.8rem;
  }

  .device-image {
    height: 320px;
  }

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

  .split-grid {
    gap: 48px;
  }

  .contact-copy,
  .contact-form-wrap {
    padding: 46px;
  }
}

@media (max-width: 1120px) {
  .announcement .container {
    justify-content: center;
    text-align: center;
  }

  .announcement a {
    display: none;
  }

  .brand-tag {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 45;
    top: 120px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 12px 8px;
  }

  .language-picker {
    width: 100%;
    padding: 10px 8px 4px;
  }

  .language-select {
    width: 100%;
  }

  .main-nav .nav-cta {
    width: 100%;
    margin-top: 10px;
  }

  .split-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-copy {
    max-width: 620px;
    padding: 66px 0 88px;
  }

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

  .device-group-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 86px 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .value-panel {
    padding: 48px;
  }

  .contact-copy {
    min-height: 480px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

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

  .announcement {
    font-size: 0.72rem;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand img {
    width: 142px;
    height: auto;
  }

  .main-nav {
    top: 106px;
    right: 14px;
    left: 14px;
  }

  .hero {
    min-height: 0;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(248, 252, 250, 0.98) 0%, rgba(248, 252, 250, 0.94) 68%, rgba(248, 252, 250, 0.72) 100%);
  }

  .hero-background {
    object-position: 70% center;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .hero-copy {
    padding: 48px 0 62px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .trust-bar {
    margin-top: -28px;
  }

  .trust-item {
    padding: 22px 8px;
  }

  .section {
    padding: 70px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .device-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .device-card {
    min-height: 0;
  }

  .device-group + .device-group {
    margin-top: 64px;
    padding-top: 58px;
  }

  .device-group-head h3 {
    font-size: 1.7rem;
  }

  .device-image {
    height: 280px;
  }

  .device-body {
    padding: 24px 20px 20px;
  }

  .device-card h3 {
    font-size: 1.45rem;
  }

  .device-meta {
    gap: 14px;
  }

  .device-meta div + div {
    padding-left: 14px;
  }

  .device-leasing {
    gap: 2px 12px;
    padding-right: 13px;
    padding-left: 13px;
  }

  .device-leasing-rate {
    font-size: 1.12rem;
  }

  .process-card {
    min-height: 380px;
  }

  .value-panel,
  .contact-copy,
  .contact-form-wrap {
    padding: 34px 24px;
  }

  .contact-copy {
    min-height: 0;
  }

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

  .form-field.full {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
