:root {
  --bg: #edf3fa;
  --page: #f7fbff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --text: #151d28;
  --muted: #637282;
  --line: rgba(91, 113, 137, 0.2);
  --blue: #1598ed;
  --blue-dark: #075c9c;
  --gold: #ffb400;
  --green: #19a982;
  --ink: #101722;
  --danger: #ef4444;
  --shadow: 0 22px 60px rgba(34, 49, 67, 0.13);
  --soft-shadow: 0 12px 32px rgba(34, 49, 67, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: 'Vazirmatn', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 7%, rgba(21, 152, 237, 0.13), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(255, 180, 0, 0.17), transparent 22%),
    linear-gradient(180deg, var(--page) 0%, var(--bg) 62%, #f8fbff 100%);
  font-weight: 400;
  line-height: 1.8;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font-family: inherit;
}

table {
  font-family: inherit;
}

button {
  color: inherit;
}

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

.section {
  padding: 54px 0;
}

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 8px;
  font-weight: 900;
  font-size: 16px;
  color: var(--ink);
  white-space: nowrap;
}

.brand-logo {
  width: 52px;
  height: 52px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(120, 82, 9, 0.2));
}

.brand-text {
  display: none;
}

.nav-pill,
.nav-actions {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  place-items: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(21, 152, 237, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 18px rgba(34, 49, 67, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  border-radius: 99px;
  background: #071826;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

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

.nav-pill {
  min-height: 58px;
  padding: 4px 24px;
  gap: 26px;
  border: 1px solid rgba(21, 152, 237, 0.26);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(218, 228, 240, 0.72));
  box-shadow: inset 0 -1px 0 rgba(21, 152, 237, 0.22), 0 12px 30px rgba(35, 50, 68, 0.08);
}

.nav-actions {
  gap: 10px;
}

.nav-pill > a:not(.brand) {
  padding: 8px 0;
  color: #071826;
  font-size: 14px;
  font-weight: 800;
}

.nav-pill > a:not(.brand):hover {
  color: var(--blue-dark);
}

.primary-link,
.secondary-link,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-link,
.btn-primary {
  color: #071826;
  background: var(--gold);
  box-shadow: 0 10px 24px rgba(255, 180, 0, 0.24);
}

.primary-link {
  min-width: 118px;
  min-height: 38px;
  padding: 8px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--gold);
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(255, 180, 0, 0.22);
}

.secondary-link {
  min-width: 118px;
  min-height: 38px;
  padding: 8px 18px;
  border-color: rgba(21, 152, 237, 0.3);
  border-radius: 10px;
  color: #071826;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 18px rgba(34, 49, 67, 0.08);
  font-size: 13px;
}

.btn:hover,
.primary-link:hover,
.secondary-link:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--line);
  color: var(--text);
}

.btn-light {
  color: #101722;
  background: #fff;
}

.hero {
  min-height: calc(100vh - 66px);
  display: grid;
  align-items: center;
  padding-top: 28px;
}

.hero-grid,
.split,
.city-grid,
.story-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 38px;
}

.eyebrow {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: var(--gold);
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  max-width: 620px;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.28;
}

h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

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

.hero-copy p {
  max-width: 590px;
  font-size: 15px;
}

.hero-actions,
.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.metric-row {
  gap: 12px;
}

.metric-row div {
  min-width: 104px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
}

.metric-row strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.metric-row span {
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 480px;
  isolation: isolate;
}

.strategy-visual {
  display: grid;
  place-items: center;
}

.hero-visual.strategy-visual {
  min-height: auto;
  padding-block: 14px;
}

.strategy-visual::before {
  display: none;
}

.hero-illustration {
  width: min(100%, 620px);
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 48px rgba(21, 152, 237, 0.16));
}

.strategy-visual::after {
  content: "";
  position: absolute;
  inset: 64px 30px 34px 22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 152, 237, 0.18), rgba(21, 152, 237, 0.08) 48%, transparent 70%);
  z-index: -2;
}

.visual-arc {
  position: absolute;
  width: 270px;
  height: 190px;
  border-top: 3px solid currentColor;
  border-radius: 50%;
  opacity: 0.7;
  z-index: -1;
}

.arc-blue {
  color: var(--blue);
  top: 34px;
  left: 28px;
  transform: rotate(-18deg);
}

.arc-gold {
  color: var(--gold);
  right: 28px;
  bottom: 62px;
  transform: rotate(160deg);
}

.strategy-screen {
  position: absolute;
  right: 126px;
  top: 142px;
  width: 315px;
  height: 205px;
  border: 12px solid #2097dc;
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(180deg, #eaf6ff, #bfe1f7);
  box-shadow: 0 28px 58px rgba(21, 152, 237, 0.2);
}

.strategy-screen::after {
  content: "";
  position: absolute;
  width: 116px;
  height: 16px;
  right: 96px;
  bottom: -38px;
  border-radius: 6px;
  background: #1988c9;
  box-shadow: 0 22px 0 -2px #0f6faf;
}

.strategy-target {
  position: absolute;
  inset: 30px 70px auto auto;
  width: 156px;
  height: 156px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
}

.target-ring {
  position: absolute;
  border-radius: 50%;
}

.ring-one {
  inset: 22px;
  background: #fff;
}

.ring-two {
  inset: 42px;
  background: #ffbf2f;
}

.ring-three {
  inset: 60px;
  background: #fff;
}

.strategy-target b {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 15px;
}

.target-arrow {
  position: absolute;
  width: 150px;
  height: 8px;
  right: 124px;
  top: 92px;
  border-radius: 99px;
  background: #2e78dd;
  transform: rotate(-45deg);
  transform-origin: right center;
  z-index: 5;
}

.target-arrow::before {
  content: "";
  position: absolute;
  left: -20px;
  top: -9px;
  border-right: 24px solid #2e78dd;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}

.target-arrow::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -7px;
  width: 38px;
  height: 22px;
  background: #1c60bd;
  clip-path: polygon(0 50%, 100% 0, 74% 50%, 100% 100%);
}

.screen-panel {
  position: absolute;
  right: 22px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.screen-panel span {
  width: 52px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.chart-donut {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 46%, var(--gold) 0 72%, var(--green) 0);
  position: relative;
}

.chart-donut::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: #fff;
}

.visual-person,
.standing-person,
.idea-card,
.gold-card,
.price-card,
.mobile-report {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.visual-person {
  width: 100px;
  height: 130px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.visual-person .head,
.standing-person .head {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffb39e;
}

.visual-person .body,
.standing-person .body {
  position: absolute;
  border-radius: 16px 16px 8px 8px;
  background: var(--gold);
}

.person-top {
  right: 78px;
  top: 64px;
}

.person-top .head {
  right: 42px;
  top: 0;
}

.person-top .body {
  right: 30px;
  top: 28px;
  width: 58px;
  height: 66px;
}

.laptop-mini {
  position: absolute;
  right: 0;
  top: 46px;
  width: 64px;
  height: 42px;
  border-radius: 6px;
  background: #54aeea;
  transform: rotate(-4deg);
}

.person-bottom {
  right: 36px;
  bottom: 38px;
}

.person-bottom .head {
  right: 36px;
  top: 0;
}

.person-bottom .body {
  right: 24px;
  top: 28px;
  width: 58px;
  height: 76px;
  background: #2f75d6;
}

.table-mini {
  position: absolute;
  right: 0;
  top: 72px;
  width: 96px;
  height: 8px;
  border-radius: 99px;
  background: var(--blue);
}

.standing-person {
  left: 118px;
  bottom: 28px;
  width: 70px;
  height: 170px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.standing-person .head {
  right: 22px;
  top: 0;
}

.standing-person .body {
  right: 12px;
  top: 28px;
  width: 46px;
  height: 104px;
  background: #1f66d1;
}

.pointer {
  position: absolute;
  right: 50px;
  top: 54px;
  width: 52px;
  height: 5px;
  border-radius: 99px;
  background: #7c4d24;
  transform: rotate(-35deg);
}

.idea-card {
  right: 222px;
  top: 30px;
  padding: 10px 16px;
  color: var(--blue-dark);
  font-weight: 900;
}

.idea-card b,
.idea-card span,
.gold-card b,
.price-card b,
.price-card strong,
.price-card span {
  display: block;
}

.idea-card span {
  color: var(--muted);
  font-size: 11px;
}

.gold-card {
  right: 0;
  top: 170px;
  width: 128px;
  height: 112px;
  display: grid;
  place-items: center;
  padding: 14px;
}

.gold-block {
  width: 58px;
  height: 48px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 46%, rgba(255, 255, 255, 0.65) 46% 54%, transparent 54%),
    linear-gradient(135deg, var(--gold), #ffd05c);
}

.gold-card b {
  color: var(--muted);
  font-size: 12px;
}

.price-card {
  left: 16px;
  bottom: 70px;
  width: 180px;
  padding: 14px;
}

.price-card strong {
  color: var(--blue-dark);
  font-size: 19px;
  margin: 4px 0;
}

.price-card b,
.price-card span {
  color: var(--muted);
  font-size: 12px;
}

.mobile-report {
  left: 28px;
  top: 180px;
  width: 84px;
  height: 148px;
  padding: 18px 14px;
  border: 5px solid var(--blue);
}

.mobile-report span {
  display: block;
  height: 6px;
  width: 34px;
  margin: 0 auto 24px;
  border-radius: 99px;
  background: #d9e5ef;
}

.mobile-report i {
  display: inline-block;
  width: 10px;
  margin-left: 5px;
  border-radius: 5px 5px 0 0;
  vertical-align: bottom;
}

.mobile-report i:nth-of-type(1) { height: 34px; background: var(--green); }
.mobile-report i:nth-of-type(2) { height: 48px; background: var(--gold); }
.mobile-report i:nth-of-type(3) { height: 64px; background: var(--blue); }

.mobile-report b {
  display: block;
  width: 44px;
  height: 8px;
  margin: 18px auto 0;
  border-radius: 99px;
  background: #ffd05c;
}

.idea-bulb {
  position: absolute;
  left: 126px;
  top: 110px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 12px rgba(255, 180, 0, 0.14);
}

.idea-bulb::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -8px;
  width: 15px;
  height: 12px;
  border-radius: 2px;
  background: #fff;
}

.product-strip {
  padding-top: 32px;
}

.mockup {
  border: 1px solid rgba(91, 114, 138, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.laptop {
  position: relative;
  min-height: 360px;
}

.laptop::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  bottom: -16px;
  height: 18px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #cbd6e2, #f7f9fb);
}

.platform-preview {
  overflow: visible;
  border: 8px solid #151d28;
  border-radius: 24px 24px 10px 10px;
  background: #fff;
}

.window-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: #edf2f7;
  direction: ltr;
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #bdc7d2;
}

.mock-grid {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 320px;
  overflow: hidden;
  border-radius: 0 0 4px 4px;
}

.side-menu {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 22px;
  background: #f5f8fb;
  border-left: 1px solid #e3eaf1;
}

.side-logo {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b2b49, var(--blue-dark));
}

.side-menu i {
  width: 100%;
  height: 9px;
  border-radius: 99px;
  background: #d8e1ea;
}

.side-menu i:nth-child(3),
.side-menu i:nth-child(5) {
  width: 70%;
}

.mock-main {
  padding: 22px;
  background:
    radial-gradient(circle at 16% 12%, rgba(21, 152, 237, 0.08), transparent 26%),
    linear-gradient(180deg, #fff, #fbfdff);
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.mock-topbar span {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.mock-topbar b {
  width: 46%;
  min-height: 28px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #9aa8b8;
  background: #eef3f7;
  font-size: 11px;
  font-weight: 700;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 14px;
}

.mock-cards span {
  min-height: 82px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(21, 152, 237, 0.14), #fff);
  border: 1px solid #e5edf4;
  padding: 14px;
}

.mock-cards b,
.mock-cards strong,
.mock-cards small {
  display: block;
}

.mock-cards b {
  color: var(--muted);
  font-size: 12px;
}

.mock-cards strong {
  color: var(--text);
  font-size: 16px;
  margin-top: 6px;
}

.mock-cards small {
  color: var(--muted);
  font-size: 10px;
  margin-top: 4px;
}

.platform-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.platform-chart,
.platform-list {
  min-height: 150px;
  padding: 16px;
  border: 1px solid #e8eef5;
  border-radius: 8px;
  background: #f8fafc;
}

.mini-title {
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}

.mini-bars-pro {
  height: 98px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 8px 4px 0;
  background: repeating-linear-gradient(0deg, transparent 0 24px, rgba(98, 116, 135, 0.12) 25px);
}

.mini-bars-pro i {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: var(--blue);
}

.mini-bars-pro i:nth-child(1) { height: 52%; background: var(--gold); }
.mini-bars-pro i:nth-child(2) { height: 78%; }
.mini-bars-pro i:nth-child(3) { height: 44%; background: var(--green); }
.mini-bars-pro i:nth-child(4) { height: 92%; }
.mini-bars-pro i:nth-child(5) { height: 64%; background: var(--gold); }

.platform-list {
  display: grid;
  gap: 10px;
}

.platform-list div {
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #ebf1f6;
}

.platform-list b,
.platform-list span {
  display: block;
}

.platform-list b {
  color: var(--text);
  font-size: 12px;
}

.platform-list span {
  color: var(--green);
  font-size: 11px;
  margin-top: 2px;
}

.preview-badge {
  position: absolute;
  z-index: 3;
  padding: 11px 14px;
  border: 1px solid rgba(255, 180, 0, 0.4);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(34, 49, 67, 0.14);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.badge-price {
  right: -22px;
  top: 92px;
}

.badge-print {
  left: -22px;
  bottom: 78px;
}

.mock-table i {
  display: block;
  height: 18px;
  margin-bottom: 12px;
  border-radius: 99px;
  background: #e9eef4;
}

.mock-table i:nth-child(2) {
  width: 82%;
}

.mock-table i:nth-child(3) {
  width: 91%;
}

.mock-table i:nth-child(4) {
  width: 74%;
}

.section-copy p {
  max-width: 540px;
}

.demo-steps {
  position: relative;
  overflow: hidden;
  padding: 46px 0 52px;
  background:
    radial-gradient(circle at 50% 0, rgba(21, 152, 237, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(247, 251, 255, 0.84), rgba(226, 234, 245, 0.88), rgba(247, 251, 255, 0.84));
}

.demo-steps-heading {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-bottom: 46px;
  text-align: center;
}

.demo-steps-heading h2 {
  margin: 0;
  color: #071826;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
}

.demo-steps-heading h2 span {
  color: var(--blue);
}

.demo-steps-heading .btn {
  min-width: 186px;
  min-height: 42px;
  border-radius: 10px;
  font-size: 13px;
}

.demo-steps-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.demo-steps-row::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 16.7%;
  left: 16.7%;
  height: 72px;
  border-top: 1px dashed rgba(255, 180, 0, 0.52);
  border-radius: 50%;
  transform: translateY(4px);
  pointer-events: none;
}

.demo-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.demo-step-icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 12px;
  background: #071826;
  box-shadow:
    0 0 0 16px rgba(255, 255, 255, 0.42),
    0 14px 28px rgba(7, 24, 38, 0.18),
    0 0 22px rgba(21, 152, 237, 0.34);
}

.request-icon::before {
  content: "";
  width: 18px;
  height: 10px;
  border-left: 3px solid #27e569;
  border-bottom: 3px solid #27e569;
  transform: rotate(-45deg) translate(1px, -2px);
}

.form-icon::before {
  content: "";
  width: 23px;
  height: 28px;
  border: 3px solid var(--gold);
  border-radius: 6px;
}

.form-icon::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 17px;
  width: 16px;
  height: 14px;
  background:
    linear-gradient(var(--gold), var(--gold)) 0 1px / 9px 3px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 0 7px / 16px 3px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 0 13px / 16px 3px no-repeat;
  box-shadow: 10px 0 0 -7px var(--gold), 10px 6px 0 -7px var(--gold), 10px 12px 0 -7px var(--gold);
}

.signup-icon::before {
  content: "";
  position: absolute;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
}

.signup-icon::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 9px;
  width: 28px;
  height: 17px;
  border-radius: 16px 16px 7px 7px;
  background: var(--blue);
}

.demo-step h3 {
  margin-bottom: 9px;
  color: #071826;
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 900;
  line-height: 1.25;
}

.demo-step p {
  max-width: 330px;
  margin: 0;
  color: #071826;
  font-size: 13px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.logo-row span {
  min-height: 78px;
  display: grid;
  place-items: center;
  color: #2e3b49;
  background: rgba(255, 255, 255, 0.76);
  font-weight: 900;
  text-align: center;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.segment-grid,
.feature-grid,
.process-grid,
.testimonial-grid {
  display: grid;
  gap: 16px;
}

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

.segments .segment-grid {
  gap: 24px;
}

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

#features .feature-grid {
  gap: 24px;
}

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

.segment-grid article,
.feature-card,
.testimonial-grid article,
.value-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.featured-segment,
.feature-card.featured,
.featured-quote {
  border-color: rgba(21, 152, 237, 0.58) !important;
  box-shadow: 0 22px 48px rgba(21, 152, 237, 0.14) !important;
}

.feature-card {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding: 24px 20px;
  border-color: rgba(91, 113, 137, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(34, 49, 67, 0.09);
  text-align: center;
}

.feature-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.6;
}

.feature-card.featured {
  background: #ffffff;
}

.segment-icon {
  width: 36px;
  height: 36px;
  display: inline-block;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #e7eef6;
  position: relative;
}

.feature-icon {
  width: 74px;
  height: 74px;
  display: block;
  flex: 0 0 auto;
  margin: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.segment-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 4px;
  border: 2px solid var(--blue);
}

.segment-icon.shop::before {
  border-color: var(--gold);
}

.segment-icon.wholesale::before {
  transform: rotate(45deg);
  border-color: var(--blue);
}

.segment-icon.supply::before {
  border-radius: 50%;
  border-color: var(--green);
}

.segments .segment-grid article {
  min-height: 205px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding: 26px 24px;
  border-color: rgba(91, 113, 137, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(34, 49, 67, 0.09);
  text-align: center;
}

.segments .segment-grid article h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.6;
}

.segments .segment-grid article p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
}

.segments .featured-segment {
  background: #ffffff;
}

.segments .segment-icon {
  width: 74px;
  height: 74px;
  display: block;
  flex: 0 0 auto;
  margin: 0;
  border-radius: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.segments .segment-icon::before {
  display: none;
}

.segments .segment-icon.shop {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 34L23 18H57L62 34H18Z' stroke='%23075F43' stroke-width='3.5' stroke-linejoin='round'/%3E%3Cpath d='M23 34V62H57V34M31 62V47H49V62' stroke='%23075F43' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 34C22 39 29 39 29 34C29 39 36 39 36 34C36 39 44 39 44 34C44 39 51 39 51 34C51 39 58 39 58 34' stroke='%23D5AA2C' stroke-width='3.2' stroke-linecap='round'/%3E%3Cpath d='M31 18L28 34M40 18V34M49 18L52 34' stroke='%23075F43' stroke-width='2.9' stroke-linecap='round'/%3E%3Ccircle cx='52' cy='55' r='10' fill='white' stroke='%23D5AA2C' stroke-width='3.2'/%3E%3Cpath d='M48 55C50 57.5 54.2 57.5 56 55.2' stroke='%23D5AA2C' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.segments .segment-icon.wholesale {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 52H50C56 52 61 47 61 41V25' stroke='%23075F43' stroke-width='3.5' stroke-linecap='round'/%3E%3Cpath d='M61 25L53 33M61 25L69 33' stroke='%23075F43' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M59 28H30C24 28 19 33 19 39V55' stroke='%23D5AA2C' stroke-width='3.5' stroke-linecap='round'/%3E%3Cpath d='M19 55L27 47M19 55L11 47' stroke='%23D5AA2C' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M33 38H47L53 52H27L33 38Z' stroke='%23075F43' stroke-width='3.2' stroke-linejoin='round'/%3E%3Cpath d='M36 38L32 52M44 38L48 52' stroke='%23D5AA2C' stroke-width='2.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.segments .segment-icon.supply {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 48L31 28H49L58 48L40 64L22 48Z' stroke='%23075F43' stroke-width='3.4' stroke-linejoin='round'/%3E%3Cpath d='M31 28L36 48L40 64L44 48L49 28M22 48H58M33 48H47' stroke='%23D5AA2C' stroke-width='3.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18 22H27M53 22H62M40 13V22' stroke='%23D5AA2C' stroke-width='3.1' stroke-linecap='round'/%3E%3Cpath d='M18 58C24 65 32 69 40 69C48 69 56 65 62 58' stroke='%23075F43' stroke-width='3.1' stroke-linecap='round'/%3E%3C/svg%3E");
}

.feature-icon.price {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 50V26C18 22.7 20.7 20 24 20H56C59.3 20 62 22.7 62 26V50' stroke='%23075F43' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M25 36H33L38 31L44 40L50 32H56' stroke='%23D5AA2C' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 55H65' stroke='%23075F43' stroke-width='3.4' stroke-linecap='round'/%3E%3Ccircle cx='48' cy='56' r='13' fill='white' stroke='%23D5AA2C' stroke-width='3.4'/%3E%3Cpath d='M43 57C45.5 60 51 60.2 54 57.5' stroke='%23D5AA2C' stroke-width='2.7' stroke-linecap='round'/%3E%3C/svg%3E");
}

.feature-icon.supply {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 49L29 29H51L60 49L40 66L20 49Z' stroke='%23075F43' stroke-width='3.4' stroke-linejoin='round'/%3E%3Cpath d='M29 29L36 49L40 66L44 49L51 29M20 49H60M32 49H48' stroke='%23D5AA2C' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M40 15V22M28 19L24 24M52 19L56 24' stroke='%23075F43' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.feature-icon.store {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 35L23 18H57L62 35H18Z' stroke='%23075F43' stroke-width='3.4' stroke-linejoin='round'/%3E%3Cpath d='M23 35V62H57V35M32 62V47H48V62' stroke='%23075F43' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 35C22 40 29 40 29 35C29 40 36 40 36 35C36 40 44 40 44 35C44 40 51 40 51 35C51 40 58 40 58 35' stroke='%23D5AA2C' stroke-width='3.2' stroke-linecap='round'/%3E%3Cpath d='M31 18L28 35M40 18V35M49 18L52 35' stroke='%23075F43' stroke-width='2.9' stroke-linecap='round'/%3E%3C/svg%3E");
}

.feature-icon.customer {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 18H55C58 18 60 20 60 23V62C60 65 58 67 55 67H25C22 67 20 65 20 62V23C20 20 22 18 25 18Z' stroke='%23075F43' stroke-width='3.4' stroke-linejoin='round'/%3E%3Cpath d='M32 18C32.5 13.5 36 11 40 11C44 11 47.5 13.5 48 18' stroke='%23075F43' stroke-width='3.4' stroke-linecap='round'/%3E%3Ccircle cx='40' cy='35' r='7' stroke='%23D5AA2C' stroke-width='3.2'/%3E%3Cpath d='M29 52C32 45 48 45 51 52' stroke='%23D5AA2C' stroke-width='3.2' stroke-linecap='round'/%3E%3Cpath d='M30 58H50' stroke='%23075F43' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.feature-icon.finance {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='16' y='20' width='42' height='33' rx='4' stroke='%23075F43' stroke-width='3.5'/%3E%3Cpath d='M25 31H49M25 40H43' stroke='%23075F43' stroke-width='3.2' stroke-linecap='round'/%3E%3Cpath d='M54 27H60C63 27 65 29 65 32V57C65 60 63 62 60 62H27' stroke='%23D5AA2C' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='53' cy='51' r='13' fill='white' stroke='%23D5AA2C' stroke-width='3.5'/%3E%3Cpath d='M47 50C49.4 54.2 56.2 54.2 59 50.4' stroke='%23D5AA2C' stroke-width='2.8' stroke-linecap='round'/%3E%3Cpath d='M49 45.5H57' stroke='%23D5AA2C' stroke-width='2.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.feature-icon.stock {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 58H57M28 46H52M33 34H47' stroke='%23075F43' stroke-width='3.4' stroke-linecap='round'/%3E%3Cpath d='M40 21V62' stroke='%23075F43' stroke-width='3.4' stroke-linecap='round'/%3E%3Cpath d='M25 58L33 34H47L55 58H25Z' stroke='%23D5AA2C' stroke-width='3.3' stroke-linejoin='round'/%3E%3Cpath d='M20 40C20 29 28 21 38 20M60 40C60 29 52 21 42 20' stroke='%23075F43' stroke-width='3.1' stroke-linecap='round'/%3E%3Cpath d='M40 14L40 22M34 19L40 14L46 19' stroke='%23075F43' stroke-width='3.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='40' cy='58' r='4' fill='white' stroke='%23D5AA2C' stroke-width='3'/%3E%3C/svg%3E");
}

.feature-icon.fast {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 24H56M56 24L49 17M56 24L49 31' stroke='%23075F43' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M55 56H24M24 56L31 49M24 56L31 63' stroke='%23D5AA2C' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='31' cy='41' r='11' fill='white' stroke='%23D5AA2C' stroke-width='3.4'/%3E%3Cpath d='M26 41C28.2 44.5 33.7 44.5 36 41.3' stroke='%23D5AA2C' stroke-width='2.7' stroke-linecap='round'/%3E%3Cpath d='M43 35H57L52 49H38L43 35Z' stroke='%23075F43' stroke-width='3.4' stroke-linejoin='round'/%3E%3Cpath d='M47 35L42 49M52 35L47 49' stroke='%23075F43' stroke-width='2.7' stroke-linecap='round'/%3E%3C/svg%3E");
}

.feature-icon.invoice {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 15H57V65L53 62L49 65L45 62L41 65L37 62L33 65L29 62L25 65V15Z' stroke='%23075F43' stroke-width='3.4' stroke-linejoin='round'/%3E%3Cpath d='M34 28H48M34 39H52M34 50H49' stroke='%23075F43' stroke-width='3.2' stroke-linecap='round'/%3E%3Cpath d='M34 22H41' stroke='%23D5AA2C' stroke-width='3.2' stroke-linecap='round'/%3E%3Cpath d='M57 15H61C63 15 65 17 65 19V27H57' stroke='%23D5AA2C' stroke-width='3.2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.dashboard-section {
  text-align: center;
}

.center-block .btn {
  margin-bottom: 28px;
}

.dashboard-wrap {
  position: relative;
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 8px 0 42px;
}

.dashboard-laptop {
  position: relative;
  width: min(1040px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 28px 76px rgba(34, 49, 67, 0.12);
}

.dashboard-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
}

.dashboard-screen {
  position: relative;
  overflow: hidden;
  border: 10px solid #151d28;
  border-radius: 30px 30px 12px 12px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(34, 49, 67, 0.2);
  text-align: initial;
}

.laptop-base {
  width: 112%;
  height: 26px;
  margin: -1px -6% 0;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(90deg, #101820, #c9d3dd 14%, #eef3f7 48%, #8d99a5 82%, #101820);
  box-shadow: 0 16px 28px rgba(34, 49, 67, 0.18);
}

.laptop-base::before {
  content: "";
  display: block;
  width: 190px;
  height: 18px;
  margin: 0 auto;
  border-radius: 0 0 18px 18px;
  background: rgba(38, 48, 59, 0.45);
}

.callout {
  position: absolute;
  z-index: 4;
  padding: 13px 18px;
  border: 1px solid rgba(255, 180, 0, 0.34);
  border-radius: 8px;
  color: #122033;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(34, 49, 67, 0.14);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.callout-right {
  right: -28px;
  top: 42%;
}

.callout-left {
  left: -28px;
  top: 38%;
}

.callout-bottom {
  left: 28%;
  bottom: 22px;
}

.dashboard-layout {
  min-height: 520px;
  display: grid;
  grid-template-columns: 150px 1fr;
  background: #fff;
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 22px;
  background: #f4f7fb;
  border-left: 1px solid #e2e9f0;
}

.dash-logo {
  width: 42px;
  height: 42px;
  display: block;
  margin-bottom: 8px;
  object-fit: contain;
  filter: drop-shadow(0 7px 10px rgba(120, 82, 9, 0.18));
}

.dash-sidebar b {
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 99px;
  background: #d4dde7;
}

.dash-sidebar b:nth-of-type(2),
.dash-sidebar b:nth-of-type(4) {
  width: 72%;
}

.dash-user {
  width: 70px;
  height: 28px;
  margin-top: auto;
  border-radius: 999px;
  background: #dbe4ed;
}

.dash-content {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(21, 152, 237, 0.04), transparent 34%),
    #fff;
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dash-topbar span {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.dash-topbar i {
  width: 180px;
  height: 28px;
  border-radius: 999px;
  background: #eef3f7;
}

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

.dash-stats span {
  display: block;
  min-height: 88px;
  padding: 16px;
  border: 1px solid #dfe9f2;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(21, 152, 237, 0.12), rgba(255, 255, 255, 0.96));
}

.dash-stats b,
.dash-stats strong {
  display: block;
}

.dash-stats b {
  color: var(--muted);
  font-size: 12px;
}

.dash-stats strong {
  color: var(--text);
  font-size: 19px;
}

.dash-main-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 14px;
  margin: 16px 0;
}

.dash-panel {
  min-height: 230px;
  padding: 18px;
  border-radius: 8px;
  background: #f7f9fb;
  border: 1px solid #e8eef5;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.panel-title b {
  color: var(--text);
  font-size: 13px;
}

.panel-title span {
  color: var(--muted);
  font-size: 11px;
}

.chart-donut {
  width: 140px;
  height: 140px;
  margin: 0 auto;
}

.chart-donut::after {
  inset: 33px;
}

.chart-bars {
  min-height: 150px;
  display: flex;
  align-items: end;
  gap: 15px;
  padding: 18px 12px 6px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(98, 116, 135, 0.14) 35px),
    #fff;
}

.chart-bars i {
  flex: 1;
  max-width: 22px;
  border-radius: 8px 8px 0 0;
  background: var(--blue);
  box-shadow: 0 10px 18px rgba(21, 152, 237, 0.16);
}

.chart-bars i:nth-child(1) { height: 48%; background: var(--green); }
.chart-bars i:nth-child(2) { height: 82%; }
.chart-bars i:nth-child(3) { height: 60%; background: var(--gold); }
.chart-bars i:nth-child(4) { height: 94%; }
.chart-bars i:nth-child(5) { height: 70%; background: var(--green); }
.chart-bars i:nth-child(6) { height: 56%; background: var(--gold); }
.chart-bars i:nth-child(7) { height: 76%; }

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
}

.chart-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.chart-legend span:nth-child(2) i {
  background: var(--gold);
}

.chart-legend span:nth-child(3) i {
  background: var(--green);
}

.dash-table {
  overflow: hidden;
  border: 1px solid #e8eef5;
  border-radius: 8px;
  background: #fff;
}

.dash-table div {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.8fr;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #edf2f7;
  color: var(--muted);
  font-size: 12px;
}

.dash-table div:last-child {
  border-bottom: 0;
}

.dash-table b {
  color: var(--text);
}

.dash-table em {
  font-style: normal;
  color: var(--green);
  font-weight: 800;
}

.cities {
  padding-top: 48px;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.city-tags span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
}

.map-card {
  position: relative;
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 180, 0, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.iran-map-card {
  display: grid;
  place-items: center;
  padding: 26px;
}

.iran-map {
  width: min(100%, 520px);
  height: auto;
  display: block;
  overflow: visible;
}

.iran-shape {
  fill: transparent;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 12px 20px rgba(255, 180, 0, 0.16));
}

.city-dot {
  fill: var(--gold);
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 7;
  filter: drop-shadow(0 6px 14px rgba(255, 180, 0, 0.42));
}

.erp-story {
  padding-top: 42px;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.value-list b,
.value-list span {
  display: block;
}

.value-list span {
  color: var(--muted);
  font-size: 13px;
}

.quote-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.quote-top span {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.quote-top b {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0;
}

.testimonial-grid strong {
  font-size: 13px;
}

.testimonial-grid article {
  padding: 22px;
}

.testimonial-grid article p {
  font-size: 14px;
  line-height: 1.9;
}

.demo-banner {
  padding-top: 34px;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 32px;
  border-radius: 8px;
  color: #fff;
  background: #045433;
  box-shadow: var(--shadow);
}

.banner h2,
.banner p {
  color: #fff;
}

.banner .eyebrow {
  color: #ffdd75;
}

.customer-login-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 180, 0, 0.2), transparent 22%),
    radial-gradient(circle at 80% 78%, rgba(21, 152, 237, 0.18), transparent 26%),
    linear-gradient(135deg, #fbfdff 0%, #eaf4ff 58%, #f8fbff 100%);
}

.login-wave {
  position: absolute;
  width: 760px;
  height: 360px;
  border: 1px solid transparent;
  border-radius: 50%;
  opacity: 0.48;
  pointer-events: none;
}

.login-wave::before,
.login-wave::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: repeating-radial-gradient(ellipse at center, transparent 0 10px, currentColor 11px 12px);
  transform: rotate(-12deg);
}

.login-wave::after {
  inset: 28px;
  opacity: 0.42;
  transform: rotate(12deg);
}

.login-wave-gold {
  top: -108px;
  left: -120px;
  color: rgba(255, 180, 0, 0.46);
}

.login-wave-blue {
  right: -190px;
  bottom: -138px;
  color: rgba(21, 152, 237, 0.34);
}

.login-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  align-items: center;
  gap: 42px;
}

.login-copy {
  max-width: 460px;
}

.login-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(21, 152, 237, 0.2);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 900;
}

.login-copy h2 {
  max-width: 430px;
  margin-bottom: 12px;
  color: #071826;
  font-size: clamp(24px, 3vw, 36px);
}

.login-copy p {
  max-width: 440px;
  color: #4d6176;
}

.customer-login-card {
  width: min(640px, 100%);
  justify-self: center;
  padding: 28px 26px 26px;
  border: 1px solid rgba(21, 152, 237, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(236, 246, 255, 0.84)),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 80px rgba(35, 50, 68, 0.16);
  backdrop-filter: blur(18px);
}

.customer-login-card h3 {
  margin: 0 0 18px;
  color: #071826;
  text-align: center;
  font-size: 21px;
  font-weight: 900;
}

.login-modal {
  width: min(620px, 100%);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.login-modal .modal-close {
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
}

.login-modal .customer-login-card {
  width: 100%;
  padding: 34px 30px 30px;
}

.login-modal .login-kicker {
  margin-right: auto;
  margin-left: auto;
}

.login-modal h2 {
  margin: 0 0 22px;
  color: #071826;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.login-divider::before,
.login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(91, 113, 137, 0.24);
}

.login-divider span {
  min-width: max-content;
  padding: 2px 10px;
  border-radius: 4px;
  background: #edf4fb;
}

.customer-login-form {
  display: grid;
  gap: 18px;
}

.customer-login-form label {
  display: grid;
  gap: 8px;
  color: #1a2736;
  font-size: 13px;
  font-weight: 900;
}

.customer-login-form input {
  width: 100%;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid rgba(91, 113, 137, 0.28);
  border-radius: 10px;
  color: #101722;
  background: rgba(255, 255, 255, 0.86);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.customer-login-form input:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(21, 152, 237, 0.12);
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-left: 52px;
}

.password-toggle {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.password-toggle::before {
  content: "";
  width: 18px;
  height: 12px;
  border: 2px solid #637282;
  border-radius: 50%;
}

.password-toggle::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #637282;
}

.password-toggle.is-visible::before {
  border-color: var(--blue-dark);
}

.password-toggle.is-visible::after {
  background: var(--blue-dark);
}

.forgot-link {
  justify-self: end;
  color: #d39500;
  font-size: 12px;
  font-weight: 900;
}

.login-submit {
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0c78d0);
  box-shadow: 0 16px 30px rgba(21, 152, 237, 0.26);
  cursor: pointer;
  font-weight: 900;
}

.login-status {
  text-align: center;
}

.narrow {
  max-width: 860px;
}

.faq-section .narrow {
  max-width: 920px;
}

.faq-section .eyebrow {
  display: none;
}

.faq-section .section-heading {
  margin-bottom: 34px;
}

.faq-list {
  background: transparent;
}

.faq-item {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid rgba(17, 24, 39, 0.12);
  background: transparent;
  text-align: right;
  cursor: pointer;
}

.faq-item:first-child {
  border-top: 0;
}

.faq-item span {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.7;
  color: var(--ink);
}

.faq-item b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 12px;
  position: relative;
  flex: 0 0 38px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.faq-item b::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: translateY(-2px) rotate(-45deg);
  transition: transform 0.25s ease;
}

.faq-item.is-open b {
  background: rgba(23, 106, 72, 0.08);
}

.faq-item.is-open b::before {
  transform: translateY(2px) rotate(135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.34s ease, opacity 0.24s ease, transform 0.34s ease, padding 0.34s ease;
}

.faq-answer.is-open {
  max-height: 260px;
  padding: 0 0 20px;
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  padding: 52px 0 20px;
  background: rgba(255, 255, 255, 0.64);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 28px;
}

.footer-grid a {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.footer-grid .brand {
  display: inline-flex;
  color: var(--text);
}

.footer-grid h3 {
  font-size: 15px;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.socials span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
}

.copyright {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(9, 16, 26, 0.58);
  backdrop-filter: blur(10px);
}

.modal-backdrop.is-open {
  display: grid;
}

.modal {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-solid);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.modal-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.demo-form {
  display: grid;
  gap: 14px;
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
}

.demo-form input,
.demo-form select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(246, 250, 254, 0.86);
  outline: none;
}

.demo-form input:focus,
.demo-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 152, 237, 0.12);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 13px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1040px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .nav {
    min-height: 68px;
    gap: 12px;
    position: relative;
  }

  .nav-pill {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    z-index: 40;
    min-height: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 50px rgba(34, 49, 67, 0.16);
    backdrop-filter: blur(16px);
  }

  .nav-pill.is-open {
    display: flex;
  }

  .menu-toggle {
    display: grid;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .nav-pill > a:not(.brand) {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
  }

  .nav-pill > a:not(.brand):hover {
    background: rgba(21, 152, 237, 0.08);
  }

  .primary-link {
    min-width: 124px;
    min-height: 44px;
    padding: 9px 18px;
    border-radius: 16px;
    font-size: 14px;
  }

  .secondary-link {
    min-width: 124px;
    min-height: 44px;
    padding: 9px 18px;
    border-radius: 16px;
    font-size: 14px;
  }

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

@media (max-width: 940px) {
  .hero-grid,
  .split,
  .city-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
    order: -1;
  }

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

  .login-shell {
    grid-template-columns: 1fr;
  }

  .login-copy {
    max-width: 640px;
    text-align: center;
    justify-self: center;
  }

  .login-copy h2,
  .login-copy p {
    margin-right: auto;
    margin-left: auto;
  }

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

  .demo-steps-row {
    gap: 22px;
  }

  .demo-steps-row::before {
    right: 12%;
    left: 12%;
  }

  .callout {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .section {
    padding: 50px 0;
  }

  .nav {
    min-height: 64px;
  }

  .nav-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .primary-link,
  .secondary-link {
    min-width: 106px;
    min-height: 40px;
    padding: 8px 14px;
    font-size: 13px;
  }

  h1 {
    font-size: 37px;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 390px;
  }

  .demo-steps {
    padding: 44px 0 48px;
  }

  .demo-steps-heading {
    margin-bottom: 38px;
  }

  .demo-steps-row {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .demo-steps-row::before {
    top: 34px;
    right: 50%;
    left: auto;
    width: 1px;
    height: calc(100% - 72px);
    border-top: 0;
    border-right: 1px dashed rgba(255, 180, 0, 0.52);
    border-radius: 0;
    transform: none;
  }

  .demo-step-icon {
    margin-bottom: 18px;
  }

  .demo-step h3 {
    font-size: 23px;
  }

  .strategy-screen {
    right: 58px;
    top: 118px;
    width: 235px;
    height: 160px;
    border-width: 8px;
  }

  .strategy-target {
    width: 118px;
    height: 118px;
    top: 24px;
    right: 58px;
  }

  .ring-one { inset: 17px; }
  .ring-two { inset: 32px; }
  .ring-three { inset: 46px; }

  .strategy-target b {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .target-arrow {
    width: 104px;
    right: 96px;
    top: 76px;
  }

  .visual-arc,
  .idea-card,
  .idea-bulb {
    display: none;
  }

  .person-top {
    right: 16px;
    top: 52px;
    transform: scale(0.78);
    transform-origin: top right;
  }

  .person-bottom {
    right: 0;
    bottom: 22px;
    transform: scale(0.72);
    transform-origin: bottom right;
  }

  .standing-person {
    left: 72px;
    bottom: 18px;
    transform: scale(0.72);
    transform-origin: bottom left;
  }

  .gold-card {
    right: 0;
    top: 166px;
    width: 94px;
    height: 82px;
  }

  .gold-block {
    width: 42px;
    height: 36px;
  }

  .price-card {
    left: 0;
    bottom: 66px;
    width: 142px;
    padding: 10px;
  }

  .price-card strong {
    font-size: 15px;
  }

  .mobile-report {
    left: 0;
    top: 164px;
    width: 64px;
    height: 112px;
    border-width: 4px;
    padding: 14px 9px;
  }

  .mock-grid,
  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .side-menu,
  .dash-sidebar {
    display: none;
  }

  .platform-preview {
    border-width: 5px;
    overflow: hidden;
  }

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

  .mock-topbar b {
    width: 100%;
  }

  .platform-body {
    grid-template-columns: 1fr;
  }

  .preview-badge {
    display: none;
  }

  .mock-cards,
  .dash-stats,
  .dash-main-grid,
  .segment-grid,
  .feature-grid,
  .testimonial-grid,
  .footer-grid,
  .value-list {
    grid-template-columns: 1fr;
  }

  .chart-donut {
    width: 120px;
    height: 120px;
  }

  .dashboard-screen {
    border-width: 6px;
    border-radius: 18px 18px 8px 8px;
  }

  .dash-content {
    padding: 14px;
  }

  .dash-topbar i {
    width: 110px;
  }

  .dash-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .laptop-base {
    width: 104%;
    margin-right: -2%;
    margin-left: -2%;
  }

  .map-card {
    min-height: 360px;
  }

  .iran-map-card {
    padding: 14px;
  }

  .banner {
    align-items: stretch;
    flex-direction: column;
    padding: 28px;
  }

  .customer-login-section {
    padding: 58px 0;
  }

  .login-wave {
    width: 430px;
    height: 230px;
  }

  .customer-login-card {
    padding: 28px 18px 22px;
  }

  .login-divider span {
    min-width: 0;
    text-align: center;
  }

  .modal {
    padding: 24px;
  }
}

/* Responsive hardening across desktop, tablet, and narrow mobile screens. */
html,
body {
  overflow-x: hidden;
}

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

.hero-grid,
.split,
.city-grid,
.story-grid,
.login-shell,
.mock-grid,
.dashboard-layout,
.dash-stats,
.dash-main-grid,
.segment-grid,
.feature-grid,
.testimonial-grid,
.footer-grid,
.value-list,
.logo-row {
  min-width: 0;
}

.hero-copy,
.section-copy,
.login-copy,
.mock-main,
.dash-content,
.customer-login-card,
.feature-card,
.segment-grid article,
.testimonial-grid article,
.value-list article,
.banner {
  min-width: 0;
}

h1,
h2,
h3,
p,
a,
button,
input,
select,
.dash-table,
.faq-item,
.login-divider span {
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .nav-pill {
    gap: 18px;
    padding-inline: 20px;
  }

  .nav-pill > a:not(.brand) {
    font-size: 13px;
  }

  .hero-grid,
  .split,
  .city-grid,
  .story-grid {
    gap: 34px;
  }

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

  .dashboard-wrap {
    width: min(940px, 100%);
  }

  .callout-right {
    right: 0;
  }

  .callout-left {
    left: 0;
  }
}

@media (max-width: 1040px) {
  .site-header {
    padding-top: 10px;
  }

  .nav {
    justify-content: center;
  }

  .nav-actions {
    justify-content: center;
  }
}

@media (max-width: 940px) {
  .section {
    padding-block: 58px;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-copy,
  .section-copy {
    text-align: center;
    justify-self: center;
  }

  .hero-copy p,
  .section-copy p {
    margin-inline: auto;
  }

  .hero-actions,
  .metric-row {
    justify-content: center;
  }

  .hero-visual.strategy-visual {
    min-height: auto;
    padding-block: 0;
  }

  .hero-illustration {
    width: min(100%, 520px);
  }

  .mock-cards,
  .dash-stats,
  .feature-grid,
  .value-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-layout,
  .dash-main-grid {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    display: none;
  }

  .dashboard-layout {
    min-height: auto;
  }

  .dash-panel {
    min-height: 210px;
  }

  .dash-table div {
    grid-template-columns: 1fr 0.8fr 0.8fr;
  }

  .map-card {
    min-height: 360px;
  }

  .banner {
    align-items: stretch;
    flex-direction: column;
    padding: 34px;
    text-align: center;
  }

  .banner .btn {
    align-self: center;
    min-width: 180px;
  }
}

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

  h1 {
    font-size: clamp(30px, 8vw, 38px);
  }

  h2 {
    font-size: clamp(22px, 6vw, 30px);
  }

  .primary-link,
  .secondary-link,
  .btn {
    min-height: 44px;
  }

  .product-strip {
    padding-top: 20px;
  }

  .platform-preview {
    border-width: 6px;
    border-radius: 18px 18px 8px 8px;
  }

  .mock-grid,
  .platform-body {
    grid-template-columns: 1fr;
  }

  .side-menu {
    display: none;
  }

  .mock-main {
    padding: 16px;
  }

  .mock-cards,
  .dash-stats,
  .segment-grid,
  .feature-grid,
  .testimonial-grid,
  .footer-grid,
  .logo-row,
  .value-list {
    grid-template-columns: 1fr;
  }

  .demo-steps-row {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .demo-steps-row::before {
    top: 34px;
    right: 50%;
    left: auto;
    width: 1px;
    height: calc(100% - 72px);
    border-top: 0;
    border-right: 1px dashed rgba(255, 180, 0, 0.52);
    border-radius: 0;
    transform: none;
  }

  .customer-login-section {
    padding-block: 58px;
  }

  .login-shell {
    gap: 24px;
  }

  .customer-login-card {
    border-radius: 14px;
    padding: 26px 18px 22px;
  }

  .login-divider {
    gap: 8px;
  }

  .faq-section .section-heading {
    margin-bottom: 28px;
  }

  .faq-item {
    min-height: 74px;
    gap: 16px;
    padding-block: 18px;
  }

  .faq-item span {
    font-size: 17px;
  }

  .faq-item b {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 10px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 22px, 1120px);
  }

  .site-header {
    padding-top: 8px;
  }

  .nav {
    min-height: auto;
    align-items: stretch;
  }

  .nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
    min-width: 0;
    padding-inline: 10px;
    border-radius: 12px;
    font-size: 12px;
    white-space: normal;
    text-align: center;
  }

  .hero {
    padding-top: 22px;
  }

  .section {
    padding-block: 44px;
  }

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

  .hero-actions .btn,
  .demo-steps-heading .btn,
  .banner .btn,
  .login-submit {
    width: 100%;
  }

  .hero-illustration {
    width: min(100%, 360px);
  }

  .mock-topbar,
  .dash-topbar,
  .panel-title,
  .quote-top {
    align-items: stretch;
    flex-direction: column;
  }

  .mock-topbar b,
  .dash-topbar i {
    width: 100%;
  }

  .dashboard-wrap {
    padding-bottom: 24px;
  }

  .dashboard-screen {
    border-width: 5px;
    border-radius: 16px 16px 8px 8px;
  }

  .dash-content,
  .dash-panel,
  .dash-stats span {
    padding: 14px;
  }

  .chart-bars {
    gap: 9px;
    min-height: 120px;
  }

  .chart-legend {
    flex-wrap: wrap;
  }

  .dash-table div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 14px;
  }

  .laptop-base {
    height: 18px;
  }

  .map-card {
    min-height: 300px;
  }

  .iran-map-card {
    padding: 12px;
  }

  .banner {
    padding: 24px 18px;
  }

  .login-copy h2 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .customer-login-card h3 {
    font-size: 21px;
  }

  .customer-login-form input {
    min-height: 50px;
  }

  .password-field input {
    padding-left: 48px;
  }

  .modal-backdrop {
    padding: 12px;
  }

  .modal {
    padding: 22px 16px;
  }

  .product-strip .platform-preview {
    max-height: 520px;
    overflow: hidden;
  }

  .product-strip .mock-grid {
    min-height: auto;
  }

  .product-strip .mock-main {
    padding: 14px;
  }

  .product-strip .mock-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .product-strip .mock-cards span {
    min-height: 92px;
    padding: 10px;
  }

  .product-strip .mock-cards strong {
    font-size: 13px;
  }

  .product-strip .mock-cards small {
    display: none;
  }

  .product-strip .platform-body {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-strip .platform-chart,
  .product-strip .platform-list {
    min-height: 116px;
    padding: 12px;
  }

  .product-strip .mini-bars-pro {
    height: 78px;
    gap: 8px;
  }

  .product-strip .platform-list {
    grid-template-columns: 1fr;
  }

  .product-strip .platform-list div:nth-child(n + 3) {
    display: none;
  }

  .dashboard-section .dashboard-wrap {
    width: min(340px, 100%);
    max-height: none;
    overflow: visible;
    padding-bottom: 18px;
  }

  .dashboard-section .dashboard-laptop {
    width: 100%;
  }

  .dashboard-section .dashboard-screen {
    border-width: 4px;
    border-radius: 14px 14px 6px 6px;
  }

  .dashboard-section .dashboard-layout {
    min-height: auto;
  }

  .dashboard-section .window-bar {
    height: 28px;
    padding-inline: 10px;
  }

  .dashboard-section .window-bar span {
    width: 7px;
    height: 7px;
  }

  .dashboard-section .dash-content {
    padding: 10px;
  }

  .dashboard-section .dash-topbar {
    margin-bottom: 10px;
    gap: 8px;
  }

  .dashboard-section .dash-topbar span {
    font-size: 12px;
  }

  .dashboard-section .dash-topbar i {
    height: 24px;
  }

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

  .dashboard-section .dash-stats span {
    min-height: 64px;
    padding: 9px;
  }

  .dashboard-section .dash-stats b {
    font-size: 10px;
  }

  .dashboard-section .dash-stats strong {
    font-size: 13px;
  }

  .dashboard-section .dash-main-grid {
    gap: 8px;
    margin: 8px 0 0;
  }

  .dashboard-section .dash-panel {
    min-height: 124px;
    padding: 10px;
  }

  .dashboard-section .panel-title {
    margin-bottom: 8px;
  }

  .dashboard-section .panel-title b {
    font-size: 11px;
  }

  .dashboard-section .panel-title span {
    display: none;
  }

  .dashboard-section .chart-bars {
    min-height: 72px;
    gap: 8px;
    padding: 8px 6px 4px;
  }

  .dashboard-section .donut-panel {
    display: none;
  }

  .dashboard-section .dash-table {
    display: none;
  }

  .dashboard-section .dash-table div:nth-child(n + 4) {
    display: none;
  }

  .dashboard-section .laptop-base {
    height: 14px;
    margin-top: -1px;
  }

  .dashboard-section .laptop-base::before {
    width: 130px;
    height: 10px;
  }
}

@media (max-width: 360px) {
  .nav-actions {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 28px;
  }

  .customer-login-card,
  .feature-card,
  .segment-grid article,
  .testimonial-grid article,
  .value-list article {
    padding: 18px 14px;
  }
}

h1,
h2,
h3 {
  font-weight: 700 !important;
}

button,
label {
  font-weight: 500 !important;
}

/* Minimal scale pass: closer to the compact spacing and typography of the reference cards. */
.container {
  width: min(1180px, calc(100% - 112px));
}

.section {
  padding-block: 52px;
}

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

h1 {
  font-size: clamp(30px, 3.8vw, 44px);
}

h2,
.demo-steps-heading h2 {
  font-size: clamp(21px, 2.1vw, 29px);
}

.hero-grid,
.split,
.city-grid,
.story-grid {
  gap: 36px;
}

#features .feature-grid,
.segments .segment-grid {
  gap: 24px;
}

.feature-card {
  min-height: 168px;
  gap: 14px;
  padding: 24px 20px;
}

.feature-card h3,
.segments .segment-grid article h3 {
  font-size: 17px;
}

.segments .segment-grid article {
  min-height: 204px;
  gap: 14px;
  padding: 26px 24px;
}

.segments .segment-grid article p,
.testimonial-grid article p,
.faq-answer {
  font-size: 14px;
}

.testimonial-grid article {
  padding: 22px;
}

.banner {
  padding: 32px;
}

.faq-item {
  min-height: 74px;
  padding-block: 18px;
}

.faq-item span {
  font-size: 17px;
}

@media (max-width: 1180px) {
  .container {
    width: min(1080px, calc(100% - 80px));
  }
}

@media (max-width: 940px) {
  .container {
    width: min(100% - 56px, 920px);
  }

  .section {
    padding-block: 48px;
  }

  .hero-visual {
    min-height: 380px;
  }

  .banner {
    padding: 28px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 36px, 720px);
  }

  h1 {
    font-size: clamp(28px, 7vw, 34px);
  }

  h2,
  .demo-steps-heading h2 {
    font-size: clamp(21px, 5.5vw, 27px);
  }

  .feature-card,
  .segments .segment-grid article {
    min-height: auto;
    padding: 22px 18px;
  }
}

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

  .section {
    padding-block: 40px;
  }

  .feature-card,
  .segments .segment-grid article,
  .testimonial-grid article,
  .banner {
    padding: 20px 16px;
  }
}

/* MelliGold-like card rhythm for the two boxed sections. */
#features .container,
.segments .container {
  width: min(1536px, calc(100% - clamp(96px, 26vw, 544px)));
}

#features .section-heading,
.segments .section-heading {
  margin-bottom: 42px;
}

#features .feature-grid,
.segments .segment-grid {
  gap: 38px;
}

#features .feature-card {
  min-height: 208px;
  padding: 24px 22px 26px;
  justify-content: center;
  gap: 22px;
  border-color: rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.09);
}

#features .feature-card.featured {
  border-color: rgba(17, 24, 39, 0.08) !important;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.09) !important;
}

.segments .featured-segment,
.testimonial-grid .featured-quote {
  border-color: rgba(17, 24, 39, 0.08) !important;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.09) !important;
}

#features .feature-card h3 {
  font-size: 18px;
  line-height: 1.55;
}

.segments .segment-grid article {
  min-height: 218px;
  padding: 26px 26px;
  justify-content: center;
  gap: 16px;
  border-color: rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.09);
}

.segments .segment-grid article h3 {
  font-size: 18px;
  line-height: 1.55;
}

.segments .segment-grid article p {
  max-width: 430px;
  font-size: 15px;
  line-height: 1.9;
}

@media (max-width: 1180px) {
  #features .container,
  .segments .container {
    width: min(1040px, calc(100% - 72px));
  }

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

@media (max-width: 940px) {
  #features .container,
  .segments .container {
    width: min(100% - 48px, 760px);
  }

  #features .feature-grid,
  .segments .segment-grid {
    gap: 24px;
  }

  #features .feature-card,
  .segments .segment-grid article {
    min-height: 200px;
  }
}

@media (max-width: 760px) {
  #features .container,
  .segments .container {
    width: min(100% - 32px, 520px);
  }

  #features .feature-grid,
  .segments .segment-grid {
    grid-template-columns: 1fr;
  }

  #features .feature-card,
  .segments .segment-grid article {
    min-height: 190px;
    padding: 22px 18px;
  }
}
