@font-face {
  font-family: "Vazirmatn";
  src: url("assets/fonts/Vazirmatn-RD.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f7f2e8;
  --surface: #fffdf9;
  --surface-soft: #eef5f1;
  --ink: #17344b;
  --muted: #5b7078;
  --line: #d9e3de;
  --primary: #35319f;
  --primary-deep: #28247b;
  --primary-soft: #e9e7fa;
  --teal: #179887;
  --teal-soft: #dff4ee;
  --coral: #ef6b57;
  --amber: #f4ae45;
  --white: #fff;
  --container: 1180px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 12px 34px rgba(30, 58, 77, .08);
  --shadow-lg: 0 26px 70px rgba(35, 55, 89, .15);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, rgba(23, 152, 135, .08), transparent 23%),
    radial-gradient(circle at 93% 12%, rgba(244, 174, 69, .11), transparent 24%),
    var(--bg);
  font-family: "Vazirmatn", Tahoma, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overscroll-behavior: contain;
}

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

svg,
video,
iframe {
  max-width: 100%;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--primary);
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 20px;
  padding: 9px 15px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  width: 0;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--coral), var(--amber), var(--teal));
}

.announcement {
  color: var(--white);
  background: linear-gradient(90deg, #3934a2, #236f7f);
}

.announcement__inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}

.announcement p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.announcement a {
  font-weight: 800;
}

.announcement__dot {
  width: 7px;
  height: 7px;
  display: block;
  background: #a8fff0;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(168, 255, 240, .14);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  isolation: isolate;
  border-bottom: 1px solid transparent;
  background: rgba(247, 242, 232, .9);
  backdrop-filter: blur(16px);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  border-color: rgba(23, 52, 75, .08);
  box-shadow: 0 8px 28px rgba(31, 58, 71, .07);
}

.nav-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
}

.brand-symbol {
  width: 43px;
  height: 43px;
  display: block;
  flex: 0 0 auto;
  background: #fbf5eb url("assets/hidad-symbol.webp") center / cover no-repeat;
  border: 1px solid rgba(53, 49, 159, .13);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(53, 49, 159, .12);
}

.brand-name {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.5px;
}

.brand-en {
  direction: ltr;
  color: var(--muted);
  font: 800 9px/1 "Segoe UI", Arial, sans-serif;
  letter-spacing: 1.4px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  margin-inline: auto;
}

.main-nav a {
  position: relative;
  color: #405965;
  font-size: 13px;
  font-weight: 750;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 99px;
  transition: width .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  position: relative;
  z-index: 1002;
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: inherit;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
  touch-action: manipulation;
}

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

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

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

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s ease, background .2s ease;
}

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

.button--small {
  min-height: 41px;
  padding-inline: 17px;
}

.button--primary {
  color: var(--white);
  background: linear-gradient(120deg, var(--primary), #2d6680);
  box-shadow: 0 12px 28px rgba(53, 49, 159, .2);
}

.button--ghost {
  color: var(--primary);
  border-color: rgba(53, 49, 159, .18);
  background: rgba(255, 253, 249, .72);
}

.button--light {
  color: var(--primary-deep);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(21, 33, 75, .15);
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 650px;
  display: block;
  padding: 42px 0 26px;
  overflow: hidden;
  overflow: clip;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 5%;
  right: 3%;
  width: 44%;
  height: 78%;
  background-image:
    linear-gradient(rgba(53, 49, 159, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 49, 159, .05) 1px, transparent 1px);
  background-size: 34px 34px;
  border-radius: 45px;
  mask-image: linear-gradient(135deg, #000, transparent 82%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .13;
}

.hero-glow--one {
  top: 25px;
  right: -170px;
  background: var(--primary);
}

.hero-glow--two {
  bottom: 0;
  left: -170px;
  background: var(--teal);
}

.hero__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 45px;
}

.hero__content,
.hero__visual,
.intro-copy,
.intro-system,
.offering-card,
.expertise-card,
.social-intelligence__copy,
.social-dashboard,
.outcome-copy,
.outcome-board,
.about-copy,
.about-visual,
.contact-card > *,
.contact-details > *,
.contact-map > *,
.footer-top > * {
  min-width: 0;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  padding: 6px 11px;
  direction: ltr;
  color: var(--primary);
  border: 1px solid rgba(53, 49, 159, .16);
  background: rgba(255, 253, 249, .76);
  border-radius: 999px;
  font: 900 10px/1.4 "Segoe UI", Arial, sans-serif;
  letter-spacing: 1.2px;
}

.eyebrow i {
  width: 4px;
  height: 4px;
  background: var(--coral);
  border-radius: 50%;
}

.hero h1,
.hero-slide__title {
  margin: 0 0 18px;
  font-size: clamp(38px, 4.35vw, 57px);
  font-weight: 900;
  line-height: 1.44;
  letter-spacing: -1.9px;
}

.hero h1 span,
.hero-slide__title span {
  position: relative;
  color: var(--primary);
}

.hero h1 span::after,
.hero-slide__title span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 72%;
  height: 5px;
  background: linear-gradient(90deg, var(--coral), var(--amber));
  border-radius: 99px;
}

.hero__lead {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 25px;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0 0;
  padding: 0;
  color: #435c67;
  list-style: none;
  font-size: 12px;
  font-weight: 750;
}

.hero__checks li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__checks span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: #087b6f;
  background: #ddf5ef;
  border-radius: 50%;
}

.hero__visual {
  position: relative;
}

.hero-media {
  position: relative;
  height: clamp(340px, 34vw, 400px);
  margin: 0;
  overflow: hidden;
  border: 7px solid rgba(255, 253, 249, .92);
  background: var(--primary-soft);
  border-radius: 31px 31px 10px 31px;
  box-shadow: var(--shadow-lg);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: inherit;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .92);
  border-radius: 13px;
  box-shadow: 0 16px 40px rgba(31, 54, 79, .14);
  backdrop-filter: blur(10px);
}

.floating-card--top {
  top: 25px;
  right: -20px;
}

.floating-card--bottom {
  bottom: 24px;
  left: -17px;
}

.floating-card__label,
.floating-card small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.floating-card strong {
  display: block;
  font-size: 13px;
}

.source-dots {
  display: flex;
  gap: 4px;
}

.source-dots i {
  width: 7px;
  height: 7px;
  display: block;
  background: var(--primary);
  border-radius: 50%;
}

.source-dots i:nth-child(2) { background: var(--teal); }
.source-dots i:nth-child(3) { background: var(--coral); }
.source-dots i:nth-child(4) { background: var(--amber); }

.pulse-icon {
  width: 25px;
  height: 25px;
  display: block;
  background: var(--teal);
  border: 7px solid var(--teal-soft);
  border-radius: 50%;
  background-clip: padding-box;
}

.hero-slider__slides {
  position: relative;
  display: grid;
  overflow: hidden;
  overflow: clip;
}

.hero-slide {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-22px);
  transition: opacity .55s var(--ease), transform .55s var(--ease), visibility .55s ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.hero-slider__controls {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 17px;
}

.hero-slider__dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-slider__dots button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  color: #577079;
  border: 1px solid rgba(23, 52, 75, .1);
  background: rgba(255, 253, 249, .76);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.hero-slider__dots button span {
  direction: ltr;
  color: var(--primary);
  font: 900 9px/1 "Segoe UI", Arial, sans-serif;
}

.hero-slider__dots button.is-active {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(120deg, var(--primary), #28727f);
}

.hero-slider__dots button.is-active span {
  color: #cafff6;
}

.hero-slider__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  max-width: 190px;
}

.hero-slider__timer > span {
  height: 3px;
  flex: 1;
  overflow: hidden;
  background: rgba(53, 49, 159, .12);
  border-radius: 99px;
}

.hero-slider__timer i {
  width: 0;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--coral), var(--amber), var(--teal));
  border-radius: inherit;
}

.hero-slider__timer i.is-running {
  animation: hero-autoplay-progress 5.2s linear forwards;
}

.hero-slider__timer small {
  direction: ltr;
  color: var(--muted);
  font: 800 8px/1 "Segoe UI", Arial, sans-serif;
  letter-spacing: .7px;
  white-space: nowrap;
}

@keyframes hero-autoplay-progress {
  to { width: 100%; }
}

.hero-slider__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-slider__actions button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--primary);
  border: 1px solid rgba(53, 49, 159, .14);
  background: rgba(255, 253, 249, .82);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.hero-slider__actions button:hover {
  color: var(--white);
  background: var(--primary);
}

.hero-slider__actions [data-slider-toggle] i {
  width: 11px;
  height: 12px;
  display: block;
  border-inline: 3px solid currentColor;
}

.hero-slider__actions [data-slider-toggle][aria-pressed="true"] i {
  width: 0;
  height: 0;
  border: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 11px solid currentColor;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero__visual--signal {
  height: clamp(340px, 34vw, 400px);
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: hidden;
  border: 7px solid rgba(255, 253, 249, .92);
  background:
    linear-gradient(rgba(53, 49, 159, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 49, 159, .055) 1px, transparent 1px),
    linear-gradient(145deg, #eceafa, #e0f1ed);
  background-size: 28px 28px, 28px 28px, auto;
  border-radius: 31px 31px 10px 31px;
  box-shadow: var(--shadow-lg);
}

.hero-signal-board {
  width: min(470px, 94%);
  padding: 17px;
  border: 1px solid rgba(23, 52, 75, .1);
  background: rgba(255, 253, 249, .96);
  border-radius: 18px 18px 6px 18px;
  box-shadow: 0 18px 42px rgba(35, 55, 89, .16);
}

.hero-signal-board__top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
}

.hero-signal-board__top > span {
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--teal-soft);
}

.hero-signal-board__top strong {
  direction: ltr;
  font: 850 11px/1.4 "Segoe UI", Arial, sans-serif;
}

.hero-signal-board__top i {
  width: 7px;
  height: 7px;
  margin-right: auto;
  background: var(--coral);
  border-radius: 50%;
}

.hero-signal-board__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 11px 0;
}

.hero-signal-board__metrics article {
  padding: 9px;
  background: #eef3f0;
  border-radius: 9px;
}

.hero-signal-board__metrics small,
.hero-signal-board__metrics strong {
  display: block;
}

.hero-signal-board__metrics small {
  color: var(--muted);
  font-size: 9px;
}

.hero-signal-board__metrics strong {
  margin-top: 2px;
  font-size: 11px;
}

.hero-signal-board__chart {
  height: 110px;
  display: flex;
  align-items: end;
  gap: 7px;
  padding: 10px 9px 7px;
  border-bottom: 1px solid #dce5e0;
  background: repeating-linear-gradient(0deg, #edf2ef 0 1px, transparent 1px 27px);
}

.hero-signal-board__chart i {
  width: 100%;
  height: var(--h);
  display: block;
  background: linear-gradient(180deg, var(--teal), #287782);
  border-radius: 4px 4px 1px 1px;
}

.hero-signal-board__chart i:nth-child(4),
.hero-signal-board__chart i:nth-child(6) {
  background: linear-gradient(180deg, var(--amber), var(--coral));
}

.hero-signal-board__summary {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 9px;
  margin-top: 11px;
  padding: 9px;
  color: var(--white);
  background: linear-gradient(115deg, #3a35a2, #27707f);
  border-radius: 9px;
}

.hero-signal-board__summary span {
  display: grid;
  place-items: center;
  min-height: 29px;
  direction: ltr;
  color: #cafff6;
  background: rgba(255, 255, 255, .12);
  border-radius: 7px;
  font: 900 10px/1 "Segoe UI", Arial, sans-serif;
}

.hero-signal-board__summary p {
  margin: 0;
  font-size: 11px;
}

.source-strip {
  border-block: 1px solid rgba(23, 52, 75, .08);
  background: rgba(255, 253, 249, .75);
  backdrop-filter: blur(10px);
}

.source-strip__inner {
  min-height: 118px;
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 28px;
}

.source-strip p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.source-list span {
  padding: 7px 10px;
  color: #4e656f;
  border: 1px solid rgba(23, 52, 75, .09);
  background: var(--surface);
  border-radius: 11px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(23, 52, 75, .045);
}

.platform-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.platform-badge img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 6px;
}

.section {
  padding: 82px 0;
}

.section--soft {
  background: linear-gradient(135deg, rgba(255, 255, 255, .76), rgba(229, 243, 237, .85));
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  color: #24766e;
  font-size: 12px;
  font-weight: 900;
}

.section-kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--coral);
  border-radius: 99px;
}

.section-kicker--light {
  color: #cafff5;
}

.section-heading h2,
.capability h2,
.showcase h2,
.outcome h2,
.about-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(29px, 3.4vw, 44px);
  line-height: 1.55;
  letter-spacing: -1.2px;
}

.section-heading > p {
  max-width: 690px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.section-heading--center {
  margin-bottom: 38px;
  text-align: center;
}

.section-heading--center .section-kicker {
  justify-content: center;
}

.section-heading--center > p {
  margin-inline: auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 52px;
}

.intro-copy h2 {
  margin: 0 0 15px;
  font-size: clamp(30px, 3.5vw, 45px);
  line-height: 1.5;
  letter-spacing: -1.2px;
}

.intro-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.text-link:hover {
  color: var(--coral);
}

.intro-system {
  position: relative;
  min-height: 380px;
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr;
  align-items: center;
  gap: 27px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(23, 52, 75, .1);
  background:
    linear-gradient(rgba(53, 49, 159, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 49, 159, .045) 1px, transparent 1px),
    rgba(255, 253, 249, .92);
  background-size: 28px 28px;
  border-radius: 28px 28px 9px 28px;
  box-shadow: var(--shadow-sm);
}

.intro-system__sources {
  display: grid;
  grid-template-columns: repeat(2, 14px);
  justify-content: center;
  gap: 15px 21px;
}

.intro-system__sources i {
  width: 14px;
  height: 14px;
  display: block;
  background: var(--coral);
  border: 4px solid rgba(239, 107, 87, .16);
  border-radius: 50%;
  background-clip: padding-box;
  box-shadow: 0 0 0 5px rgba(239, 107, 87, .06);
}

.intro-system__sources i:nth-child(2n) { background-color: var(--teal); }
.intro-system__sources i:nth-child(3n) { background-color: var(--amber); }

.intro-system__core {
  position: relative;
  min-height: 135px;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(145deg, #403aaa, #247a82);
  border-radius: 22px 22px 6px 22px;
  box-shadow: 0 17px 38px rgba(53, 49, 159, .2);
}

.intro-system__core::before,
.intro-system__core::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 37px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal) 0 6px, transparent 6px 10px);
}

.intro-system__core::before { right: -37px; }
.intro-system__core::after { left: -37px; }

.intro-system__core span {
  color: #c8fff5;
  font: 800 12px/1.4 "Segoe UI", Arial, sans-serif;
  letter-spacing: 2px;
}

.intro-system__core strong {
  margin-top: 4px;
  font-size: 15px;
}

.intro-system__outputs {
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(23, 52, 75, .1);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.intro-system__outputs > div {
  height: 68px;
  display: flex;
  align-items: end;
  gap: 6px;
  padding: 8px;
  background: #eef4f1;
  border-radius: 9px;
}

.intro-system__outputs span {
  width: 33.33%;
  display: block;
  background: var(--primary);
  border-radius: 4px 4px 1px 1px;
}

.intro-system__outputs span:nth-child(1) { height: 45%; }
.intro-system__outputs span:nth-child(2) { height: 78%; background: var(--teal); }
.intro-system__outputs span:nth-child(3) { height: 60%; background: var(--amber); }

.intro-system__outputs strong {
  display: block;
  margin-top: 7px;
  direction: ltr;
  font: 800 11px/1.4 "Segoe UI", Arial, sans-serif;
}

.intro-system > p {
  position: absolute;
  right: 26px;
  bottom: 19px;
  left: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0;
  color: #49636d;
  font-size: 11px;
  font-weight: 850;
}

.intro-system > p i {
  width: 27px;
  height: 1px;
  background: var(--coral);
}

.offerings {
  background:
    radial-gradient(circle at 12% 12%, rgba(23, 152, 135, .09), transparent 24%),
    #f0ece2;
}

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

.offering-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: clamp(25px, 3vw, 38px);
  border: 1px solid rgba(23, 52, 75, .1);
  background: rgba(255, 253, 249, .92);
  border-radius: 26px 26px 8px 26px;
  box-shadow: var(--shadow-sm);
}

.offering-card--platform {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 88% 10%, rgba(244, 174, 69, .25), transparent 25%),
    linear-gradient(145deg, #3b35a2, #216f7c);
}

.offering-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.offering-card__number {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 13px 13px 4px 13px;
  font: 900 12px/1 "Segoe UI", Arial, sans-serif;
}

.offering-card--platform .offering-card__number {
  color: var(--white);
  background: rgba(255, 255, 255, .14);
}

.offering-card__badge {
  padding: 6px 9px;
  direction: ltr;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 7px;
  font: 850 10px/1.4 "Segoe UI", Arial, sans-serif;
  letter-spacing: .7px;
}

.offering-card--platform .offering-card__badge {
  color: #cafff6;
  background: rgba(255, 255, 255, .13);
}

.offering-card h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.55;
}

.offering-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.offering-card--platform > p {
  color: rgba(255, 255, 255, .82);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 31px 1fr;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  color: #405b67;
  border: 1px solid rgba(23, 52, 75, .08);
  background: #f1f5f2;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 700;
}

.feature-list li span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  direction: ltr;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 8px;
  font: 850 9px/1 "Segoe UI", Arial, sans-serif;
}

.offering-card--platform .feature-list li {
  color: var(--white);
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .09);
}

.offering-card--platform .feature-list li span {
  color: #d5fff7;
  background: rgba(255, 255, 255, .13);
}

.offering-card__footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 52, 75, .1);
}

.offering-card__footer p {
  margin: 0 0 11px;
  color: var(--muted);
  font-size: 12px;
}

.offering-card--platform .offering-card__footer {
  border-color: rgba(255, 255, 255, .14);
}

.offering-card--platform .offering-card__footer p {
  color: rgba(255, 255, 255, .75);
}

.offering-card--platform .text-link {
  color: #d2fff7;
}

.choice-guide {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 15px;
  padding: 17px 20px;
  color: #405965;
  border: 1px solid rgba(23, 52, 75, .09);
  background: rgba(255, 253, 249, .78);
  border-radius: 15px;
}

.choice-guide > strong {
  color: var(--ink);
  font-size: 13px;
}

.choice-guide p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-size: 12px;
}

.choice-guide i {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.choice-guide b {
  color: var(--primary);
}

.expertise {
  background:
    radial-gradient(circle at 92% 8%, rgba(244, 174, 69, .11), transparent 23%),
    var(--bg);
}

.expertise-head {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: end;
  gap: 58px;
  margin-bottom: 38px;
}

.expertise-head > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

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

.expertise-card {
  min-height: 265px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  border: 1px solid rgba(23, 52, 75, .1);
  background: rgba(255, 253, 249, .9);
  border-radius: 19px 19px 6px 19px;
  transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease;
}

.expertise-card:hover {
  border-color: rgba(23, 152, 135, .45);
  box-shadow: 0 16px 42px rgba(38, 74, 76, .1);
  transform: translateY(-4px);
}

.expertise-card__code {
  align-self: flex-start;
  margin-bottom: 27px;
  padding: 5px 8px;
  direction: ltr;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 7px;
  font: 850 10px/1.4 "Segoe UI", Arial, sans-serif;
  letter-spacing: .7px;
}

.expertise-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.65;
}

.expertise-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.95;
}

.expertise-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.expertise-card > div span {
  padding: 5px 8px;
  direction: ltr;
  color: #42606a;
  background: #edf3f0;
  border-radius: 7px;
  font: 700 10px/1.4 "Segoe UI", Arial, sans-serif;
}

.capability {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 25%, rgba(244, 174, 69, .24), transparent 22%),
    linear-gradient(120deg, #373292, #226f7d);
}

.capability__head {
  display: grid;
  grid-template-columns: 1fr .72fr;
  align-items: end;
  gap: 50px;
}

.capability__head p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  line-height: 2;
}

.pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 47px;
}

.pipeline__line {
  position: absolute;
  z-index: 0;
  top: 35px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: rgba(255, 255, 255, .22);
}

.pipeline-step {
  position: relative;
  z-index: 1;
  min-height: 140px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .08);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.pipeline-step span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--primary-deep);
  background: var(--amber);
  border-radius: 10px 10px 3px 10px;
  font: 900 10px/1 "Segoe UI", Arial, sans-serif;
}

.pipeline-step strong,
.pipeline-step small {
  display: block;
}

.pipeline-step strong {
  font-size: 14px;
}

.pipeline-step small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.65;
}

.promo-banners {
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 174, 69, .11), transparent 24%),
    #f3eee5;
}

.promo-banners__head {
  max-width: 790px;
  margin-bottom: 32px;
}

.promo-banners__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 16px;
}

.promo-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(23, 52, 75, .09);
  border-radius: 28px 28px 8px 28px;
  box-shadow: 0 20px 55px rgba(38, 56, 83, .12);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}

.promo-banner:hover {
  box-shadow: 0 28px 70px rgba(38, 56, 83, .18);
  transform: translateY(-5px);
}

.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.promo-banner::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
  pointer-events: none;
}

.promo-banner--social {
  grid-column: 1 / -1;
  min-height: 420px;
  color: var(--white);
  border-color: rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 84% 18%, rgba(244, 174, 69, .29), transparent 22%),
    radial-gradient(circle at 18% 90%, rgba(23, 152, 135, .2), transparent 25%),
    linear-gradient(125deg, #4037ae 0%, #235f82 56%, #178781 100%);
  box-shadow: 0 28px 75px rgba(53, 49, 159, .22);
}

.promo-banner--social::after {
  top: -110px;
  right: 36%;
  width: 340px;
  height: 340px;
  border-width: 55px;
  border-color: rgba(255, 255, 255, .035);
}

.promo-banner--products {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .48), transparent 45%),
    radial-gradient(circle at 90% 15%, rgba(239, 107, 87, .24), transparent 25%),
    linear-gradient(145deg, #fff9e9, #ffe7dc);
}

.promo-banner--products::after {
  top: -125px;
  left: -75px;
  border: 45px solid rgba(239, 107, 87, .055);
}

.promo-banner--custom {
  color: var(--white);
  border-color: rgba(255, 255, 255, .14);
  background:
    linear-gradient(100deg, rgba(42, 37, 119, .96), rgba(27, 102, 108, .78)),
    url("assets/industry-intelligence.webp") center / cover no-repeat;
}

.promo-banner--custom::after {
  right: -110px;
  bottom: -120px;
  border: 44px solid rgba(255, 255, 255, .05);
}

.promo-banner__copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(26px, 4vw, 48px);
}

.promo-banner--social .promo-banner__copy {
  width: 64%;
}

.promo-banner--products .promo-banner__copy,
.promo-banner--custom .promo-banner__copy {
  width: 66%;
}

.promo-banner__label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 8px;
  direction: ltr;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 7px;
  font: 850 9px/1.4 "Segoe UI", Arial, sans-serif;
  letter-spacing: .9px;
}

.promo-banner--social .promo-banner__label {
  color: #cbfff6;
  background: rgba(255, 255, 255, .13);
}

.promo-banner--custom .promo-banner__label {
  color: #d5fff8;
  background: rgba(255, 255, 255, .13);
}

.promo-banner h3 {
  max-width: 620px;
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.5;
  letter-spacing: -.8px;
}

.promo-banner--products h3,
.promo-banner--custom h3 {
  font-size: clamp(22px, 2.3vw, 29px);
}

.promo-banner p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.promo-banner--social p {
  color: rgba(255, 255, 255, .8);
}

.promo-banner--custom p {
  color: rgba(255, 255, 255, .8);
}

.promo-banner__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 20px 0;
}

.promo-banner__tags span {
  padding: 6px 9px 6px 11px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .17);
  background: rgba(255, 255, 255, .09);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.promo-banner__tags .platform-badge img {
  width: 22px;
  height: 22px;
  padding: 2px;
  background: #fff;
  border-radius: 5px;
  box-sizing: border-box;
}

.promo-banner .text-link {
  margin-top: 19px;
}

.promo-banner--custom .text-link {
  color: #d5fff8;
}

.promo-network {
  position: absolute;
  top: 50%;
  left: 7%;
  width: 330px;
  height: 330px;
  transform: translateY(-50%);
}

.promo-network::before,
.promo-network::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(255, 255, 255, .22);
  border-radius: 50%;
}

.promo-network::after {
  inset: 70px;
  border-color: rgba(168, 255, 240, .26);
}

.promo-network__core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 116px;
  height: 116px;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(145deg, #f07a58, #e9aa42);
  border: 8px solid rgba(255, 255, 255, .13);
  border-radius: 30px 30px 9px 30px;
  background-clip: padding-box;
  box-shadow: 0 20px 48px rgba(20, 31, 83, .25);
  transform: translate(-50%, -50%);
  animation: promo-core-float 4s ease-in-out infinite;
}

.promo-network__core span {
  font: 900 20px/1.2 "Segoe UI", Arial, sans-serif;
}

.promo-network__core strong {
  color: rgba(255, 255, 255, .82);
  font-size: 10px;
}

.promo-network__node {
  position: absolute;
  z-index: 3;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #28324d;
  background: #fff;
  border: 5px solid rgba(255, 255, 255, .12);
  border-radius: 15px 15px 5px 15px;
  background-clip: padding-box;
  font-style: normal;
  box-shadow: 0 13px 28px rgba(15, 23, 73, .2);
  animation: promo-node-float 3.5s ease-in-out infinite;
}

.promo-network__node img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.promo-network__node--1 { top: 18px; left: 57px; }
.promo-network__node--2 { top: 18px; right: 57px; }
.promo-network__node--3 { top: 142px; left: 4px; }
.promo-network__node--4 { top: 142px; right: 4px; }
.promo-network__node--5 { left: 57px; bottom: 18px; }
.promo-network__node--6 { right: 57px; bottom: 18px; }

.promo-network__node--2 { animation-delay: -.55s; }
.promo-network__node--3 { animation-delay: -1.1s; }
.promo-network__node--4 { animation-delay: -1.65s; }
.promo-network__node--5 { animation-delay: -2.2s; }
.promo-network__node--6 { animation-delay: -2.75s; }

.promo-network__line {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 105px;
  height: 1px;
  background: rgba(255, 255, 255, .28);
  transform-origin: left;
}

.promo-network__line--1 { transform: rotate(225deg); }
.promo-network__line--2 { transform: rotate(315deg); }
.promo-network__line--3 { transform: rotate(180deg); }
.promo-network__line--4 { transform: rotate(0deg); }
.promo-network__line--5 { transform: rotate(135deg); }
.promo-network__line--6 { transform: rotate(45deg); }

.product-tiles {
  position: absolute;
  left: 25px;
  bottom: 22px;
  width: 175px;
  height: 145px;
}

.product-tiles i {
  position: absolute;
  width: 94px;
  height: 112px;
  display: grid;
  place-items: start;
  padding: 10px;
  color: var(--primary);
  border: 1px solid rgba(53, 49, 159, .13);
  background: rgba(255, 255, 255, .84);
  border-radius: 17px 17px 5px 17px;
  box-shadow: 0 12px 30px rgba(43, 55, 83, .11);
  font-style: normal;
  animation: product-tile-float 4.2s ease-in-out infinite;
}

.product-tiles i:nth-child(1) { top: 18px; left: 0; transform: rotate(-7deg); }
.product-tiles i:nth-child(2) { top: 5px; left: 36px; transform: rotate(2deg); }
.product-tiles i:nth-child(3) { top: 20px; left: 72px; transform: rotate(8deg); }

.product-tiles i:nth-child(2) { animation-delay: -.8s; }
.product-tiles i:nth-child(3) { animation-delay: -1.6s; }

.product-tiles i::before,
.product-tiles i::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 16px;
  left: 11px;
  height: 5px;
  background: var(--teal);
  border-radius: 99px;
}

.product-tiles i::after {
  bottom: 28px;
  left: 28px;
  background: var(--amber);
}

.product-tiles span {
  font: 900 10px/1 "Segoe UI", Arial, sans-serif;
}

.custom-stack {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.custom-stack span {
  min-width: 88px;
  padding: 9px 10px;
  direction: ltr;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .12);
  border-radius: 9px;
  text-align: center;
  font: 850 9px/1.4 "Segoe UI", Arial, sans-serif;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(20, 30, 70, .12);
}

.custom-stack span:nth-child(1) { transform: translateY(4px); }
.custom-stack span:nth-child(2) { transform: translateY(-6px); }
.custom-stack span:nth-child(3) { transform: translateY(8px); }
.custom-stack span:nth-child(4) { transform: translateY(-2px); }

@keyframes promo-core-float {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 8px)); }
}

@keyframes promo-node-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@keyframes product-tile-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

.social-intelligence {
  background:
    radial-gradient(circle at 12% 12%, rgba(23, 152, 135, .12), transparent 22%),
    radial-gradient(circle at 87% 82%, rgba(53, 49, 159, .1), transparent 25%),
    #edf4ef;
}

.social-intelligence__grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 55px;
}

.social-intelligence__copy h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.52;
  letter-spacing: -1.2px;
}

.social-intelligence__copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2.05;
}

.social-intelligence__steps {
  display: grid;
  gap: 9px;
  margin: 23px 0 15px;
}

.social-intelligence__steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(23, 52, 75, .08);
  background: rgba(255, 253, 249, .74);
  border-radius: 13px;
}

.social-intelligence__steps article > span {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 10px 10px 3px 10px;
  font: 850 10px/1 "Segoe UI", Arial, sans-serif;
}

.social-intelligence__steps article:nth-child(2) > span { background: var(--teal); }
.social-intelligence__steps article:nth-child(3) > span { color: #333044; background: var(--amber); }

.social-intelligence__steps strong,
.social-intelligence__steps small {
  display: block;
}

.social-intelligence__steps strong {
  font-size: 14px;
}

.social-intelligence__steps small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.social-intelligence__copy .compliance-note {
  padding: 11px 13px;
  color: #665d42;
  background: #fff4dc;
  border-right: 3px solid var(--amber);
  border-radius: 9px 0 0 9px;
  font-size: 12px;
  line-height: 1.9;
}

.social-dashboard {
  padding: 19px;
  color: var(--ink);
  border: 1px solid rgba(23, 52, 75, .1);
  background: rgba(255, 253, 249, .96);
  border-radius: 25px 25px 8px 25px;
  box-shadow: var(--shadow-lg);
}

.social-dashboard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(23, 52, 75, .08);
}

.social-dashboard__top > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.social-dashboard__top i {
  width: 12px;
  height: 12px;
  display: block;
  background: var(--teal);
  border: 3px solid rgba(23, 152, 135, .2);
  border-radius: 50%;
  background-clip: padding-box;
  box-shadow: 0 0 0 4px rgba(23, 152, 135, .07);
}

.social-dashboard__top strong {
  font-size: 14px;
}

.social-dashboard__top > span {
  padding: 5px 8px;
  direction: ltr;
  color: #9c5524;
  background: #fff0d5;
  border-radius: 7px;
  font: 850 10px/1.4 "Segoe UI", Arial, sans-serif;
  letter-spacing: .8px;
}

.platform-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 13px 0;
}

.platform-chips span {
  padding: 5px 9px;
  color: #405b65;
  border: 1px solid rgba(23, 52, 75, .055);
  background: #ebf2ef;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 750;
}

.platform-chips .platform-badge img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.dashboard-metrics article {
  padding: 12px;
  background: #f2f5f1;
  border-radius: 12px;
}

.dashboard-metrics small,
.dashboard-metrics strong,
.dashboard-metrics span {
  display: block;
}

.dashboard-metrics small {
  color: var(--muted);
  font-size: 11px;
}

.dashboard-metrics strong {
  margin: 4px 0 1px;
  direction: ltr;
  text-align: right;
  font: 850 21px/1.4 "Segoe UI", Arial, sans-serif;
}

.dashboard-metrics span {
  color: #128075;
  font-size: 10px;
  font-weight: 850;
}

.dashboard-metrics .metric-alert {
  color: #b84f3c;
}

.dashboard-lower {
  display: grid;
  grid-template-columns: 1.17fr .83fr;
  gap: 8px;
  margin-top: 8px;
}

.trend-panel,
.sentiment-panel {
  min-height: 174px;
  padding: 13px;
  border: 1px solid rgba(23, 52, 75, .08);
  background: var(--white);
  border-radius: 13px;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.panel-title strong {
  font-size: 12px;
}

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

.trend-bars {
  height: 120px;
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 14px;
  padding: 0 7px 6px;
  border-bottom: 1px solid #dfe8e4;
  background: repeating-linear-gradient(0deg, #edf2ef 0 1px, transparent 1px 30px);
}

.trend-bars i {
  width: 100%;
  height: var(--bar);
  display: block;
  background: linear-gradient(180deg, var(--teal), #2b7480);
  border-radius: 5px 5px 1px 1px;
}

.trend-bars i:nth-child(4),
.trend-bars i:nth-child(6) {
  background: linear-gradient(180deg, var(--amber), var(--coral));
}

.sentiment-panel {
  display: grid;
  align-content: start;
  gap: 15px;
}

.sentiment-row {
  display: grid;
  grid-template-columns: 36px 1fr 34px;
  align-items: center;
  gap: 6px;
  color: #50666e;
  font-size: 10px;
}

.sentiment-row > i {
  height: 6px;
  display: block;
  overflow: hidden;
  background: #e4ebe7;
  border-radius: 99px;
}

.sentiment-row > i b {
  height: 100%;
  display: block;
  background: var(--teal);
  border-radius: inherit;
}

.sentiment-row strong {
  direction: ltr;
  color: var(--ink);
  font: 800 10px/1.4 "Segoe UI", Arial, sans-serif;
}

.sentiment-row:nth-of-type(3) > i b { background: var(--amber); }
.sentiment-row--negative > i b { background: var(--coral); }

.ai-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 11px 13px;
  color: var(--white);
  background: linear-gradient(115deg, #3a35a2, #27707f);
  border-radius: 12px;
}

.ai-summary span {
  direction: ltr;
  color: #d5fff7;
  font: 850 10px/1.4 "Segoe UI", Arial, sans-serif;
  letter-spacing: .7px;
}

.ai-summary p {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
}

.showcase {
  padding-block: 62px;
}

.showcase-card {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 27px;
  box-shadow: var(--shadow-lg);
}

.showcase-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(34, 41, 96, .94), rgba(34, 41, 96, .67) 40%, rgba(34, 41, 96, .06) 75%);
}

.showcase-card__content {
  position: relative;
  z-index: 1;
  width: min(470px, 52%);
  margin-right: 45px;
  color: var(--white);
}

.showcase-card__content p {
  margin: 12px 0 24px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 2;
}

.industries-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: start;
  gap: 50px;
}

.industries-heading {
  position: sticky;
  top: 100px;
}

.industry-schematic {
  position: relative;
  min-height: 235px;
  margin-top: 25px;
  display: grid;
  grid-template-columns: .75fr 1fr .75fr;
  align-items: center;
  gap: 22px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(23, 52, 75, .09);
  background:
    linear-gradient(rgba(53, 49, 159, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 49, 159, .05) 1px, transparent 1px),
    rgba(255, 253, 249, .84);
  background-size: 25px 25px;
  border-radius: 19px 19px 6px 19px;
  box-shadow: var(--shadow-sm);
}

.factory-nodes {
  display: grid;
  grid-template-columns: repeat(2, 13px);
  justify-content: center;
  gap: 13px;
}

.factory-nodes i {
  width: 13px;
  height: 13px;
  display: block;
  background: var(--coral);
  border-radius: 3px;
  box-shadow: 0 0 0 5px rgba(239, 107, 87, .09);
}

.factory-nodes i:nth-child(2n) { background: var(--amber); }
.factory-nodes i:nth-child(3n) { background: var(--teal); }

.factory-core {
  min-height: 95px;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(145deg, #3d37a5, #24727d);
  border-radius: 17px 17px 5px 17px;
  box-shadow: 0 14px 32px rgba(53, 49, 159, .19);
}

.factory-core span {
  color: #cafff6;
  font: 800 11px/1.4 "Segoe UI", Arial, sans-serif;
  letter-spacing: 1.4px;
}

.factory-core strong {
  font-size: 13px;
}

.factory-signal {
  display: grid;
  gap: 8px;
}

.factory-signal i {
  height: 7px;
  display: block;
  background: linear-gradient(90deg, var(--teal) var(--signal, 60%), #dfe8e4 var(--signal, 60%));
  border-radius: 3px;
}

.factory-signal i:nth-child(1) { --signal: 78%; }
.factory-signal i:nth-child(2) { --signal: 52%; }
.factory-signal i:nth-child(3) { --signal: 88%; }
.factory-signal i:nth-child(4) { --signal: 67%; }

.industry-schematic > p {
  position: absolute;
  right: 17px;
  bottom: 9px;
  left: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  color: #4b646e;
  font-size: 10px;
  font-weight: 850;
}

.industry-schematic > p span {
  width: 17px;
  height: 1px;
  background: var(--coral);
}

.industry-tabs {
  padding: 11px;
  border: 1px solid rgba(23, 52, 75, .09);
  background: rgba(255, 253, 249, .84);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.industry-tabs__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.industry-tabs__list button {
  min-height: 52px;
  padding: 9px 11px;
  color: #405965;
  border: 0;
  background: #edf2ee;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.industry-tabs__list button[aria-selected="true"] {
  color: var(--white);
  background: linear-gradient(120deg, var(--primary), #27757f);
}

.industry-panel {
  min-height: 225px;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
  margin-top: 9px;
  padding: 25px;
  color: var(--white);
  background: linear-gradient(145deg, #26345d, #205d66);
  border-radius: 14px;
}

.industry-panel__index {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: #31304f;
  background: var(--amber);
  border-radius: 13px 13px 4px 13px;
  font: 900 12px/1 "Segoe UI", Arial, sans-serif;
}

.industry-panel h3 {
  margin: 2px 0 7px;
  font-size: 21px;
}

.industry-panel p {
  margin: 0;
  color: rgba(255, 255, 255, .79);
  font-size: 14px;
  line-height: 1.95;
}

.industry-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.industry-panel li {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, .17);
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  font-size: 11px;
}

.process-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 19px;
  padding-bottom: 34px;
}

.process-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 57px;
  right: 27px;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.process-item__number {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--primary);
  border: 1px solid rgba(53, 49, 159, .15);
  background: var(--surface);
  border-radius: 16px 16px 5px 16px;
  font: 900 12px/1 "Segoe UI", Arial, sans-serif;
  box-shadow: var(--shadow-sm);
}

.process-item h3 {
  margin: 1px 0 5px;
  font-size: 17px;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}

.outcome-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 54px;
}

.outcome-copy > p {
  margin: 13px 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.case-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.case-facts div {
  padding: 11px 12px;
  border: 1px solid rgba(23, 52, 75, .08);
  background: rgba(255, 253, 249, .75);
  border-radius: 11px;
}

.case-facts span,
.case-facts strong {
  display: block;
}

.case-facts span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
}

.case-facts strong {
  margin-top: 3px;
  font-size: 12px;
}

.outcome-note {
  padding: 14px 16px;
  color: #655b3f;
  border-right: 3px solid var(--amber);
  background: #fff3db;
  border-radius: 11px 0 0 11px;
}

.outcome-note strong,
.outcome-note span {
  display: block;
}

.outcome-note strong {
  font-size: 12px;
}

.outcome-note span {
  margin-top: 3px;
  font-size: 12px;
}

.outcome-board {
  padding: 17px;
  border: 1px solid rgba(23, 52, 75, .09);
  background: var(--surface);
  border-radius: 21px;
  box-shadow: var(--shadow-lg);
}

.board-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 4px 13px;
  border-bottom: 1px solid var(--line);
}

.board-top span {
  margin-left: auto;
  direction: ltr;
  color: var(--muted);
  font: 800 11px/1.4 "Segoe UI", Arial, sans-serif;
}

.board-top i {
  width: 8px;
  height: 8px;
  display: block;
  background: var(--coral);
  border-radius: 50%;
}

.board-top i:nth-child(3) { background: var(--amber); }
.board-top i:nth-child(4) { background: var(--teal); }

.board-chart {
  position: relative;
  height: 220px;
  margin: 14px 0 9px;
  overflow: hidden;
  background: #edf3f0;
  border-radius: 12px;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(53, 49, 159, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 49, 159, .07) 1px, transparent 1px);
  background-size: 40px 40px;
}

.chart-bars {
  position: absolute;
  inset: 18px 22px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.chart-bars i {
  width: 100%;
  height: 45%;
  display: block;
  background: linear-gradient(180deg, var(--teal), #2a7580);
  border-radius: 6px 6px 2px 2px;
}

.chart-bars i:nth-child(2) { height: 68%; }
.chart-bars i:nth-child(3) { height: 54%; background: var(--amber); }
.chart-bars i:nth-child(4) { height: 82%; }
.chart-bars i:nth-child(5) { height: 64%; }
.chart-bars i:nth-child(6) { height: 91%; background: var(--coral); }
.chart-bars i:nth-child(7) { height: 75%; }

.board-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.board-metrics div {
  padding: 10px;
  background: #f1f4f0;
  border-radius: 10px;
}

.board-metrics small,
.board-metrics strong {
  display: block;
}

.board-metrics small {
  color: var(--muted);
  font-size: 10px;
}

.board-metrics strong {
  margin-top: 2px;
  font-size: 12px;
}

.section--about {
  background:
    radial-gradient(circle at 18% 30%, rgba(23, 152, 135, .14), transparent 26%),
    radial-gradient(circle at 85% 75%, rgba(244, 174, 69, .15), transparent 24%),
    #eee8dc;
}

.about-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: 65px;
}

.about-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.name-story {
  position: relative;
  width: min(100%, 430px);
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(23, 52, 75, .1);
  background:
    linear-gradient(rgba(53, 49, 159, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 49, 159, .045) 1px, transparent 1px),
    rgba(255, 253, 249, .88);
  background-size: 24px 24px;
  border-radius: 25px 25px 8px 25px;
  box-shadow: 0 24px 65px rgba(35, 55, 89, .14);
}

.name-story::before {
  content: "";
  position: absolute;
  top: -95px;
  left: -80px;
  width: 210px;
  height: 210px;
  background: rgba(23, 152, 135, .1);
  border-radius: 50%;
}

.name-story__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 3px 3px 14px;
  border-bottom: 1px solid rgba(23, 52, 75, .09);
}

.name-story__head span {
  padding: 5px 8px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 7px;
  font-size: 10px;
  font-weight: 900;
}

.name-story__head strong {
  font-size: 18px;
  font-weight: 900;
}

.name-story__formula {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1.2fr);
  align-items: center;
  gap: 7px;
  padding: 18px 0;
}

.name-story__formula > i {
  color: #839298;
  font: 900 18px/1 "Segoe UI", Arial, sans-serif;
  font-style: normal;
}

.name-part {
  min-width: 0;
  min-height: 125px;
  display: grid;
  place-content: center;
  gap: 5px;
  text-align: center;
  border: 1px solid rgba(23, 52, 75, .08);
  border-radius: 17px 17px 5px 17px;
}

.name-part b,
.name-part span {
  display: block;
}

.name-part b {
  color: var(--primary);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}

.name-part span {
  color: #405a65;
  font-size: 12px;
  font-weight: 900;
}

.name-part--intelligence {
  background: linear-gradient(150deg, #eceafb, #f8f7ff);
}

.name-part--partner {
  background: linear-gradient(150deg, #e0f4ef, #f7fcfa);
}

.name-part--partner b {
  color: var(--teal);
}

.name-part--data {
  background: linear-gradient(150deg, #fff0dc, #fffaf1);
}

.name-part--data b {
  color: var(--coral);
  font-size: 31px;
}

.name-story__result {
  position: relative;
  z-index: 1;
  padding: 17px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 15%, rgba(244, 174, 69, .28), transparent 26%),
    linear-gradient(120deg, var(--primary), #25757d);
  border-radius: 17px 17px 5px 17px;
  box-shadow: 0 18px 38px rgba(53, 49, 159, .18);
}

.name-story__result > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.name-story__result span {
  font-size: 34px;
  font-weight: 950;
  line-height: 1.35;
}

.name-story__result small {
  direction: ltr;
  color: #cafff6;
  font: 900 11px/1 "Segoe UI", Arial, sans-serif;
  letter-spacing: 2px;
}

.name-story__result p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  font-weight: 750;
}

.about-copy > p {
  margin: 13px 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.about-copy .about-identity {
  padding: 13px 15px;
  color: #4f5d67;
  border-right: 3px solid var(--coral);
  background: rgba(255, 253, 249, .68);
  border-radius: 11px 0 0 11px;
  font-size: 13px;
}

.about-identity strong {
  color: var(--ink);
}

.about-values {
  display: grid;
  gap: 8px;
}

.about-values div {
  padding: 13px 16px;
  border: 1px solid rgba(23, 52, 75, .08);
  background: rgba(255, 253, 249, .68);
  border-radius: 12px;
}

.about-values strong,
.about-values span {
  display: block;
}

.about-values strong {
  font-size: 14px;
}

.about-values span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: start;
  gap: 55px;
}

.faq .section-heading {
  position: sticky;
  top: 100px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 3px;
  color: var(--ink);
  border: 0;
  background: transparent;
  text-align: right;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.accordion-item button i {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.accordion-item button i::before,
.accordion-item button i::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 4px;
  width: 14px;
  height: 2px;
  background: var(--primary);
  transition: transform .2s ease;
}

.accordion-item button i::after {
  transform: rotate(90deg);
}

.accordion-item button[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.accordion-panel {
  padding: 0 3px 18px;
}

.accordion-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}

.contact {
  padding-top: 25px;
}

.contact-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
  gap: 48px;
  padding: 46px;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 15%, rgba(244, 174, 69, .23), transparent 23%),
    linear-gradient(120deg, #3b3495, #237674);
  border-radius: 27px;
}

.contact-copy > p {
  margin: 13px 0 22px;
  color: rgba(255, 255, 255, .81);
  font-size: 14px;
  line-height: 2;
}

.contact-copy ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.contact-copy li span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #2e3051;
  background: var(--amber);
  border-radius: 9px 9px 3px 9px;
  font: 900 9px/1 "Segoe UI", Arial, sans-serif;
}

.contact-form {
  padding: 21px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(27, 37, 79, .16);
}

.form-row {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  align-items: start;
  gap: 7px 10px;
  margin-bottom: 11px;
}

.form-row--single {
  grid-template-columns: auto 1fr;
}

.contact-form label {
  padding-top: 11px;
  font-size: 12px;
  font-weight: 850;
}

.field-wrap {
  min-width: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 11px;
  color: var(--ink);
  border: 1px solid #d5dfda;
  background: #faf8f3;
  border-radius: 10px;
  font-size: 13px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select {
  min-height: 43px;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(53, 49, 159, .1);
}

.contact-form .is-invalid {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(239, 107, 87, .1);
}

.field-error {
  display: none;
  margin-top: 3px;
  color: #b84132;
  font-size: 10px;
}

.is-invalid + .field-error {
  display: block;
}

.contact-form .button {
  margin-top: 13px;
}

.form-note,
.form-fallback {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.form-fallback a {
  color: var(--primary);
  font-weight: 850;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 13px;
}

.contact-detail-card {
  padding: 20px;
  border: 1px solid rgba(23, 52, 75, .09);
  background: rgba(255, 253, 249, .88);
  border-radius: 17px 17px 5px 17px;
}

.contact-detail-card > span {
  display: block;
  margin-bottom: 6px;
  color: #24766e;
  font-size: 12px;
  font-weight: 900;
}

.contact-detail-card strong,
.contact-detail-link {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 8px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 8px;
  font-family: "Vazirmatn", Tahoma, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .45px;
  word-spacing: 4px;
}

.contact-phone:hover {
  color: var(--coral);
}

.contact-detail-card--test {
  border-style: dashed;
  border-color: rgba(244, 174, 69, .7);
  background: #fff8e9;
}

.contact-detail-card--test > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.contact-detail-card--test em {
  padding: 3px 6px;
  color: #8a5817;
  background: #ffe9bd;
  border-radius: 6px;
  font-size: 8px;
  font-style: normal;
}

.contact-detail-card--test strong {
  font-size: 13px;
  line-height: 1.8;
}

.contact-detail-link:hover {
  color: var(--primary);
}

.contact-detail-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.contact-map {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  min-height: 330px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px dashed rgba(244, 174, 69, .7);
  background: #fff8e9;
  border-radius: 21px 21px 7px 21px;
}

.contact-map__copy {
  align-self: center;
  padding: 30px;
}

.test-badge {
  display: inline-flex;
  padding: 5px 8px;
  direction: ltr;
  color: #885410;
  background: #ffe6b3;
  border-radius: 7px;
  font: 850 9px/1.4 "Segoe UI", Arial, sans-serif;
  letter-spacing: .8px;
}

.contact-map__copy h3 {
  margin: 10px 0 5px;
  font-size: 22px;
}

.contact-map__copy p {
  margin: 0 0 16px;
  color: #665f4c;
  font-size: 13px;
  line-height: 1.9;
}

.contact-map__frame {
  min-height: 330px;
  padding: 10px;
}

.contact-map__frame iframe {
  width: 100%;
  height: 100%;
  min-height: 310px;
  display: block;
  border: 0;
  filter: saturate(.75) contrast(.96);
  border-radius: 15px 15px 5px 15px;
}

.site-footer {
  margin-top: 65px;
  border-top: 1px solid rgba(23, 52, 75, .09);
  background: #eee9df;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 40px;
  padding: 47px 0 38px;
}

.footer-brand p,
.footer-col p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.footer-brand p strong {
  display: block;
  margin-bottom: 2px;
  color: var(--primary);
  font-size: 14px;
}

.footer-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.footer-direct a {
  padding: 6px 9px;
  color: var(--primary);
  border: 1px solid rgba(53, 49, 159, .13);
  background: rgba(255, 253, 249, .65);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 850;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-col h2 {
  margin: 3px 0 6px;
  font-size: 13px;
}

.footer-col a,
.footer-col span {
  color: var(--muted);
  font-size: 12px;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-contact {
  margin-top: 8px;
  color: var(--primary) !important;
  font-weight: 900;
}

.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(23, 52, 75, .09);
  color: var(--muted);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 16px;
}

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  width: 43px;
  height: 43px;
  border: 0;
  color: var(--white);
  background: var(--primary);
  border-radius: 13px;
  box-shadow: 0 12px 30px rgba(53, 49, 159, .25);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast {
  position: fixed;
  z-index: 1200;
  left: 20px;
  bottom: 20px;
  width: min(390px, calc(100% - 40px));
  padding: 14px 16px;
  color: var(--white);
  background: #253459;
  border-radius: 13px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity .25s ease, transform .25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast strong,
.toast span {
  display: block;
}

.toast strong {
  font-size: 13px;
}

.toast span {
  margin-top: 2px;
  color: rgba(255, 255, 255, .75);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal--delay {
  transition-delay: .1s;
}

.reveal--delay-2 {
  transition-delay: .18s;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.legal-page,
.not-found {
  min-height: 100vh;
  padding: 65px 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(53, 49, 159, .1), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(23, 152, 135, .12), transparent 28%),
    var(--bg);
}

.legal-card {
  max-width: 880px;
  padding: clamp(27px, 6vw, 65px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, .92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.legal-card > .brand {
  margin-bottom: 48px;
}

.legal-card h1 {
  margin: 0;
  font-size: clamp(33px, 5vw, 55px);
  line-height: 1.4;
}

.legal-lead {
  margin: 17px 0 35px;
  padding: 16px;
  color: #665c43;
  border-right: 4px solid var(--amber);
  background: #fff5df;
  border-radius: 11px 0 0 11px;
}

.legal-card section {
  padding: 21px 0;
  border-top: 1px solid var(--line);
}

.legal-card section h2 {
  margin: 0 0 7px;
  font-size: 18px;
}

.legal-card section p {
  margin: 0;
  color: var(--muted);
}

.legal-card section a {
  color: var(--primary);
  font-weight: 850;
}

.legal-card > .button {
  margin-top: 18px;
}

.not-found {
  display: grid;
  place-items: center;
}

.not-found__card {
  width: min(560px, calc(100% - 32px));
  padding: 55px 28px;
  text-align: center;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.not-found__card > span {
  color: var(--primary);
  font: 900 clamp(68px, 14vw, 125px)/1 "Segoe UI", Arial, sans-serif;
}

.not-found__card h1 {
  margin: 23px 0 7px;
}

.not-found__card p {
  margin: 0 0 25px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .nav-wrap {
    gap: 18px;
  }

  .main-nav {
    gap: 16px;
  }

  .hero__grid {
    gap: 32px;
  }

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

  .social-intelligence__grid {
    gap: 35px;
  }
}

@media (max-width: 860px) {
  .announcement__inner {
    min-height: 34px;
  }

  .nav-wrap {
    height: 67px;
  }

  .menu-toggle {
    display: flex;
    margin-right: auto;
  }

  .nav-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    z-index: 1001;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    max-height: calc(100vh - 115px);
    max-height: calc(100dvh - 115px);
    display: grid;
    gap: 0;
    padding: 10px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid var(--line);
    background: rgba(255, 253, 249, .98);
    border-radius: 17px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav a {
    padding: 11px 12px;
    border-radius: 9px;
    font-size: 14px;
  }

  .main-nav a:hover {
    background: var(--surface-soft);
  }

  .main-nav a::after {
    display: none;
  }

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

  .hero__grid,
  .intro-grid,
  .expertise-head,
  .social-intelligence__grid,
  .outcome-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero__visual,
  .intro-system {
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .hero-media {
    height: 355px;
  }

  .hero__visual--signal {
    height: 355px;
  }

  .hero-slider__controls {
    margin-top: 20px;
  }

  .source-strip__inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 15px;
  }

  .source-list {
    justify-content: flex-start;
  }

  .intro-system {
    order: 2;
  }

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

  .offering-card {
    min-height: auto;
  }

  .choice-guide {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .choice-guide p {
    max-width: 520px;
  }

  .capability__head {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  .pipeline__line {
    display: none;
  }

  .promo-banner--social {
    display: grid;
    min-height: auto;
    align-items: start;
  }

  .promo-banner--social .promo-banner__copy {
    width: 100%;
    padding-bottom: 8px;
  }

  .promo-network {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: clamp(270px, 48vw, 330px);
    height: auto;
    aspect-ratio: 1;
    margin: -8px auto 26px;
    transform: none;
  }

  .promo-network__node--1 { top: 5.5%; left: 17%; }
  .promo-network__node--2 { top: 5.5%; right: 17%; }
  .promo-network__node--3 { top: 43%; left: 1%; }
  .promo-network__node--4 { top: 43%; right: 1%; }
  .promo-network__node--5 { left: 17%; bottom: 5.5%; }
  .promo-network__node--6 { right: 17%; bottom: 5.5%; }

  .promo-network__line {
    width: min(32%, 105px);
  }

  .industries-layout {
    grid-template-columns: 1fr;
  }

  .industries-heading,
  .faq .section-heading {
    position: static;
  }

  .industry-schematic {
    max-width: 520px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-details {
    grid-template-columns: 1fr 1fr;
  }

  .contact-detail-card:last-child {
    grid-column: auto;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-col:last-child {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .source-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .source-list::-webkit-scrollbar {
    display: none;
  }

  .source-list .platform-badge {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .announcement__inner {
    justify-content: center;
  }

  .announcement a {
    display: none;
  }

  .brand-symbol {
    width: 39px;
    height: 39px;
  }

  .brand-en {
    display: none;
  }

  .main-nav {
    right: 12px;
    left: 12px;
  }

  .hero {
    padding: 34px 0 50px;
  }

  .hero h1,
  .hero-slide__title {
    font-size: clamp(29px, 9vw, 34px);
    letter-spacing: -1.1px;
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__checks {
    display: grid;
    gap: 8px;
  }

  .hero-media {
    height: clamp(235px, 74vw, 280px);
    border-width: 5px;
    border-radius: 23px 23px 8px 23px;
  }

  .hero__visual--signal {
    height: clamp(235px, 74vw, 280px);
    padding: 11px;
    border-width: 5px;
    border-radius: 23px 23px 8px 23px;
  }

  .hero-signal-board {
    width: 100%;
    padding: 12px;
  }

  .hero-signal-board__metrics strong {
    font-size: 10px;
  }

  .hero-signal-board__chart {
    height: 84px;
  }

  .hero-slider__controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    margin-top: 16px;
  }

  .hero-slider__dots {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .hero-slider__dots button {
    min-width: 40px;
    min-height: 40px;
    justify-content: center;
    padding: 6px;
    font-size: 0;
  }

  .hero-slider__dots button span {
    font-size: 9px;
  }

  .hero-slider__actions button {
    width: 40px;
    height: 40px;
  }

  .hero-slider__timer {
    width: 100%;
    max-width: none;
  }

  .hero-slider__timer small {
    display: none;
  }

  .floating-card--top {
    top: 15px;
    right: 6px;
  }

  .floating-card--bottom {
    bottom: 14px;
    left: 6px;
  }

  .section {
    padding: 61px 0;
  }

  .section-heading h2,
  .capability h2,
  .showcase h2,
  .outcome h2,
  .about-copy h2,
  .contact h2,
  .intro-copy h2,
  .social-intelligence__copy h2 {
    font-size: 28px;
  }

  .intro-system {
    min-height: 340px;
    grid-template-columns: .76fr 1.24fr;
    padding: 24px 16px 53px;
  }

  .intro-system__outputs {
    grid-column: 1 / -1;
    width: 150px;
    justify-self: center;
  }

  .intro-system__core::after {
    display: none;
  }

  .offering-card {
    padding: 22px 18px;
    border-radius: 21px 21px 7px 21px;
  }

  .feature-list li {
    font-size: 12px;
  }

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

  .expertise-card {
    min-height: auto;
  }

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

  .pipeline-step:last-child {
    grid-column: 1 / -1;
  }

  .promo-banners__grid {
    grid-template-columns: 1fr;
  }

  .promo-banner--social {
    grid-column: auto;
    min-height: auto;
  }

  .promo-banner--social .promo-banner__copy {
    width: 100%;
    padding-bottom: 8px;
  }

  .promo-network {
    width: clamp(248px, 76vw, 300px);
    margin: -4px auto 22px;
  }

  .promo-banner--products,
  .promo-banner--custom {
    min-height: 360px;
    align-items: flex-start;
  }

  .promo-banner--products .promo-banner__copy,
  .promo-banner--custom .promo-banner__copy {
    width: 100%;
    padding-bottom: 145px;
  }

  .social-dashboard {
    padding: 12px;
    border-radius: 19px 19px 6px 19px;
  }

  .dashboard-metrics,
  .dashboard-lower {
    grid-template-columns: 1fr;
  }

  .ai-summary {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .showcase {
    padding-top: 22px;
  }

  .showcase-card {
    min-height: 500px;
    align-items: end;
  }

  .showcase-card__overlay {
    background: linear-gradient(0deg, rgba(34, 41, 96, .96) 8%, rgba(34, 41, 96, .2) 82%);
  }

  .showcase-card__content {
    width: auto;
    margin: 0;
    padding: 25px;
  }

  .industry-tabs__list {
    grid-template-columns: 1fr;
  }

  .industry-panel {
    grid-template-columns: 1fr;
    padding: 21px;
  }

  .industry-schematic {
    min-height: 220px;
    padding: 18px 13px;
    gap: 12px;
  }

  .process-item {
    grid-template-columns: 58px 1fr;
    gap: 13px;
  }

  .process-item__number {
    width: 48px;
    height: 48px;
  }

  .process-item:not(:last-child)::after {
    top: 49px;
    right: 23px;
  }

  .case-facts {
    grid-template-columns: 1fr;
  }

  .board-chart {
    height: 190px;
  }

  .about-visual {
    min-height: auto;
  }

  .contact-card {
    width: min(calc(100% - 12px), var(--container));
    padding: 25px 15px;
    border-radius: 21px;
  }

  .form-row,
  .form-row--single {
    grid-template-columns: 1fr;
  }

  .contact-form label {
    padding-top: 2px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-detail-card:last-child {
    grid-column: auto;
  }

  .contact-map {
    grid-template-columns: 1fr;
  }

  .contact-map__copy {
    padding: 22px 18px;
  }

  .contact-map__frame {
    min-height: 280px;
    padding: 0 10px 10px;
  }

  .contact-map__frame iframe {
    min-height: 280px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-col:last-child {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    padding: 15px 0;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .announcement__inner {
    font-size: 10px;
  }

  .nav-wrap {
    height: 62px;
  }

  .brand-name {
    font-size: 20px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .main-nav {
    right: 10px;
    left: 10px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1,
  .hero-slide__title {
    font-size: clamp(27px, 8.7vw, 31px);
    letter-spacing: -.8px;
  }

  .hero__lead {
    font-size: 14px;
    line-height: 1.95;
  }

  .hero__actions {
    gap: 8px;
  }

  .hero__checks {
    font-size: 11px;
  }

  .floating-card {
    gap: 7px;
    max-width: calc(100% - 12px);
    padding: 8px 10px;
  }

  .floating-card strong {
    font-size: 11px;
  }

  .hero-signal-board__metrics article {
    padding: 7px 5px;
  }

  .hero-signal-board__metrics small {
    font-size: 8px;
  }

  .hero-signal-board__summary {
    grid-template-columns: 30px 1fr;
    padding: 7px;
  }

  .hero-signal-board__summary p {
    font-size: 10px;
  }

  .section-heading h2,
  .capability h2,
  .showcase h2,
  .outcome h2,
  .about-copy h2,
  .contact h2,
  .intro-copy h2,
  .social-intelligence__copy h2 {
    font-size: 25px;
  }

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

  .pipeline-step,
  .pipeline-step:last-child {
    grid-column: auto;
    min-height: auto;
  }

  .promo-banner {
    border-radius: 22px 22px 7px 22px;
  }

  .promo-banner__copy {
    padding: 24px 18px;
  }

  .promo-banner--social .promo-banner__copy {
    padding-bottom: 8px;
  }

  .promo-network {
    width: min(244px, calc(100% - 20px));
  }

  .promo-network__node {
    width: 40px;
    height: 40px;
    border-width: 4px;
  }

  .promo-network__node img {
    width: 27px;
    height: 27px;
  }

  .promo-network__core {
    width: 102px;
    height: 102px;
  }

  .social-dashboard__top {
    align-items: flex-start;
    gap: 8px;
  }

  .social-dashboard__top > span {
    flex: 0 0 auto;
  }

  .dashboard-metrics article,
  .trend-panel,
  .sentiment-panel {
    padding: 10px;
  }

  .showcase-card {
    min-height: 440px;
  }

  .showcase-card__content {
    padding: 20px 17px;
  }

  .industry-panel {
    padding: 18px 15px;
  }

  .process-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 11px;
  }

  .process-item__number {
    width: 44px;
    height: 44px;
  }

  .process-item:not(:last-child)::after {
    top: 45px;
    right: 21px;
  }

  .board-metrics {
    grid-template-columns: 1fr;
  }

  .name-story {
    padding: 14px;
    border-radius: 21px 21px 7px 21px;
  }

  .name-story__head strong {
    font-size: 16px;
  }

  .name-story__formula {
    gap: 4px;
    padding-block: 14px;
  }

  .name-story__formula > i {
    font-size: 14px;
  }

  .name-part {
    min-height: 105px;
    border-radius: 14px 14px 4px 14px;
  }

  .name-part b {
    font-size: 34px;
  }

  .name-part--data b {
    font-size: 26px;
  }

  .name-part span {
    font-size: 11px;
  }

  .name-story__result {
    padding: 14px;
  }

  .name-story__result span {
    font-size: 30px;
  }

  .name-story__result p {
    font-size: 10px;
  }

  .contact-detail-card {
    padding: 17px;
  }

  .contact-phone {
    font-size: 16px;
    word-spacing: 2px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-col:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .announcement,
  .site-header,
  .back-to-top,
  .scroll-progress,
  .contact-form {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 30px 0;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
