:root {
  --font: Inter, "Noto Sans Arabic", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --navy: #050b1f;
  --navy-soft: #071225;
  --blue: #2563eb;
  --surface: #f3f2fc;
  --surface-alt: #f7f9fc;
  --ink: #0f1729;
  --muted: #667085;
  --border: #e0e4eb;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea {
  font: inherit;
}

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

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

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

.site-container {
  width: min(1216px, calc(100% - 64px));
  margin-inline: auto;
}

.loading-screen,
.load-error {
  display: grid;
  min-height: 100vh;
  place-content: center;
  justify-items: center;
  gap: 18px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
}

.load-error h1,
.load-error p {
  margin: 0;
}

.load-error h1 {
  color: white;
}

.load-error button {
  border: 0;
  border-radius: 7px;
  background: var(--blue);
  padding: 12px 20px;
  color: white;
  cursor: pointer;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 11, 31, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: linear-gradient(145deg, #4778f1, #2457d7);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.24), 0 8px 30px rgba(37, 99, 235, 0.22);
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-word {
  color: white;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.brand-word span {
  color: #4d7cff;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a,
.mobile-nav nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 500;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-nav nav a:hover,
.mobile-nav nav a:focus-visible {
  color: white;
}

.header-actions {
  display: flex;
  flex: none;
  align-items: center;
  gap: 12px;
}

.locale-switch {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
}

.locale-switch button {
  min-height: 36px;
  border: 0;
  background: transparent;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.locale-switch button[aria-pressed="true"] {
  background: var(--blue);
  color: white;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #3470f2;
  border-radius: 7px;
  background: var(--blue);
  padding: 0 28px;
  color: white;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #1d4ed8;
}

.button--small {
  min-height: 38px;
  padding-inline: 19px;
  font-size: 14px;
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
}

.action-arrow {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  display: grid;
  width: 42px;
  height: 42px;
  place-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span {
  width: 18px;
  height: 1px;
  background: white;
}

.mobile-nav nav {
  position: absolute;
  top: 52px;
  inset-inline-end: 0;
  display: grid;
  min-width: 230px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: var(--navy-soft);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.mobile-nav nav a {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav nav a:last-child {
  border-bottom: 0;
}

.hero-section {
  position: relative;
  padding: 180px 0 104px;
  background:
    radial-gradient(circle at 74% 44%, rgba(37, 99, 235, 0.13), transparent 26%),
    var(--navy);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 76px;
}

.hero-content {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 28px;
  border: 1px solid rgba(78, 121, 255, 0.22);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 15px;
  color: #7da0ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: white;
  font-size: clamp(44px, 4.25vw, 66px);
  font-weight: 720;
  letter-spacing: -0.047em;
  line-height: 1.07;
}

.hero-copy {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.hero-network {
  position: relative;
  min-height: 520px;
  isolation: isolate;
}

.network-orbit {
  position: absolute;
  inset: 9% 7%;
  z-index: -1;
  border: 1px solid rgba(78, 121, 255, 0.12);
  border-radius: 50%;
  background:
    linear-gradient(rgba(78, 121, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 121, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle, black 35%, transparent 73%);
}

.network-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.network-connectors line {
  stroke: rgba(78, 116, 255, 0.34);
  stroke-width: 1;
  stroke-dasharray: 5 8;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.network-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 156px;
  height: 156px;
  place-content: center;
  border: 1px solid rgba(91, 132, 255, 0.42);
  border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, #4979f0, #173883 58%, #0a1739 100%);
  box-shadow: 0 0 0 24px rgba(37, 99, 235, 0.05), 0 0 90px rgba(37, 99, 235, 0.28);
  color: white;
  text-align: center;
  transform: translate(-50%, -50%);
}

.network-core__glow {
  position: absolute;
  inset: 26px;
  border-radius: inherit;
  background: #3c6eea;
  filter: blur(12px);
  opacity: 0.72;
}

.network-core strong,
.network-core span:last-child {
  position: relative;
}

.network-core strong {
  font-size: 25px;
  letter-spacing: 0.1em;
}

.network-core span:last-child {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.hero-node {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.62);
}

.hero-node > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid #3269e6;
  border-radius: 50%;
  background: rgba(5, 11, 31, 0.94);
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.03);
  color: #73a0ff;
}

.hero-node small {
  font-size: 12px;
}

.hero-node--iphone { top: 7%; left: 19%; }
.hero-node--ipad { top: -1%; left: 50%; transform: translateX(-50%); }
.hero-node--mac { top: 7%; right: 16%; }
.hero-node--apps { top: 48%; left: 1%; transform: translateY(-50%); }
.hero-node--identity { bottom: 4%; left: 20%; }
.hero-node--security { right: 16%; bottom: 4%; }

.metric-strip {
  border-block: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--navy-soft);
  padding: 45px 0;
}

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

.metric-grid > div {
  display: grid;
  gap: 6px;
  padding: 0 44px;
  text-align: center;
}

.metric-grid > div + div {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-grid strong {
  color: white;
  font-size: 38px;
  letter-spacing: -0.035em;
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.atp-strip {
  border-bottom: 1px solid rgba(37, 99, 235, 0.14);
  background: #eef3ff;
  padding: 22px 0;
  color: #33415e;
}

.atp-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.atp-inner p {
  margin: 0;
  font-size: 14px;
}

.atp-inner strong {
  color: var(--ink);
}

.atp-dot {
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.1);
}

.section {
  padding: 96px 0;
}

.section--surface {
  background: var(--surface);
}

.section--alt {
  background: var(--surface-alt);
}

.section--dark {
  background:
    radial-gradient(circle at 82% 20%, rgba(37, 99, 235, 0.12), transparent 28%),
    var(--navy);
  color: white;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading h2,
.cta-inner h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.2vw, 45px);
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.section-heading > p:last-child {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-heading--dark h2 {
  color: white;
}

.section-heading--dark .section-kicker {
  color: #7da0ff;
}

.audience-grid,
.service-grid,
.platform-grid,
.reason-grid {
  display: grid;
  gap: 20px;
}

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

.audience-grid {
  gap: 28px;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: 32px;
  direction: ltr;
}

.services-layout .service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.services-layout .service-card {
  min-height: 226px;
  padding: 24px;
}

.services-layout .service-card p {
  font-size: 14px;
  line-height: 1.55;
}

.service-showcase {
  overflow: hidden;
  width: 100%;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
  padding: 10px;
  box-shadow: 0 24px 70px rgba(34, 55, 95, 0.12);
}

.service-showcase img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 11px;
}

html[dir="rtl"] .services-layout .service-grid {
  direction: rtl;
  text-align: right;
}

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

.reasons-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.45fr);
  align-items: center;
  gap: 48px;
  direction: ltr;
}

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

.reason-showcase {
  position: relative;
  display: grid;
  width: 100%;
  margin: 0;
  place-items: center;
}

.reason-showcase::before {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.2);
  content: "";
  filter: blur(70px);
}

.reason-showcase img {
  position: relative;
  display: block;
  width: auto;
  max-width: 100%;
  height: min(620px, 58vw);
  object-fit: contain;
  filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.28));
}

.reasons-layout .reason-card {
  display: grid;
  min-height: 0;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 20px;
  padding: 24px;
}

.reasons-layout .dark-card-icon {
  grid-row: 1 / span 2;
}

.reasons-layout .reason-card h3 {
  margin-top: 2px;
}

.reasons-layout .reason-card p {
  margin-top: 8px;
}

html[dir="rtl"] .reasons-layout .reason-grid {
  direction: rtl;
  text-align: right;
}

.audience-card,
.service-card,
.platform-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.audience-card:hover,
.service-card:hover,
.platform-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 18px 40px rgba(34, 55, 95, 0.08);
  transform: translateY(-4px);
}

.audience-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 32px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.platform-card {
  min-height: 210px;
  padding: 28px;
}

.card-icon,
.dark-card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: none;
  place-items: center;
  border-radius: 10px;
  background: #eef3ff;
  color: var(--blue);
}

.audience-card h3,
.service-card h3,
.platform-card h3,
.reason-card h3 {
  margin: 24px 0 0;
  color: #182033;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.audience-card p,
.service-card p,
.platform-card p,
.reason-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.audience-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 650;
}

.service-number {
  position: absolute;
  top: 27px;
  inset-inline-end: 28px;
  color: #c5ccda;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.reason-card {
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 28px;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.reason-card:hover {
  border-color: rgba(82, 126, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.dark-card-icon {
  background: rgba(37, 99, 235, 0.13);
  color: #739cff;
}

.reason-card h3 {
  color: white;
}

.reason-card p {
  color: rgba(255, 255, 255, 0.55);
}

.scenario-tabs {
  display: grid;
  gap: 34px;
}

.scenario-tabs__list {
  display: flex;
  width: fit-content;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: white;
  padding: 5px;
}

.scenario-tab {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  padding: 0 20px;
  color: #687386;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
}

.scenario-tab[aria-selected="true"] {
  background: var(--blue);
  color: white;
}

.scenario-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  padding: 42px;
}

.scenario-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--border);
}

.scenario-metrics div {
  display: grid;
  min-height: 130px;
  align-content: center;
  gap: 7px;
  background: #f8faff;
  padding: 24px;
}

.scenario-metrics strong {
  color: #102047;
  font-size: 29px;
  letter-spacing: -0.035em;
}

.scenario-metrics span {
  color: #6b7485;
  font-size: 13px;
}

.scenario-copy {
  display: grid;
  gap: 24px;
}

.scenario-copy > div {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.scenario-copy > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.scenario-copy h3 {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scenario-copy p {
  margin: 9px 0 0;
  color: #4f5c72;
  font-size: 16px;
  line-height: 1.65;
}

.cta-section {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 20%, rgba(37, 99, 235, 0.15), transparent 25%),
    var(--navy);
  padding: 78px 0;
  color: white;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-inner .section-kicker {
  color: #7299ff;
}

.cta-inner h2 {
  max-width: 720px;
  color: white;
}

.contact-section {
  background: #f5f6fc;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1.16fr);
  gap: 96px;
}

.contact-details {
  display: grid;
  gap: 25px;
  margin-top: 44px;
  font-style: normal;
}

.contact-details > div {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-details > div > span:first-child {
  display: grid;
  width: 40px;
  height: 40px;
  flex: none;
  place-items: center;
  border-radius: 9px;
  background: #e7edff;
  color: var(--blue);
}

.contact-details p {
  display: grid;
  gap: 5px;
  margin: 0;
}

.contact-details strong {
  color: #687386;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p > span {
  color: #182033;
  font-size: 16px;
  font-weight: 550;
}

.contact-form {
  display: grid;
  gap: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  padding: 38px;
  box-shadow: 0 22px 60px rgba(35, 51, 84, 0.08);
}

.field-group {
  display: grid;
  gap: 9px;
}

.field-group label {
  color: #3d485c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid #dbe0e9;
  border-radius: 8px;
  background: #fbfcfe;
  color: #182033;
  font-size: 15px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.field-group input {
  height: 50px;
  padding-inline: 15px;
}

.field-group textarea {
  min-height: 130px;
  padding: 14px 15px;
  resize: vertical;
}

.form-submit {
  min-height: 52px;
  border: 0;
  border-radius: 7px;
  background: var(--blue);
  color: white;
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
}

.form-submit:hover {
  background: #1d4ed8;
}

.site-footer {
  background: #030817;
  color: white;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-block: 64px;
}

.footer-main > div > p {
  max-width: 380px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 6px;
}

.footer-main nav a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 22px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .hero-section {
  background:
    radial-gradient(circle at 26% 44%, rgba(37, 99, 235, 0.13), transparent 26%),
    var(--navy);
}

html[dir="rtl"] .hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
}

html[dir="rtl"] .hero-content {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}

html[dir="rtl"] .hero-network {
  grid-column: 2;
  grid-row: 1;
}

html[dir="rtl"] .action-arrow {
  transform: scaleX(-1);
}

html[dir="rtl"] .section-heading--center {
  text-align: center;
}

html[dir="rtl"] .contact-form input,
html[dir="rtl"] .contact-form textarea {
  text-align: right;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

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

  .services-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
    gap: 24px;
  }

  .reasons-layout {
    grid-template-columns: minmax(230px, 0.62fr) minmax(0, 1.38fr);
    gap: 32px;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  html[dir="rtl"] .hero-grid {
    grid-template-columns: 1fr;
  }

  html[dir="rtl"] .hero-content,
  html[dir="rtl"] .hero-network {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-network {
    min-height: 460px;
  }

  .scenario-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 48px;
  }

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

  .service-showcase {
    width: min(100%, 520px);
    margin-inline: auto;
  }
}

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

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

  .audience-card {
    min-height: 260px;
  }

  .service-card,
  .platform-card {
    min-height: auto;
  }

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

  .reason-showcase {
    width: min(100%, 300px);
    margin-inline: auto;
  }

  .reason-showcase img {
    height: auto;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-container {
    width: min(calc(100% - 40px), 1216px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-word {
    font-size: 19px;
  }

  .desktop-cta {
    display: none;
  }

  .hero-section {
    padding: 132px 0 76px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-network {
    min-height: 360px;
    transform: scale(0.92);
  }

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

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

  .metric-grid > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-inline-start: 0;
    padding-top: 24px;
  }

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

  .section-heading h2,
  .cta-inner h2 {
    font-size: 32px;
  }

  .section-heading > p:last-child {
    font-size: 16px;
  }

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

  .scenario-tabs__list {
    width: 100%;
    overflow-x: auto;
  }

  .scenario-tab {
    min-width: max-content;
  }

  .scenario-panel {
    gap: 32px;
    padding: 24px;
  }

  .scenario-metrics div {
    min-height: 112px;
    padding: 17px;
  }

  .scenario-metrics strong {
    font-size: 25px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-main,
  .footer-bottom {
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
