:root {
  --ink: #14221d;
  --muted: #5f6f68;
  --line: #d9e5dd;
  --surface: #f7fbf7;
  --surface-strong: #edf7ee;
  --white: #ffffff;
  --green: #18884f;
  --green-dark: #0c5d3a;
  --mint: #bfe6c9;
  --gold: #e3b640;
  --teal: #0f6f73;
  --shadow: 0 22px 60px rgba(20, 34, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 251, 247, 0.92);
  border-bottom: 1px solid rgba(217, 229, 221, 0.8);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links > a,
.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.nav-links > a::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  border-radius: 99px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links > a:hover,
.nav-links > a.active,
.nav-trigger:hover,
.nav-trigger.active,
.nav-item.is-open .nav-trigger {
  background: var(--surface-strong);
  color: var(--green-dark);
}

.nav-links > a:hover::after,
.nav-links > a.active::after,
.nav-trigger:hover::after,
.nav-trigger.active::after,
.nav-item.is-open .nav-trigger::after {
  transform: scaleX(1);
}

.nav-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(24, 136, 79, 0.1);
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 900;
}

.chevron {
  display: inline-grid;
  place-items: center;
  width: 12px;
  height: 12px;
  transition: transform 220ms ease;
}

.chevron::before {
  content: "v";
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.nav-item.is-open .chevron {
  transform: rotate(180deg);
}

.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 20;
  width: min(1040px, calc(100vw - 40px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-50%, 12px, 0) scale(0.985);
  filter: blur(8px);
  transition: opacity 250ms ease, transform 250ms ease, filter 250ms ease, visibility 250ms ease;
}

.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.mega-company {
  width: min(900px, calc(100vw - 40px));
}

.nav-item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0) scale(1);
  filter: blur(0);
}

.mega-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.42fr);
  gap: 26px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(243, 248, 241, 0.72)) padding-box,
    linear-gradient(135deg, rgba(191, 230, 201, 0.72), rgba(227, 182, 64, 0.44), rgba(255, 255, 255, 0.64)) border-box;
  box-shadow: 0 34px 90px rgba(18, 32, 24, 0.18);
  backdrop-filter: blur(24px);
}

.mega-content::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.45), transparent 46%);
  transform: translateX(-120%);
  transition: transform 900ms var(--premium-ease);
}

.nav-item.is-open .mega-content::after {
  transform: translateX(120%);
}

.mega-card-grid,
.mega-columns {
  display: grid;
  gap: 16px;
}

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

.mega-card,
.mega-columns > div {
  position: relative;
  z-index: 1;
  padding: 20px;
  border: 1px solid rgba(217, 229, 221, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 48px rgba(18, 32, 24, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.mega-card:hover,
.mega-columns > div:hover {
  transform: translate3d(0, -5px, 0);
  border-color: rgba(24, 136, 79, 0.28);
  box-shadow: 0 26px 70px rgba(18, 32, 24, 0.14);
}

.mega-card {
  display: grid;
  gap: 10px;
}

.mega-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--green-dark);
  font-weight: 900;
}

.mega-card strong,
.mega-columns h3 {
  color: var(--green-dark);
  font-size: 1.08rem;
  line-height: 1.15;
}

.mega-card em {
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.mega-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.mega-card mark,
.mobile-menu mark {
  display: inline-flex;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 900;
}

.mega-link {
  color: var(--green);
  font-weight: 900;
  transition: transform 180ms ease;
}

.mega-card:hover .mega-link {
  transform: translateX(4px);
}

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

.company-columns {
  grid-template-columns: minmax(0, 1fr);
}

.mega-columns h3 {
  margin: 0 0 12px;
}

.mega-columns a {
  display: flex;
  padding: 9px 0;
  color: var(--muted);
  font-weight: 800;
}

.mega-columns a:hover {
  color: var(--green-dark);
}

.mega-visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 24% 18%, rgba(191, 230, 201, 0.62), transparent 9rem),
    linear-gradient(145deg, rgba(15, 47, 34, 0.94), rgba(24, 136, 79, 0.72));
}

.mega-visual.compact {
  min-height: 230px;
}

.mega-phone {
  position: absolute;
  right: 34px;
  bottom: 28px;
  display: grid;
  gap: 9px;
  width: 132px;
  padding: 18px 14px;
  border: 7px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.mega-phone span {
  width: 34px;
  height: 4px;
  margin: 0 auto 8px;
  border-radius: 99px;
  background: rgba(18, 32, 24, 0.18);
}

.mega-phone small {
  color: var(--muted);
  font-weight: 800;
}

.mega-visual i,
.mega-orbit,
.mega-company-mark {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.mega-visual i {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.mega-visual i:nth-child(2) { left: 26px; top: 34px; }
.mega-visual i:nth-child(3) { left: 72px; bottom: 42px; }
.mega-visual i:nth-child(4) { right: 34px; top: 40px; }

.mega-orbit {
  inset: 42px;
  border: 2px dashed rgba(255, 255, 255, 0.44);
}

.mega-company-mark {
  inset: 62px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 4rem;
  font-weight: 800;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  display: block;
  position: absolute;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle::before {
  transform: translateY(-7px);
}

.menu-toggle::after {
  transform: translateY(7px);
}

.mobile-menu {
  display: none;
}

.mobile-menu details {
  display: grid;
}

.mobile-menu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary::after {
  content: "v";
  transition: transform 220ms ease;
}

.mobile-menu details[open] summary::after {
  transform: rotate(180deg);
}

.mobile-menu details a {
  margin-top: 8px;
  margin-left: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 15px 30px rgba(24, 136, 79, 0.22);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--green-dark);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: start;
  padding: clamp(26px, 4vh, 42px) 0 clamp(24px, 4vh, 34px);
  color: var(--white);
  background: #10241c;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 26, 19, 0.86), rgba(9, 26, 19, 0.5) 52%, rgba(9, 26, 19, 0.16)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 780px);
  gap: 28px;
  align-items: start;
}

.hero h1,
.hero h2,
.page-hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1,
.hero h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.04;
}

.hero-copy {
  max-width: 560px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.35vw, 1.14rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.app-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(142px, 15vw, 168px);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, filter 180ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.store-badge img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-panel,
.feature-card,
.metric,
.contact-panel,
.form-card,
.faq-item,
.role-card,
.timeline-item,
.certificate-card,
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  max-width: none;
  padding: 20px;
  color: var(--ink);
}

.hero-panel strong {
  display: block;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1;
}

.hero-panel span {
  color: var(--muted);
  font-weight: 700;
}

.hero-panel-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 0;
}

.hero-icon-row {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.hero-mini-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(24, 136, 79, 0.12);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(24, 136, 79, 0.18);
}

.flow-summary {
  position: relative;
  z-index: 3;
  padding: 18px 0 0;
  background: linear-gradient(180deg, #10241c 0%, var(--surface) 100%);
}

.flow-summary .hero-panel {
  transform: translateY(-34px);
  margin-bottom: -18px;
}

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.breadcrumb a {
  color: var(--white);
}

.breadcrumb span::before {
  content: "/";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.42);
}

.marketplace-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100svh - 78px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(191, 230, 201, 0.34), transparent 24rem),
    linear-gradient(135deg, #0f2f22 0%, #10241c 52%, #1c3c2c 100%);
}

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

.marketplace-hero::before {
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(191, 230, 201, 0.16) 1px, transparent 1.5px);
  background-position: 0 0, 24px 34px;
  background-size: 72px 72px;
}

.marketplace-hero::after {
  right: -8%;
  bottom: -22%;
  z-index: 0;
  width: 52vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 182, 64, 0.18), transparent 62%);
}

.marketplace-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.86fr);
  gap: 52px;
  align-items: center;
  padding: 52px 0 76px;
}

.marketplace-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.marketplace-hero p {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.marketplace-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.marketplace-visual {
  position: relative;
  min-height: 540px;
}

.marketplace-illustration {
  position: absolute;
  inset: 52px auto auto 0;
  width: min(92%, 640px);
  border-radius: 8px;
  filter: drop-shadow(0 32px 60px rgba(0, 0, 0, 0.22));
}

.marketplace-phone {
  position: absolute;
  right: 4%;
  bottom: 34px;
  display: grid;
  gap: 8px;
  width: 172px;
  min-height: 250px;
  padding: 22px 18px;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 28px;
  background: linear-gradient(180deg, var(--white), #edf8ee);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.marketplace-phone span {
  width: 46px;
  height: 5px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(18, 32, 24, 0.18);
}

.marketplace-phone strong,
.marketplace-phone em,
.marketplace-phone small {
  font-style: normal;
  font-weight: 900;
}

.marketplace-phone em {
  color: var(--green);
}

.marketplace-phone small {
  color: var(--muted);
}

.floating-product-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 5px;
  min-width: 160px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.floating-product-card span {
  color: var(--green);
  font-weight: 900;
}

.card-a {
  top: 24px;
  right: 7%;
}

.card-b {
  left: 0;
  bottom: 66px;
}

.card-c {
  right: 0;
  top: 52%;
}

.section-lead {
  max-width: 900px;
  margin: -20px 0 34px;
  color: var(--muted);
  font-size: 1.05rem;
}

.marketplace-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.marketplace-category-card {
  position: relative;
  min-height: 172px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(243, 248, 241, 0.94)),
    radial-gradient(circle at 84% 18%, rgba(191, 230, 201, 0.56), transparent 9rem);
  box-shadow: var(--shadow);
}

.marketplace-category-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(24, 136, 79, 0.1);
}

.marketplace-category-card span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
}

.marketplace-category-card h3 {
  position: relative;
  z-index: 1;
  margin: 32px 0 0;
  color: var(--green-dark);
  font-size: 1.08rem;
}

.marketplace-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: marketplaceStep;
}

.marketplace-steps article {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.marketplace-steps article::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  width: 16px;
  height: 2px;
  background: var(--green);
}

.marketplace-steps article:nth-child(4n)::after,
.marketplace-steps article:last-child::after {
  display: none;
}

.marketplace-steps strong {
  display: block;
  color: var(--green);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.marketplace-steps span {
  display: block;
  margin-top: 14px;
  color: var(--green-dark);
  font-weight: 900;
}

.marketplace-pill-list {
  gap: 12px;
}

.benefit-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.benefit-panel h2 {
  margin: 10px 0 0;
  color: var(--green-dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  line-height: 1;
}

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

.marketplace-device-stage {
  position: relative;
  min-height: 430px;
}

.phone-mockup,
.tablet-mockup {
  position: absolute;
  display: grid;
  gap: 12px;
  border: 8px solid #dfe7e1;
  background: linear-gradient(180deg, #ffffff, #f3f8f1);
  box-shadow: var(--shadow);
}

.phone-mockup {
  right: 8%;
  top: 16px;
  width: 190px;
  min-height: 350px;
  padding: 26px 18px;
  border-radius: 30px;
}

.tablet-mockup {
  left: 0;
  bottom: 20px;
  width: 360px;
  min-height: 240px;
  padding: 28px;
  border-radius: 24px;
}

.phone-mockup strong,
.tablet-mockup strong {
  color: var(--green-dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.2rem;
}

.phone-mockup span,
.tablet-mockup span {
  padding: 12px;
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--muted);
  font-weight: 800;
}

.app-downloads-dark .store-badge {
  box-shadow: 0 16px 36px rgba(18, 32, 24, 0.12);
}

.story-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--green-dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
}

.partner-card {
  display: grid;
  align-content: start;
  gap: 16px;
}

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.partner-logo img {
  display: block;
  max-width: min(100%, 260px);
  max-height: 86px;
  object-fit: contain;
}

.collaboration-banner {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68));
  color: var(--green-dark);
  font-weight: 900;
  line-height: 1.55;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.simple-dropdown {
  width: 240px;
}

.simple-dropdown .mega-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(18, 32, 24, 0.12);
}

.simple-dropdown .mega-content::after {
  display: none;
}

.simple-dropdown a {
  display: flex;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 800;
}

.simple-dropdown a:hover,
.simple-dropdown a.active {
  background: var(--surface-strong);
  color: var(--green-dark);
}

.check-row,
.mini-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-row::before,
.mini-row::before {
  content: "";
  flex: 0 0 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
}

.section {
  padding: 92px 0;
}

.section.compact {
  padding: 64px 0;
}

.section.alt {
  background: var(--white);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.7fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
}

.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}

.compact-heading {
  margin-bottom: 28px;
}

.dark .section-heading p,
.dark .muted,
.dark .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

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

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

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

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

.customer-logos-section {
  padding-top: 64px;
  padding-bottom: 64px;
  background: linear-gradient(180deg, var(--surface), var(--white));
}

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

.customer-logo-card {
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(18, 32, 24, 0.06);
}

.customer-logo-card span {
  color: var(--green-dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0;
}

.signup-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(243, 248, 241, 0.96) 0%, rgba(255, 255, 255, 0.94) 46%, rgba(237, 249, 238, 0.92) 100%),
    var(--surface);
}

.signup-section::before,
.signup-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.signup-section::before {
  background-image:
    linear-gradient(rgba(24, 136, 79, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 136, 79, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 72%, transparent 100%);
}

.signup-section::after {
  background:
    linear-gradient(120deg, transparent 0%, rgba(191, 230, 201, 0.42) 32%, transparent 58%),
    linear-gradient(300deg, transparent 18%, rgba(227, 182, 64, 0.16) 48%, transparent 76%);
  opacity: 0.82;
}

.signup-role-grid {
  align-items: stretch;
  gap: 22px;
}

.signup-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)) padding-box,
    linear-gradient(145deg, rgba(191, 230, 201, 0.8), rgba(255, 255, 255, 0.72), rgba(227, 182, 64, 0.32)) border-box;
  box-shadow: 0 24px 70px rgba(18, 32, 24, 0.1);
  backdrop-filter: blur(22px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.signup-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.48), transparent 34%),
    linear-gradient(180deg, transparent 58%, rgba(24, 136, 79, 0.08));
  opacity: 0.8;
}

.signup-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 74px;
  height: 74px;
  border-right: 2px solid rgba(24, 136, 79, 0.18);
  border-bottom: 2px solid rgba(24, 136, 79, 0.18);
  border-radius: 0 0 8px 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.signup-card > * {
  position: relative;
  z-index: 1;
}

.signup-card:hover {
  transform: translate3d(0, -8px, 0);
  border-color: rgba(24, 136, 79, 0.24);
  box-shadow: 0 34px 90px rgba(18, 32, 24, 0.16);
}

.signup-card:hover::after {
  opacity: 0.72;
  transform: translate3d(-6px, -6px, 0);
}

.signup-card .btn {
  align-self: end;
  margin-top: auto;
  width: fit-content;
}

.signup-media {
  display: grid;
  place-items: center;
  min-height: 188px;
  margin: -8px 0 2px;
  overflow: hidden;
  border: 1px solid rgba(24, 136, 79, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 22%, rgba(191, 230, 201, 0.52), transparent 8rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(243, 248, 241, 0.74));
}

.signup-media img {
  display: block;
  width: 100%;
  height: 188px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(18, 32, 24, 0.12));
  transition: transform 260ms ease;
}

.signup-card:hover .signup-media img {
  transform: translate3d(0, -4px, 0) scale(1.04);
}

.signup-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    linear-gradient(145deg, var(--green), var(--green-dark));
  color: var(--white);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
  box-shadow:
    0 0 0 8px rgba(24, 136, 79, 0.1),
    0 16px 34px rgba(24, 136, 79, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.signup-card:hover .signup-icon {
  transform: translate3d(0, -3px, 0) rotate(-4deg);
  box-shadow:
    0 0 0 10px rgba(24, 136, 79, 0.12),
    0 20px 42px rgba(24, 136, 79, 0.28);
}

.signup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: end;
  margin-top: auto;
}

.signup-login-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(243, 248, 241, 0.78));
  box-shadow: 0 22px 64px rgba(18, 32, 24, 0.1);
  backdrop-filter: blur(20px);
  font-weight: 900;
  color: var(--green-dark);
}

.signup-login-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-100%);
  transition: transform 700ms var(--premium-ease);
}

.signup-login-panel:hover::before {
  transform: translateX(100%);
}

.feature-card,
.role-card,
.certificate-card,
.quote-card,
.faq-item {
  padding: 24px;
}

.feature-card h2,
.feature-card h3,
.role-card h2,
.role-card h3,
.certificate-card h3,
.timeline-item h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 1.16rem;
  line-height: 1.25;
}

.feature-card p,
.role-card p,
.certificate-card p,
.timeline-item p,
.quote-card p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--green-dark);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 52px;
  align-items: center;
}

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.metric {
  padding: 22px;
}

.metric strong {
  display: block;
  color: var(--green-dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.page-hero {
  position: relative;
  padding: 96px 0 64px;
  background: linear-gradient(135deg, var(--surface-strong), var(--surface) 58%, #ffffff);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.74fr);
  gap: 50px;
  align-items: center;
}

.page-hero-bg {
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  padding: clamp(72px, 10vh, 112px) 0;
  color: var(--white);
  background: #10241c;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 26, 18, 0.92) 0%, rgba(8, 26, 18, 0.74) 42%, rgba(8, 26, 18, 0.36) 72%, rgba(8, 26, 18, 0.18) 100%),
    var(--page-hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.page-hero-bg .page-hero-grid {
  grid-template-columns: minmax(0, 760px);
}

.page-hero-platform {
  --page-hero-image: url("../image/generated/hero-platform.png");
}

.page-hero-solutions {
  --page-hero-image: url("../image/generated/hero-solutions.png");
}

.page-hero-workflow {
  --page-hero-image: url("../image/generated/hero-workflow.png");
}

.page-hero-compliance {
  --page-hero-image: url("../image/generated/hero-compliance.png");
}

.page-hero-about {
  --page-hero-image: url("../image/generated/hero-about.png");
}

.page-hero-contact {
  --page-hero-image: url("../image/generated/hero-contact.png");
}

.page-hero-bg .eyebrow {
  color: rgba(232, 255, 238, 0.78);
}

.page-hero-bg h1,
.page-hero-bg p {
  color: var(--white);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.page-hero-bg p {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero-bg .btn-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 6vw, 6rem);
}

.page-hero p {
  max-width: 640px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.16rem;
}

.page-hero-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero-image img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 800;
}

.workflow-map-frame {
  margin: 0 0 34px;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.workflow-map-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.process-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0 0 36px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(237, 249, 238, 0.94), rgba(255, 255, 255, 0.9) 54%, rgba(255, 240, 223, 0.92)),
    radial-gradient(circle at 14% 18%, rgba(191, 230, 201, 0.64), transparent 20rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.process-route {
  position: absolute;
  inset: 72px 70px;
  z-index: 0;
  border: 9px dotted rgba(24, 136, 79, 0.48);
  border-left-color: rgba(212, 122, 58, 0.62);
  border-bottom-color: rgba(212, 122, 58, 0.62);
  border-radius: 48px;
  opacity: 0.92;
}

.process-zone {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  min-height: 248px;
  padding: 22px;
  border: 1px dashed rgba(24, 136, 79, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(18, 32, 24, 0.08);
}

.process-zone h3 {
  margin: 6px 0 12px;
  color: var(--green-dark);
  font-size: 1.18rem;
}

.process-zone ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-zone li {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.42;
}

.process-zone li::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 900;
}

.process-visual {
  position: relative;
  display: grid;
  place-items: center;
  align-self: center;
  min-height: 150px;
}

.process-pin {
  position: absolute;
  top: 0;
  left: 4px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50% 50% 50% 8px;
  background: var(--green);
  color: var(--white);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
  transform: rotate(-45deg);
}

.process-pin::before {
  content: attr(class);
  display: none;
}

.process-pin {
  line-height: 1;
}

.process-pin {
  text-indent: 0;
}

.process-pin {
  font-size: 0;
}

.process-pin::after {
  content: attr(data-label);
}

.process-zone .process-pin {
  font-size: 0;
}

.process-zone-a .process-pin::after { content: "01"; }
.process-zone-b .process-pin::after { content: "02"; }
.process-zone-c .process-pin::after { content: "03"; }
.process-zone-d .process-pin::after { content: "04"; }

.process-pin::after {
  font-size: 0.78rem;
  transform: rotate(45deg);
}

.process-emoji {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: var(--surface-strong);
  color: var(--green-dark);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(24, 136, 79, 0.12);
}

.process-emoji::before {
  font-size: 1.45rem;
}

.process-zone-a .process-emoji::before {
  content: "REG";
}

.process-zone-b .process-emoji::before {
  content: "GPS";
}

.process-zone-c .process-emoji::before {
  content: "REC";
}

.process-zone-d .process-emoji::before {
  content: "OK";
}

.tiny-label {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(243, 248, 241, 0.94)),
    radial-gradient(circle at 14% 24%, rgba(191, 230, 201, 0.5), transparent 24rem);
  box-shadow: var(--shadow);
}

.workflow-line {
  position: absolute;
  top: 72px;
  left: 8%;
  right: 8%;
  height: 3px;
  border-radius: 999px;
  background: rgba(24, 136, 79, 0.16);
  overflow: hidden;
}

.workflow-line span {
  display: block;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--green), var(--gold), transparent);
}

.workflow-node {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 18px 14px;
  border: 1px solid rgba(24, 136, 79, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
  box-shadow: 0 16px 42px rgba(18, 32, 24, 0.06);
}

.workflow-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
  box-shadow: 0 0 0 8px rgba(24, 136, 79, 0.1);
}

.workflow-node h3 {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 1rem;
}

.workflow-node p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.timeline {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline-item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
}

.role-card ul,
.clean-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  color: var(--muted);
}

.role-card li,
.clean-list li {
  display: flex;
  gap: 10px;
}

.role-card li::before,
.clean-list li::before {
  content: "";
  flex: 0 0 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.contact-panel {
  padding: 28px;
}

.contact-panel h2,
.contact-panel h3,
.form-card h2 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.65rem;
}

.contact-links {
  display: grid;
  gap: 14px;
}

.contact-links a {
  display: flex;
  gap: 12px;
  color: var(--green-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.form-card {
  padding: 28px;
}

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

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

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

.field label {
  color: var(--ink);
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.quote-card {
  display: grid;
  gap: 16px;
}

.quote-card p {
  color: var(--ink);
  font-size: 1.05rem;
}

.quote-card strong {
  color: var(--green-dark);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-item p {
  margin-top: 12px;
  color: var(--muted);
}

.site-footer {
  padding: 62px 0 28px;
  background: #0e1c17;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: start;
}

.footer-logo {
  width: 142px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

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

.footer-links h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links a {
  display: block;
  padding: 5px 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.94rem;
}

.powered {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.powered img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mega-menu {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 20px 24px;
    background: rgba(247, 251, 247, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-open .mobile-menu {
    display: grid;
  }

  .mobile-menu a {
    padding: 14px;
    border-radius: 8px;
    background: var(--white);
    font-weight: 800;
  }

  .mobile-menu mark {
    margin-left: 6px;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: 54px 0;
  }

  .page-hero-bg {
    min-height: calc(100svh - 74px);
    padding: 66px 0;
  }

  .hero-grid,
  .marketplace-hero-grid,
  .page-hero-grid,
  .section-heading,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .metric-grid,
  .customer-logo-grid,
  .marketplace-category-grid,
  .marketplace-steps,
  .marketplace-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marketplace-hero-grid {
    padding-top: 42px;
  }

  .marketplace-visual {
    min-height: 430px;
  }

  .marketplace-steps article::after {
    display: none;
  }

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

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

  .process-route {
    display: none;
  }

  .workflow-line {
    display: none;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

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

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

  .brand img,
  .footer-logo {
    width: 118px;
  }

  .nav {
    min-height: 70px;
  }

  .mobile-menu {
    inset-block-start: 70px;
  }

  .hero,
  .page-hero,
  .section {
    padding: 54px 0;
  }

  .page-hero-bg {
    min-height: auto;
    padding: 56px 0;
  }

  .page-hero-bg::after {
    background:
      linear-gradient(90deg, rgba(8, 26, 18, 0.94) 0%, rgba(8, 26, 18, 0.78) 58%, rgba(8, 26, 18, 0.52) 100%),
      var(--page-hero-image);
    background-position: center;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.7rem);
  }

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

  .hero-actions .btn,
  .form-card .btn {
    width: 100%;
  }

  .app-downloads {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-badge {
    width: 100%;
  }

  .hero-panel {
    padding: 16px;
  }

  .hero-panel-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-diagram {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .process-map {
    padding: 18px;
  }

  .process-zone {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .process-visual {
    min-height: 112px;
    justify-items: start;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .metric-grid,
  .customer-logo-grid,
  .marketplace-category-grid,
  .marketplace-steps,
  .marketplace-stats,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .marketplace-hero {
    min-height: auto;
  }

  .marketplace-hero-grid {
    padding: 38px 0 54px;
  }

  .marketplace-hero h1 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
  }

  .marketplace-actions {
    display: grid;
  }

  .marketplace-actions .btn {
    width: 100%;
  }

  .marketplace-visual,
  .marketplace-device-stage {
    min-height: auto;
  }

  .marketplace-illustration,
  .marketplace-phone,
  .floating-product-card,
  .phone-mockup,
  .tablet-mockup {
    position: relative;
    inset: auto;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-top: 16px;
  }

  .marketplace-phone,
  .phone-mockup,
  .tablet-mockup {
    min-height: auto;
  }

  .marketplace-category-card {
    min-height: 138px;
  }

  .signup-card .btn,
  .signup-actions .btn {
    width: 100%;
  }

  .signup-login-panel {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .signup-login-panel .btn {
    width: 100%;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

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