:root {
  --bg: #f7f8fc;
  --surface: #ffffff;
  --ink: #111528;
  --muted: #687086;
  --line: #e6e9f2;
  --primary: #6c4cff;
  --primary-dark: #4a2bd8;
  --secondary: #18c6a3;
  --dark: #0b1020;
  --dark-soft: #151b30;
  --shadow: 0 24px 70px rgba(28, 35, 73, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(11, 16, 32, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.7px;
}

.brand > span:last-child > span {
  color: #9f8cff;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 7px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #9c7cff);
  box-shadow: 0 8px 20px rgba(108, 76, 255, 0.38);
}

.brand-mark span {
  display: block;
  border-radius: 4px;
  background: #fff;
}

.brand-mark span:nth-child(1) { height: 7px; opacity: 0.75; }
.brand-mark span:nth-child(2) { height: 13px; opacity: 0.9; }
.brand-mark span:nth-child(3) { height: 19px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav .nav-cta {
  padding: 11px 19px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.main-nav .nav-cta:hover {
  background: #fff;
  color: var(--dark);
}

.nav-toggle,
.nav-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 164px 0 48px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 18%, rgba(108, 76, 255, 0.24), transparent 28%),
    linear-gradient(155deg, #0b1020 0%, #10162b 52%, #0c1225 100%);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black 35%, transparent 88%);
}

.hero-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.24;
}

.hero-glow-one {
  top: 120px;
  right: -160px;
  background: #6c4cff;
}

.hero-glow-two {
  left: -220px;
  bottom: 20px;
  background: #0ac29c;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 62px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8e78ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #26d7b5;
  box-shadow: 0 0 0 5px rgba(38, 215, 181, 0.12);
}

.hero h1 {
  max-width: 720px;
  margin: 22px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(52px, 6.2vw, 84px);
  line-height: 0.99;
  letter-spacing: -4px;
}

.hero h1 span,
.section-heading h2 span,
.impact-copy h2 span {
  color: #9c85ff;
}

.hero-copy > p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #8c68ff);
  box-shadow: 0 16px 32px rgba(108, 76, 255, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(108, 76, 255, 0.38);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-left: -9px;
  color: #fff;
  border: 3px solid #11172c;
  border-radius: 50%;
  background: linear-gradient(135deg, #394260, #59678c);
  font-size: 10px;
  font-weight: 800;
}

.avatar-stack span:first-child { margin-left: 0; background: linear-gradient(135deg, #f17c71, #f2b079); }
.avatar-stack span:nth-child(2) { background: linear-gradient(135deg, #4778e8, #54c0ff); }
.avatar-stack span:nth-child(3) { background: linear-gradient(135deg, #7b5bd6, #b989f5); }
.avatar-stack span:last-child { background: #252e4a; }

.stars {
  color: #ffc85c;
  font-size: 13px;
  letter-spacing: 2px;
}

.hero-proof p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 530px;
  display: flex;
  align-items: center;
}

.dashboard-shell {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(19, 26, 48, .84);
  box-shadow: 0 40px 100px rgba(0,0,0,.38);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  backdrop-filter: blur(20px);
}

.dashboard-topbar {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 8px; height: 8px; border-radius: 50%; background: #39415e; }
.browser-dots span:first-child { background: #fd7269; }
.browser-dots span:nth-child(2) { background: #f5c25e; }
.browser-dots span:nth-child(3) { background: #52cf8d; }

.dashboard-pill {
  padding: 6px 11px;
  color: #80ead6;
  border: 1px solid rgba(38, 215, 181, .25);
  border-radius: 999px;
  background: rgba(38, 215, 181, .08);
  font-size: 10px;
  font-weight: 800;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 392px;
}

.mini-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-right: 1px solid rgba(255,255,255,.07);
}

.mini-logo {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), #a388ff);
}

.mini-sidebar span {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: #343c57;
}

.mini-sidebar span.active {
  background: #7c61ff;
  box-shadow: 0 0 0 6px rgba(124, 97, 255, .11);
}

.dashboard-content {
  padding: 26px;
}

.dashboard-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dashboard-heading small,
.metric-row small,
.floating-card small,
.work-stat small {
  display: block;
  color: #7f899f;
  font-size: 9px;
}

.dashboard-heading strong {
  display: block;
  margin-top: 3px;
  font-size: 15px;
}

.date-chip {
  padding: 7px 10px;
  color: #9ba4b8;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  font-size: 9px;
}

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

.metric-row article {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
}

.metric-row strong {
  display: block;
  margin: 6px 0 2px;
  font-size: 17px;
}

.metric-row em {
  color: #5de2c6;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.chart-card {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: #aeb5c6;
  font-size: 9px;
}

.chart-labels b {
  color: #8c72ff;
}

.chart-area {
  position: relative;
  height: 150px;
  margin-top: 14px;
  overflow: hidden;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 100% 33px;
}

.chart-line {
  position: absolute;
  inset: 24px 8px 20px;
  clip-path: polygon(0 75%, 16% 62%, 32% 70%, 46% 38%, 63% 48%, 79% 18%, 100% 5%, 100% 100%, 0 100%);
  background: linear-gradient(to bottom, rgba(125,98,255,.5), rgba(125,98,255,0));
  border-top: 2px solid #8c72ff;
}

.point {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid #d7ceff;
  border-radius: 50%;
  background: #7d62ff;
}

.p1 { left: 16%; top: 68px; }
.p2 { left: 45%; top: 40px; }
.p3 { left: 78%; top: 20px; }
.p4 { right: 4px; top: 8px; }

.chart-bars {
  position: absolute;
  inset: auto 0 0;
  height: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  opacity: .32;
}

.chart-bars span { width: 22px; background: #5b6787; border-radius: 4px 4px 0 0; }
.chart-bars span:nth-child(1) { height: 18px; }
.chart-bars span:nth-child(2) { height: 29px; }
.chart-bars span:nth-child(3) { height: 15px; }
.chart-bars span:nth-child(4) { height: 36px; }
.chart-bars span:nth-child(5) { height: 22px; }
.chart-bars span:nth-child(6) { height: 32px; }
.chart-bars span:nth-child(7) { height: 26px; }

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  background: rgba(21, 28, 50, .92);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}

.floating-card strong { display: block; font-size: 13px; }
.floating-card-one { top: 68px; right: -34px; }
.floating-card-one > span { color: #5fe5c9; font-size: 10px; font-weight: 800; }
.floating-card-two { left: -38px; bottom: 66px; }

.floating-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #68e3c9;
  border-radius: 10px;
  background: rgba(38,215,181,.12);
}

.floating-ring {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #c8bcff;
  border: 3px solid #7c61ff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.client-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 32px;
  margin-top: 72px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.client-strip p {
  color: rgba(255,255,255,.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.client-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.4);
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.section {
  padding: 112px 0;
}

.section-heading h2,
.impact-copy h2,
.contact-copy h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: -2.5px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.split-heading h2 {
  max-width: 740px;
  margin-top: 14px;
}

.split-heading > p,
.centered-heading > p,
.impact-copy > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 16px;
}

.services {
  background: #fff;
}

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

.service-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

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

.featured-service {
  min-height: 390px;
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,255,255,.12), transparent 35%),
    linear-gradient(145deg, #5a3ae8, #7c5cff);
}

.featured-service::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -100px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255,255,255,.035), 0 0 0 68px rgba(255,255,255,.025);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 14px;
  font-size: 22px;
  font-weight: 800;
}

.icon-blue { color: #fff; background: rgba(255,255,255,.14); }
.icon-violet { color: #7556f5; background: #f0ecff; }
.icon-orange { color: #e47a33; background: #fff0e4; }
.icon-green { color: #0d9f83; background: #e3faf5; }

.service-number {
  position: absolute;
  top: 34px;
  right: 34px;
  color: #a3a9b9;
  font-size: 12px;
  font-weight: 800;
}

.featured-service .service-number { color: rgba(255,255,255,.55); }

.service-card h3 {
  margin-bottom: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  letter-spacing: -0.7px;
}

.service-card p {
  max-width: 500px;
  color: var(--muted);
  font-size: 14px;
}

.featured-service p { color: rgba(255,255,255,.72); }

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  list-style: none;
}

.service-card li {
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  font-size: 10px;
  font-weight: 700;
}

.service-card a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.featured-service a { color: #fff; }

.work-section {
  background: var(--bg);
}

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

.centered-heading h2 {
  margin: 14px 0 18px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.work-card:last-child {
  grid-column: 1 / -1;
}

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.work-preview {
  position: relative;
  min-height: 330px;
  overflow: hidden;
}

.work-purple .work-preview { background: linear-gradient(145deg, #4d2dc9, #a072ff); }
.work-blue .work-preview { background: linear-gradient(145deg, #0e5fcf, #53c2f0); }
.work-orange .work-preview { background: linear-gradient(135deg, #ff7d48, #ffbd63); min-height: 360px; }

.preview-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  padding: 7px 11px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.phone-mockup {
  position: absolute;
  width: 170px;
  height: 285px;
  left: 50%;
  bottom: -24px;
  padding: 22px 14px;
  border: 7px solid #141624;
  border-radius: 30px;
  background: #f9f4ff;
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
  transform: translateX(-50%) rotate(-6deg);
}

.phone-top {
  width: 48px;
  height: 6px;
  margin: -12px auto 20px;
  border-radius: 999px;
  background: #23263a;
}

.product-shape {
  height: 130px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 30%, #ffc0df 0 24%, transparent 25%),
    linear-gradient(150deg, #ffe4f0, #c8b7ff);
}

.product-lines span {
  display: block;
  height: 8px;
  margin-top: 13px;
  border-radius: 999px;
  background: #e8e1f2;
}

.product-lines span:nth-child(2) { width: 72%; }
.product-lines span:nth-child(3) { width: 46%; background: #7655f1; }

.work-stat {
  position: absolute;
  min-width: 100px;
  padding: 12px 14px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;
  background: rgba(30, 18, 80, .48);
  box-shadow: 0 16px 35px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}

.work-stat strong { display: block; font-size: 20px; }
.work-stat small { color: rgba(255,255,255,.65); }
.stat-a { top: 86px; left: 34px; }
.stat-b { right: 30px; bottom: 42px; }

.saas-panel {
  position: absolute;
  width: 78%;
  height: 235px;
  left: 50%;
  bottom: -10px;
  padding: 18px;
  border: 5px solid #18233a;
  border-radius: 18px 18px 0 0;
  background: #f6f9ff;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
  transform: translateX(-50%) rotate(2deg);
}

.saas-nav { display: flex; gap: 6px; }
.saas-nav span { width: 24px; height: 6px; border-radius: 999px; background: #d6deec; }
.saas-nav span:first-child { width: 46px; background: #528cea; }
.saas-chart {
  height: 106px;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 10px;
  background: repeating-linear-gradient(to bottom, #eef2f9 0 1px, transparent 1px 26px);
}
.saas-chart i {
  display: block;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 82%, 18% 65%, 34% 72%, 49% 38%, 66% 46%, 81% 20%, 100% 4%, 100% 100%, 0 100%);
  background: linear-gradient(to bottom, rgba(83,138,236,.6), rgba(83,138,236,.05));
}
.saas-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.saas-cards span { height: 38px; border-radius: 8px; background: #e8eef8; }

.packaging-box {
  position: absolute;
  width: 150px;
  height: 210px;
  display: grid;
  place-items: center;
  color: #ff8b4b;
  border: 5px solid #1c2536;
  border-radius: 18px;
  background: #fff9e8;
  box-shadow: 0 30px 60px rgba(0,0,0,.24);
  font-family: "Space Grotesk", sans-serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 4px;
}

.box-one { left: 36%; bottom: -18px; transform: rotate(-8deg); }
.box-two { left: 52%; bottom: -5px; transform: rotate(8deg); background: #232a3a; color: #ffd78e; }
.spark { position: absolute; color: #fff5d5; font-size: 28px; }
.spark-one { left: 17%; top: 37%; }
.spark-two { right: 18%; top: 24%; font-size: 42px; }

.work-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
}

.work-info span {
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.work-info h3 {
  margin-top: 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
}

.work-info a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: .25s ease;
}

.work-info a:hover { color: #fff; border-color: var(--primary); background: var(--primary); }

.impact-section {
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(117,82,255,.25), transparent 28%),
    linear-gradient(145deg, #0c1225, #121a32);
}

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

.light-kicker { color: #7de4cf; }
.impact-copy h2 { margin: 16px 0 22px; }
.impact-copy > p { max-width: 560px; color: rgba(255,255,255,.62); }
.btn-light { margin-top: 28px; color: var(--dark); background: #fff; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
}

.stats-grid article {
  padding: 42px 32px;
}

.stats-grid article:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.09); }
.stats-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.09); }

.stats-grid strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1;
}

.stats-grid strong span { color: #8c72ff; font-size: .5em; }
.stats-grid p { margin-top: 9px; color: rgba(255,255,255,.52); font-size: 13px; }

.process-section { background: #fff; }
.process-heading { margin-bottom: 64px; }

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: var(--line);
}

.process-line article { position: relative; z-index: 2; }

.process-number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  color: var(--primary);
  border: 1px solid #dad4ff;
  border-radius: 50%;
  background: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.process-line article:first-child .process-number {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 12px 24px rgba(108,76,255,.23);
}

.process-line h3 {
  margin-bottom: 9px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
}

.process-line p { color: var(--muted); font-size: 13px; }

.testimonial-section {
  color: #fff;
  background: linear-gradient(135deg, #6245ec, #8b66ff);
}

.testimonial-layout {
  max-width: 930px;
  text-align: center;
}

.quote-mark {
  height: 55px;
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 1;
  opacity: .25;
}

blockquote {
  margin: 20px auto 30px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.35;
  letter-spacing: -1px;
}

.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.author-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: #f2a982;
  font-size: 11px;
  font-weight: 800;
}

.testimonial-author strong,
.testimonial-author span { display: block; }
.testimonial-author span { color: rgba(255,255,255,.65); font-size: 12px; }

.contact-section { background: #f5f6fb; }

.contact-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 90px;
  align-items: start;
}

.contact-copy h2 { margin: 15px 0 20px; }
.contact-copy > p { max-width: 520px; }

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-points a {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-points > a > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--primary);
  border: 1px solid #ded9ff;
  border-radius: 14px;
  background: #fff;
}

.contact-points small,
.contact-points strong { display: block; }
.contact-points small { color: var(--muted); font-size: 10px; }
.contact-points strong { font-size: 14px; }

.contact-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #30364a;
  font-size: 12px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dfe3ed;
  border-radius: 12px;
  outline: none;
  background: #fbfcfe;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select { height: 48px; padding: 0 14px; }
.contact-form textarea { padding: 13px 14px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #9c8aff;
  box-shadow: 0 0 0 4px rgba(108,76,255,.08);
}

.form-submit { width: 100%; margin-top: 4px; }
.form-note { color: #8c93a5; font-size: 10px; text-align: center; }

.site-footer {
  color: #fff;
  background: var(--dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr auto;
  align-items: center;
  gap: 40px;
  padding: 54px 0;
}

.footer-top p { color: rgba(255,255,255,.48); font-size: 13px; }
.social-links { display: flex; gap: 9px; }
.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.38);
  font-size: 11px;
}

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

@media (max-width: 1050px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; text-align: center; margin: auto; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { width: min(760px, 100%); min-height: 500px; margin-inline: auto; }
  .split-heading, .impact-layout, .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .split-heading > p { max-width: 700px; }
  .impact-copy { max-width: 760px; }
}

@media (max-width: 820px) {
  .nav-button {
    display: flex;
    width: 38px;
    height: 38px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
  }

  .nav-button span { width: 18px; height: 2px; background: #fff; transition: .25s ease; }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    max-height: 0;
    display: grid;
    gap: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #161d33;
    box-shadow: 0 24px 50px rgba(0,0,0,.3);
    opacity: 0;
    transition: .3s ease;
  }

  .main-nav a { padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .main-nav .nav-cta { margin: 10px; text-align: center; }
  .nav-toggle:checked ~ .main-nav { max-height: 380px; opacity: 1; padding: 8px 0; }

  .services-grid,
  .work-grid { grid-template-columns: 1fr; }
  .work-card:last-child { grid-column: auto; }
  .process-line { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .process-line::before { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; gap: 15px; flex-direction: column; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .hero { padding-top: 128px; }
  .hero h1 { font-size: 48px; letter-spacing: -2.7px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 390px; }
  .dashboard-shell { transform: none; }
  .dashboard-body { grid-template-columns: 44px 1fr; min-height: 320px; }
  .dashboard-content { padding: 16px 12px; }
  .metric-row { gap: 6px; }
  .metric-row article { padding: 9px; }
  .metric-row strong { font-size: 12px; }
  .chart-area { height: 110px; }
  .floating-card-one { top: 4px; right: -5px; }
  .floating-card-two { left: -5px; bottom: 8px; }
  .client-strip { grid-template-columns: 1fr; gap: 16px; margin-top: 45px; }
  .client-logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .split-heading { margin-bottom: 36px; }
  .service-card { padding: 26px; }
  .work-preview { min-height: 290px; }
  .work-orange .work-preview { min-height: 310px; }
  .box-one { left: 22%; }
  .box-two { left: 48%; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid article { padding: 28px; border: 0 !important; border-bottom: 1px solid rgba(255,255,255,.09) !important; }
  .stats-grid article:last-child { border-bottom: 0 !important; }
  .process-line { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 22px; }
}
