:root {
  --blue-700: #0649d8;
  --blue-600: #0d5cff;
  --blue-500: #2a72ff;
  --blue-100: #eaf1ff;
  --blue-50: #f4f7ff;
  --navy-950: #08111f;
  --navy-900: #0b1530;
  --navy-800: #12213b;
  --ink: #101828;
  --muted: #506078;
  --line: #dce3ee;
  --line-soft: #e9eef6;
  --surface: #ffffff;
  --surface-soft: #f7f9fd;
  --success: #15966f;
  --warning: #d08312;
  --shadow-sm: 0 8px 24px rgba(20, 44, 91, 0.08);
  --shadow-md: 0 20px 60px rgba(20, 44, 91, 0.13);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid #70a0ff;
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  color: #fff;
  background: var(--blue-600);
}

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

.section {
  padding-block: 96px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 227, 238, 0.8);
  backdrop-filter: blur(12px);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  color: #0b1020;
  font-size: 23px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.brand-text small {
  margin-top: 5px;
  color: #4a5568;
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: stretch;
  gap: 36px;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #1e293b;
  font-size: 14px;
  font-weight: 620;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy-900);
  border-radius: 5px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(34, 106, 255, 0.09), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f6f9ff 100%);
  border-bottom: 1px solid var(--line-soft);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  width: 640px;
  height: 220px;
  content: "";
  border: 1px solid rgba(63, 125, 255, 0.11);
  border-radius: 50%;
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero::before {
  top: 190px;
  right: -220px;
}

.hero::after {
  top: 235px;
  right: -180px;
  width: 700px;
  height: 235px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 590px;
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  gap: 56px;
  padding-block: 76px 80px;
}

.hero-copy {
  max-width: 590px;
}

.eyebrow,
.section-kicker,
.project-label {
  margin: 0 0 14px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.075em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: #090d18;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 780;
  letter-spacing: -0.048em;
  line-height: 1.06;
}

.hero h1 span {
  color: #121827;
}

.hero-intro {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.3;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button svg,
.contact-details svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  box-shadow: 0 10px 24px rgba(13, 92, 255, 0.2);
}

.button-primary:hover {
  background: #0345cc;
  box-shadow: 0 13px 30px rgba(13, 92, 255, 0.27);
}

.button-secondary,
.button-outline {
  color: #182338;
  background: #fff;
  border-color: #b8c3d3;
}

.button-secondary:hover,
.button-outline:hover {
  color: var(--blue-700);
  border-color: var(--blue-500);
  box-shadow: var(--shadow-sm);
}

.hero-visual {
  position: relative;
  min-width: 0;
  height: 430px;
  align-self: center;
}

.orbit {
  position: absolute;
  width: 500px;
  height: 250px;
  border: 1px solid rgba(13, 92, 255, 0.12);
  border-radius: 50%;
  transform: rotate(18deg);
}

.orbit-one {
  top: 60px;
  left: 0;
}

.orbit-two {
  top: 95px;
  left: 15px;
  width: 520px;
  height: 270px;
}

.laptop {
  position: absolute;
  top: 37px;
  right: 16px;
  width: 530px;
  max-width: calc(100% - 12px);
  filter: drop-shadow(0 26px 26px rgba(17, 30, 56, 0.16));
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg);
}

.laptop-screen {
  position: relative;
  overflow: hidden;
  height: 326px;
  padding: 13px;
  background: #10151e;
  border: 3px solid #202730;
  border-bottom-width: 8px;
  border-radius: 17px 17px 8px 8px;
}

.laptop-screen::before {
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 50%;
  width: 5px;
  height: 5px;
  content: "";
  background: #54606c;
  border-radius: 50%;
  transform: translateX(-50%);
}

.dashboard-topbar {
  display: grid;
  height: 51px;
  align-items: center;
  padding-inline: 14px;
  color: #172033;
  background: #fff;
  border-radius: 7px 7px 0 0;
  grid-template-columns: 1fr 1fr 1fr;
  font-size: 10px;
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 750;
}

.dashboard-brand i,
.preview-bar i {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #0a5dff 50%, #16a36f 50%);
  border-radius: 3px;
}

.dashboard-title {
  font-size: 14px;
  font-weight: 760;
  text-align: center;
}

.dashboard-actions {
  color: #718096;
  text-align: right;
  letter-spacing: 2px;
}

.dashboard-body {
  display: grid;
  height: 243px;
  background: #f4f7fb;
  grid-template-columns: 55px 1fr;
}

.dashboard-sidebar {
  display: flex;
  align-items: center;
  padding-top: 18px;
  background: #fff;
  border-right: 1px solid #e7ebf1;
  flex-direction: column;
  gap: 18px;
}

.sidebar-mark {
  position: relative;
  display: block;
  width: 24px;
  height: 7px;
  background: #dbe2ec;
  border-radius: 3px;
}

.sidebar-mark::before {
  position: absolute;
  top: 0;
  left: -8px;
  width: 5px;
  height: 7px;
  content: "";
  background: #cbd5e1;
  border-radius: 2px;
}

.sidebar-mark.is-current,
.sidebar-mark.is-current::before {
  background: var(--blue-600);
}

.dashboard-content {
  padding: 16px;
}

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

.metric {
  min-width: 0;
  padding: 9px 10px;
  background: #fff;
  border: 1px solid #e8edf5;
  border-top: 2px solid var(--blue-600);
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(28, 50, 91, 0.04);
}

.metric-green {
  border-top-color: var(--success);
}

.metric-amber {
  border-top-color: var(--warning);
}

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

.metric small {
  overflow: hidden;
  color: #6b778c;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric strong {
  margin-top: 3px;
  color: #121a2b;
  font-size: 17px;
  line-height: 1;
}

.chart-card {
  margin-top: 10px;
  padding: 10px;
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 6px;
}

.chart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #202b40;
  font-size: 8px;
  font-weight: 720;
}

.chart-heading small {
  color: #8b96a7;
  font-size: 6px;
  font-weight: 500;
}

.chart-grid {
  position: relative;
  overflow: hidden;
  height: 85px;
  margin-top: 8px;
  background-image:
    linear-gradient(#eef2f7 1px, transparent 1px),
    linear-gradient(90deg, #eef2f7 1px, transparent 1px);
  background-size: 100% 21px, 42px 100%;
}

.chart-fill {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 50px;
  opacity: 0.7;
  background: linear-gradient(180deg, rgba(13, 92, 255, 0.18), rgba(13, 92, 255, 0.01));
  clip-path: polygon(0 75%, 13% 55%, 24% 66%, 37% 35%, 50% 54%, 62% 38%, 73% 50%, 86% 5%, 100% 20%, 100% 100%, 0 100%);
}

.chart-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: var(--blue-600);
  border-radius: 3px;
  transform-origin: left center;
}

.line-a { bottom: 23px; left: 0; width: 52px; transform: rotate(-11deg); }
.line-b { bottom: 33px; left: 49px; width: 55px; transform: rotate(9deg); }
.line-c { bottom: 29px; left: 102px; width: 67px; transform: rotate(-15deg); }
.line-d { bottom: 46px; left: 167px; width: 77px; transform: rotate(8deg); }
.line-e { bottom: 39px; left: 241px; width: 84px; transform: rotate(-21deg); }

.concept-label {
  position: absolute;
  z-index: 3;
  right: 19px;
  bottom: 16px;
  padding: 3px 7px;
  color: #64748b;
  background: rgba(255,255,255,0.92);
  border: 1px solid #dfe6ef;
  border-radius: 4px;
  font-size: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.laptop-base {
  position: relative;
  width: calc(100% + 42px);
  height: 18px;
  margin-left: -21px;
  background: linear-gradient(180deg, #dbe0e6, #89919b 60%, #eff1f3 65%);
  border-radius: 2px 2px 18px 18px;
}

.laptop-base::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 82px;
  height: 6px;
  content: "";
  background: #9ba3ad;
  border-radius: 0 0 9px 9px;
  transform: translateX(-50%);
}

.phone {
  position: absolute;
  z-index: 4;
  right: -8px;
  bottom: 12px;
  display: flex;
  width: 140px;
  height: 260px;
  padding: 28px 12px 13px;
  color: #1b2639;
  background: linear-gradient(180deg, #fff, #f6f9fd);
  border: 6px solid #151a20;
  border-radius: 25px;
  box-shadow: 0 18px 36px rgba(12, 22, 44, 0.28);
  flex-direction: column;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  width: 68px;
  height: 14px;
  background: #151a20;
  border-radius: 0 0 10px 10px;
  transform: translateX(-50%);
}

.phone small {
  color: #6b778c;
  font-size: 8px;
  font-weight: 700;
}

.phone strong {
  margin-top: 12px;
  font-size: 10px;
}

.status-chip {
  align-self: flex-start;
  margin-top: 8px;
  padding: 3px 7px;
  color: #0b7a58;
  background: #e4f8f1;
  border-radius: 10px;
  font-size: 7px;
  font-weight: 750;
}

.phone-lines {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.phone-lines i {
  height: 5px;
  background: #dfe5ee;
  border-radius: 4px;
}

.phone-lines i:nth-child(2) { width: 76%; }
.phone-lines i:nth-child(3) { width: 88%; }

.phone-button {
  display: grid;
  min-height: 31px;
  place-items: center;
  margin-top: 18px;
  color: #fff;
  background: var(--blue-600);
  border-radius: 6px;
  font-size: 8px;
  font-weight: 740;
}

.phone-nav {
  display: flex;
  justify-content: space-around;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #e5eaf1;
}

.phone-nav i {
  width: 9px;
  height: 9px;
  border: 2px solid #7d8aa0;
  border-radius: 50%;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 40px;
}

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

.section-heading h2,
.about-heading h2,
.contact-copy h2 {
  margin: 0;
  color: #0c1322;
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.section-heading > p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.services {
  background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-width: 0;
  padding: 26px 18px 24px;
  text-align: center;
  background: linear-gradient(180deg, #fbfcff, #fff);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(22, 43, 82, 0.055);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: #bfd1f9;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.icon-box {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid #e1eaff;
  border-radius: 15px;
}

.icon-box svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.service-card h3 {
  margin: 0;
  color: #111827;
  font-size: 15px;
  font-weight: 740;
  line-height: 1.35;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}

.project-section {
  background: var(--surface-soft);
  border-block: 1px solid var(--line-soft);
}

.compact-heading {
  margin-bottom: 48px;
}

.project-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 68px;
}

.project-preview {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 16px 16px 42px;
  background: #fdfefe;
  border: 1px solid #bfc9d8;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.project-preview::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(130deg, rgba(255,255,255,0.55), transparent 40%);
  pointer-events: none;
}

.preview-bar {
  position: relative;
  z-index: 1;
  display: grid;
  height: 44px;
  align-items: center;
  padding-inline: 12px;
  color: #1e293b;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 8px 8px 0 0;
  grid-template-columns: 1fr 2fr 1fr;
  font-size: 8px;
}

.preview-bar span:first-child {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 760;
}

.preview-bar strong {
  font-size: 10px;
  text-align: center;
}

.preview-bar span:last-child {
  color: #8793a5;
  text-align: right;
  letter-spacing: 2px;
}

.preview-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 248px;
  background: #f6f8fb;
  border: 1px solid var(--line-soft);
  border-top: 0;
  grid-template-columns: 62px 1fr;
}

.preview-sidebar {
  display: flex;
  align-items: center;
  padding-top: 22px;
  background: #fff;
  border-right: 1px solid var(--line-soft);
  flex-direction: column;
  gap: 19px;
}

.preview-sidebar i {
  display: block;
  width: 30px;
  height: 6px;
  background: #dce3ec;
  border-radius: 4px;
}

.preview-sidebar i.active {
  background: var(--blue-600);
}

.preview-table {
  padding: 16px;
}

.preview-tools {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.preview-tools span {
  width: 76px;
  height: 12px;
  background: #e3e8ef;
  border-radius: 4px;
}

.preview-tools span:last-child {
  width: 48px;
}

.table-row {
  display: grid;
  min-height: 34px;
  align-items: center;
  padding-inline: 10px;
  background: #fff;
  border-bottom: 1px solid #edf0f4;
  grid-template-columns: 1.2fr 1fr 0.7fr;
  gap: 12px;
}

.table-row b {
  color: #6b778a;
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.table-row span {
  width: 72%;
  height: 5px;
  background: #d7dee8;
  border-radius: 3px;
}

.table-row em {
  justify-self: start;
  padding: 3px 6px;
  font-size: 6px;
  font-style: normal;
  font-weight: 700;
  border-radius: 8px;
}

.table-row em.approved { color: #087452; background: #def7ee; }
.table-row em.pending { color: #9a6107; background: #fff0c7; }
.table-row em.review { color: #2454ac; background: #e4edff; }

.project-preview > p {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 12px;
  left: 16px;
  margin: 0;
  color: #748197;
  font-size: 10px;
  text-align: center;
}

.project-copy {
  max-width: 500px;
}

.project-copy h3 {
  margin: 0;
  color: #0d1421;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.project-copy h3 span {
  display: block;
  color: var(--blue-700);
  font-size: 0.75em;
  margin-top: 4px;
}

.project-copy > p:not(.project-label) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
}

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

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: #29364b;
  font-size: 15px;
}

.feature-list li::before {
  position: absolute;
  top: 0.22em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #fff;
  content: "✓";
  background: var(--blue-600);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.button-outline {
  color: var(--blue-700);
  border-color: var(--blue-500);
}

.values {
  padding-block: 48px;
  background: linear-gradient(90deg, #f4f8ff, #fff 50%, #f4f8ff);
  border-bottom: 1px solid var(--line-soft);
}

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

.value-item {
  display: grid;
  min-width: 0;
  align-items: center;
  padding: 12px 30px;
  grid-template-columns: 48px 1fr;
  gap: 16px;
}

.value-item + .value-item {
  border-left: 1px solid #cbd6e7;
}

.value-icon {
  color: var(--blue-600);
}

.value-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.value-item h3 {
  margin: 0;
  color: #121a2b;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
}

.value-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.about-section {
  background: #fff;
}

.about-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 96px;
}

.about-heading h2 {
  font-size: clamp(34px, 3.7vw, 50px);
}

.about-copy {
  padding-top: 25px;
}

.about-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  margin-top: 19px;
  color: var(--blue-700);
  font-weight: 730;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link span {
  transition: transform 160ms ease;
}

.contact-cta {
  padding-block: 58px;
  background: #f7f9fd;
  border-top: 1px solid var(--line-soft);
}

.contact-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.25fr 0.9fr auto;
  gap: 52px;
}

.contact-copy h2 {
  font-size: clamp(30px, 3.2vw, 40px);
}

.contact-copy > p:last-child {
  margin: 9px 0 0;
  color: var(--muted);
}

.contact-details {
  display: grid;
  color: #26344a;
  font-size: 14px;
  font-style: normal;
  gap: 8px;
}

.contact-details a,
.contact-details > span {
  display: grid;
  min-height: 26px;
  align-items: center;
  grid-template-columns: 24px 1fr;
  gap: 8px;
}

.contact-details a:hover {
  color: var(--blue-700);
}

.contact-details a > span:first-child,
.contact-details > span > span:first-child {
  color: var(--blue-600);
  font-size: 19px;
  text-align: center;
}

.contact-button {
  min-width: 150px;
}

.site-footer {
  color: #dbe4f0;
  background:
    radial-gradient(circle at 8% 0%, rgba(60, 118, 220, 0.12), transparent 25%),
    linear-gradient(135deg, var(--navy-950), #101d30);
}

.footer-grid {
  display: grid;
  padding-block: 62px 45px;
  grid-template-columns: 1.35fr 0.7fr 0.95fr 1.25fr;
  gap: 66px;
}

.brand-light .brand-text strong,
.brand-light .brand-text small {
  color: #fff;
}

.brand-light img {
  padding: 3px;
  background: rgba(255,255,255,0.96);
  border-radius: 10px;
}

.footer-brand-column > p {
  max-width: 290px;
  margin: 20px 0 0;
  color: #aeb9c9;
  font-size: 13px;
  line-height: 1.65;
}

.footer-email {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 10px;
  color: #fff;
  font-size: 13px;
}

.footer-email:hover,
.footer-column a:hover {
  color: #80aaff;
}

.footer-column h2 {
  margin: 5px 0 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
}

.footer-column nav {
  display: grid;
  gap: 3px;
}

.footer-column a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: #c3cbd8;
  font-size: 13px;
}

.business-info p {
  margin: 0;
  color: #c3cbd8;
  font-size: 12px;
  line-height: 1.75;
}

.business-info strong {
  color: #ffd178;
  font-weight: 700;
}

.payment-notice {
  display: grid;
  padding-block: 24px;
  border-top: 1px solid rgba(255,255,255,0.09);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  grid-template-columns: 210px 1fr;
  gap: 30px;
}

.payment-notice strong {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.payment-notice p {
  margin: 0;
  color: #9eabbd;
  font-size: 11px;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #99a6b8;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  color: #cad3df;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Legal pages */
.legal-page {
  background: #f7f9fd;
}

.legal-header .primary-nav a {
  min-height: 44px;
}

.legal-hero {
  padding-block: 76px 58px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(65, 124, 245, 0.28), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.legal-hero .section-kicker {
  color: #85aaff;
}

.legal-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.legal-hero p:last-child {
  max-width: 720px;
  margin: 18px 0 0;
  color: #bac7d8;
  font-size: 17px;
}

.legal-main {
  padding-block: 64px 96px;
}

.draft-notice {
  display: grid;
  max-width: 920px;
  align-items: center;
  padding: 20px 22px;
  margin-bottom: 30px;
  color: #65410b;
  background: #fff7df;
  border: 1px solid #f1d384;
  border-left: 5px solid #d99a16;
  border-radius: var(--radius-sm);
  grid-template-columns: auto 1fr;
  gap: 15px;
}

.draft-notice span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: #c8860d;
  border-radius: 50%;
  font-weight: 800;
}

.draft-notice strong {
  font-size: 15px;
}

.legal-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 40px;
}

.legal-content {
  padding: 42px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-content section + section {
  padding-top: 34px;
  margin-top: 34px;
  border-top: 1px solid var(--line-soft);
}

.legal-content h2 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.legal-content h3 {
  margin: 22px 0 0;
  color: #172033;
  font-size: 16px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content p {
  margin: 12px 0 0;
}

.legal-content ul {
  padding-left: 22px;
  margin: 12px 0 0;
}

.legal-content li + li {
  margin-top: 8px;
}

.placeholder-note {
  padding: 14px 16px;
  color: #405271 !important;
  background: var(--blue-50);
  border: 1px dashed #9eb9ee;
  border-radius: 8px;
  font-size: 14px;
}

.legal-aside {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
}

.legal-aside h2 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 16px;
}

.legal-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.legal-aside a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 12px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 720;
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
    gap: 28px;
  }

  .laptop {
    right: -20px;
    width: 500px;
  }

  .phone {
    right: -15px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .service-card {
    padding-inline: 24px;
  }

  .contact-grid {
    grid-template-columns: 1.15fr 0.9fr auto;
    gap: 28px;
  }

  .footer-grid {
    gap: 36px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding-block: 76px;
  }

  .primary-nav {
    gap: 24px;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 64px 70px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    width: min(680px, 100%);
    height: 430px;
    margin-inline: auto;
  }

  .laptop {
    right: 7%;
    width: 560px;
  }

  .phone {
    right: 3%;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .project-copy {
    max-width: 690px;
  }

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

  .value-item:nth-child(3) {
    border-left: 0;
  }

  .value-item:nth-child(n+3) {
    border-top: 1px solid #cbd6e7;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-copy {
    padding-top: 0;
  }

  .contact-grid {
    align-items: end;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .contact-button {
    grid-column: 2;
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 46px 60px;
  }

  .payment-notice {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .legal-aside {
    position: static;
  }
}

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

  [data-site-header] .header-inner {
    flex-wrap: wrap;
  }

  .js [data-site-header] .nav-toggle {
    display: block;
  }

  .primary-nav {
    display: grid;
    width: 100%;
    padding: 10px 0 16px;
    gap: 2px;
  }

  .primary-nav a {
    min-height: 48px;
    padding-inline: 15px;
    border-radius: 8px;
  }

  .primary-nav a:hover,
  .primary-nav a.is-active {
    background: var(--blue-50);
  }

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

  .js [data-site-header] .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    width: auto;
    padding: 10px 16px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(20, 35, 65, 0.13);
  }

  .js [data-site-header] .primary-nav.is-open {
    display: grid;
  }

  .legal-header .primary-nav {
    display: flex;
    width: auto;
    padding: 0;
  }

  .legal-header .primary-nav a {
    padding-inline: 10px;
    white-space: nowrap;
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .brand-text strong {
    font-size: 21px;
  }

  .hero-grid {
    padding-block: 52px 56px;
  }

  .hero h1 {
    font-size: clamp(39px, 11.5vw, 57px);
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-visual {
    height: 340px;
  }

  .laptop {
    top: 20px;
    right: 3%;
    width: 91%;
    transform: none;
  }

  .laptop-screen {
    height: 274px;
  }

  .dashboard-body {
    height: 190px;
  }

  .dashboard-content {
    padding: 11px;
  }

  .chart-grid {
    height: 54px;
  }

  .line-a, .line-b, .line-c, .line-d, .line-e {
    display: none;
  }

  .phone {
    right: 0;
    bottom: 0;
    width: 118px;
    height: 220px;
  }

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

  .project-preview {
    min-height: 320px;
  }

  .preview-shell {
    min-height: 208px;
    grid-template-columns: 44px 1fr;
  }

  .preview-table {
    padding: 10px;
  }

  .preview-sidebar i {
    width: 22px;
  }

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

  .contact-button {
    width: 100%;
    grid-column: auto;
  }

  .footer-bottom {
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-content {
    padding: 30px 24px;
  }
}

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

  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-text small {
    font-size: 6.9px;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    height: 285px;
  }

  .laptop {
    right: 2%;
    width: 96%;
  }

  .laptop-screen {
    height: 225px;
    padding: 9px;
  }

  .dashboard-topbar {
    height: 40px;
  }

  .dashboard-body {
    height: 159px;
    grid-template-columns: 42px 1fr;
  }

  .dashboard-sidebar {
    gap: 13px;
  }

  .sidebar-mark {
    width: 17px;
  }

  .metric {
    padding: 6px;
  }

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

  .chart-card {
    margin-top: 6px;
    padding: 6px;
  }

  .chart-grid {
    height: 38px;
  }

  .concept-label {
    display: none;
  }

  .laptop-base {
    height: 13px;
  }

  .phone {
    right: -3px;
    width: 92px;
    height: 176px;
    padding: 23px 8px 8px;
    border-width: 4px;
    border-radius: 19px;
  }

  .phone strong {
    margin-top: 7px;
    font-size: 8px;
  }

  .phone-lines {
    margin-top: 9px;
    gap: 5px;
  }

  .phone-button {
    min-height: 24px;
    margin-top: 10px;
  }

  .phone-nav {
    padding-top: 6px;
  }

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

  .service-card {
    display: grid;
    padding: 22px;
    text-align: left;
    grid-template-columns: 58px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
  }

  .icon-box {
    width: 58px;
    height: 58px;
    margin: 0;
    grid-row: 1 / span 2;
  }

  .icon-box svg {
    width: 38px;
    height: 38px;
  }

  .service-card h3 {
    align-self: end;
  }

  .service-card p {
    margin-top: 4px;
  }

  .project-preview {
    min-height: 275px;
    padding: 10px 10px 42px;
  }

  .preview-bar {
    grid-template-columns: 1fr 1.6fr 0.5fr;
  }

  .preview-shell {
    min-height: 167px;
  }

  .preview-sidebar {
    padding-top: 14px;
    gap: 13px;
  }

  .table-row {
    min-height: 26px;
    padding-inline: 6px;
    gap: 5px;
  }

  .table-row:nth-child(n+6) {
    display: none;
  }

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

  .value-item {
    padding: 20px 10px;
  }

  .value-item + .value-item,
  .value-item:nth-child(3) {
    border-top: 1px solid #cbd6e7;
    border-left: 0;
  }

  .about-copy p {
    font-size: 16px;
  }

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

  .footer-column nav {
    gap: 5px;
  }

  .footer-column a {
    min-height: 44px;
  }

  .draft-notice {
    grid-template-columns: 1fr;
  }

  .legal-main {
    padding-block: 44px 64px;
  }

  .legal-hero {
    padding-block: 58px 46px;
  }
}

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