:root {
  --c-primary: #19c6c3;
  --c-primary-700: #11a6a3;
  --c-mint: #7fe7c4;
  --c-light-blue: #eafbfc;
  --c-deep: #0e5b5c;
  --c-text: #1f2a37;
  --c-text-muted: #5b677a;
  --c-bg: #f7fbfc;
  --c-white: #ffffff;
  --c-border: #e6eef1;
  --c-danger: #ef4444;
  --c-success: #0f9d73;
  --shadow-sm: 0 2px 8px rgba(31, 42, 55, 0.06);
  --shadow-md: 0 8px 24px rgba(25, 198, 195, 0.12), 0 2px 6px rgba(31, 42, 55, 0.05);
  --shadow-lg: 0 24px 60px rgba(25, 198, 195, 0.2), 0 4px 12px rgba(31, 42, 55, 0.08);
  --grad-hero: radial-gradient(1200px 600px at 90% -10%, #dff7fa 0%, rgba(223, 247, 250, 0) 60%),
    radial-gradient(900px 500px at -10% 10%, #e8fbf1 0%, rgba(232, 251, 241, 0) 60%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
  --grad-cta: linear-gradient(135deg, #0e5b5c 0%, #117879 45%, #19c6c3 100%);
  --grad-action: linear-gradient(135deg, #19c6c3 0%, #7fe7c4 100%);
  --header-h: 62px;
  --container: 1200px;
  --fs-h1: clamp(34px, 4.2vw, 54px);
  --fs-h2: clamp(30px, 3.6vw, 44px);
  --fs-h3: clamp(21px, 2.1vw, 28px);
  --fs-subtitle: clamp(17px, 1.4vw, 20px);
  --fs-body: clamp(16px, 1.15vw, 18px);
  --fs-secondary: clamp(14px, 1vw, 16px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Assistant", "Heebo", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-align: right;
  color: var(--c-text);
  background: var(--c-bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

h1 {
  font-size: var(--fs-h1);
  line-height: 1.12;
  font-weight: 900;
  color: #111;
}
h2 {
  font-size: var(--fs-h2);
  line-height: 1.15;
  font-weight: 800;
  color: #111;
}
h3 {
  font-size: var(--fs-h3);
  line-height: 1.25;
  font-weight: 700;
  color: #111;
}
p {
  font-size: var(--fs-body);
  line-height: 1.65;
}

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

[id] { scroll-margin-top: calc(var(--header-h) + 14px); }

.section { padding: clamp(40px, 5.4vw, 72px) 0; }
.section-tight { padding-top: clamp(34px, 4.8vw, 64px); }
.section-soft { background: linear-gradient(180deg, rgba(234, 251, 252, 0.82), rgba(255, 255, 255, 0.92)); }
.section-contrast { background: linear-gradient(145deg, #f0fbfc, #ffffff 60%, #ecf9fa); }

.section-head {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(18px, 3vw, 30px);
  text-align: center;
}
.section-head h2 {
  margin: 0;
  font-size: var(--fs-h2);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-head p {
  margin: 8px 0 0;
  color: var(--c-text-muted);
  font-size: var(--fs-subtitle);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(25, 198, 195, 0.1);
  color: var(--c-primary-700);
  font-weight: 700;
  font-size: 14px;
}
.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
}
.kicker-on-dark {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.kicker-on-dark::before { background: #7fe7c4; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 48px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gradient {
  background: var(--grad-action);
  color: #083334;
  box-shadow: 0 10px 22px rgba(25, 198, 195, 0.22);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.92);
  border-color: #bfd8db;
  color: var(--c-text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14, 91, 92, 0.1);
  transition: transform 0.24s ease;
}
.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  width: auto;
  height: auto;
  max-width: clamp(126px, 13vw, 190px);
}
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.7vw, 22px);
}
.main-nav a {
  color: var(--c-text-muted);
  font-weight: 700;
  font-size: 15px;
}
.main-nav a:hover { color: var(--c-primary-700); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 12px;
  border: 1px solid #9fc4c7;
  background: #fff;
  color: #0f5859;
  box-shadow: 0 3px 10px rgba(15, 88, 89, 0.14);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.18s ease;
}
.menu-btn span + span { margin-top: 0; }
.menu-btn:focus-visible {
  outline: none;
  border-color: #19c6c3;
  box-shadow: 0 0 0 3px rgba(25, 198, 195, 0.25), 0 3px 10px rgba(15, 88, 89, 0.16);
}
.menu-btn[aria-expanded="true"] {
  background: #f2fbfc;
  border-color: #8fcfd3;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
.mobile-nav-wrap {
  display: none;
  border-top: 1px solid rgba(14, 91, 92, 0.08);
}
.mobile-nav-wrap.open { display: block; }
.mobile-nav {
  display: grid;
  gap: 8px;
  padding: 12px 16px 16px;
}
.mobile-nav a {
  padding: 12px;
  border-radius: 12px;
  background: #f4fcfd;
  font-weight: 700;
}

.hero {
  background: var(--grad-hero);
  overflow: hidden;
  padding-bottom: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 43% 57%;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  padding-bottom: clamp(32px, 4vw, 56px);
}
.hero-copy {
  display: grid;
  gap: 20px;
}
.hero-copy h1 {
  margin: 0;
  font-size: var(--fs-h1);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.hero-highlight {
  color: var(--c-primary);
}
.hero-copy p {
  margin: 0;
  color: var(--c-text-muted);
  font-size: var(--fs-subtitle);
  max-width: 42ch;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.hero-categories {
  border-top: 1px solid var(--c-border);
  background: var(--c-white);
  padding: 18px 0;
}
.categories-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  padding: 4px 8px;
  color: var(--c-text-muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  position: relative;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.cat-item + .cat-item::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--c-border);
}
.cat-item svg {
  color: var(--c-primary);
  flex-shrink: 0;
  transition: color 0.22s ease;
}

.cat-item:hover {
  transform: translateY(-3px);
  background: #ffffff;
  border-color: #19c6c3;
  box-shadow: 0 10px 24px rgba(31, 42, 55, 0.12);
  color: #243444;
}

.cat-item:hover svg {
  color: var(--c-primary-700);
}
.trust-chips {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-chips li {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #0f5b5d;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d7ecef;
}

.dashboard-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2vw, 24px);
  border-radius: 28px;
  background: #fff;
  border: 1px solid #cde8ea;
  box-shadow: var(--shadow-lg);
}

.hero-route-visual {
  position: relative;
  min-height: 360px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(234, 251, 252, 0.58));
  border: 1px solid rgba(25, 198, 195, 0.14);
  overflow: hidden;
}

.route-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.route-origin {
  width: 140px;
  height: 140px;
  right: 8%;
  top: 24%;
  background: radial-gradient(circle at 40% 40%, rgba(25, 198, 195, 0.42), rgba(25, 198, 195, 0.08) 68%, transparent 72%);
}

.route-return {
  width: 100px;
  height: 100px;
  left: 12%;
  bottom: 18%;
  background: radial-gradient(circle at 50% 50%, rgba(127, 231, 196, 0.32), rgba(127, 231, 196, 0.08) 68%, transparent 72%);
}

.route-curve {
  position: absolute;
  pointer-events: none;
}

.curve-main {
  right: 18%;
  left: 16%;
  top: 35%;
  height: 96px;
  border-top: 2px solid rgba(25, 198, 195, 0.5);
  border-left: 2px solid rgba(25, 198, 195, 0.34);
  border-radius: 120px 0 0 0;
}

.curve-back {
  right: 24%;
  left: 22%;
  bottom: 24%;
  height: 82px;
  border-bottom: 2px solid rgba(17, 166, 163, 0.4);
  border-right: 2px solid rgba(17, 166, 163, 0.3);
  border-radius: 0 0 120px 0;
}

.route-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #14b9b6;
  box-shadow: 0 0 0 7px rgba(25, 198, 195, 0.16);
}

.dot-1 { right: 24%; top: 38%; }
.dot-2 { right: 43%; top: 33%; }
.dot-3 { right: 62%; top: 45%; }
.dot-4 { left: 24%; bottom: 34%; }
.dot-5 { left: 37%; bottom: 26%; }

.hero-route-labels {
  position: absolute;
  right: 16px;
  left: 16px;
  bottom: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hero-route-labels span {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid #cde8ea;
  background: rgba(255, 255, 255, 0.84);
  color: #0e6668;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  border: 1px solid rgba(25, 198, 195, 0.12);
  pointer-events: none;
}
.dashboard-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 16px 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(25, 198, 195, 0), rgba(25, 198, 195, 0.45), rgba(25, 198, 195, 0));
}
.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-head strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #13b5b2;
  box-shadow: 0 0 0 4px rgba(19, 181, 178, 0.16);
}
.live-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: #def7f5;
  color: #0f766e;
  font-size: 12px;
  font-weight: 700;
}
.portal-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f4fcfd;
  border: 1px dashed #bcdfe2;
}
.ui-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #0e5a5b;
}
.mini-ic {
  font-size: 12px;
  color: #0f7d7e;
}
.touchpoints {
  display: flex;
  gap: 8px;
}
.touchpoints span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid #b9e2df;
  background: #fff;
  color: #0e5b5c;
  font-size: 12px;
  font-weight: 700;
}
.touchpoints b {
  font-size: 11px;
  color: #0f7c7d;
}
.group-lane {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.group-card {
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #c9e3e6;
}
.group-card.wa { background: linear-gradient(180deg, #f6fffa, #edfff4); }
.group-card.tg { background: linear-gradient(180deg, #f3fbff, #ebf8ff); }
.group-card h3 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-h3);
}
.group-card p {
  margin: 3px 0 0;
  color: var(--c-text-muted);
  font-size: var(--fs-body);
}
.floating-metrics {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.floating-metrics span {
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid #cae7e9;
  background: #f4fcfd;
  color: #0f6869;
  font-size: 12px;
  font-weight: 700;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.metric {
  padding: 10px;
  border-radius: 14px;
  border: 1px solid #d3eaec;
  background: #fff;
}
.metric span {
  display: block;
  font-size: 12px;
  color: var(--c-text-muted);
}
.metric strong {
  display: block;
  margin-top: 2px;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.1;
  color: #129d9a;
}
.report-line,
.activity-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.report-line {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #d0e8ea;
  background: #f8fdfd;
  color: #24595a;
  font-size: 13px;
  font-weight: 700;
}
.activity-line {
  padding: 0 2px;
  font-size: 12px;
  font-weight: 700;
  color: #0f6f70;
}
.mini-bars {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 24px;
}
.mini-bars i {
  width: 6px;
  height: var(--h);
  border-radius: 8px;
  background: linear-gradient(180deg, #19c6c3, #0e7e80);
}
.traffic-line {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 26px;
  padding: 0 4px;
}
.traffic-line i {
  width: 14%;
  height: 0;
  border-radius: 8px;
  border: 1px solid #cce9eb;
  background: linear-gradient(180deg, rgba(25, 198, 195, 0.28), rgba(17, 166, 163, 0.08));
}
.traffic-line i:nth-child(1) { height: 28%; }
.traffic-line i:nth-child(2) { height: 44%; }
.traffic-line i:nth-child(3) { height: 36%; }
.traffic-line i:nth-child(4) { height: 64%; }
.traffic-line i:nth-child(5) { height: 58%; }
.traffic-line i:nth-child(6) { height: 80%; }

.flow-wrap { display: grid; gap: 14px; }
.flow-card {
  padding: 13px;
  border-radius: 20px;
  border: 1px solid var(--c-border);
  background: #fff;
}
.flow-card.muted {
  background: linear-gradient(180deg, #f8fafb, #ffffff);
  border-color: #e1e8ec;
}
.flow-card.strong {
  border-color: #8fdedc;
  background: linear-gradient(180deg, #f3fdfd, #ecfbfb);
  box-shadow: 0 16px 34px rgba(25, 198, 195, 0.14);
}
.flow-card h3 { margin: 0; font-size: var(--fs-h3); }
.flow-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.flow-row span,
.step,
.compare-card,
.contact-side,
.contact-form,
.result-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.flow-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border-radius: 12px;
  border: 1px solid #d7eaed;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}
.flow-row span i {
  color: #1b7b7c;
  font-style: normal;
  font-size: 12px;
}
.flow-row b {
  color: #0e7d7e;
  font-size: 18px;
}

.pain-section {
  background: #fbfdff;
}

.pain-section .section-head {
  margin-bottom: clamp(20px, 3vw, 34px);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
}

.pain-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px 18px;
  box-shadow: 0 10px 24px rgba(31, 42, 55, 0.08);
  border: 1px solid #eef2f6;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 10px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(25, 198, 195, 0.12);
  border-color: #19c6c3;
}

.pain-icon-img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  display: block;
}

.pain-card h3 {
  margin: 0;
  color: #111;
  font-size: var(--fs-h3);
  line-height: 1.3;
}

.pain-card p {
  margin: 0;
  color: #5b677a;
  font-size: var(--fs-body);
  line-height: 1.7;
}

.solution-section {
  background: #fff;
  overflow: visible;
  padding-top: 80px;
  padding-bottom: 90px;
}

.solution-head {
  text-align: center;
  margin-bottom: 56px;
}

.solution-head h2 {
  margin: 0;
  color: #111;
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.solution-flow {
  position: relative;
  direction: rtl;
  overflow: visible;
}

.solution-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
}

.solution-step {
  position: relative;
  text-align: center;
}

.step-1 { transform: translateY(28px); }
.step-2 { transform: translateY(14px); }
.step-3 { transform: translateY(0); }
.step-4 { transform: translateY(-12px); }

.step-content {
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(145deg, #18bd5b 0%, #009a45 100%);
  box-shadow: 0 12px 26px rgba(0, 160, 75, 0.28);
  margin-bottom: 14px;
}

.solution-step h3 {
  margin: 0 0 8px;
  color: #111;
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.25;
}

.solution-step p {
  margin: 0;
  color: #151515;
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.55;
}

.step-line {
  width: 4px;
  height: 48px;
  margin-top: 18px;
  display: block;
  background-image: radial-gradient(circle, #08a84f 2.4px, transparent 3px);
  background-size: 4px 11px;
  background-repeat: repeat-y;
  background-position: center;
  position: relative;
}

.step-line::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #08a84f;
}

.step-card {
  width: 100%;
  height: 230px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.09);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.22s ease;
}

.step-card:hover {
  border-color: #19c6c3;
  box-shadow: 0 8px 24px rgba(25, 198, 195, 0.12);
  transform: translateY(-3px);
}

.step-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.step-arrow {
  position: absolute;
  right: calc(50% - 16px);
  width: 300px;
  height: 170px;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
  opacity: 0.96;
}

.step-arrow path {
  fill: none;
  stroke: #08a84f;
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1 11;
}

.step-arrow path:last-child {
  stroke-dasharray: none;
}

.step-1 .step-arrow { top: 4px; }
.step-2 .step-arrow { top: -6px; }
.step-3 .step-arrow { top: 0; }
.step-4 .step-arrow { display: none; }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.step {
  position: relative;
  z-index: 1;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #d8ebed;
}
.step::after {
  content: "⟵";
  position: absolute;
  left: -11px;
  top: 14px;
  color: #149a98;
  font-size: 15px;
  font-weight: 800;
}
.step:last-of-type::after { display: none; }
.step-no {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #e7f8f8;
  color: #0f7f80;
  font-weight: 800;
}
.step h3 { margin: 8px 0 0; font-size: var(--fs-h3); }
.step p { margin: 4px 0 0; color: var(--c-text-muted); font-size: var(--fs-body); }
.timeline-result {
  grid-column: 1 / -1;
  padding: 16px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid #bfe0e5;
  background: linear-gradient(135deg, #ffffff, #ecfbfb);
}
.timeline-result span {
  display: block;
  font-size: 13px;
  color: #0f696a;
  font-weight: 700;
}
.timeline-result strong {
  font-size: clamp(24px, 2.8vw, 36px);
  color: #0e5b5c;
}

.how-video-head {
  text-align: center;
  margin-bottom: clamp(18px, 3vw, 34px);
}

#how .contact-banner {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.how-video-head h2 {
  margin: 0;
  color: #111;
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.how-video-frame {
  display: flex;
  justify-content: center;
}

.how-video-shell {
  width: min(100%, 980px);
  border-radius: 28px;
  padding: clamp(12px, 1.6vw, 18px);
  background: linear-gradient(180deg, #fdfefe 0%, #f6fbfc 100%);
  border: 1px solid #d7e8ea;
  box-shadow: 0 28px 50px rgba(12, 27, 45, 0.12), 0 3px 10px rgba(12, 27, 45, 0.07);
}

.how-video-canvas {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #d2e6e8;
  background: #eef7f8;
}

.how-video-canvas iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.how-dashboard-frame {
  width: min(100%, 1120px);
  margin: 12px auto 0;
}

.how-dashboard-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid #d7e8ea;
  box-shadow: 0 22px 44px rgba(12, 27, 45, 0.12), 0 2px 8px rgba(12, 27, 45, 0.08);
}

.about-story-card {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.about-story-card p {
  margin: 0;
  color: #334155;
  font-size: var(--fs-body);
  line-height: 1.8;
}

.about-story-card p + p {
  margin-top: 14px;
}

#about-story {
  background: #fff;
}

.results-section {
  background: #fff;
  color: var(--c-text);
}
.results-section .section-head h2 {
  color: #111;
  font-weight: 800;
}
.results-badge {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 auto 36px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #d2ede9;
  background: #f4fcfa;
  color: #1a7a6e;
  font-size: 14px;
  font-weight: 600;
  direction: rtl;
}
.results-badge svg { flex-shrink: 0; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.result-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px 24px;
  border-radius: 18px;
  border: 1px solid #e6f3f2;
  background: #fff;
  transition: all 0.22s ease;
}

.result-metric:hover {
  border-color: #19c6c3;
  box-shadow: 0 8px 24px rgba(25, 198, 195, 0.12);
  transform: translateY(-3px);
}
.result-metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.result-metric-icon svg {
  width: 64px;
  height: 64px;
}
.result-metric-num {
  display: block;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 800;
  color: #1db99b;
  line-height: 1;
  margin-bottom: 10px;
}
.result-metric-desc {
  color: #555;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.result-metric-btn {
  margin-top: 14px;
  width: 100%;
  background: transparent;
  border: 2px solid #19c6c3;
  color: #19c6c3;
  font-size: 14px;
  font-weight: 700;
}

.result-metric-btn:hover {
  background: #19c6c3;
  color: #fff;
}
.results-cta {
  margin-top: 36px;
  text-align: center;
}
.btn-results {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  background: #1db99b;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s;
}
.btn-results:hover { background: #17a087; }

.story-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}

.story-modal[hidden] {
  display: none;
}

.story-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 13, 33, 0.68);
  backdrop-filter: blur(4px);
}

.story-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
}

.story-modal-image {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 48px);
  object-fit: contain;
  display: block;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.story-modal-close {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #4c5a78;
  font-size: 30px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(10, 18, 36, 0.16);
}

.story-modal-close:hover {
  color: #0f172a;
  background: #fff;
}

@media (max-width: 760px) {
  .story-modal {
    padding: 12px;
  }

  .story-modal-image {
    max-height: calc(100vh - 24px);
    border-radius: 16px;
  }

  .story-modal-close {
    top: 8px;
    left: 8px;
    width: 38px;
    height: 38px;
    font-size: 26px;
  }
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.compare-card {
  padding: 16px;
  border-radius: 20px;
}
.compare-card h3 { margin: 0; font-size: var(--fs-h3); }
.compare-card ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.compare-card li {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 700;
}
.compare-weak {
  border: 1px solid #e4eaee;
  background: #f8fafb;
}
.compare-weak h3 { color: #111; }
.compare-weak li {
  color: #6b7280;
}
.compare-weak li::before {
  content: "✕";
  color: var(--c-danger);
  font-size: 20px;
  flex-shrink: 0;
}
.compare-strong {
  border: 1px solid #8fd8d8;
  background: linear-gradient(180deg, #ffffff, #f0fcfc);
  box-shadow: 0 16px 34px rgba(25, 198, 195, 0.18);
}
.compare-strong h3 { color: #111; }
.compare-strong li {
  color: #325153;
}
.compare-strong li::before {
  content: "✓";
  color: var(--c-success);
  font-size: 20px;
  flex-shrink: 0;
}
.comparison-note {
  margin: 14px 0 0;
  text-align: center;
  color: #3f5f64;
  font-weight: 700;
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  width: 100%;
  background: #fff;
  border: 1px solid #d5e7ea;
  border-radius: 18px;
  padding: 28px 24px 24px;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  align-items: center;
  text-align: center;
  gap: 14px;
  box-shadow: 0 4px 18px rgba(25, 198, 195, 0.08);
  transition: all 0.22s ease;
}

#reviews .carousel-container {
  padding-top: 6px;
  padding-bottom: 6px;
}

.review-card:hover {
  border-color: #19c6c3;
  box-shadow: 0 8px 24px rgba(25, 198, 195, 0.12);
  transform: translateY(-3px);
}
.review-logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-logo img {
  max-height: 100px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
}
.review-quote-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-text {
  font-size: var(--fs-body);
  color: #3b5a5e;
  line-height: 1.7;
  margin: 0;
}
.review-stars {
  font-size: 22px;
  color: #1db99b;
  letter-spacing: 3px;
  line-height: 1;
}
.review-author {
  font-size: var(--fs-body);
  color: #6b7280;
  margin: 0;
}
.review-author strong {
  color: #1a3c3e;
}
@media (max-width: 860px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 561px) and (max-width: 900px) {
  #reviews .carousel-track {
    align-items: stretch;
  }

  #reviews .carousel-item {
    display: flex;
  }

  #reviews .review-card {
    height: 100%;
  }
}

.faq-wrap { max-width: 900px; }
.faq-list { display: grid; gap: 8px; }
.faq-item {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #d5e7ea;
  background: #fff;
}
.faq-q {
  width: 100%;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 0;
  background: transparent;
  text-align: right;
  color: var(--c-text);
  font-weight: 700;
}
.faq-q span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #e8f9fa;
  color: #0f7879;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item.open .faq-a { max-height: 140px; }
.faq-a p {
  margin: 0;
  padding: 0 14px 14px;
  color: var(--c-text-muted);
  font-size: var(--fs-body);
}

.contact-banner-section {
  padding-top: 28px;
  padding-bottom: 28px;
}

.contact-banner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: clamp(130px, 18vw, 185px);
  border: 1px solid #cfe8e5;
  box-shadow: 0 16px 34px rgba(10, 57, 58, 0.12);
}

.contact-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(16, 125, 112, 0.18) 0%, rgba(16, 125, 112, 0.04) 38%, rgba(16, 125, 112, 0) 68%);
  pointer-events: none;
}

.contact-banner-content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: min(56%, 700px);
  margin-left: auto;
  text-align: right;
  gap: 8px;
  padding: clamp(14px, 2vw, 24px) clamp(14px, 2.4vw, 32px);
  color: #f4fffd;
}

.contact-banner-content h2 {
  margin: 0;
  width: 100%;
  font-size: clamp(27px, 3.2vw, 40px);
  line-height: 1.15;
  white-space: nowrap;
  font-weight: 800;
  color: rgba(244, 255, 253, 0.96);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.contact-banner-content p {
  margin: 0;
  width: fit-content;
  align-self: center;
  text-align: center;
  font-size: var(--fs-subtitle);
  line-height: 1.45;
  color: rgba(244, 255, 253, 0.96);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
}

.btn-contact-banner {
  align-self: center;
  margin-top: 2px;
  background: #ffffff;
  color: #0f6e62;
  border-color: #ffffff;
  box-shadow: 0 8px 18px rgba(8, 51, 45, 0.2);
  padding: 10px 20px;
}

.btn-contact-banner:hover {
  background: #f3fffc;
  color: #0d6258;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.contact-head {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 980px;
  margin: 0 auto 8px;
}
.contact-head h2 {
  font-size: var(--fs-h2);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111;
}
.contact-head p {
  font-size: var(--fs-subtitle);
  color: #475569;
}
.contact-side,
.contact-form {
  padding: clamp(16px, 1.5vw, 24px);
  border-radius: 18px;
  border: 1px solid #dbe7ef;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}
.contact-form { order: 2; }
.contact-side { order: 1; background: linear-gradient(180deg, #f7fcf8, #f4fbf7); }

.contact-illustration {
  display: block;
  width: min(100%, 300px);
  margin: 0 auto 12px;
  border-radius: 16px;
}

.contact-side ul {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-side li {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid #d8e6ea;
  color: #0f2146;
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1.4;
}
.contact-side li span {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #1ea94d;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

.contact-side-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 0;
}
.summary-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1ea94d;
  color: #fff;
}
.summary-text {
  font-size: var(--fs-body);
  font-weight: 700;
  color: #07163d;
  line-height: 1.4;
}
.summary-underline {
  text-decoration: underline;
  text-decoration-color: #1ea94d;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.field { display: grid; gap: 6px; position: relative; }
.field-full { grid-column: 1 / -1; }
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.field label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 2px solid #dbe3ef;
  background: #ffffff;
  color: #0f172a;
  font-size: 17px;
  font-weight: 500;
}

.field textarea {
  min-height: 98px;
  resize: vertical;
  font-size: 16px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6b7b92;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #1ea94d;
  box-shadow: 0 0 0 4px rgba(30, 169, 77, 0.12);
  background: #fff;
}
.contact-form .btn { grid-column: 1 / -1; }
.contact-form .btn-gradient {
  margin-top: 6px;
  background: linear-gradient(180deg, #14b34e 0%, #109744 100%);
  border-color: #109744;
  color: #fff;
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 800;
  min-height: 56px;
  border-radius: 14px;
}

.contact-form .btn-gradient:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(16, 151, 68, 0.24);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: #475569;
  text-align: center;
  font-size: var(--fs-secondary);
  font-weight: 500;
}
.form-success {
  grid-column: 1 / -1;
  display: none;
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #9de3d0;
  background: #ecfcf7;
  color: #0f8d65;
  font-size: 14px;
  font-weight: 700;
}
.form-success.show { display: block; }
.form-error {
  grid-column: 1 / -1;
  display: none;
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #f2b7c0;
  background: #fff4f6;
  color: #b42342;
  font-size: 14px;
  font-weight: 700;
}
.form-error.show { display: block; }

.contact-form.is-loading .btn-gradient {
  opacity: 0.8;
  cursor: wait;
}

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

  .contact-form,
  .contact-side {
    order: initial;
  }

  .contact-head h2 {
    font-size: var(--fs-h2);
  }

  .contact-head p {
    font-size: var(--fs-subtitle);
  }

  .contact-side li {
    font-size: var(--fs-body);
  }

  .field input,
  .field textarea {
    font-size: clamp(15px, 4vw, 18px);
  }

  .contact-form .btn-gradient {
    font-size: clamp(16px, 4.4vw, 22px);
    min-height: 52px;
  }

  .form-note {
    font-size: clamp(12px, 3.3vw, 14px);
  }
}

.site-footer {
  padding: 14px 0 20px;
  background: #f2fbfc;
  border-top: 1px solid #d9ecef;
}
.footer-top-divider {
  position: relative;
  border-top: 1px solid #d9ecef;
  text-align: center;
  margin-bottom: 10px;
}
.footer-dot {
  display: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1ea94d;
  position: relative;
  top: -4px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.footer-grid > *:not(:first-child) {
  border-inline-start: 1px solid rgba(7, 22, 61, 0.09);
  padding-inline-start: 18px;
}
.footer-logo { max-width: 145px; }
.footer-brand {
  text-align: center;
  align-self: center;
}
.footer-brand .footer-logo {
  display: block;
  margin-inline: auto;
}
.footer-brand-text {
  margin: 8px auto 0;
  max-width: 34ch;
  color: var(--c-text-muted);
  font-size: var(--fs-secondary);
  line-height: 1.45;
}
.footer-brand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 12px;
}
.footer-brand-divider::before,
.footer-brand-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: #d2e5e8;
}
.footer-brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1ea94d;
  margin: 0 8px;
}
.footer-contact-info {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}
.footer-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer-icon-circle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(30, 169, 77, 0.12);
  color: #1ea94d;
}
.footer-contact-label {
  font-weight: 700;
  color: #07163d;
  font-size: 15px;
}
.footer-contact-value {
  color: var(--c-text-muted);
  font-size: 15px;
  text-decoration: none;
}
.footer-contact-value:hover { color: var(--c-primary-700); }
.footer-col-heading {
  font-size: var(--fs-h3);
  font-weight: 800;
  color: #111;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #1ea94d;
  display: inline-block;
}
.footer-legal .footer-col-heading {
  border-bottom: 0;
  position: relative;
  padding-bottom: 10px;
}
.footer-legal .footer-col-heading::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(30, 169, 77, 0.14) 0%,
    rgba(30, 169, 77, 0.34) 30%,
    rgba(30, 169, 77, 0.68) 50%,
    rgba(30, 169, 77, 0.34) 70%,
    rgba(30, 169, 77, 0.14) 100%
  );
}
.footer-col-heading-no-line {
  border-bottom: 0;
  padding-bottom: 0;
}
.footer-nav,
.footer-legal {
  display: grid;
  gap: 8px;
  padding-top: 10px;
  justify-items: center;
  text-align: center;
}
.footer-nav a,
.footer-legal a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--c-text-muted);
  font-size: 15px;
  text-decoration: none;
}
.footer-arrow {
  color: #1ea94d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.footer-nav a:hover,
.footer-legal a:hover { color: var(--c-primary-700); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid #d9e9ec;
  text-align: center;
  color: #6b7f84;
  font-size: 14px;
}
.footer-shield {
  color: #1ea94d;
  flex-shrink: 0;
}

.lift-card:hover {
  transform: translateY(-3px);
  border-color: rgba(25, 198, 195, 0.65);
  box-shadow: 0 16px 34px rgba(25, 198, 195, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(223, 247, 250, 0.42));
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-nav,
  .footer-legal {
    padding-top: 0;
  }
  .footer-grid > *:not(:first-child) {
    border-inline-start: 0;
    padding-inline-start: 0;
  }
  .footer-brand {
    align-self: auto;
  }
  .hero-visual {
    order: -1;
  }
  .hero-banner-img {
    max-height: 340px;
    object-fit: cover;
    object-position: top;
    width: 100%;
  }
  .categories-strip {
    flex-wrap: wrap;
    gap: 4px;
  }
  .cat-item {
    flex: 0 0 calc(33.33% - 4px);
    min-width: 90px;
  }
  .cat-item + .cat-item::before {
    display: none;
  }
  .timeline,
  .pain-grid,
  .results-grid,
  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav,
  .header-actions .btn {
    display: none;
  }
  .menu-btn { display: inline-flex; }

  .site-header.is-hidden-mobile {
    transform: translateY(calc(-100% - 2px));
  }

  .step::after { display: none; }
}

@media (max-width: 760px) {
  .section { padding: 48px 0; }
  .hero-grid { padding-bottom: 32px; }
  .hero-copy h1 { font-size: var(--fs-h1); }
  .hero-visual { order: initial; }
  .hero-banner-img {
    max-height: 260px;
  }
  .categories-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .cat-item {
    flex: unset;
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 10px;
  }
  .cat-item + .cat-item::before { display: none; }
  .hero-actions,
  .form-actions,
  .trust-chips {
    display: grid;
    grid-template-columns: 1fr;
  }
  .btn,
  .hero-actions .btn {
    width: 100%;
  }
  .metric-grid,
  .group-lane,
  .timeline,
  .pain-grid,
  .results-grid,
  .comparison-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .flow-row b { display: none; }

  .how-video-shell {
    border-radius: 20px;
    padding: 10px;
  }

  .how-video-canvas {
    border-radius: 14px;
  }

  .how-dashboard-frame {
    margin-top: 10px;
  }

  .how-dashboard-frame img {
    border-radius: 14px;
  }
}

@media (max-width: 560px) {
}

@media (max-width: 760px) {
  .contact-banner {
    min-height: 180px;
  }

  .contact-banner-content {
    width: 100%;
    margin-left: 0;
    align-items: center;
    text-align: center;
    gap: 7px;
    padding: 14px;
  }

  .contact-banner-content h2 {
    font-size: clamp(18px, 5.1vw, 24px);
    white-space: normal;
    text-wrap: balance;
    max-width: 24ch;
    line-height: 1.15;
  }

  .contact-banner-content p {
    font-size: var(--fs-subtitle);
  }

  .btn-contact-banner {
    width: auto;
    min-width: 190px;
  }
}

@media (max-width: 1100px) {
  .solution-steps {
    gap: 32px;
  }

  .step-card {
    height: 210px;
  }

  .step-arrow {
    right: calc(50% - 12px);
    width: 250px;
    height: 150px;
  }
}

@media (max-width: 900px) {
  .solution-section {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .solution-head {
    margin-bottom: 42px;
  }

  .solution-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 24px;
  }

  .step-arrow {
    display: none;
  }

  .step-content {
    height: 150px;
  }

  .step-1,
  .step-2,
  .step-3,
  .step-4 {
    transform: none;
  }
}

/* ===== Live Examples Carousel ===== */

.live-examples-section {
  background: #f7fbfc;
}

.live-examples-section .section-head {
  margin-bottom: clamp(28px, 3.2vw, 40px);
}

.live-examples-section .section-head h2 {
  color: #111;
  font-weight: 800;
  font-size: var(--fs-h2);
  margin-bottom: 0;
}

.live-examples-section .section-head p {
  color: #5b677a;
  font-size: var(--fs-subtitle);
}

.live-examples-section .carousel-container {
  padding-top: 6px;
  padding-bottom: 6px;
}

.clients-carousel-section {
  background: #f6f8fa;
}

.clients-head {
  text-align: center;
  margin-bottom: 18px;
}

.clients-head-mark {
  width: 62px;
  height: 6px;
  border-radius: 999px;
  margin: 0 auto 14px;
  display: block;
  background: linear-gradient(90deg, #1db99b, #2bd88e);
}

.clients-carousel-section .carousel-wrapper {
  margin-bottom: 0;
}

.clients-carousel-section .carousel-container {
  padding-top: 6px;
  padding-bottom: 6px;
}

.clients-carousel-section .carousel-track {
  align-items: center;
}

.clients-carousel-section .carousel-item {
  display: flex;
}

.client-logo-card {
  width: 100%;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s ease;
}

.client-logo-card:hover {
  transform: translateY(-3px);
}

.client-logo-card img {
  max-width: 98%;
  max-height: 98%;
  object-fit: contain;
  border-radius: 12px;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: clamp(28px, 3.2vw, 40px);
}

.carousel-container {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  direction: ltr;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-item {
  flex-shrink: 0;
  display: flex;
  /* width is set dynamically by JS */
}

.live-examples-section .carousel-track {
  align-items: flex-start;
}

.live-examples-section .carousel-item {
  display: block;
}

.example-card {
  background: #ffffff;
  border-radius: 16px;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid #e6eef1;
  box-shadow: 0 2px 8px rgba(31, 42, 55, 0.06);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  justify-items: center;
  text-align: center;
  transition: all 0.22s ease;
}

.example-content {
  display: grid;
  gap: 6px;
  align-content: start;
}

.example-card:hover {
  border-color: #19c6c3;
  box-shadow: 0 8px 24px rgba(25, 198, 195, 0.12);
  transform: translateY(-3px);
}

.example-logo {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
}

.example-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.example-content h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin: 0;
  color: #111;
  line-height: 1.4;
}

.example-content p {
  font-size: var(--fs-body);
  color: #5b677a;
  margin: 0;
  line-height: 1.4;
}

.btn-example {
  background: #19c6c3;
  color: #ffffff;
  padding: clamp(8px, 1.2vw, 12px) clamp(14px, 2%,18px);
  border-radius: 8px;
  font-size: clamp(12px, 1.6vw, 14px);
  font-weight: 600;
  transition: all 0.22s ease;
  width: 100%;
  text-align: center;
  display: inline-block;
  margin-top: 6px;
}

.btn-example:hover {
  background: #117879;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 198, 195, 0.25);
}

.carousel-btn {
  position: relative;
  z-index: 10;
  background: #ffffff;
  border: 1px solid #e6eef1;
  color: #19c6c3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: #19c6c3;
  color: #ffffff;
  border-color: #19c6c3;
  transform: scale(1.08);
}

.carousel-btn:active {
  transform: scale(0.96);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.ios-safari .carousel-btn svg {
  display: none;
}

.ios-safari .carousel-btn::before {
  display: block;
  font-family: "Arial", sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  color: currentColor;
}

.ios-safari .carousel-btn-prev::before {
  content: "‹";
}

.ios-safari .carousel-btn-next::before {
  content: "›";
}

.examples-cta {
  text-align: center;
}

.btn-outline-examples {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid #19c6c3;
  color: #19c6c3;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(14px, 2vw, 16px);
  transition: all 0.22s ease;
  cursor: pointer;
}

.btn-outline-examples:hover {
  background: #19c6c3;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(25, 198, 195, 0.25);
}

@media (max-width: 900px) {
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 561px) and (max-width: 900px) {
  .live-examples-section .carousel-track {
    align-items: stretch;
  }

  .live-examples-section .carousel-item {
    display: flex;
  }

  .live-examples-section .example-card {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 760px) {
  .carousel-wrapper {
    gap: 8px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
  }

  .example-card {
    padding: 16px;
  }

  .example-logo {
    height: 88px;
    padding: 10px;
  }

  .example-logo img {
    max-height: 70px;
  }

  .btn-outline-examples {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .solution-steps {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .step-content {
    height: auto;
  }

  .step-line {
    height: 40px;
  }

  .step-card {
    height: 220px;
  }
}
