@font-face {
  font-family: "Gravity";
  src: url("./Gravity-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gravity";
  src: url("./Gravity-Book.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gravity";
  src: url("./Gravity-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gravity";
  src: url("./Gravity-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Gravity";
  src: url("./Gravity-BookItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Gravity";
  src: url("./Gravity-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #203738;
  --bg-soft: #214445;
  --bg-panel: rgba(34, 70, 71, 0.78);
  --line: #285153;
  --text: #ebfff5;
  --muted: rgba(235, 255, 245, 0.78);
  --lime: #d6ff66;
  --mint: #2fe3b3;
  --lavender: #7f85ff;
  --shadow: 0 20px 60px rgba(5, 24, 25, 0.22);
  --radius: 18px;
  --shell: 100%;
  --container: min(1440px, calc(100vw - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Gravity", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
}

.page-shell {
  width: var(--shell);
  overflow: clip;
  --container: min(calc(100vw - 64px), 1440px);
}

body::before,
body::after {
  display: none;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(32, 55, 56, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 245px;
  height: auto;
}

.brand-footer img {
  width: 245px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Gravity", "Avenir Next", "Segoe UI", sans-serif;
}

.site-nav a {
  color: var(--lime);
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--mint);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(208, 255, 113, 0.22);
  background: transparent;
  color: var(--text);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lime);
  margin: 6px auto;
  transition: transform 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 24px;
  border: 2px solid transparent;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  font-family: "Gravity", "Avenir Next", "Segoe UI", sans-serif;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

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

.button-primary {
  background: var(--lime);
  color: var(--bg);
}

.button-secondary {
  border-color: var(--lime);
  color: var(--lime);
  background: transparent;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Gravity", "Avenir Next", "Segoe UI", sans-serif;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 40px;
}

.section-heading.narrow {
  max-width: 960px;
}

.section-heading h2,
.hero h1 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--lime);
  font-family: "Gravity", "Avenir Next", "Segoe UI", sans-serif;
}

.section-heading p,
.hero-text {
  margin: 0;
  max-width: 920px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
  font-family: "Gravity", "Avenir Next", "Segoe UI", sans-serif;
}

.hero {
  padding-top: 52px;
  padding-bottom: 40px;
}

.hero-frame {
  width: var(--container);
}

.hero-copy {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin-bottom: 40px;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.hero-text {
  max-width: 940px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.3;
  color: var(--lime);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 192px;
  margin-top: 78px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

.hero-primary {
  min-width: 408px;
}

.hero-secondary {
  min-width: 260px;
}

.hero-collage {
  --tile-gap: 6px;
  --tile-radius: 18px;
  width: 100%;
  aspect-ratio: 3 / 1;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background: #203738;
}

.hero-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: var(--tile-gap);
  padding: 0;
  background: #203738;
  z-index: 1;
}

.mosaic-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--tile-radius);
  grid-column: var(--col);
  grid-row: var(--row);
  background-image: url("./back.png");
  background-repeat: no-repeat;
  background-size: var(--hero-bg-size, cover);
  background-position: var(--hero-bg-pos, center);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease;
}

.mosaic-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition:
    transform 0.24s ease,
    filter 0.24s ease,
    opacity 0.24s ease,
    background-color 0.24s ease;
}

.tile-clear::before {
  display: none;
}

.tile-clear.tile-darken::after,
.tile-blur::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.tile-blur::before {
  background-image: url("./back.png");
  background-repeat: no-repeat;
  background-size: var(--hero-bg-size, cover);
  background-position: var(--hero-bg-pos, center);
  filter: blur(14px);
  transform: scale(1.08);
}

.tile-blur {
  background: transparent;
}

.tile-darken::after {
  background: rgba(84, 93, 120, 0.26);
}

.tile-warm::after {
  background: rgba(255, 224, 112, 0.12);
}

.tile-green::after {
  background: rgba(85, 111, 44, 0.22);
}

.tile-accent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 18px 18px;
  color: #132729;
  background-image: none;
}

.tile-accent::before {
  display: none;
}

.tile-accent p {
  margin: 0;
  max-width: 92%;
  font-size: clamp(0.86rem, 0.95vw, 1.02rem);
  line-height: 1.18;
  font-weight: 500;
  font-family: "Gravity", "Avenir Next", "Segoe UI", sans-serif;
}

.tile-accent span {
  align-self: flex-end;
  font-size: 3.1rem;
  line-height: 1;
  font-weight: 300;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.tile-mint {
  background: #32dfaa;
}

.tile-lime {
  background: #d6ff66;
}

.tile-violet {
  background: #8687f2;
}

.hero-mosaic:hover .mosaic-tile:not(:hover) {
  filter: saturate(0.92) brightness(0.94);
}

.mosaic-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(6, 24, 24, 0.18);
}

.tile-blur:hover::before {
  filter: blur(10px);
}

.tile-accent:hover {
  filter: brightness(1.04);
}

.tile-accent:hover span {
  transform: translate(2px, 2px);
}

.mobile-hero-windows {
  display: none;
}

.stats-grid,
.about-grid,
.benefits-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stats-about-shell {
  position: relative;
  overflow: hidden;
  background:
    #025f55 url("./stats-about-bg.png") center center / cover no-repeat;
}

.stats-about-shell .container {
  position: relative;
  z-index: 1;
}

.stats {
  padding-top: 76px;
  padding-bottom: 44px;
}

.about {
  padding-top: 28px;
  padding-bottom: 92px;
}

.stats-heading {
  margin-bottom: 56px;
}

.stats-heading h2 {
  margin: 0;
  color: #eafff5;
  font-size: 24px;
  font-weight: 700;
  font-family: "Gravity", "Avenir Next", "Segoe UI", sans-serif;
}

.stat-card {
  min-height: 168px;
  padding: 19px 17px 21px;
  background: #1e3335;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  transition:
    background-color 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.stat-card h2 {
  margin: 0;
  font-size: 80px;
  line-height: 1;
  color: #1ce7b7;
  font-weight: 400;
  letter-spacing: -0.03em;
  transition: color 0.24s ease;
}

.stat-card span {
  display: inline-block;
  margin: 0 0 10px;
  align-self: flex-end;
  color: #1ce7b7;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.24s ease;
}

.stat-card:nth-child(1) h2 {
  letter-spacing: 0;
}

.stat-card:nth-child(2) h2,
.stat-card:nth-child(3) h2,
.stat-card:nth-child(4) h2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.stat-card p,
.stats-note,
.about-card li,
.detail-panel li,
.detail-panel p,
.benefit-card p,
.model-copy p,
.model-copy li,
.product-copy p,
.contact-form span,
.footer-brand p,
.footer-contact p {
  color: var(--muted);
  line-height: 1.5;
}

.stat-card p {
  margin: 0;
  color: #eafff5;
  font-size: 18px;
  line-height: 1.08;
  transition: color 0.24s ease;
}

.stat-card:hover {
  background: #d6ff66;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(10, 28, 29, 0.18);
}

.stat-card:hover h2,
.stat-card:hover span,
.stat-card:hover p {
  color: #193234;
}

.stat-card-bright {
  background: #d6ff66;
  box-shadow: 0 12px 28px rgba(10, 28, 29, 0.14);
}

.stat-card-bright h2,
.stat-card-bright span,
.stat-card-bright p {
  color: #193234;
}

.stats-grid:hover .stat-card-bright:not(:hover) {
  background: #1e3335;
  transform: none;
  box-shadow: none;
}

.stats-grid:hover .stat-card-bright:not(:hover) h2,
.stats-grid:hover .stat-card-bright:not(:hover) span {
  color: #1ce7b7;
}

.stats-grid:hover .stat-card-bright:not(:hover) p {
  color: #eafff5;
}

.section-quote {
  max-width: 1060px;
  margin: 26px auto 0;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: #1ce7b7;
}

.about-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.about-heading {
  margin-bottom: 24px;
}

.about-heading h2 {
  margin: 0 0 24px;
  color: #d6ff66;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Gravity", "Avenir Next", "Segoe UI", sans-serif;
}

.about-heading p {
  margin: 0;
  color: #eafff5;
  font-size: 16px;
  line-height: 1.25;
}

.about-subtitle {
  margin: 0 0 24px;
  color: #d6ff66;
  font-size: 18px;
  font-weight: 700;
  font-family: "Gravity", "Avenir Next", "Segoe UI", sans-serif;
}

.about-card,
.benefit-card,
.model-card,
.product-card,
.contact-form,
.detail-panel {
  background: var(--bg-panel);
  border: 1px solid rgba(208, 255, 113, 0.16);
  box-shadow: var(--shadow);
}

.about-card {
  padding: 18px 18px 18px;
  background: #d6ff66;
  border: none;
  box-shadow: none;
}

.tag {
  display: inline-flex;
  padding: 9px 12px;
  margin-bottom: 24px;
  background: #1f3336;
  color: #d6ff66;
  font-size: 16px;
}

.about-card ul,
.detail-panel ul,
.model-copy ul {
  margin: 0;
  padding-left: 20px;
}

.about-card li {
  color: #193234;
  line-height: 1.26;
}

.approach {
  position: relative;
  overflow: hidden;
  background: #183233;
  padding-top: 72px;
  padding-bottom: 72px;
}

.approach .container {
  position: relative;
  z-index: 1;
  width: var(--container);
  max-width: none;
  margin: 0 auto;
}

.approach-header {
  max-width: none;
  margin: 0 auto 28px;
}

.approach .section-heading {
  max-width: none;
  margin-bottom: 0;
}

.approach .eyebrow {
  display: none;
}

.approach .section-heading h2 {
  color: #e9fff4;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0;
}

.approach .section-heading p {
  max-width: 610px;
  color: rgba(233, 255, 244, 0.9);
  font-size: 18px;
  line-height: 1.22;
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) 74px minmax(560px, 1fr);
  gap: 48px;
  align-items: start;
  justify-content: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
}

.approach-steps {
  display: grid;
  gap: 22px;
  width: 100%;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: 100%;
  min-height: 98px;
  padding: 18px 22px;
  border: 2px solid #284c4e;
  background: #234546;
  color: #e9fff4;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
}

.step-card span {
  color: rgba(233, 255, 244, 0.9);
  opacity: 1;
  font-size: 18px;
  font-weight: 400;
}

.step-card strong {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  font-family: "Gravity", "Avenir Next", "Segoe UI", sans-serif;
}

.step-card em {
  font-style: normal;
  font-size: 3rem;
  color: rgba(233, 255, 244, 0.92);
  font-weight: 300;
  line-height: 1;
}

.step-card.is-active {
  border-color: #284c4e;
  transform: none;
}

.timeline {
  position: relative;
  min-height: 480px;
  width: 74px;
  justify-self: center;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(233, 255, 244, 0.76);
}

.timeline span {
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  border-radius: 50%;
  box-shadow: none;
}

.timeline span:nth-child(1) {
  top: 0;
  background: #d6ff66;
}

.timeline span:nth-child(2) {
  top: 27%;
  background: #7b82ef;
}

.timeline span:nth-child(3) {
  top: 59%;
  background: #23e0bb;
}

.timeline span:nth-child(4) {
  bottom: 0;
  background: #0e9a90;
}

.approach-details {
  position: relative;
  min-height: 480px;
  display: grid;
  gap: 26px;
  width: 100%;
}

.detail-panel {
  display: block;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.detail-panel.is-active {
  display: block;
}

.detail-panel h3,
.benefit-card h3,
.model-copy h3,
.product-copy h3,
.footer-links a,
.footer-contact a {
  margin: 0 0 16px;
  color: var(--text);
  font-family: "Gravity", "Avenir Next", "Segoe UI", sans-serif;
}

.detail-panel h3,
.benefit-card h3,
.model-copy h3,
.product-copy h3 {
  font-size: 26px;
  font-weight: 700;
}

.detail-panel h3 {
  margin-bottom: 12px;
  color: #e9fff4;
  white-space: nowrap;
}

.detail-panel ul {
  padding-left: 18px;
  margin: 0;
}

.detail-panel li,
.detail-panel p {
  color: rgba(233, 255, 244, 0.88);
  font-size: 18px;
  line-height: 1.3;
}

.approach-footer {
  display: grid;
  justify-items: center;
  gap: 24px;
  margin-top: 40px;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.approach-footer .button {
  min-width: 308px;
}

.solutions {
  position: relative;
  overflow: hidden;
  background:
    #025f55 url("./solutions-bg.png") center center / cover no-repeat;
  padding-top: 62px;
  padding-bottom: 66px;
}

.solutions .container {
  position: relative;
  z-index: 1;
  width: var(--container);
}

.solutions-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.solutions-heading h2 {
  margin: 0 0 12px;
  color: #eafff5;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.08;
}

.solutions-heading p {
  margin: 0;
  max-width: 520px;
  color: rgba(234, 255, 245, 0.88);
  font-size: 14px;
  line-height: 1.22;
}

.solutions-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-bottom: 26px;
}

.solution-tag {
  min-height: 116px;
  padding: 18px 14px 16px;
  background: #006658;
  border: 2px solid #007a6a;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
}

.solution-tag h3 {
  margin: 0;
  color: #d6ff66;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 0 0 8px;
  border-bottom: 1px solid #d6ff66;
}

.solution-tag p {
  margin: 0;
  max-width: 445px;
  color: rgba(214, 255, 102, 0.94);
  font-size: 15px;
  line-height: 1.18;
}

.solutions-models {
  display: grid;
  gap: 42px;
}

.solution-model {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  row-gap: 12px;
  align-items: start;
}

.solution-model-a {
  grid-template-areas:
    "chart copy"
    "note copy";
}

.solution-model-b {
  grid-template-areas:
    "copy chart"
    "copy note";
}

.solution-model-c {
  grid-template-areas:
    "chart copy"
    "note copy";
}

.solution-model .solution-chart {
  grid-area: chart;
}

.solution-model .solution-copy {
  grid-area: copy;
}

.solution-model .chart-note {
  grid-area: note;
}

.solution-chart {
  position: relative;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  overflow: hidden;
}

.solution-chart img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.solution-copy h3 {
  margin: 0 0 20px;
  color: #eafff5;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.12;
}

.solution-copy p,
.solution-copy li {
  margin: 0 0 12px;
  color: rgba(234, 255, 245, 0.92);
  font-size: 14px;
  line-height: 1.2;
}

.solution-copy ul {
  margin: 12px 0 16px;
  padding-left: 18px;
}

.solution-copy p + p {
  margin-top: 12px;
}

.solution-copy p strong {
  font-weight: 700;
}

.solution-copy ul li {
  margin-bottom: 5px;
}

.chart-note {
  margin: 10px 0 0;
  color: rgba(234, 255, 245, 0.9);
  font-size: 14px;
  line-height: 1.16;
}

.products {
  background: #183233;
  padding-top: 72px;
  padding-bottom: 72px;
  overflow: hidden;
}

.products .container {
  width: var(--container);
}

.products-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.products-heading h2 {
  margin: 0 0 14px;
  color: #d6ff66;
  font-size: 24px;
  font-weight: 700;
}

.products-heading p {
  margin: 0;
  max-width: 760px;
  color: rgba(234, 255, 245, 0.84);
  font-size: 16px;
  line-height: 1.18;
}

.products-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
}

.slider-arrow {
  position: relative;
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: transparent;
  font-size: 0;
  opacity: 0.95;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease,
    filter 0.22s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow::before {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 4px solid #ecfff4;
  border-right: 4px solid #ecfff4;
  transition:
    border-color 0.22s ease,
    transform 0.22s ease;
}

.products-prev::before,
.audience-prev::before {
  transform: rotate(225deg);
}

.products-next::before,
.audience-next::before {
  transform: rotate(45deg);
}

.slider-arrow:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.slider-arrow:hover::before {
  border-color: #d6ff66;
}

.slider-arrow:disabled {
  opacity: 0.36;
  cursor: default;
  transform: none;
}

.slider-arrow:disabled:hover::before {
  border-color: #ecfff4;
}

.products-slider {
  overflow: hidden;
}

.products-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.products-track {
  display: flex;
  gap: 30.3px;
  transition: transform 0.32s ease;
  will-change: transform;
}

.product-card {
  flex: 0 0 459px;
  width: 459px;
  min-width: 459px;
  min-height: 677px;
  padding: 48px 22px 39px 23px;
  border: 1px solid rgba(234, 255, 245, 0.4);
  background: rgba(217, 217, 217, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: grid;
  grid-template-rows: 300px 1fr;
}

.product-card.product-card-active {
  background-color: #d6ff66;
  background-image: url("./cards-background.png");
  border-color: #d6ff66;
}

.product-card.product-card-active .product-copy,
.product-card.product-card-active h3,
.product-card.product-card-active li,
.product-card.product-card-active strong {
  color: #1d3133;
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 0;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 46%, rgba(223, 245, 235, 0.32), transparent 30%);
}

.product-card.product-card-active .product-visual::before {
  background: radial-gradient(circle at 50% 46%, rgba(24, 49, 50, 0.14), transparent 32%);
}

.product-visual img {
  position: relative;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  z-index: 1;
}

.product-visual-tower img {
  width: 188px;
}

.product-visual-rack img {
  width: 303px;
}

.product-visual-cabinet img {
  width: 303px;
}

.product-visual-solar img {
  width: 314px;
}

.product-copy {
  width: 412px;
  max-width: 100%;
  padding-top: 24px;
  justify-self: center;
}

.product-copy h3 {
  margin: 0 0 22px;
  color: #eafff5;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.08;
}

.product-copy ul {
  margin: 0 0 54px;
  padding: 0;
  list-style: none;
}

.product-copy li {
  margin-bottom: 16px;
  color: rgba(234, 255, 245, 0.92);
  font-size: 18px;
  line-height: 1.16;
}

.product-copy strong {
  font-weight: 700;
}

.product-copy .button {
  min-width: 284px;
}

.button-dark {
  background: #223739;
  color: #d6ff66;
}

.products-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.products-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: none;
  background: rgba(234, 255, 245, 0.86);
  cursor: pointer;
  transition: background-color 0.22s ease, transform 0.22s ease;
}

.products-dot.is-active {
  background: #d6ff66;
}

.products-dot:hover {
  transform: scale(1.05);
}

.products-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 459px;
  gap: 69px;
  align-items: end;
  margin-top: 36px;
}

.products-note {
  margin: 0;
  max-width: 730px;
  color: #eafff5;
  font-size: 26px;
  line-height: 1.12;
  font-weight: 700;
  align-self: center;
}

.certificate-card {
  position: relative;
  width: 459px;
  min-height: 325px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  justify-self: end;
}

.certificate-card img {
  display: block;
  width: 100%;
  height: auto;
}

.audience-shell {
  position: relative;
  background:
    #123334 url("./audience-contact-bg.png") -8px -8px / calc(100% + 16px) calc(100% + 16px) no-repeat;
  padding-top: 72px;
  padding-bottom: 64px;
  overflow: hidden;
}

.audience-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: #123334;
  z-index: 0;
}

.audience-shell .container {
  position: relative;
  z-index: 1;
  width: var(--container);
}

.audience-shell-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.audience-shell-copy {
  width: 730px;
  max-width: 100%;
}

.audience-shell-copy h2 {
  margin: 0 0 32px;
  color: var(--lime);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.audience-shell-copy p {
  margin: 0;
  color: var(--text);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
}

.audience-shell-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 18px;
}

.audience-shell-nav .slider-arrow {
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
}

.audience-slider {
  margin: 0 calc((100% - 1120px) / 2);
  overflow: visible;
}

.audience-viewport {
  overflow: visible;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.audience-track {
  display: flex;
  gap: 28px;
  transition: transform 0.32s ease;
  will-change: transform;
}

.audience-slide {
  flex: 0 0 min(1120px, calc(100vw - 160px));
  width: min(1120px, calc(100vw - 160px));
  min-width: min(1120px, calc(100vw - 160px));
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 42px;
  padding: 56px 64px 46px;
  background: rgba(50, 111, 103, 0.94);
  border: 1px solid rgba(235, 255, 245, 0.24);
  box-shadow: 0 28px 70px rgba(4, 26, 27, 0.18);
  opacity: 0.42;
  transform: scale(0.94);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    background-color 0.28s ease;
}

.audience-slide.is-active {
  background: rgba(50, 111, 103, 0.98);
  opacity: 1;
  transform: scale(1);
}

.audience-slide-copy {
  width: 900px;
  max-width: 100%;
  display: grid;
  gap: 24px;
}

.audience-slide h3 {
  margin: 0;
  color: var(--text);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.audience-slide h4 {
  margin: 0;
  color: var(--text);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.12;
}

.audience-slide ul {
  margin: 0;
  padding-left: 28px;
}

.audience-slide li,
.audience-slide p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.24;
}

.audience-slide p {
  margin: 0;
  max-width: 920px;
  font-weight: 700;
}

.audience-slide .button {
  min-width: 0;
  width: fit-content;
  max-width: 100%;
}

.audience-shell-quote {
  margin: 36px 0 0;
  width: 980px;
  max-width: 100%;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22;
}

.cta-shell {
  background: #1a3334;
  padding-top: 72px;
  padding-bottom: 72px;
  overflow: hidden;
}

.cta-shell .container {
  width: var(--container);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(500px, 560px) minmax(640px, 704px);
  justify-content: space-between;
  gap: 72px;
  align-items: start;
  width: 100%;
  margin-top: 0;
  padding-bottom: 0;
}

.cta-panel-copy {
  display: grid;
  gap: 32px;
  padding: 40px 0 16px;
}

.cta-panel-copy h2 {
  margin: 0;
  color: var(--lime);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.cta-panel-copy p {
  margin: 0;
  color: var(--text);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.12;
  max-width: 560px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(235, 255, 245, 0.06);
  border: 1px solid rgba(208, 255, 113, 0.22);
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(235, 255, 245, 0.46);
}

.contact-form button[disabled] {
  opacity: 0.8;
  pointer-events: none;
}

.contact-form-inline {
  width: 704px;
  max-width: 100%;
  min-height: 242px;
  padding: 45px;
  background: rgba(217, 217, 217, 0.2);
  border: 1px solid rgba(235, 255, 245, 0.16);
  box-shadow: none;
}

.contact-form-inline label {
  grid-template-columns: auto 368px;
  align-items: center;
  gap: 40px;
}

.contact-form-inline label:nth-of-type(2) {
  gap: 97px;
}

.contact-form-inline label:nth-of-type(3) {
  gap: 42px;
}

.contact-form-inline span {
  color: var(--lime);
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
}

.contact-form-inline input {
  height: 31px;
  padding: 0 16px;
  border-radius: 17px;
  border: 1px solid rgba(235, 255, 245, 0.92);
  background: rgba(217, 217, 217, 0.12);
}

.contact-form-inline button {
  justify-self: end;
  margin-top: 8px;
}

.form-status {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  min-height: 18px;
  color: rgba(235, 255, 245, 0.8);
  font-size: 14px;
  line-height: 1.2;
  text-align: right;
}

.form-status.is-success {
  color: #d6ff66;
}

.form-status.is-error {
  color: #ffb8b8;
}

.site-footer {
  padding: 48px 0 56px;
  border-top: none;
  background: #d6ff66;
}

.footer-grid {
  grid-template-columns: 360px 240px 380px 60px;
  justify-content: space-between;
  align-items: start;
  gap: 44px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 22px;
}

.footer-brand .brand img {
  width: 314px;
}

.footer-brand p {
  margin: 0;
  max-width: 360px;
  color: #223739;
  font-size: 26px;
  line-height: 1.14;
  font-weight: 700;
}

.footer-certificate {
  width: 314px;
  display: block;
  border: 1px solid rgba(34, 55, 57, 0.12);
}

.footer-links,
.footer-contact,
.footer-socials {
  display: grid;
  gap: 20px;
}

.footer-links {
  padding-top: 66px;
}

.footer-links a {
  color: #223739;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  transition: color 0.22s ease;
}

.footer-links a:hover {
  color: #8f93ff;
}

.footer-contact {
  padding-top: 140px;
  gap: 22px;
}

.footer-contact a,
.footer-contact p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #223739;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.footer-contact a {
  transition: color 0.22s ease;
}

.footer-contact a:hover {
  color: #8f93ff;
}

.footer-contact img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex: 0 0 32px;
}

.footer-socials a {
  display: block;
  width: 60px;
  height: 60px;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease,
    filter 0.22s ease;
}

.footer-socials {
  padding-top: 42px;
}

.footer-socials img {
  display: block;
  width: 60px;
  height: 60px;
  transition: filter 0.22s ease;
}

.footer-socials a:hover {
  transform: translateY(-1px);
}

.footer-socials a:hover img {
  filter: brightness(0) saturate(100%) invert(60%) sepia(20%) saturate(1676%)
    hue-rotate(199deg) brightness(103%) contrast(101%);
}

@media (max-width: 1180px) {
  .approach-layout,
  .model-card {
    grid-template-columns: 1fr;
  }

  .approach-layout {
    gap: 28px;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .timeline {
    min-height: 120px;
    order: 2;
    width: 100%;
  }

  .approach-details {
    order: 3;
    min-height: auto;
    width: 100%;
  }

  .approach-steps {
    order: 1;
    width: 100%;
  }

  .detail-panel h3 {
    white-space: normal;
  }

  .benefits-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-links,
  .footer-contact,
  .footer-socials {
    padding-top: 0;
  }

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

  .solutions .container {
    width: var(--container);
  }

  .solutions-tags,
  .solution-model {
    grid-template-columns: 1fr;
  }

  .solution-model,
  .solution-model-a,
  .solution-model-b,
  .solution-model-c {
    grid-template-areas:
      "copy"
      "chart"
      "note";
  }

  .products .container {
    width: var(--container);
  }

  .audience-shell .container {
    width: var(--container);
  }

  .audience-shell-head {
    align-items: start;
  }

  .audience-slider {
    margin: 0;
  }

  .audience-shell-nav {
    padding-right: 0;
  }

  .audience-slide {
    flex-basis: min(92vw, 980px);
    width: min(92vw, 980px);
    min-width: min(92vw, 980px);
    min-height: auto;
    padding: 36px 32px 30px;
  }

  .audience-slide-copy {
    width: 100%;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    padding-bottom: 36px;
  }

  .contact-form-inline {
    width: 100%;
  }

  .contact-form-inline label {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-form-inline label:nth-of-type(2),
  .contact-form-inline label:nth-of-type(3) {
    gap: 12px;
  }

  .products-head,
  .products-bottom {
    grid-template-columns: 1fr;
  }

  .products-bottom {
    gap: 24px;
  }

  .product-card {
    flex-basis: calc(50% - 15.15px);
    width: calc(50% - 15.15px);
    min-width: calc(50% - 15.15px);
    min-height: auto;
  }

  .product-copy {
    width: 100%;
  }

  .certificate-card {
    width: 100%;
    max-width: 459px;
  }

  .solution-model-a,
  .solution-model-b,
  .solution-model-c {
    grid-template-areas:
      "chart"
      "note"
      "copy";
  }

  .about-heading h2 {
    font-size: 24px;
  }

  .timeline::before {
    left: 0;
    right: 0;
    top: 50%;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .timeline span {
    top: 50%;
    margin-top: -9px;
  }

  .timeline span:nth-child(1) {
    left: 0;
    margin-left: 0;
  }

  .timeline span:nth-child(2) {
    left: 33%;
  }

  .timeline span:nth-child(3) {
    left: 66%;
  }

  .timeline span:nth-child(4) {
    left: calc(100% - 18px);
    margin-left: 0;
    bottom: auto;
  }

  .hero-actions {
    gap: 24px;
    margin-top: 44px;
    margin-bottom: 44px;
  }
}

@media (max-width: 1440px) {
  .solutions .container {
    width: min(calc(100vw - 64px), 980px);
  }

  .solution-model,
  .solution-model-a,
  .solution-model-b,
  .solution-model-c {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .solution-model .solution-copy {
    order: 1;
  }

  .solution-model .solution-chart {
    order: 2;
  }

  .solution-model .chart-note {
    order: 3;
  }

  .solution-chart,
  .solution-copy,
  .chart-note {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .solution-chart img {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 980px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav.is-open {
    position: absolute;
    inset: 92px 24px auto;
    display: grid;
    gap: 14px;
    padding: 18px;
    background: rgba(24, 49, 50, 0.98);
    border: 1px solid rgba(208, 255, 113, 0.18);
  }

  .site-nav.is-open + .header-cta {
    display: none;
  }

  .hero-frame {
    width: var(--container);
  }

  .hero-collage {
    border-radius: 22px;
  }

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

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  :root {
    --container: min(100vw - 32px, 1440px);
  }

  .page-shell {
    width: 100%;
    --container: min(100% - 32px, 1440px);
  }

  .section {
    padding: 56px 0;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .header-inner {
    min-height: 74px;
    gap: 14px;
  }

  .brand img {
    width: min(205px, 48vw);
  }

  .nav-toggle {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 0;
  }

  .nav-toggle span {
    width: 46px;
    height: 5px;
    margin: 5px auto;
  }

  .site-nav.is-open {
    inset: 74px 16px auto;
    gap: 4px;
    padding: 14px;
  }

  .site-nav.is-open a {
    padding: 11px 10px;
    font-size: 18px;
  }

  .footer-brand .brand img,
  .footer-certificate {
    width: min(314px, 100%);
  }

  .footer-brand p,
  .footer-links a,
  .footer-contact a,
  .footer-contact p {
    font-size: 18px;
  }

  .footer-socials {
    grid-auto-flow: column;
    justify-content: start;
    gap: 16px;
  }

  .footer-socials a,
  .footer-socials img {
    width: 52px;
    height: 52px;
  }

  .hero h1 {
    font-size: clamp(31px, 8.4vw, 38px);
    margin-bottom: 16px;
    line-height: 1.12;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-text {
    max-width: none;
    font-size: clamp(18px, 4.9vw, 21px);
    line-height: 1.18;
    color: var(--lime);
  }

  .audience-shell {
    padding-top: 28px;
    padding-bottom: 44px;
    background-position: 34% top;
  }

  .audience-shell .container {
    width: var(--container);
  }

  .audience-shell-head {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 22px;
  }

  .audience-slider {
    margin: 0;
    overflow: hidden;
  }

  .audience-track {
    gap: 16px;
  }

  .audience-shell-nav {
    align-self: flex-end;
    gap: 16px;
  }

  .audience-shell-copy h2 {
    margin-bottom: 16px;
  }

  .audience-shell-copy p,
  .audience-shell-quote,
  .cta-panel-copy p {
    font-size: 18px;
  }

  .audience-slide {
    flex-basis: 100%;
    width: 100%;
    min-width: 100%;
    padding: 28px 20px 24px;
    opacity: 1;
    transform: none;
  }

  .audience-slide h3 {
    font-size: 24px;
  }

  .audience-slide h4 {
    font-size: 18px;
  }

  .audience-slide li,
  .audience-slide p {
    font-size: 16px;
  }

  .audience-slide .button {
    min-width: 100%;
  }

  .audience-shell-quote {
    margin-top: 22px;
  }

  .cta-panel {
    margin-top: 40px;
    padding-bottom: 28px;
  }

  .cta-panel-copy {
    gap: 18px;
    padding: 0;
  }

  .contact-form-inline {
    padding: 24px 18px;
  }

  .contact-form-inline span {
    white-space: normal;
  }

  .contact-form-inline button {
    justify-self: stretch;
  }

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

  .stats {
    padding-top: 32px;
    padding-bottom: 14px;
  }

  .about {
    padding-top: 8px;
    padding-bottom: 56px;
  }

  .stats-heading {
    margin-bottom: 14px;
  }

  .stats-heading h2 {
    font-size: 25px;
    line-height: 1.08;
  }

  .solutions-tags {
    gap: 16px;
  }

  .solution-tag {
    min-height: 136px;
    padding: 16px 12px;
    gap: 14px;
  }

  .solution-tag h3 {
    font-size: 18px;
    padding: 0 0 8px;
  }

  .solution-tag p {
    font-size: 16px;
  }

  .stat-card {
    min-height: 121px;
    padding: 14px 10px 13px;
  }

  .stat-card h2 {
    font-size: 34px;
    letter-spacing: 0;
  }

  .stat-card span {
    margin-bottom: 4px;
    font-size: 15px;
  }

  .stat-card p {
    font-size: 16px;
    line-height: 1.12;
  }

  .about-heading h2 {
    font-size: 24px;
    line-height: 1.16;
    margin-bottom: 18px;
  }

  .about-heading p {
    font-size: 18px;
    line-height: 1.15;
  }

  .about-subtitle {
    margin-bottom: 18px;
    font-size: 26px;
    line-height: 1;
  }

  .about-grid {
    gap: 14px;
  }

  .about-card {
    padding: 13px 14px 15px;
  }

  .tag {
    margin-bottom: 14px;
    padding: 7px 9px 6px;
    font-size: 15px;
    line-height: 1.1;
  }

  .about-card ul {
    padding-left: 18px;
  }

  .about-card li {
    font-size: 16px;
    line-height: 1.18;
  }

  .solutions {
    padding-top: 14px;
    padding-bottom: 36px;
  }

  .solutions .container {
    width: var(--container);
  }

  .products .container {
    width: var(--container);
  }

  .solutions-heading h2 {
    font-size: 25px;
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .solutions-heading p {
    font-size: 16px;
    line-height: 1.18;
  }

  .solutions-tags {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 16px;
  }

  .solution-tag {
    min-height: 94px;
    padding: 14px 14px 15px;
    gap: 14px;
    background: rgba(0, 102, 88, 0.66);
    border: 2px solid rgba(47, 227, 179, 0.22);
  }

  .solution-tag h3 {
    padding: 0 0 6px;
    font-size: 16px;
  }

  .solution-tag p {
    font-size: 15px;
    line-height: 1.16;
  }

  .solutions-models {
    gap: 24px;
  }

  .solution-model,
  .solution-model-a,
  .solution-model-b,
  .solution-model-c {
    grid-template-columns: 1fr;
    gap: 10px;
    grid-template-areas:
      "copy"
      "chart"
      "note";
  }

  .solution-chart {
    min-height: 0;
    margin-top: 2px;
  }

  .solution-chart img {
    width: calc(100% + 8px);
    max-width: none;
    margin-left: -4px;
  }

  .solution-copy h3 {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.12;
  }

  .solution-copy p,
  .solution-copy li {
    font-size: 15px;
    line-height: 1.14;
    margin-bottom: 10px;
  }

  .solution-copy ul {
    margin: 10px 0 12px;
    padding-left: 16px;
  }

  .solution-copy ul li {
    margin-bottom: 4px;
  }

  .chart-note {
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.14;
  }

  .products-head {
    flex-direction: column;
    margin-bottom: 22px;
  }

  .products-nav {
    padding-top: 0;
    align-self: flex-end;
  }

  .product-card {
    flex-basis: 100%;
    width: 100%;
    min-width: 100%;
    min-height: auto;
    grid-template-rows: 220px 1fr;
    padding: 28px 18px 24px;
  }

  .products-bottom {
    grid-template-columns: 1fr;
  }

  .certificate-card {
    width: 100%;
    max-width: 459px;
    min-height: 240px;
  }

  .product-copy {
    width: 100%;
    padding-top: 18px;
  }

  .product-copy h3 {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .product-copy ul {
    margin-bottom: 28px;
  }

  .product-copy li {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .product-copy .button {
    min-width: 100%;
  }

  .products-note {
    font-size: 22px;
    line-height: 1.15;
  }

  .approach {
    padding-top: 18px;
    padding-bottom: 44px;
  }

  .approach .section-heading h2 {
    font-size: 26px;
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .approach .section-heading p {
    font-size: 18px;
    line-height: 1.18;
  }

  .approach-header {
    margin-bottom: 30px;
  }

  .hero-text {
    font-size: clamp(18px, 4.9vw, 21px);
    line-height: 1.18;
  }

  .hero-primary,
  .hero-secondary {
    min-width: 100%;
  }

  .hero-actions {
    gap: 14px;
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .hero-collage {
    display: none;
  }

  .mobile-hero-windows {
    --window-size: min(216px, calc((100vw - 40px) / 2));
    --window-gap: 8px;
    --window-radius: 12px;
    --windows-width: calc((var(--window-size) * 2) + var(--window-gap));
    --windows-height: calc((var(--window-size) * 3) + (var(--window-gap) * 2));
    --windows-image-x: 0px;
    display: block;
    position: relative;
    width: var(--windows-width);
    height: var(--windows-height);
    margin: 0 auto;
    overflow: hidden;
  }

  .mobile-window {
    position: absolute;
    width: var(--window-size);
    height: var(--window-size);
    overflow: hidden;
    border-radius: var(--window-radius);
  }

  .mobile-window-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 16px 14px;
    color: #102527;
  }

  .mobile-window-text p {
    margin: 0;
    font-size: clamp(18px, 4.8vw, 24px);
    line-height: 1.12;
  }

  .mobile-window-text span {
    align-self: flex-end;
    font-size: clamp(40px, 10vw, 52px);
    font-weight: 300;
    line-height: 0.78;
  }

  .mobile-window-mint {
    left: 0;
    top: 0;
    background: #32dfaa;
  }

  .mobile-window-violet {
    left: calc(var(--window-size) + var(--window-gap));
    top: calc(var(--window-size) + var(--window-gap));
    background: #8687f2;
  }

  .mobile-window-lime {
    left: 0;
    top: calc((var(--window-size) + var(--window-gap)) * 2);
    background: #d6ff66;
  }

  .mobile-window-photo {
    background-image: url("./back.png");
    background-repeat: no-repeat;
    background-size: var(--mobile-bg-size, auto var(--windows-height));
    background-position: var(
      --mobile-bg-pos,
      calc((var(--window-x) * -1) + var(--windows-image-x))
        calc(var(--window-y) * -1)
    );
  }

  .mobile-photo-1 {
    --window-x: calc(var(--window-size) + var(--window-gap));
    --window-y: 0px;
    left: var(--window-x);
    top: var(--window-y);
  }

  .mobile-photo-2 {
    display: none;
  }

  .mobile-photo-3 {
    --window-x: 0px;
    --window-y: calc(var(--window-size) + var(--window-gap));
    left: var(--window-x);
    top: var(--window-y);
  }

  .mobile-photo-4 {
    display: none;
  }

  .mobile-photo-5 {
    display: none;
  }

  .mobile-photo-6 {
    --window-x: calc(var(--window-size) + var(--window-gap));
    --window-y: calc((var(--window-size) + var(--window-gap)) * 2);
    left: var(--window-x);
    top: var(--window-y);
  }

  .approach-layout {
    display: block;
    position: relative;
    padding-left: 58px;
  }

  .approach-steps,
  .timeline {
    display: none;
  }

  .approach-details {
    display: grid;
    gap: 34px;
    min-height: 0;
    position: relative;
  }

  .approach-details::before {
    content: "";
    position: absolute;
    left: -27px;
    top: 8px;
    bottom: 0;
    width: 2px;
    background: rgba(233, 255, 244, 0.74);
  }

  .detail-panel {
    display: block;
    position: relative;
  }

  .detail-panel::before {
    content: "";
    position: absolute;
    left: -38px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #d6ff66;
  }

  .detail-panel:nth-child(2)::before {
    background: #8687f2;
  }

  .detail-panel:nth-child(3)::before {
    background: #32dfaa;
  }

  .detail-panel:nth-child(4)::before {
    background: #0e9a90;
  }

  .detail-panel h3 {
    margin-bottom: 18px;
    white-space: normal;
    font-size: 20px;
    line-height: 1.12;
  }

  .detail-panel ul {
    padding-left: 20px;
  }

  .detail-panel li,
  .detail-panel p {
    font-size: 16px;
    line-height: 1.16;
  }

  .detail-panel p {
    margin: 0;
  }

  .approach-footer {
    margin-top: 28px;
    gap: 0;
  }

  .approach-footer .button {
    min-width: 100%;
  }

  .approach-footer .section-quote {
    display: none;
  }

  .stats-note,
  .section-quote {
    font-size: 1.1rem;
  }

  .site-footer {
    padding: 38px 0 44px;
  }

  .footer-grid {
    gap: 26px;
  }
}
