@font-face {
  font-family: "VazirmatnFallback";
  src: local("Vazirmatn"), local("Tahoma");
  font-display: swap;
}

:root {
  --navy-950: #071c2a;
  --navy-900: #102f45;
  --navy-800: #17445f;
  --navy-700: #1d5874;
  --mint-500: #58c8b6;
  --mint-400: #75d8c8;
  --mint-100: #dcf6f0;
  --sand-50: #fbfaf6;
  --white: #ffffff;
  --ink: #10212c;
  --muted: #687985;
  --line: #dce6e9;
  --shadow: 0 24px 70px rgba(8, 41, 57, .12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "VazirmatnFallback", Tahoma, Arial, sans-serif;
  color: var(--ink);
  background: var(--sand-50);
  line-height: 1.85;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.section {
  padding: 110px 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--navy-900);
  border-radius: 10px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}

.site-header.scrolled {
  background: rgba(251, 250, 246, .9);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(16, 47, 69, .08);
}

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

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--navy-900);
  color: var(--mint-400);
  box-shadow: 0 12px 24px rgba(16, 47, 69, .18);
}

.brand-mark svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy-900);
  font-size: 15px;
  line-height: 1.4;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #2d4656;
  font-size: 14px;
  font-weight: 700;
}

.main-nav > a {
  transition: .2s ease;
}

.main-nav > a:hover {
  color: var(--navy-700);
}

.main-nav .nav-cta {
  padding: 10px 18px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(16, 47, 69, .16);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-content: center;
  gap: 5px;
  border: 0;
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 47, 69, .1);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 4px;
  transition: .25s ease;
}

.hero {
  position: relative;
  min-height: 830px;
  padding-top: 180px;
  background:
    linear-gradient(180deg, #f3fbf8 0%, var(--sand-50) 76%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .35;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(88, 200, 182, .18) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(16, 47, 69, .12) 0 1px, transparent 1px);
  background-size: 28px 28px, 36px 36px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  filter: blur(4px);
  border-radius: 50%;
  opacity: .6;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  top: 120px;
  left: -120px;
  background: radial-gradient(circle, rgba(88, 200, 182, .2), transparent 68%);
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  right: -170px;
  top: 260px;
  background: radial-gradient(circle, rgba(16, 47, 69, .12), transparent 68%);
}

.hero-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--mint-500);
  border-radius: 99px;
}

.hero h1 {
  max-width: 640px;
  margin: 22px 0 20px;
  color: var(--navy-950);
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.2;
  letter-spacing: -.055em;
}

.hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: #566d7a;
  font-size: 17px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: 0;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: .25s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 18px 38px rgba(16, 47, 69, .23);
}

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

.btn-secondary {
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid rgba(16, 47, 69, .1);
  box-shadow: 0 12px 30px rgba(16, 47, 69, .08);
}

.trust-row {
  display: flex;
  gap: 34px;
  margin-top: 48px;
}

.trust-row div {
  min-width: 100px;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--navy-900);
  font-size: 22px;
}

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

.hero-visual {
  position: relative;
  min-width: 0;
}

.dashboard-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(16, 47, 69, .1);
  border-radius: 30px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard-card::after {
  content: "";
  position: absolute;
  inset: auto -70px -100px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 200, 182, .16), transparent 70%);
}

.dashboard-top,
.panel-head,
.mini-head,
.progress-item > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dashboard-top h2 {
  margin: 2px 0 0;
  color: var(--navy-950);
  font-size: 21px;
}

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

.status-pill,
.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  color: #1b6b5f;
  background: var(--mint-100);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.status-pill i {
  width: 7px;
  height: 7px;
  background: #3eb09d;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(62, 176, 157, .13);
}

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

.metric-grid article {
  min-width: 0;
  padding: 18px;
  border: 1px solid #e7edef;
  border-radius: 17px;
  background: #fbfdfd;
}

.metric-grid span,
.metric-grid strong,
.metric-grid small {
  display: block;
}

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

.metric-grid strong {
  margin: 4px 0 2px;
  color: var(--navy-950);
  font-size: 28px;
}

.metric-grid small {
  color: #758793;
  font-size: 10px;
}

.metric-grid .positive {
  color: #278d7c;
}

.chart-panel {
  padding: 20px;
  border-radius: 20px;
  background: var(--navy-900);
  color: var(--white);
}

.panel-head span {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 11px;
}

.panel-head strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.mini-badge {
  color: #c8fff5;
  background: rgba(88, 200, 182, .15);
}

.chart {
  width: 100%;
  height: auto;
  margin-top: 14px;
}

.chart-grid {
  fill: none;
  stroke: rgba(255,255,255,.08);
  stroke-width: 1;
}

.chart-area {
  fill: url(#areaFill);
}

.chart-line {
  fill: none;
  stroke: #75d8c8;
  stroke-width: 4;
  stroke-linecap: round;
}

.chart circle {
  fill: #fff;
  stroke: #75d8c8;
  stroke-width: 4;
}

.people-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.people-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.people-strip strong {
  color: var(--navy-900);
}

.avatar-stack {
  display: flex;
  direction: ltr;
}

.avatar-stack span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-700);
  font-size: 10px;
  font-weight: 900;
}

.avatar-stack span:nth-child(2) { background: #5286a1; }
.avatar-stack span:nth-child(3) { background: #4da695; }
.avatar-stack span:nth-child(4) { background: #7c8d9b; }

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  padding: 13px 16px;
  border: 1px solid rgba(16,47,69,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 18px 42px rgba(8,41,57,.14);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  color: var(--navy-900);
  font-size: 12px;
}

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

.float-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #1e7164;
  background: var(--mint-100);
  font-weight: 900;
}

.float-icon-alt {
  color: var(--navy-700);
  background: #e7f0f5;
}

.floating-one {
  top: -30px;
  right: -28px;
}

.floating-two {
  bottom: 36px;
  left: -44px;
}

.logo-band {
  padding: 34px 0;
  border-block: 1px solid rgba(16,47,69,.08);
  background: rgba(255,255,255,.62);
}

.logo-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo-band p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.industry-list span {
  color: #7d8d97;
  font-size: 13px;
  font-weight: 900;
}

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

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

.section-heading h2,
.process-copy h2,
.insight-copy h2,
.contact-copy h2 {
  margin: 14px 0 14px;
  color: var(--navy-950);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.35;
  letter-spacing: -.04em;
}

.section-heading p,
.process-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

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

.feature-card {
  padding: 26px;
  border: 1px solid rgba(16,47,69,.08);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(16,47,69,.06);
  transition: .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(16,47,69,.11);
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--navy-700);
  background: #edf7f5;
}

.feature-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 20px 0 9px;
  color: var(--navy-900);
  font-size: 18px;
}

.feature-card p {
  min-height: 95px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.feature-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--navy-700);
  font-size: 12px;
  font-weight: 900;
}

.process-section {
  background: #f1f7f6;
}

.process-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid rgba(16,47,69,.08);
  border-radius: 19px;
  background: rgba(255,255,255,.78);
}

.step-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--navy-800);
  background: var(--mint-100);
  font-size: 16px;
  font-weight: 900;
}

.step h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 16px;
}

.step p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.insight-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
  padding: 58px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, #0d293b, #153f56 62%, #1d5a6f);
  box-shadow: 0 34px 80px rgba(7,28,42,.2);
}

.eyebrow.light {
  color: #b8f7ec;
}

.insight-copy h2,
.insight-copy p,
.insight-copy li {
  color: var(--white);
}

.insight-copy p {
  color: rgba(255,255,255,.7);
}

.insight-copy ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.insight-copy li {
  position: relative;
  padding-right: 27px;
  font-size: 13px;
}

.insight-copy li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #cafff5;
  background: rgba(88,200,182,.16);
  font-size: 10px;
}

.mini-dashboard {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  color: var(--white);
}

.mini-head span {
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

.mini-head strong {
  font-size: 12px;
}

.donut-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 28px 0;
}

.donut {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #153c52 0 54%, transparent 55%),
    conic-gradient(#75d8c8 0 46%, #81a6bb 46% 80%, #d7e5ea 80% 100%);
}

.donut span {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
}

.donut small {
  display: block;
  margin-top: -4px;
  color: rgba(255,255,255,.6);
  font-size: 10px;
}

.legend {
  flex: 1;
}

.legend p {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
  color: rgba(255,255,255,.7);
  font-size: 11px;
}

.legend i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.legend-a { background: #75d8c8; }
.legend-b { background: #81a6bb; }
.legend-c { background: #d7e5ea; }

.legend strong {
  color: var(--white);
  font-size: 11px;
}

.progress-item {
  margin-top: 18px;
}

.progress-item > div {
  margin-bottom: 7px;
  color: rgba(255,255,255,.7);
  font-size: 10px;
}

.progress-item > div strong {
  color: var(--white);
}

.progress {
  height: 7px;
  display: block;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}

.progress i {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #58c8b6, #9be8dc);
}

.quote-section {
  padding-top: 10px;
}

.quote-card {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding: 48px 56px;
  border: 1px solid rgba(16,47,69,.08);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(16,47,69,.08);
  text-align: center;
}

.quote-mark {
  position: absolute;
  top: -24px;
  right: 50%;
  transform: translateX(50%);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--navy-700);
  background: var(--mint-100);
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.quote-card > p {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  line-height: 1.9;
}

.quote-card footer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  text-align: right;
}

.quote-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-700);
  font-weight: 900;
}

.quote-card footer strong,
.quote-card footer span {
  display: block;
}

.quote-card footer strong {
  color: var(--navy-900);
  font-size: 12px;
}

.quote-card footer span {
  color: var(--muted);
  font-size: 10px;
}

.contact-section {
  background: #eff7f5;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-details a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 390px;
  padding: 14px 17px;
  border: 1px solid rgba(16,47,69,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
}

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

.contact-details strong {
  color: var(--navy-900);
  font-size: 12px;
}

.contact-form {
  padding: 30px;
  border: 1px solid rgba(16,47,69,.09);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(16,47,69,.09);
}

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

.contact-form label {
  display: block;
  margin-bottom: 14px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #dfe7e9;
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: #fbfdfd;
  transition: .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--mint-500);
  box-shadow: 0 0 0 4px rgba(88,200,182,.12);
}

.contact-form textarea {
  resize: vertical;
}

.btn-block {
  width: 100%;
}

.form-note {
  margin: 12px 0 0;
  color: #87959e;
  font-size: 9px;
  text-align: center;
}

.form-success {
  min-height: 24px;
  margin-top: 8px;
  color: #1f7b6c;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.site-footer {
  padding: 70px 0 24px;
  color: rgba(255,255,255,.68);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr;
  gap: 70px;
}

.brand-light .brand-mark {
  background: rgba(255,255,255,.1);
}

.brand-light strong {
  color: var(--white);
}

.brand-light small {
  color: rgba(255,255,255,.5);
}

.footer-brand p {
  max-width: 380px;
  margin: 20px 0 0;
  font-size: 12px;
}

.footer-grid h3 {
  margin: 4px 0 16px;
  color: var(--white);
  font-size: 13px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid a,
.footer-grid span {
  font-size: 11px;
}

.footer-grid a:hover {
  color: var(--mint-400);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-grid,
  .process-grid,
  .contact-grid {
    gap: 46px;
  }

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

  .insight-card {
    gap: 38px;
    padding: 42px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 82px 0;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    inset: 76px 20px auto;
    z-index: 110;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(16,47,69,.08);
    border-radius: 20px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }

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

  .main-nav > a {
    padding: 12px 14px;
    border-radius: 10px;
  }

  .main-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

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

  .hero-grid,
  .process-grid,
  .insight-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }

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

  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    max-width: 680px;
    margin-inline: auto;
  }

  .floating-one {
    right: 10px;
  }

  .floating-two {
    left: 10px;
  }

  .logo-band .container {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .process-copy {
    text-align: center;
  }

  .process-copy .eyebrow,
  .process-copy .text-link {
    justify-content: center;
  }

  .insight-card {
    padding: 38px 30px;
  }

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

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

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

  .nav-wrap {
    min-height: 74px;
  }

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

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

  .brand small {
    font-size: 8px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row {
    gap: 12px;
  }

  .trust-row div {
    min-width: 0;
    flex: 1;
  }

  .trust-row strong {
    font-size: 18px;
  }

  .trust-row span {
    font-size: 9px;
  }

  .dashboard-card {
    padding: 17px;
    border-radius: 22px;
  }

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

  .metric-grid article {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .metric-grid span,
  .metric-grid small {
    grid-column: 1;
  }

  .metric-grid strong {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
  }

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

  .feature-card p {
    min-height: auto;
  }

  .step {
    grid-template-columns: 54px 1fr;
    padding: 16px;
  }

  .step-number {
    width: 48px;
    height: 48px;
  }

  .insight-card {
    padding: 30px 18px;
  }

  .donut-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .donut {
    margin-inline: auto;
  }

  .legend {
    width: 100%;
  }

  .quote-card {
    padding: 44px 22px 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 22px 17px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

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