: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: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 164px;
  height: 58px;
  object-fit: contain;
  object-position: center;
}

.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: 30px;
}

.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);
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.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;
  overflow: hidden;
  padding: 86px 0 70px;
  background: linear-gradient(180deg, #fbfdfc 0%, #eff8f5 100%);
}

.hero::before {
  display: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 76px;
}

.hero h1 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(3.1rem, 5.5vw, 5.5rem);
  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-weight: 500;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.75;
}

.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: var(--line);
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.76);
}

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

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin: 28px 0 0;
  padding: 0;
  color: #49645b;
  font-size: 0.88rem;
  font-weight: 650;
  list-style: none;
}

.micro-trust li::before {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  margin-right: 8px;
  border-radius: 50%;
  color: white;
  background: var(--leaf);
  content: "✓";
  font-size: 0.72rem;
}

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

.hero-image {
  position: absolute;
  inset: 0 0 44px 44px;
  overflow: hidden;
  border-radius: 42% 58% 46% 54% / 37% 39% 61% 63%;
  background: var(--green-100);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(4, 63, 50, 0.28));
  content: "";
}

.floating-card {
  position: absolute;
  right: -22px;
  bottom: 0;
  width: 260px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.floating-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.12rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.floating-card .status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 6px var(--leaf-soft);
}

.device-mini {
  position: absolute;
  z-index: 2;
  bottom: 8px;
  left: 0;
  width: 174px;
  height: 174px;
  padding: 13px;
  overflow: hidden;
  border: 9px solid white;
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow);
}

.device-mini img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.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 span {
  display: block;
}

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

.trust-item 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: 44px;
}

.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);
}

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

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

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

.device-image {
  height: 260px;
  padding: 14px;
  background: linear-gradient(150deg, #eff7f4, #fff);
}

.device-image img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

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

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

.device-card h3 {
  margin: 8px 0 10px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.device-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.device-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
  color: var(--green-700);
  font-weight: 760;
  text-decoration: none;
}

.availability-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.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;
  padding: 27px;
}

.process-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  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 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

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

.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 span {
  display: block;
}

.contact-point 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.4fr 0.8fr 0.8fr;
  gap: 60px;
  padding-bottom: 40px;
}

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

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

.footer-column 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-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-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 42px;
  }

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

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

  .device-card {
    min-height: 470px;
  }

  .split-grid {
    gap: 48px;
  }

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

@media (max-width: 860px) {
  .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-link {
    align-self: flex-start;
    margin-top: 8px;
  }

  .hero {
    padding-top: 66px;
  }

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

  .hero-visual {
    min-height: 530px;
    margin-top: 16px;
  }

  .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;
  }
}

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

  .announcement {
    font-size: 0.72rem;
  }

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

  .brand img {
    width: 134px;
    height: 48px;
  }

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

  .hero {
    padding: 54px 0 48px;
  }

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

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

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

  .micro-trust {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-image {
    inset: 0 0 42px 16px;
  }

  .device-mini {
    width: 120px;
    height: 120px;
    border-width: 6px;
  }

  .floating-card {
    right: 0;
    width: 215px;
    padding: 16px;
  }

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

  .section {
    padding: 70px 0;
  }

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

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

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

  .device-image {
    height: 280px;
  }

  .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;
  }
}
