:root {
  --bg: #f5f5f5;
  --text: #21243d;
  --text-80: rgba(33, 36, 61, 0.8);
  --muted: rgba(33, 36, 61, 0.64);
  --accent: #61af3f;
  --accent-hover: #1f850f;
  --white: #ffffff;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(33, 36, 61, 0.08);

  --font-text: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-btn: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --text-size: 18px;
  --text-size-tablet: 18px;
  --text-line-height: 1.5;

  --block-title-size: 36px;
  --block-title-tablet: 32px;
  --block-title-mobile: 24px;
  --block-title-line-height: 1.2;

  --heading-size: 24px;
  --heading-tablet: 23px;
  --heading-mobile: 22px;
  --heading-line-height: 1.3;

  --hero-title-size: 56px;
  --hero-title-tablet: 48px;
  --hero-title-mobile: 36px;
  --hero-title-line-height: 1.1;

  --container: 1200px;
  --gutter: 32px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: 130px;
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 130px;
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 88px;
  }
  section[id] {
    scroll-margin-top: 88px;
  }
}

body {
  font-family: var(--font-text);
  font-size: 18px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--container), 100% - var(--gutter) * 2 / 1);
  max-width: calc(var(--container) + var(--gutter) * 2);
  padding-inline: var(--gutter);
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

h1, h2, h3 {
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-family: var(--font-text);
  font-size: var(--block-title-size);
  line-height: var(--block-title-line-height);
  font-weight: 700;
  margin-bottom: 16px;
}

h3 {
  font-family: var(--font-heading);
  font-size: var(--heading-size);
  line-height: var(--heading-line-height);
  font-weight: 700;
  margin-bottom: 10px;
}

.muted {
  color: var(--muted);
}

.lead {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 700;
  color: rgba(33, 36, 61, 0.8);
  margin-bottom: 12px;
}

.lead-arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.accent {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-btn);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
}

.btn-md {
  padding: 12px 21px;
}

.btn-lg {
  padding: 17px 40px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

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

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-ghost:hover {
  background: var(--accent);
  color: var(--white);
}

/* ============== HEADER ============== */
.site-header {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 0 0 transparent;
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 1px 4px rgba(33, 36, 61, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 15.21% 61.20% 23.59%;
  align-items: center;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 32px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #21243D;
}

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

.header-logo img {
  width: 160px;
  height: auto;
  display: block;
}

.header-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  list-style: none;
  width: 699.38px;
  max-width: 100%;
  height: 69px;
  margin: -5px -10px 0;
  padding: 0;
  flex-wrap: wrap;
}

.header-nav a {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  transition: color 0.15s ease;
}

.header-nav a:hover {
  color: var(--accent);
  text-decoration: none;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-actions .btn {
  width: 245.94px;
  height: 45.59px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #F5F5F5;
}

.header-burger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.header-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============== ABOUT ============== */
.about {
  background: var(--bg);
  padding-block: 0;
  position: relative;
}

.about::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-415px);
  width: 398px;
  height: 407.56px;
  background: url("../images/backgrounds/robot-kiosk-mall-bg.png") center / cover no-repeat;
  border-radius: 20px;
  z-index: 0;
  pointer-events: none;
}

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

.about .container {
  max-width: 1170px;
  padding-inline: 0;
  width: min(1170px, 100% - 32px);
}

.about-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  column-gap: 30px;
  align-items: start;
}

.about-title {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--text-80);
  margin: 0;
}

.about-subheading {
  font-family: var(--font-text);
  font-weight: 300;
  font-size: 36px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 991px) {
  .about {
    padding-block: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-subheading {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .about {
    padding-block: 0;
  }

  .about-title {
    font-size: 24px;
  }

  .about-subheading {
    font-size: 24px;
  }
}

/* ============== HERO ============== */
.hero {
  background: var(--bg);
  padding-block: 0;
}

.hero .container {
  max-width: 1170px;
  padding-inline: 0;
  width: min(1170px, 100% - 32px);
}

.hero-canvas {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-canvas::before {
  content: "";
  position: absolute;
  top: calc(120 / 1200 * 100cqw);
  left: 0;
  width: calc(398 / 1200 * 100cqw);
  height: calc(407.56 / 1200 * 100cqw);
  background: url("../images/backgrounds/robot-kiosk-mall-bg.png") center / cover no-repeat;
  border-radius: 20px;
  z-index: 0;
  pointer-events: none;
}

.hero-canvas > * {
  position: relative;
  z-index: 1;
}

/* Shared element styles */
.hero-title {
  font-family: var(--font-text);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--text-80);
  margin: 0;
}

.hero-title-accent {
  color: var(--accent);
}

.hero-lead {
  font-weight: 700;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.hero-arrow {
  display: block;
  height: auto;
}

.hero-desc {
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.hero-image {
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.hero-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 5px 6px 5px 8px;
  background: var(--white);
  border: 1px solid #fbfbfb;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(33, 36, 61, 0.05);
}

.hero-chip-dot {
  flex: 0 0 auto;
  background: var(--accent);
  border-radius: 50%;
}

.hero-chip p {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: var(--muted);
  margin: 0;
}

/* ===== Desktop ≥992: pixel-perfect canvas 1200x550 with cqw scaling ===== */
@media (min-width: 992px) {
  .hero-canvas {
    container-type: inline-size;
    aspect-ratio: 1200 / 550;
  }

  .hero-title,
  .hero-lead,
  .hero-arrow,
  .hero-desc,
  .hero-cta,
  .hero-image,
  .hero-chip {
    position: absolute;
  }

  /* Lead — top:82, left:39, width:400 */
  .hero-lead {
    top: calc(82 / 1200 * 100cqw);
    left: calc(39 / 1200 * 100cqw);
    width: calc(400 / 1200 * 100cqw);
    font-size: calc(18 / 1200 * 100cqw);
  }

  /* Arrow — top:92, left:0, width:24 */
  .hero-arrow {
    top: calc(92 / 1200 * 100cqw);
    left: 0;
    width: calc(24 / 1200 * 100cqw);
  }

  /* Title — top:130, left:0, width:600, font:56 */
  .hero-title {
    top: calc(130 / 1200 * 100cqw);
    left: 0;
    width: calc(600 / 1200 * 100cqw);
    font-size: calc(56 / 1200 * 100cqw);
  }

  /* Description — top:343, left:0, width:618, font:18 */
  .hero-desc {
    top: calc(343 / 1200 * 100cqw);
    left: 0;
    width: calc(618 / 1200 * 100cqw);
    font-size: calc(18 / 1200 * 100cqw);
  }

  /* CTA — top:435, left:0 */
  .hero-cta {
    top: calc(435 / 1200 * 100cqw);
    left: 0;
    padding: calc(17 / 1200 * 100cqw) calc(40 / 1200 * 100cqw);
    font-size: calc(15 / 1200 * 100cqw);
  }

  /* Robot image — top:0, left:661, w:509, h:550 */
  .hero-image {
    top: 0;
    left: calc(661 / 1200 * 100cqw);
    width: calc(509 / 1200 * 100cqw);
    height: 100%;
    border-radius: calc(20 / 1200 * 100cqw);
  }

  /* Top chip pill — caption "Інновації…" at top:59,left:648,w:287; pill bg at top:40,left:585,w:350 */
  .hero-chip--top {
    top: calc(40 / 1200 * 100cqw);
    left: calc(585 / 1200 * 100cqw);
    width: calc(350 / 1200 * 100cqw);
    padding: calc(5 / 1200 * 100cqw) calc(6 / 1200 * 100cqw) calc(5 / 1200 * 100cqw) calc(8 / 1200 * 100cqw);
    gap: calc(25 / 1200 * 100cqw);
  }

  .hero-chip--top .hero-chip-dot {
    width: calc(30 / 1200 * 100cqw);
    height: calc(30 / 1200 * 100cqw);
  }

  /* Bottom chip pill — caption "Автоматизуємо…" at top:523,left:909,w:287; pill bg at top:513,left:852,w:350 */
  .hero-chip--bottom {
    top: calc(513 / 1200 * 100cqw);
    left: calc(852 / 1200 * 100cqw);
    width: calc(350 / 1200 * 100cqw);
    padding: calc(5 / 1200 * 100cqw) calc(6 / 1200 * 100cqw) calc(5 / 1200 * 100cqw) calc(8 / 1200 * 100cqw);
    gap: calc(9 / 1200 * 100cqw);
  }

  .hero-chip--bottom .hero-chip-dot {
    width: calc(40 / 1200 * 100cqw);
    height: calc(40 / 1200 * 100cqw);
  }

  .hero-chip p {
    font-size: calc(14 / 1200 * 100cqw);
  }
}

/* ===== Tablet/Mobile <992: clean grid layout ===== */
@media (max-width: 991px) {
  .hero {
    padding-block: 24px 48px;
  }

  .hero-canvas {
    display: grid;
    gap: 24px;
  }

  .hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    order: -1;
  }

  .hero-title {
    font-size: clamp(36px, 5.5vw, 48px);
    order: 1;
  }

  .hero-lead {
    font-size: 16px;
    order: 2;
  }

  .hero-arrow {
    width: 24px;
    order: 3;
  }

  .hero-desc {
    font-size: 16px;
    order: 4;
  }

  .hero-cta {
    align-self: flex-start;
    order: 5;
  }

  .hero-chip {
    order: 6;
  }

  .hero-chip--top .hero-chip-dot,
  .hero-chip--bottom .hero-chip-dot {
    width: 32px;
    height: 32px;
  }
}

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

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

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

.cards .card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.card-center {
  text-align: center;
  justify-items: center;
}

.icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.stats {
  background: var(--bg);
  padding-block: 90px 90px;
}

.stats .container {
  max-width: 1170px;
  padding-inline: 0;
  width: min(1170px, 100% - 32px);
}

.stats-canvas {
  position: relative;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  aspect-ratio: 1170 / 201;
  container-type: inline-size;
}

.stats-pill {
  position: absolute;
  inset: 0;
  background: var(--accent) url("../images/backgrounds/stats-bg.png") center/cover no-repeat;
  border-radius: 20px;
  z-index: 1;
}

.stats-num,
.stats-label {
  position: absolute;
  margin: 0;
  color: #fff;
  font-family: var(--font-text);
  text-align: center;
  z-index: 2;
}

.stats-num {
  font-weight: 700;
  font-size: calc(56 / 1170 * 100cqw);
  line-height: 1.1;
  top: calc(38 / 201 * 100%);
  width: calc(268 / 1170 * 100%);
}

.stats-num--1 { left: calc(81 / 1170 * 100%); }
.stats-num--2 { left: calc(481 / 1170 * 100%); }
.stats-num--3 { left: calc(822 / 1170 * 100%); }

.stats-label {
  font-weight: 700;
  font-size: calc(18 / 1170 * 100cqw);
  line-height: 1.5;
}

.stats-label--1 {
  top: calc(100 / 201 * 100%);
  left: calc(64 / 1170 * 100%);
  width: calc(302 / 1170 * 100%);
}

.stats-label--2 {
  top: calc(108 / 201 * 100%);
  left: calc(464 / 1170 * 100%);
  width: calc(302 / 1170 * 100%);
}

.stats-label--3 {
  top: calc(108 / 201 * 100%);
  left: calc(848 / 1170 * 100%);
  width: calc(216 / 1170 * 100%);
}

@media (max-width: 767px) {
  .stats {
    padding-block: 60px 60px;
  }

  .stats-canvas {
    aspect-ratio: 354 / 500;
  }

  .stats-num {
    font-size: 56px;
    width: auto;
    left: 0;
    right: 0;
  }

  .stats-num--1 { top: 48px; left: 24px; width: 300px; }
  .stats-num--2 { top: 189px; left: 135px; width: 81px; }
  .stats-num--3 { top: 344px; left: 72px; width: 208px; }

  .stats-label {
    font-size: 16px;
  }

  .stats-label--1 { top: 130px; left: 24px; width: 305px; }
  .stats-label--2 { top: 270px; left: 34px; width: 284px; }
  .stats-label--3 { top: 425px; left: 30px; width: 291px; }
}

/* ============== FOR WHO ============== */
.for-who {
  background: var(--bg);
  padding-block: 90px 0;
}

.for-who .container {
  max-width: 1170px;
  padding-inline: 0;
  width: min(1170px, 100% - 32px);
}

.for-who-head {
  text-align: center;
  max-width: 1170px;
  margin: 0 auto 40px;
}

.for-who-title {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 12px;
}

.for-who-sub {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.for-who-row {
  position: relative;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  container-type: inline-size;
}

.for-who-row--1 {
  aspect-ratio: 1170 / 356;
}

.for-who-row--2 {
  aspect-ratio: 1170 / 356;
  margin-top: 32px;
}

.fw-card {
  position: absolute;
  top: 0;
  width: calc(366 / 1170 * 100cqw);
  height: calc(356 / 1170 * 100cqw);
  border-radius: 20px;
  overflow: hidden;
}

.fw-card-title {
  position: absolute;
  top: calc(36 / 1170 * 100cqw);
  left: calc(20 / 1170 * 100cqw);
  width: calc(309 / 1170 * 100cqw);
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: calc(24 / 1170 * 100cqw);
  line-height: 1.3;
}

.fw-card-text {
  position: absolute;
  left: calc(22 / 1170 * 100cqw);
  width: calc(317 / 1170 * 100cqw);
  margin: 0;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: calc(18 / 1170 * 100cqw);
  line-height: 1.5;
}

.fw-card--green {
  background: var(--accent) url("../images/icons/for-who-1.svg") right bottom / auto auto no-repeat;
}

.fw-card--green .fw-card-title { color: #f5f5f5; }
.fw-card--green .fw-card-text { color: rgba(255, 255, 255, 0.8); }

.fw-card--white {
  background: #fff url("../images/icons/for-who-2.svg") right bottom / auto auto no-repeat;
  box-shadow: 0 4px 24px rgba(33, 36, 61, 0.06);
}

.fw-card--white .fw-card-title { color: var(--text-80); }
.fw-card--white .fw-card-text { color: var(--muted); }

/* Row 1: cards at left 0, 402, 804 */
.for-who-row--1 .fw-card:nth-child(1) { left: 0; }
.for-who-row--1 .fw-card:nth-child(2) { left: calc(402 / 1170 * 100cqw); }
.for-who-row--1 .fw-card:nth-child(3) { left: calc(804 / 1170 * 100cqw); }

.for-who-row--1 .fw-card:nth-child(1) .fw-card-text { top: calc(221 / 1170 * 100cqw); }
.for-who-row--1 .fw-card:nth-child(2) .fw-card-text { top: calc(221 / 1170 * 100cqw); }
.for-who-row--1 .fw-card:nth-child(3) .fw-card-text {
  top: calc(194 / 1170 * 100cqw);
  width: calc(321 / 1170 * 100cqw);
}

/* Row 2: cards at left 201, 611 */
.for-who-row--2 .fw-card:nth-child(1) { left: calc(201 / 1170 * 100cqw); }
.for-who-row--2 .fw-card:nth-child(2) { left: calc(611 / 1170 * 100cqw); }

.for-who-row--2 .fw-card:nth-child(1) .fw-card-text {
  top: calc(194 / 1170 * 100cqw);
  width: calc(317 / 1170 * 100cqw);
}
.for-who-row--2 .fw-card:nth-child(2) .fw-card-title {
  top: calc(35 / 1170 * 100cqw);
  width: calc(312 / 1170 * 100cqw);
}
.for-who-row--2 .fw-card:nth-child(2) .fw-card-text {
  top: calc(221 / 1170 * 100cqw);
  width: calc(326 / 1170 * 100cqw);
}

@media (max-width: 991px) {
  .for-who {
    padding-block: 60px 0;
  }

  .for-who-row,
  .for-who-row--1,
  .for-who-row--2 {
    aspect-ratio: auto;
    container-type: normal;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .for-who-row--2 {
    margin-top: 16px;
  }

  .fw-card {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 220px;
    padding: 24px;
    left: 0 !important;
  }

  .fw-card-title,
  .fw-card-text {
    position: static;
    width: auto;
    font-size: 20px;
  }

  .fw-card-text {
    font-size: 16px;
    margin-top: 12px;
  }

  .for-who-row--1 .fw-card:nth-child(1),
  .for-who-row--1 .fw-card:nth-child(2),
  .for-who-row--1 .fw-card:nth-child(3),
  .for-who-row--2 .fw-card:nth-child(1),
  .for-who-row--2 .fw-card:nth-child(2) {
    left: 0;
  }
}

/* ============== SOLUTIONS ============== */
.solutions {
  background: var(--bg);
  padding-block: 90px 0;
  position: relative;
  overflow: hidden;
}

.solutions::before {
  content: "";
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translateX(560px);
  width: 350px;
  height: 358.41px;
  background: url("../images/backgrounds/robot-kiosk-mall-bg.png") center / cover no-repeat;
  border-radius: 20px;
  z-index: 0;
  pointer-events: none;
}

.solutions::after {
  content: "";
  position: absolute;
  top: 880px;
  left: 50%;
  transform: translateX(-910px);
  width: 350px;
  height: 358.41px;
  background: url("../images/backgrounds/robot-kiosk-mall-bg.png") center / cover no-repeat;
  border-radius: 20px;
  z-index: 0;
  pointer-events: none;
}

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

.solutions > .sol-decor {
  position: absolute;
  width: 350px;
  height: 358.41px;
  background: url("../images/backgrounds/robot-kiosk-mall-bg.png") center / cover no-repeat;
  border-radius: 20px;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.solutions > .sol-decor--right {
  top: 1620px;
  left: 50%;
  transform: translateX(560px);
}

.solutions .container {
  max-width: 1170px;
  padding-inline: 0;
  width: min(1170px, 100% - 32px);
}

.solutions-title {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: var(--block-title-size);
  line-height: var(--block-title-line-height);
  color: var(--text);
  text-align: center;
  margin: 0 0 40px;
}

.sol-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(33, 36, 61, 0.06);
  margin-bottom: 24px;
}

.sol-card--split + .sol-card--text {
  margin-top: 60px;
}

.sol-card--text {
  padding: 40px 80px;
  text-align: center;
}

.sol-card--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 60px;
}

.sol-card-title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: var(--heading-line-height);
  color: #221F34CC;
  margin: 0 0 16px;
}

.sol-card-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: var(--text-line-height);
  color: #221F34A3;
  margin: 0;
}

.sol-card-subhead {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: var(--text-size);
  line-height: var(--text-line-height);
  color: var(--text-80);
  margin: 0 0 16px;
}

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

.sol-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #221F34A3;
}

.sol-list-icon {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  margin-top: 2px;
}

.sol-card-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.sol-card-cta {
  margin-top: 24px;
}

.sol-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.sol-cta-wrap .btn {
  width: 261.45px;
  height: 45.59px;
  padding: 0 20px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #F5F5F5;
}

@media (max-width: 991px) {
  .solutions {
    padding-block: 60px 0;
  }

  .sol-card--text {
    padding: 28px 24px;
  }

  .sol-card--split {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 24px;
  }
}

.advantages {
  background: var(--bg);
  padding-block: 90px 0;
}

.advantages .container {
  max-width: 1170px;
  padding-inline: 0;
  width: min(1170px, 100% - 32px);
}

.advantages-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: var(--block-title-line-height);
  color: #221F34CC;
  text-align: center;
  margin: 0 0 40px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 612px 616px;
  gap: 30px;
  align-items: stretch;
  justify-content: center;
}

.advantages-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.adv-card {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 100%;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 4px 24px rgba(33, 36, 61, 0.06);
  width: 612px;
  height: 220px;
  max-width: 100%;
}

.adv-card--green {
  background-color: var(--accent);
}

.adv-card--fast { background-image: url("../images/advantages/fast.png"); }
.adv-card--alwayson { background-image: url("../images/advantages/always-on.png"); }
.adv-card--costs { background-image: url("../images/advantages/costs.png"); }
.adv-card--remote { background-image: url("../images/advantages/remote.png"); }

.adv-card--green .adv-card-title {
  color: #FFFFFF;
}

.adv-card--green .adv-card-desc {
  color: #FFFFFFCC;
}

.adv-card-title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: var(--heading-line-height);
  color: #221F34CC;
  margin: 0 0 12px;
}

.adv-card-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: var(--text-line-height);
  color: #221F34A3;
  margin: 0;
}

.advantages-media {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 616px;
  height: 928px;
  max-width: 100%;
}

.advantages-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .advantages {
    padding-block: 60px 0;
  }

  .advantages-title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .adv-card {
    padding: 22px 24px;
  }

  .adv-card-title {
    font-size: 20px;
  }
}

.locations {
  padding-block: 160px 0;
}

.locations .container {
  max-width: 1170px;
  padding-inline: 0;
  width: min(1170px, 100% - 32px);
}

.locations-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: var(--block-title-line-height);
  color: #21243DCC;
  text-align: center;
  margin: 0 0 40px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 381.98px);
  gap: 24px;
  justify-content: center;
}

.loc-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(33, 36, 61, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  width: 381.98px;
  height: 288.77px;
  max-width: 100%;
  gap: 24px;
}

.loc-icon {
  width: 321.98px;
  height: 126.4px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.loc-label {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: var(--heading-line-height);
  color: #21243DA3;
}

@media (max-width: 991px) {
  .locations {
    padding-block: 60px 0;
  }

  .locations-title {
    font-size: 28px;
    margin-bottom: 28px;
  }

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

  .loc-card {
    min-height: 180px;
    padding: 28px 16px;
    gap: 18px;
  }

  .loc-icon {
    width: 56px;
    height: 56px;
  }

  .loc-label {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

.formats {
  padding-block: 90px 0;
}

.formats .container {
  max-width: 1170px;
  padding-inline: 0;
  width: min(1170px, 100% - 32px);
}

.formats-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: var(--block-title-line-height);
  color: #21243DCC;
  text-align: center;
  margin: 0 0 16px;
}

.formats-sub {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: var(--text-size);
  line-height: var(--text-line-height);
  color: var(--muted);
  text-align: center;
  margin: 0 0 40px;
}

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

.fmt-card {
  background: var(--accent);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fmt-card-media {
  background: #fff;
  border-radius: 16px;
  aspect-ratio: 320 / 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}

.fmt-card-media img {
  width: 95%;
  height: auto;
  max-height: 160%;
  object-fit: contain;
  display: block;
}

.fmt-card-title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: var(--heading-line-height);
  color: #F5F5F5;
  margin: 0;
}

.fmt-card-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: var(--text-line-height);
  color: #FFFFFFA3;
  margin: 0;
}

.formats-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.formats-cta {
  width: 216.33px;
  height: 45.6px;
  padding: 0 20px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #F5F5F5;
}

@media (max-width: 991px) {
  .formats {
    padding-block: 60px 0;
  }

  .formats-title {
    font-size: 28px;
  }

  .formats-sub {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .formats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fmt-card {
    padding: 22px;
    gap: 18px;
  }

  .fmt-card-title {
    font-size: 20px;
  }
}

.section-actions {
  margin-top: 24px;
  text-align: center;
}

.steps {
  background: var(--bg);
  padding-block: 90px 0;
}

.steps .container {
  max-width: 1170px;
  padding-inline: 0;
  width: min(1170px, 100% - 32px);
}

.steps-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: var(--block-title-line-height);
  color: #221F34CC;
  text-align: center;
  margin: 0 0 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 508px 720px;
  gap: 30px;
  align-items: start;
  justify-content: center;
}

.steps-media {
  border-radius: 20px;
  background: url("../images/backgrounds/robot-kiosk-mall-bg.png") center / cover no-repeat;
}

.steps-media img {
  width: 508px;
  height: 422px;
  max-width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-item {
  background: #fff;
  border-radius: 16px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 48px 1fr 38px;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 24px rgba(33, 36, 61, 0.04);
  width: 720px;
  max-width: 100%;
  min-height: 139px;
}

.step-num {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: #61AF3F33;
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: var(--heading-line-height);
  color: #221F34CC;
  margin: 0;
}

.step-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: var(--text-line-height);
  color: #221F34A3;
  margin: 0;
}

.step-check {
  width: 38.06px;
  height: 36.56px;
  object-fit: contain;
  display: block;
  justify-self: end;
}

.step-item--active {
  background: var(--accent);
}

.step-item--active .step-num {
  color: #FFFFFF33;
}

.step-item--active .step-title {
  color: #FFFFFF;
}

.step-item--active .step-desc {
  color: #FFFFFFCC;
}

.step-item--active .step-check {
  filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
  .steps {
    padding-block: 60px 0;
  }

  .steps-title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps-media {
    position: static;
  }

  .step-item {
    padding: 18px 20px;
    grid-template-columns: 36px 1fr 24px;
    gap: 14px;
  }

  .step-num {
    font-size: 28px;
  }

  .step-title {
    font-size: 16px;
  }

  .step-desc {
    font-size: 14px;
  }
}

.pricing {
  padding-block: 160px 0;
  background: url("../images/backgrounds/pricing.svg") 49.06% 46.66% / cover no-repeat, #f5f5f5;
}

.pricing .container {
  max-width: 1170px;
  padding-inline: 0;
  width: min(1170px, 100% - 32px);
}

.pricing-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: var(--block-title-line-height);
  color: #21243DCC;
  text-align: center;
  margin: 0 0 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pr-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px 32px;
  box-shadow: 0 4px 24px rgba(33, 36, 61, 0.06);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.pr-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--heading-size);
  line-height: var(--heading-line-height);
  color: var(--text);
  margin: 0 0 20px;
}

.pr-card-price {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 20px;
}

.pr-card-price span {
  font-weight: 400;
  color: var(--muted);
  font-size: 24px;
}

.pr-card-desc {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: var(--text-size);
  line-height: var(--text-line-height);
  color: var(--muted);
  margin: 0 0 24px;
}

.pr-card-sep {
  border: 0;
  border-top: 1px solid rgba(33, 36, 61, 0.1);
  margin: 0 0 24px;
}

.pr-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.pr-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pr-card-list li img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.pr-card-list li span {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: var(--text-size);
  line-height: var(--text-line-height);
  color: var(--muted);
}

.pr-card-fine {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 24px;
  text-align: left;
}

.pr-card-cta-wrap {
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.pr-card-cta {
  padding: 14px 40px;
  font-size: 16px;
}

@media (max-width: 991px) {
  .pricing {
    padding-block: 60px 0;
  }

  .pricing-title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pr-card {
    padding: 28px 24px;
  }

  .pr-card-price {
    font-size: 28px;
  }
}

.ceo {
  padding-block: 160px 90px;
}

.ceo .container {
  max-width: 1170px;
  padding-inline: 0;
  width: min(1170px, 100% - 32px);
}

.ceo-quote {
  position: relative;
  border: 1px solid var(--accent);
  border-radius: 24px;
  padding: 48px 32px;
  max-width: 960px;
  margin: 0 auto;
}

.ceo-quote-mark {
  position: absolute;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.ceo-quote-mark--left {
  top: -28px;
  left: 64px;
}

.ceo-quote-mark--right {
  bottom: -28px;
  right: 64px;
}

.ceo-quote-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto;
}

.ceo-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.ceo-title {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: var(--text-size);
  color: var(--muted);
}

.ceo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--heading-size);
  color: var(--text);
}

.ceo-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 4px;
}

.ceo-linkedin svg {
  display: block;
}

.ceo-quote-text {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: var(--text-size);
  line-height: var(--text-line-height);
  color: var(--muted);
  margin: 16px 0 0;
}

.ceo-quote-logo {
  width: 120px;
  margin-top: 16px;
}

@media (max-width: 991px) {
  .ceo {
    padding-block: 60px;
  }

  .ceo-quote {
    padding: 48px 24px;
  }

  .ceo-quote-mark {
    width: 40px;
    height: 40px;
  }

  .ceo-quote-mark--left {
    top: -20px;
    left: 24px;
  }

  .ceo-quote-mark--right {
    bottom: -20px;
    right: 24px;
  }

  .ceo-quote-text {
    font-size: 15px;
  }
}

.contact {
  padding-block: 106px 106px;
  background: url("../images/backgrounds/Contact_us.webp") 55% 0% / cover no-repeat, #f5f5f5;
}

.contact .container {
  max-width: 1170px;
  padding-inline: 0;
  width: min(1170px, 100% - 32px);
}

.contact-inner {
  background: #fff;
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 395fr 543fr;
  gap: 60px;
  align-items: center;
  box-shadow: 0 4px 24px rgba(33, 36, 61, 0.06);
  min-height: 742px;
}

.contact-media {
  width: 395px;
  height: 518px;
  max-width: 100%;
}

.contact-media img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-title {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  color: rgba(34, 31, 52, 0.8);
  margin: 0;
}

.contact-desc {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(34, 31, 52, 0.64);
  margin: 0 0 12px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-input {
  width: 100%;
  padding: 12px 21px;
  border-radius: 10px;
  border: 0;
  background: #f5f5f5;
  font-family: var(--font-text);
  font-size: 18px;
  color: var(--text);
}

.contact-input::placeholder {
  color: rgba(33, 36, 61, 0.4);
}

.contact-input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
}

.contact-submit {
  width: 100%;
  height: 46px;
  padding: 0 21px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.2s ease;
}

.contact-submit:hover {
  background: #4f9433;
}

@media (max-width: 991px) {
  .contact {
    padding-block: 0 60px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }

  .contact-title {
    font-size: 32px;
  }
}

.site-footer {
  background: #1b1e35;
  color: var(--white);
  padding: 48px 0;
}

.site-footer .container {
  max-width: 1170px;
  padding-inline: 0;
  width: min(1170px, 100% - 32px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 380px;
}

.footer-logo img {
  height: 72px;
  width: auto;
}

.footer-brand p {
  font-family: var(--font-text);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.48);
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 18px;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--accent);
  text-decoration: none;
}

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

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

.footer-ceo-text {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.48);
}

.footer-ceo-text strong {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 400;
  margin: 0 6px 0 4px;
}

.footer-ceo-text a {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 400;
  margin-left: 6px;
}

.footer-ceo-text a:hover {
  color: var(--accent);
  text-decoration: none;
}

.footer-email {
  font-family: var(--font-text);
  color: rgba(255, 255, 255, 0.48);
  font-weight: 400;
  font-size: 18px;
}

.footer-email:hover {
  color: var(--accent);
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    padding-block: 24px;
  }

  .header-burger {
    display: inline-flex;
  }

  .header-actions {
    display: none;
  }

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid rgba(33, 36, 61, 0.08);
    box-shadow: 0 12px 24px rgba(33, 36, 61, 0.06);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    z-index: 10;
  }

  .header-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 20px;
  }

  .header-nav li {
    text-align: center;
  }

  .header-nav a {
    display: block;
    padding: 12px 16px;
  }

  .header-nav .header-actions-mobile {
    padding: 12px 24px 4px;
  }

  .hero-grid,
  .solution,
  .grid-2,
  .steps-head {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-block: 32px 48px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-copy {
    max-width: none;
    text-align: left;
  }

  .hero-visual {
    aspect-ratio: 4 / 5;
  }

  .hero-chip {
    max-width: 220px;
    padding: 12px 14px;
  }

  .hero-chip--top {
    top: 12px;
    right: 12px;
  }

  .hero-chip--bottom {
    bottom: 12px;
    left: 12px;
  }

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

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

  .footer-right {
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 20px;
  }
}
