:root {
  --green-900: #004d2c;
  --green-800: #006338;
  --green-700: #0b7a46;
  --green-100: #e5f4eb;
  --green-50: #f3faf6;
  --mint: #cfe8d8;
  --lime: #8fd4a6;
  --gold: #c49a3e;
  --gold-soft: #f8f3e6;
  --mint-soft: #eef7f1;
  --ink: #163126;
  --muted: #66786f;
  --line: #e4ece7;
  --bg: #ffffff;
  --soft: #f6f8f6;
  --sand: #f3efe6;
  --shadow: 0 10px 28px rgba(0, 77, 44, 0.08);
  --shadow-sm: 0 4px 14px rgba(0, 77, 44, 0.06);
  --radius: 12px;
  --radius-lg: 16px;
  --header: 76px;
  --max: 1180px;
  --font: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  --display: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

button,
input {
  font: inherit;
}

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

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  inset: 12px;
  z-index: 80;
  padding: 10px 14px;
  background: var(--green-900);
  color: #fff;
  border-radius: 8px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--green-900);
  color: #fff;
}

.btn--primary:hover {
  background: var(--green-800);
}

.btn--outline {
  background: #fff;
  color: var(--green-900);
  border-color: var(--green-900);
}

.btn--outline:hover {
  background: var(--green-50);
}

.btn--gold {
  background: var(--gold);
  color: #fff;
}

.btn--gold:hover {
  filter: brightness(0.95);
}

.btn--light {
  background: #fff;
  color: var(--green-900);
}

.btn--light:hover {
  background: var(--green-50);
}

.btn--light-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn--light-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.82rem;
  font-weight: 600;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.section-head h2 span {
  color: var(--green-800);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo__img {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.logo__img--footer {
  height: 64px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 20px rgba(0, 77, 44, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__mobile-cta {
  display: none;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  border: 0;
  background: none;
  color: #3d4a43;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  cursor: pointer;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--green-900);
}

.nav__link.is-active {
  box-shadow: inset 0 -2px 0 var(--green-800);
}

.nav__item--dropdown,
.lang {
  position: relative;
}

.chevron {
  width: 12px;
  height: 12px;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.dropdown--right {
  left: auto;
  right: 0;
}

.dropdown a,
.dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border: 0;
  background: none;
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
}

.dropdown a:hover,
.dropdown button:hover {
  background: var(--green-50);
  color: var(--green-900);
}

.nav__item--dropdown.is-open > .dropdown,
.lang.is-open > .dropdown {
  display: block;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
}

.lang__btn svg:first-child {
  width: 18px;
  height: 18px;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: 0.2s ease;
}

body.nav-open .menu-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-btn span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 40px 0 8px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 40px;
  align-items: start;
}

.hero-kicker {
  color: var(--green-900);
  font-size: 15px;
  font-weight: 600;
}

.hero__copy h1 {
  margin: 12px 0 14px;
  font-family: var(--display);
  font-size: clamp(2.3rem, 4.4vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #1a1a1a;
}

.hero__copy h1 span {
  color: var(--green-900);
}

.hero__lead {
  max-width: 520px;
  color: #66716c;
  font-size: 16px;
  line-height: 1.6;
}

.path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0 20px;
}

.path-card {
  border-radius: 16px;
  padding: 18px 16px 16px;
}

.path-card--customer {
  background: var(--mint-soft);
}

.path-card--business {
  background: var(--gold-soft);
}

.path-card__label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.path-card--customer .path-card__label {
  color: var(--green-900);
}

.path-card--business .path-card__label {
  color: var(--gold);
}

.path-card__label svg {
  width: 18px;
  height: 18px;
}

.path-card h2 {
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--green-900);
}

.path-card .btn {
  width: 100%;
  min-height: 42px;
  font-size: 13px;
  border-radius: 10px;
}

.path-card__more {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
}

.path-card--customer .path-card__more {
  color: var(--green-900);
}

.path-card--business .path-card__more {
  color: #9a7a2e;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7b8680;
  font-size: 13px;
}

.trust-line__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-900);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.trust-line__icon svg {
  width: 14px;
  height: 14px;
}

.hero__visual {
  position: relative;
}

.hero-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.hero-toggle button {
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  background: #eee;
  color: #666;
}

.hero-toggle button[data-view="customers"].is-on {
  background: var(--green-900);
  color: #fff;
}

.hero-toggle button[data-view="business"].is-on {
  background: var(--gold);
  color: #fff;
}

.hero-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  height: auto;
  padding: 8px 0 28px;
}

.hero-pedestal {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 18px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, #f3f1ea 0%, #e6e3d8 70%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.hero-plant {
  position: absolute;
  bottom: 28px;
  width: 48px;
  z-index: 3;
}

.hero-plant--l {
  left: 6%;
}

.hero-plant--r {
  right: 4%;
}

.dash {
  position: relative;
  right: auto;
  top: auto;
  width: min(340px, 54%);
  height: 318px;
  display: grid;
  grid-template-columns: 72px 1fr;
  background: #fff;
  border: 1px solid #e8ebe8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(20, 40, 30, 0.12);
  z-index: 1;
  flex: 1 1 280px;
  transition: 0.35s ease;
}

.dash__side {
  background: var(--green-900);
  color: #d7eadf;
  padding: 12px 8px;
  font-size: 8px;
}

.dash__side strong {
  display: block;
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.dash__side span {
  display: block;
  padding: 6px 4px;
  opacity: 0.85;
}

.dash__main {
  padding: 12px 12px 10px;
}

.dash__hello {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 2px;
}

.dash__sub {
  font-size: 9px;
  color: #7a8680;
  margin-bottom: 8px;
}

.dash__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.dash__kpis div {
  background: #f6f8f6;
  border-radius: 8px;
  padding: 7px;
}

.dash__kpis small {
  display: block;
  font-size: 8px;
  color: #7a8680;
}

.dash__kpis b {
  display: block;
  font-size: 12px;
  color: var(--green-900);
  margin: 2px 0;
}

.dash__kpis em {
  font-style: normal;
  font-size: 8px;
  color: #1b8a4a;
}

.dash__list {
  margin-top: 10px;
}

.dash__list p {
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 6px;
}

.dash__list div {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  margin-bottom: 6px;
}

.dash__list i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d7e8dc;
  flex-shrink: 0;
}

.phone {
  position: relative;
  left: auto;
  bottom: auto;
  width: 210px;
  height: 440px;
  background: #111;
  border-radius: 34px;
  padding: 9px;
  box-shadow: 0 24px 50px rgba(0, 30, 18, 0.22);
  z-index: 2;
  flex-shrink: 0;
  transition: 0.35s ease;
}

.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 16px;
  background: #111;
  border-radius: 12px;
  z-index: 3;
}

.phone__screen {
  height: 100%;
  background: linear-gradient(180deg, #eef8f1 0%, #fff 24%);
  border-radius: 26px;
  overflow: hidden;
  padding: 26px 12px 12px;
}

.app-status {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}

.app-head p {
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 10px;
}

.app-head strong {
  display: block;
  font-size: 16px;
  margin: 0 0 4px;
}

.app-search {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 11px;
  color: #8a9a92;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 12px 0 14px;
}

.app-grid span {
  background: #f3f7f4;
  border-radius: 10px;
  padding: 10px 2px;
  text-align: center;
  font-size: 8px;
  font-weight: 600;
  color: var(--green-900);
}

.app-upnext {
  background: var(--green-900);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
}

.app-upnext small {
  display: block;
  opacity: 0.75;
  font-size: 9px;
}

.app-upnext strong {
  font-size: 12px;
}

.hero__visual[data-hero-view="customers"] .phone {
  transform: translateY(-8px);
}

.hero__visual[data-hero-view="business"] .dash {
  transform: translateY(-8px);
}

.unify {
  padding: 8px 0 48px;
}

.unify h2 {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.unify h2 span {
  color: var(--green-900);
}

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

.unify__row article {
  text-align: center;
  padding: 8px 10px;
  color: var(--green-900);
}

.unify__row article + article {
  border-left: 1px solid #e6ece8;
}

.unify__row svg {
  width: 28px;
  height: 28px;
  margin: 0 auto 10px;
}

.unify__row p {
  font-size: 13px;
  font-weight: 700;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.industry-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.industry-head h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1a1a1a;
}

.industry-head h2 span {
  color: var(--green-900);
}

.industry-head p {
  margin-top: 10px;
  color: #66716c;
  font-size: 16px;
}

.categories {
  padding: 24px 0 28px;
}

.cat-bar {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.cat-card {
  padding: 20px 10px 18px;
  text-align: center;
  min-width: 0;
  background: #fff;
  border: 1px solid #e8eee9;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(22, 49, 38, 0.05);
}

.cat-card:last-child {
  border-right: 1px solid #e8eee9;
}

.cat-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--green-900);
  background: #eaf6ef;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.cat-card__icon svg {
  width: 22px;
  height: 22px;
}

.cat-card h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  color: #222;
}

.cat-card p {
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.35;
  color: #757575;
}

.stats {
  padding: 12px 0 72px;
}

.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #f4f7f5;
  border-radius: 16px;
  padding: 22px 28px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-900);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.stat__icon svg,
.why-card__icon svg,
.feature-list__icon svg {
  width: 26px;
  height: 26px;
}

.stat strong {
  display: block;
  font-size: 1.7rem;
  color: var(--green-900);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.stat p {
  color: var(--muted);
  font-size: 0.92rem;
}

.why {
  padding: 72px 0 88px;
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

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

.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.why-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-900);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.why-card h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.solutions {
  padding: 40px 0 100px;
}

.solutions__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.solutions__visual {
  position: relative;
  min-height: 520px;
}

.solutions__photo {
  width: 78%;
  margin: 36px auto 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.solutions__photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: 50% 18%;
}

.widget {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px 14px;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.widget--notify {
  top: 18px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.widget__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22a35a;
  box-shadow: 0 0 0 6px rgba(34, 163, 90, 0.14);
}

.widget--notify p,
.widget--revenue p,
.widget--line p {
  color: var(--muted);
  font-size: 0.78rem;
}

.widget--notify strong {
  font-size: 0.92rem;
}

.widget--revenue {
  right: 0;
  top: 92px;
  width: 168px;
  animation-delay: -2s;
}

.widget--revenue strong,
.widget--line strong {
  display: block;
  font-size: 1.25rem;
  color: var(--green-900);
  margin: 2px 0 8px;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 52px;
}

.bars span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--lime), var(--green-800));
  border-radius: 4px 4px 0 0;
}

.widget--line {
  left: 8px;
  bottom: 18px;
  width: 200px;
  animation-delay: -3.2s;
}

.widget--line svg {
  width: 100%;
  height: 46px;
}

.solutions__copy h2 {
  margin: 12px 0 12px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.solutions__lead {
  color: var(--muted);
  margin-bottom: 22px;
}

.feature-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.feature-list li + li {
  margin-top: 10px;
}

.feature-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-weight: 600;
  font-size: 15px;
}

.feature-list a:hover {
  border-color: var(--mint);
  box-shadow: var(--shadow-sm);
}

.feature-list__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green-100);
  color: var(--green-900);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-list a span:nth-child(2) {
  flex: 1;
}

.chevron-right {
  width: 14px;
  height: 14px;
  color: var(--green-800);
}

.text-link {
  font-weight: 700;
  color: var(--green-800);
}

.text-link:hover {
  text-decoration: underline;
}

.testimonials {
  padding: 72px 0 88px;
  background: var(--soft);
}

.carousel {
  overflow: hidden;
}

.carousel__track {
  display: flex;
  gap: 18px;
  transition: transform 0.4s ease;
}

.quote-card {
  flex: 0 0 calc((100% - 36px) / 3);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.quote-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.quote-mark {
  font-size: 3rem;
  line-height: 0.6;
  color: var(--mint);
  font-family: Georgia, serif;
}

.quote-card > p {
  margin: 14px 0 22px;
  color: #3c4d45;
  flex: 1;
}

.quote-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-card footer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-card footer strong {
  display: block;
  font-size: 0.95rem;
}

.quote-card footer span {
  color: var(--muted);
  font-size: 0.82rem;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.carousel__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #c5d4cb;
  padding: 0;
  cursor: pointer;
}

.carousel__dots button.is-active {
  width: 22px;
  border-radius: 99px;
  background: var(--green-900);
}

.cta {
  padding: 10px 0 36px;
}

.cta__banner {
  position: relative;
  overflow: hidden;
  background: var(--green-900);
  color: #fff;
  border-radius: 22px;
  min-height: 168px;
}

.cta__skyline {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 140px;
  pointer-events: none;
}

.cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px;
}

.cta__text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cta__icon svg {
  width: 26px;
  height: 26px;
}

.cta__text h2 {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: -0.02em;
  max-width: 440px;
}

.cta__text p {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.newsletter {
  padding: 12px 0 56px;
}

.newsletter__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--sand);
  border-radius: 18px;
  padding: 22px 26px;
}

.newsletter__copy {
  display: flex;
  align-items: center;
  gap: 14px;
}

.newsletter__art svg {
  width: 64px;
  height: 48px;
}

.newsletter__copy h2 {
  font-size: 1.25rem;
}

.newsletter__copy p {
  color: var(--muted);
  font-size: 0.92rem;
}

.newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  min-width: min(100%, 420px);
}

.newsletter__form input {
  flex: 1;
  min-width: 200px;
  height: 48px;
  border: 1px solid #ddd6c8;
  border-radius: 10px;
  padding: 0 14px;
  background: #fff;
}

.newsletter__form input:focus {
  outline: 2px solid var(--green-700);
  border-color: transparent;
}

.form-msg {
  width: 100%;
  margin: 0;
  font-size: 0.85rem;
  color: var(--green-800);
}

.footer {
  padding: 28px 0 20px;
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px;
}

.footer__brand p {
  margin: 14px 0 16px;
  color: var(--muted);
  max-width: 280px;
}

.footer h3 {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.footer a:hover {
  color: var(--green-800);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-900);
}

.socials svg {
  width: 16px;
  height: 16px;
}

.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer__copy p + p {
  margin-top: 2px;
}

.heart {
  color: #d23b4f;
}

@media (min-width: 1440px) {
  :root {
    --max: 1240px;
  }

  .hero {
    padding-top: 48px;
  }
}

@media (max-width: 1180px) {
  .cat-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero__visual {
    min-height: 0;
  }

  .unify__row {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 0;
  }

  .unify__row article:nth-child(4) {
    border-left: 0;
  }
}

@media (max-width: 1100px) {
  .nav {
    position: fixed;
    inset: var(--header) 16px auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--shadow);
    display: none;
    z-index: 35;
  }

  body.nav-open .nav {
    display: block;
  }

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

  .nav__link {
    width: 100%;
    justify-content: space-between;
    padding: 12px;
  }

  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 12px;
    min-width: 0;
  }

  .nav__item--dropdown.is-open > .dropdown {
    display: block;
  }

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

  .nav__mobile-cta {
    display: block;
    padding: 8px 0 4px;
  }

  .nav__mobile-cta .btn {
    width: 100%;
  }

  .hero__grid,
  .solutions__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 0;
    max-width: 620px;
    margin: 0 auto;
  }

  .path-cards {
    grid-template-columns: 1fr;
  }

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

  .quote-card {
    flex-basis: calc((100% - 18px) / 2);
  }

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

  .cta__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --header: 68px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .logo__img {
    height: 44px;
  }

  .header__actions .btn {
    display: none;
  }

  .lang__btn span,
  .lang__btn .chevron {
    display: none;
  }

  .hero {
    padding-top: 20px;
  }

  .hero__copy h1 {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }

  .hero__visual,
  .hero-stage {
    min-height: 0;
    height: auto;
  }

  .hero-stage {
    flex-direction: column;
    align-items: center;
    padding-bottom: 24px;
  }

  .dash {
    width: 100%;
    max-width: 420px;
    height: 280px;
    flex: none;
  }

  .phone {
    width: 220px;
    height: 460px;
    margin: 0 auto;
  }

  .hero-pedestal,
  .hero-plant {
    display: none;
  }

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

  .unify__row article {
    border-left: 0 !important;
    border-top: 1px solid #e6ece8;
    padding: 16px 8px;
  }

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

  .stats__row,
  .why__grid {
    grid-template-columns: 1fr 1fr;
  }

  .solutions__visual {
    min-height: 0;
  }

  .solutions__photo {
    width: 100%;
    margin-top: 0;
  }

  .solutions__photo img {
    height: 360px;
  }

  .widget--revenue {
    top: 16px;
  }

  .widget--line {
    display: none;
  }

  .quote-card {
    flex-basis: 100%;
    min-height: 0;
  }

  .newsletter__bar,
  .newsletter__copy,
  .footer__base,
  .cta__text {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter__form {
    width: 100%;
    min-width: 0;
  }

  .newsletter__form .btn,
  .newsletter__form input {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 560px) {
  .why__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .cta__actions {
    width: 100%;
  }

  .cta__actions .btn {
    width: 100%;
  }

  .widget--notify,
  .widget--revenue {
    position: static;
    width: auto;
    margin-top: 12px;
    animation: none;
  }

  .solutions__visual {
    display: flex;
    flex-direction: column;
  }

  .footer__brand {
    grid-column: 1;
  }
}

@media (max-width: 380px) {
  .cat-card h3 {
    font-size: 13px;
  }

  .cat-card p {
    font-size: 10px;
  }

  .phone {
    width: 196px;
    height: 410px;
  }
}
