:root {
  --blue: #2563eb;
  --blue-light: #4f7cff;
  --indigo: #6366f1;
  --navy: #0f172a;
  --ink: #111827;
  --muted: #64748b;
  --line: #e7ebf2;
  --soft: #f6f8fc;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.09);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

.section {
  padding: 124px 0;
}

.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: 999;
  left: 16px;
  top: -60px;
  color: var(--navy);
  background: white;
  padding: 12px 18px;
  border-radius: 10px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
  background: rgba(7, 14, 27, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background 0.3s ease;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo {
  height: 42px;
  width: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-mark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 23px;
  width: 24px;
  padding: 4px;
  border-radius: 7px;
  background: linear-gradient(145deg, #2e6fff, #704fff);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

.brand-mark span {
  flex: 1;
  border-radius: 2px 2px 1px 1px;
  background: white;
}

.brand-mark span:nth-child(1) {
  height: 45%;
}

.brand-mark span:nth-child(2) {
  height: 72%;
}

.brand-mark span:nth-child(3) {
  height: 100%;
}

.nav-menu,
.nav-links {
  display: flex;
  align-items: center;
}

.nav-menu {
  gap: 42px;
}

.nav-links {
  gap: 31px;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 1px;
  background: white;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: white;
  transition: transform 0.2s ease;
}

.button {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button-sm {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 13px;
}

.button-light {
  color: var(--navy);
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.16);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), #4d5df5);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.25);
}

.button-primary:hover {
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.4);
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.dark-section {
  color: white;
  background: #08111f;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: 185px 0 120px;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background: linear-gradient(transparent, rgba(6, 13, 25, 0.55));
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.2;
  pointer-events: none;
}

.hero-glow-one {
  top: -250px;
  left: 5%;
  background: #2659ff;
}

.hero-glow-two {
  right: -260px;
  bottom: -180px;
  background: #6b35d7;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 66px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #a9beff;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5e8bff;
  box-shadow: 0 0 0 5px rgba(80, 123, 255, 0.12);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px rgba(80, 123, 255, 0);
  }
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(54px, 5.2vw, 78px);
  font-weight: 700;
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.hero h1 span {
  color: #7fa0ff;
  background: linear-gradient(105deg, #ffffff 5%, #7396ff 70%, #8d78ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  max-width: 610px;
  margin: 28px 0 0;
  color: #9daabd;
  font-size: 18px;
  line-height: 1.7;
}

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

.hero-proof {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 39px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: -7px;
  border: 2px solid #08111f;
  border-radius: 50%;
  color: white;
  background: #26364d;
  font-size: 9px;
  font-weight: 700;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: #3d56a1;
}

.avatar-stack span:nth-child(2) {
  background: #714d7e;
}

.hero-proof p {
  margin: 0;
  color: #7f8da1;
  font-size: 12px;
  line-height: 1.45;
}

.hero-proof strong {
  color: #c4cfdd;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  perspective: 1200px;
}

.dashboard-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 19px;
  background: rgba(18, 28, 46, 0.8);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.48), 0 0 0 7px rgba(255, 255, 255, 0.025);
  transform: rotateY(-4deg) rotateX(2deg);
  backdrop-filter: blur(12px);
  animation: dashboardFloat 6s ease-in-out infinite;
}

@keyframes dashboardFloat {
  50% {
    transform: rotateY(-2deg) rotateX(1deg) translateY(-8px);
  }
}

.dashboard-topbar {
  height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(7, 14, 26, 0.75);
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dbe5f4;
  font-size: 11px;
  font-weight: 600;
}

.mini-mark {
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background: linear-gradient(135deg, #3e79ff, #7856ff);
}

.dashboard-controls {
  display: flex;
  align-items: center;
  gap: 11px;
}

.dashboard-controls > span:not(.control-avatar) {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #26354a;
}

.control-avatar {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #b6c7e6;
  background: #263a5e;
  font-size: 8px;
  font-weight: 700;
}

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

.dashboard-nav {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  padding-top: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 14, 26, 0.45);
}

.dashboard-nav span {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: #344258;
}

.dashboard-nav span.active {
  background: #527eff;
  box-shadow: 0 0 16px rgba(82, 126, 255, 0.6);
}

.dashboard-content {
  padding: 28px 29px 24px;
}

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

.dash-heading small,
.dash-heading strong {
  display: block;
}

.dash-heading small {
  margin-bottom: 6px;
  color: #76859a;
  font-size: 10px;
}

.dash-heading strong {
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.growth-pill {
  padding: 6px 8px;
  border-radius: 6px;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.1);
  font-size: 9px;
  font-weight: 700;
}

.chart-card {
  padding: 16px 17px 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(8, 16, 29, 0.7);
}

.chart-meta {
  display: flex;
  justify-content: space-between;
  color: #8795a8;
  font-size: 9px;
}

.chart-meta div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chart-meta i {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: #5680ff;
}

.revenue-chart {
  width: 100%;
  height: 137px;
  margin-top: 8px;
  overflow: visible;
}

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

.chart-line {
  fill: none;
  stroke: #6389ff;
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(99, 137, 255, 0.45));
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawChart 2.4s 0.5s ease forwards;
}

@keyframes drawChart {
  to {
    stroke-dashoffset: 0;
  }
}

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

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.dash-metrics > div {
  position: relative;
  padding: 13px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: rgba(8, 16, 29, 0.58);
}

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

.metric-icon {
  position: absolute;
  top: 10px;
  right: 9px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  font-size: 8px;
  font-style: normal;
}

.metric-blue {
  color: #79a0ff;
  background: rgba(67, 114, 255, 0.14);
}

.metric-violet {
  color: #ba9bff;
  background: rgba(132, 81, 255, 0.14);
}

.metric-cyan {
  color: #66d9e8;
  background: rgba(39, 193, 211, 0.13);
}

.dash-metrics small {
  margin-bottom: 8px;
  color: #67768c;
  font-size: 7px;
}

.dash-metrics strong {
  margin-bottom: 4px;
  color: #dce5f3;
  font-size: 14px;
}

.dash-metrics em {
  color: #55cba2;
  font-size: 7px;
  font-style: normal;
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(19, 30, 50, 0.92);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
}

.float-card-one {
  left: -34px;
  bottom: 52px;
  gap: 11px;
  padding: 12px;
}

.float-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #a8bcff;
  background: linear-gradient(135deg, rgba(55, 107, 255, 0.35), rgba(111, 68, 255, 0.25));
}

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

.float-card small {
  color: #7e8ca2;
  font-size: 8px;
}

.float-card strong {
  margin-top: 4px;
  color: #e4ebf5;
  font-size: 10px;
}

.float-check {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  margin-left: 12px;
  border-radius: 50%;
  color: #66d7ac;
  background: rgba(16, 185, 129, 0.12);
  font-size: 9px;
}

.float-card-two {
  top: 77px;
  right: -24px;
  display: block;
  min-width: 116px;
  padding: 14px;
}

.float-card-two strong {
  margin: 4px 0 2px;
  color: #78a0ff;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
}

.float-card-two > span {
  color: #68778d;
  font-size: 8px;
}

.tech-strip {
  padding: 37px 0 41px;
  border-bottom: 1px solid var(--line);
  background: white;
}

.tech-strip p {
  margin: 0 0 27px;
  color: #9aa4b3;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.logo-wall {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  filter: grayscale(1);
}

.tech-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: #6f7a8a;
  font-size: 15px;
  font-weight: 700;
}

.tech-logo b {
  color: #778395;
}

.hubspot-symbol {
  font-size: 23px;
  transform: rotate(30deg);
}

.marketo-symbol,
.claude-symbol {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: white !important;
  background: #858f9e;
  font-size: 11px;
}

.salesforce-symbol {
  font-size: 24px;
}

.google-symbol {
  font-size: 20px;
}

.tag-symbol {
  font-size: 25px;
}

.openai-symbol {
  font-size: 23px;
}

.section-intro {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 56px;
}

.section-intro h2,
.section-title h2,
.founder-copy h2,
.testimonial-heading h2,
.faq-intro h2,
.cta-copy h2,
.results-header h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.section-intro p,
.results-header p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.gradient-text {
  color: var(--blue);
  background: linear-gradient(100deg, #2563eb, #7068f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services {
  background: linear-gradient(180deg, #fff, #fafbfe);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 17px;
}

.service-card {
  grid-column: span 3;
  position: relative;
  min-height: 310px;
  padding: 29px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  border-color: #cbd8f8;
  box-shadow: 0 26px 60px rgba(43, 68, 124, 0.12);
}

.service-card.featured {
  grid-column: span 8;
  background: linear-gradient(135deg, #f9fbff, #f4f4ff);
}

.service-card:nth-child(2) {
  grid-column: span 4;
}

.service-card.featured::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(78, 103, 255, 0.1);
  filter: blur(45px);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  font-size: 18px;
  font-weight: 700;
}

.icon-spark,
.icon-blue {
  color: #376fec;
  background: #e9f0ff;
}

.icon-orange {
  color: #f97316;
  background: #fff0e7;
}

.icon-purple {
  color: #7c3aed;
  background: #f1eaff;
}

.icon-cyan {
  color: #0891b2;
  background: #e5f8fc;
}

.icon-green {
  color: #059669;
  background: #e6f8f1;
}

.card-number {
  color: #b3bdca;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin: 35px 0 13px;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.service-card p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-card > a {
  position: absolute;
  z-index: 2;
  left: 29px;
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #31445f;
  font-size: 12px;
  font-weight: 700;
}

.service-card > a span {
  color: var(--blue);
  transition: transform 0.2s ease;
}

.service-card:hover > a span {
  transform: translate(3px, -3px);
}

.mini-workflow {
  position: absolute;
  right: 30px;
  bottom: 29px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.mini-workflow span {
  padding: 9px 12px;
  border: 1px solid #dce4f2;
  border-radius: 8px;
  color: #708096;
  background: white;
  font-size: 9px;
  font-weight: 600;
}

.mini-workflow span.ai-node {
  color: #436ce1;
  border-color: #bfcdf8;
  background: #eef3ff;
}

.mini-workflow i {
  color: #aab5c4;
  font-size: 12px;
  font-style: normal;
}

.results-section {
  position: relative;
  overflow: hidden;
  color: white;
  background: #0a1322;
}

.results-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, transparent, black 50%, transparent);
}

.results-glow {
  position: absolute;
  top: -300px;
  left: 40%;
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: #264ebd;
  filter: blur(150px);
  opacity: 0.18;
}

.results-section .container {
  position: relative;
  z-index: 1;
}

.results-header {
  margin-bottom: 62px;
  text-align: center;
}

.results-header h2 {
  margin-bottom: 20px;
}

.results-header h2 span {
  color: #7d9cff;
}

.results-header p {
  color: #8695aa;
}

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

.stat-card {
  position: relative;
  min-height: 310px;
  padding: 28px 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.stat-label {
  color: #94a2b7;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-card > strong {
  display: block;
  margin: 26px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 55px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat-card sup {
  color: #6f93ff;
  font-size: 24px;
}

.stat-card p {
  margin: 0;
  color: #77869b;
  font-size: 12px;
  line-height: 1.6;
}

.stat-sparkline {
  position: absolute;
  right: 26px;
  bottom: 29px;
  left: 26px;
  height: 55px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.stat-sparkline i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(#557ef7, rgba(85, 126, 247, 0.05));
}

.stat-sparkline i:nth-child(1) { height: 22%; }
.stat-sparkline i:nth-child(2) { height: 34%; }
.stat-sparkline i:nth-child(3) { height: 28%; }
.stat-sparkline i:nth-child(4) { height: 55%; }
.stat-sparkline i:nth-child(5) { height: 48%; }
.stat-sparkline i:nth-child(6) { height: 78%; }
.stat-sparkline i:nth-child(7) { height: 100%; }

.progress-ring {
  --p: calc(var(--progress) * 1%);
  position: absolute;
  right: 25px;
  bottom: 23px;
  width: 69px;
  height: 69px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#5c82f6 var(--p), rgba(255, 255, 255, 0.08) 0);
}

.progress-ring::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #111b2a;
}

.progress-ring span {
  position: relative;
  font-size: 10px;
  font-weight: 700;
}

.conversion-bars {
  position: absolute;
  right: 25px;
  bottom: 29px;
  left: 25px;
  display: grid;
  gap: 6px;
}

.conversion-bars i {
  height: 5px;
  border-radius: 4px;
  background: linear-gradient(90deg, #5c82f6, rgba(92, 130, 246, 0.05));
}

.conversion-bars i:nth-child(1) { width: 42%; }
.conversion-bars i:nth-child(2) { width: 59%; }
.conversion-bars i:nth-child(3) { width: 76%; }
.conversion-bars i:nth-child(4) { width: 96%; }

.campaign-dots {
  position: absolute;
  right: 25px;
  bottom: 29px;
  left: 25px;
  display: flex;
  gap: 9px;
}

.campaign-dots span {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(80, 121, 247, 0.12);
  box-shadow: inset 0 0 0 5px rgba(80, 121, 247, 0.1);
}

.campaign-dots span:nth-child(2) { background: rgba(91, 130, 248, 0.3); }
.campaign-dots span:nth-child(3) { background: rgba(91, 130, 248, 0.48); }
.campaign-dots span:nth-child(4) { background: rgba(91, 130, 248, 0.72); }
.campaign-dots span:nth-child(5) { background: #5b82f8; }

.results-note,
.testimonial-note {
  margin: 23px 0 0;
  color: #536174;
  font-size: 10px;
  text-align: right;
}

.case-studies {
  background: #f7f8fb;
}

.section-title {
  position: relative;
  margin-bottom: 52px;
}

.section-title .text-link {
  position: absolute;
  right: 0;
  bottom: 8px;
}

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

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

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

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: white;
  box-shadow: 0 12px 40px rgba(23, 38, 70, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(23, 38, 70, 0.12);
}

.case-visual {
  height: 282px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.case-blue .case-visual {
  background: radial-gradient(circle at 50% 40%, #dfe8ff, #eff4ff 45%, #f7f9ff);
}

.case-indigo .case-visual {
  background: radial-gradient(circle at 50% 45%, #dedaff, #f0efff 46%, #fafaff);
}

.pipeline-flow {
  display: grid;
  grid-template-columns: 75px 55px 68px 55px 85px;
  grid-template-rows: repeat(3, 37px);
  align-items: center;
  gap: 8px 0;
}

.flow-source,
.flow-result {
  padding: 9px;
  border: 1px solid #cfdaed;
  border-radius: 8px;
  color: #75839b;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 7px 16px rgba(55, 83, 139, 0.08);
  font-size: 9px;
  font-weight: 600;
  text-align: center;
}

.flow-source:nth-child(1) { grid-row: 1; }
.flow-source:nth-child(2) { grid-row: 2; }
.flow-source:nth-child(3) { grid-row: 3; }

.pipeline-flow > i:first-of-type {
  grid-column: 2;
  grid-row: 1 / 4;
  height: 75%;
  border-top: 1px solid #afc1e3;
  border-right: 1px solid #afc1e3;
  border-bottom: 1px solid #afc1e3;
}

.flow-hub {
  grid-column: 3;
  grid-row: 1 / 4;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: linear-gradient(145deg, #3d75ef, #5d5fea);
  box-shadow: 0 18px 30px rgba(56, 97, 220, 0.28);
  font-weight: 800;
}

.pipeline-flow > i:last-of-type {
  grid-column: 4;
  grid-row: 2;
  height: 1px;
  background: #afc1e3;
}

.flow-result {
  grid-column: 5;
  grid-row: 2;
  color: #5f76a2;
}

.flow-result b {
  color: #366bdc;
  font-size: 14px;
}

.automation-map {
  position: relative;
  width: 280px;
  height: 200px;
}

.automation-map::before,
.automation-map::after {
  content: "";
  position: absolute;
  border: 1px dashed #b9b4e4;
  border-radius: 50%;
}

.automation-map::before { inset: 25px 65px; }
.automation-map::after { inset: 0 35px; opacity: 0.55; }

.automation-core {
  position: absolute;
  z-index: 2;
  top: 65px;
  left: 104px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: white;
  background: linear-gradient(145deg, #6659e8, #805de8);
  box-shadow: 0 20px 40px rgba(89, 69, 202, 0.28);
  font-size: 20px;
}

.automation-core small {
  display: block;
  margin-top: -15px;
  font-size: 7px;
}

.automation-map .node {
  position: absolute;
  z-index: 2;
  padding: 8px 11px;
  border: 1px solid #d9d5f3;
  border-radius: 7px;
  color: #766fa4;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(70, 57, 135, 0.08);
  font-size: 8px;
  font-weight: 700;
}

.node-one { top: 8px; left: 111px; }
.node-two { top: 80px; right: 0; }
.node-three { bottom: 3px; left: 103px; }
.node-four { top: 80px; left: 0; }

.case-content {
  padding: 30px 32px 33px;
}

.case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8a95a5;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-content h3 {
  max-width: 470px;
  margin: 20px 0 29px;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.case-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-story small {
  color: #9aa4b3;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-story p {
  margin: 8px 0 0;
  color: #667386;
  font-size: 11px;
  line-height: 1.55;
}

.impact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 23px;
}

.impact strong {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 31px;
  letter-spacing: -0.05em;
}

.impact span {
  color: #7d899a;
  font-size: 9px;
  line-height: 1.4;
  text-transform: uppercase;
}

.founder-section {
  overflow: hidden;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 110px;
}

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

.founder-visual::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, #e1eaff, #f6f8ff 60%, transparent 70%);
}

.founder-visual::after {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  border: 1px solid #e0e7f6;
  border-radius: 50%;
}

.founder-card {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 405px;
  padding: 35px;
  overflow: hidden;
  border: 1px solid #dfe6f3;
  border-radius: 25px;
  background: linear-gradient(155deg, #ffffff, #eef3ff);
  box-shadow: 0 35px 75px rgba(41, 68, 123, 0.16);
}

.founder-monogram {
  height: 275px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), transparent 30%),
    linear-gradient(145deg, #12203a, #253e70);
  font-family: "Manrope", sans-serif;
  font-size: 82px;
  font-weight: 700;
  letter-spacing: -0.1em;
}

.founder-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #68758a;
  font-size: 10px;
  font-weight: 600;
}

.founder-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.founder-lines {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.05;
}

.founder-lines i {
  display: block;
  height: 1px;
  margin: 13px 0;
  background: var(--blue);
}

.expertise-tag {
  position: absolute;
  z-index: 3;
  padding: 10px 15px;
  border: 1px solid #dce5f4;
  border-radius: 10px;
  color: #53647d;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 15px 35px rgba(44, 67, 111, 0.11);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 700;
}

.tag-one { left: 0; top: 110px; }
.tag-two { right: -5px; top: 175px; }
.tag-three { left: 22px; bottom: 65px; }

.founder-copy h2 {
  max-width: 650px;
  margin-bottom: 26px;
}

.founder-copy p {
  max-width: 650px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.founder-copy .founder-lead {
  color: #344156;
  font-size: 18px;
}

.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 29px 0 29px;
}

.expertise-list span {
  padding: 8px 11px;
  border: 1px solid #dde4ef;
  border-radius: 7px;
  color: #617087;
  background: #fafbfc;
  font-size: 10px;
  font-weight: 600;
}

.process-section {
  border-top: 1px solid var(--line);
  background: #fbfcfe;
}

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

.process-line::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 54px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, #b9cbf7, #b7b5ed);
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: 270px;
  padding: 25px 23px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-number {
  color: #a3adbb;
  font-size: 9px;
  font-weight: 700;
  text-align: right;
}

.step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 2px 0 30px;
  border: 8px solid white;
  border-radius: 17px;
  color: #426fdf;
  background: #eaf0ff;
  box-shadow: 0 0 0 1px #dce5f7;
  font-size: 18px;
}

.process-step:nth-child(2) .step-icon { color: #6d4edc; background: #f0ebff; }
.process-step:nth-child(3) .step-icon { color: #0d849b; background: #e5f7fa; }
.process-step:nth-child(4) .step-icon { color: #087f5b; background: #e7f7f1; }

.process-step h3 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.testimonials-section {
  background: white;
}

.testimonial-heading {
  max-width: 670px;
  margin: 0 auto 53px;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 17px;
}

.testimonial-card {
  min-height: 300px;
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fafbfc;
}

.testimonial-card.featured-quote {
  color: white;
  border-color: #1b2a42;
  background: linear-gradient(145deg, #111d30, #0b1423);
  box-shadow: 0 28px 60px rgba(13, 25, 45, 0.15);
}

.quote-mark {
  height: 40px;
  color: #5079e6;
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 1;
}

.testimonial-card blockquote {
  margin: 13px 0 31px;
  color: #364256;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.featured-quote blockquote {
  color: #d3ddeb;
  font-size: 17px;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 11px;
}

.person-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #6b7fa2;
  background: #e6ebf4;
  font-size: 9px;
  font-weight: 700;
}

.featured-quote .person-avatar {
  color: #b7c8e6;
  background: #283954;
}

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

.testimonial-card figcaption strong {
  margin-bottom: 4px;
  color: #344054;
  font-size: 11px;
}

.testimonial-card figcaption small {
  color: #8b96a7;
  font-size: 9px;
}

.featured-quote figcaption strong {
  color: #dce5f3;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: #fafbfc;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro p {
  max-width: 430px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.accordion details {
  border-bottom: 1px solid #dfe5ed;
}

.accordion summary {
  position: relative;
  padding: 27px 48px 27px 0;
  list-style: none;
  color: #263347;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

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

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 13px;
  height: 1px;
  background: #6c7b90;
  transition: transform 0.25s ease;
}

.accordion summary span::after {
  transform: rotate(90deg);
}

.accordion details[open] summary span::after {
  transform: rotate(0);
}

.accordion details p {
  max-width: 650px;
  margin: -6px 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.cta-section {
  position: relative;
  padding: 115px 0;
  overflow: hidden;
  color: white;
  background: #091321;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 65px 65px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}

.cta-orb-one {
  top: -200px;
  left: 5%;
  width: 500px;
  height: 500px;
  background: #235de3;
}

.cta-orb-two {
  right: -100px;
  bottom: -300px;
  width: 600px;
  height: 600px;
  background: #7045df;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 110px;
}

.cta-copy h2 {
  font-size: clamp(49px, 5.5vw, 72px);
}

.cta-copy > p {
  max-width: 500px;
  margin: 25px 0 29px;
  color: #8f9eb1;
  font-size: 16px;
  line-height: 1.75;
}

.cta-copy ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #aeb9c8;
  font-size: 12px;
}

.cta-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-copy li span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #65d7ad;
  background: rgba(35, 197, 139, 0.12);
  font-size: 9px;
}

.contact-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  color: var(--ink);
  background: white;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3);
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 25px;
}

.form-heading small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 7px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.calendar-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #4c73dc;
  background: #edf2ff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-card label {
  display: block;
  margin-bottom: 13px;
  color: #4a586e;
  font-size: 10px;
  font-weight: 700;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  border: 1px solid #dfe5ed;
  border-radius: 8px;
  outline: none;
  color: #243146;
  background: #fafbfc;
  font-size: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  border-color: #7b9bed;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.09);
}

.contact-card textarea {
  resize: vertical;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: #a7b0bd;
}

.form-note {
  margin: 11px 0 0;
  color: #9aa4b2;
  font-size: 9px;
  text-align: center;
}

.hubspot-form-shell {
  position: relative;
  min-height: 270px;
  width: 100%;
}

.hubspot-form-shell .hs-form-frame,
.hubspot-form-shell iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.hubspot-form-shell iframe {
  border: 0;
}

.site-footer {
  padding: 70px 0 28px;
  color: #7e8ca1;
  background: #060d17;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  padding-bottom: 55px;
}

.footer-brand .brand {
  color: white;
}

.footer-brand p {
  max-width: 310px;
  margin: 20px 0;
  font-size: 13px;
  line-height: 1.65;
}

.footer-email {
  color: #a9b6c8;
  font-size: 12px;
  font-weight: 600;
}

.footer-email span {
  color: #6388f8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: #d1dae8;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 11px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 9px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1);
}

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

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

@media (max-width: 1050px) {
  .nav-menu {
    gap: 25px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero-layout {
    gap: 30px;
  }

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

  .logo-wall {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .founder-grid,
  .cta-grid {
    gap: 55px;
  }

  .faq-grid {
    gap: 55px;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(3.25px) rotate(45deg);
  }

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

  .nav-menu {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    height: calc(100vh - 76px);
    padding: 35px 20px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 32px;
    background: #08111f;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-links a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 18px;
  }

  .hero {
    padding-top: 145px;
  }

  .hero-layout,
  .section-intro,
  .founder-grid,
  .faq-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 75px;
  }

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

  .hero h1,
  .hero-description {
    margin-inline: auto;
  }

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

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

  .section-intro {
    gap: 20px;
  }

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

  .service-card,
  .service-card:nth-child(2) {
    grid-column: span 1;
  }

  .service-card.featured {
    grid-column: span 2;
  }

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

  .founder-grid {
    gap: 45px;
  }

  .founder-copy {
    max-width: 700px;
    margin-inline: auto;
  }

  .process-line {
    grid-template-columns: 1fr 1fr;
  }

  .process-line::before {
    display: none;
  }

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

  .testimonial-card.featured-quote {
    grid-column: span 2;
  }

  .faq-intro {
    position: static;
  }

  .cta-grid {
    gap: 50px;
  }

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

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

  .section {
    padding: 73px 0;
  }

  .nav {
    min-height: 68px;
  }

  .nav-menu {
    top: 68px;
    height: calc(100vh - 68px);
  }

  .hero {
    min-height: auto;
    padding: 125px 0 85px;
  }

  .hero h1 {
    font-size: clamp(43px, 13.5vw, 58px);
    line-height: 1.02;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-proof {
    text-align: left;
  }

  .dashboard-shell {
    transform: none;
    animation: none;
  }

  .dashboard-body {
    min-height: 340px;
    grid-template-columns: 37px 1fr;
  }

  .dashboard-content {
    padding: 19px 14px 15px;
  }

  .revenue-chart {
    height: 105px;
  }

  .dash-metrics > div {
    padding: 10px 7px;
  }

  .metric-icon {
    display: none;
  }

  .float-card-one {
    left: -5px;
    bottom: -29px;
  }

  .float-card-two {
    top: -27px;
    right: 3px;
  }

  .hero-visual {
    margin-bottom: 20px;
  }

  .tech-strip {
    padding-block: 32px;
  }

  .logo-wall {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 16px;
  }

  .tech-logo {
    font-size: 12px;
  }

  .section-intro h2,
  .section-title h2,
  .founder-copy h2,
  .testimonial-heading h2,
  .faq-intro h2,
  .results-header h2 {
    font-size: 40px;
  }

  .section-intro {
    margin-bottom: 38px;
  }

  .service-grid,
  .stat-grid,
  .process-line,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .service-card.featured,
  .service-card:nth-child(2),
  .testimonial-card.featured-quote {
    grid-column: span 1;
  }

  .service-card {
    min-height: 290px;
  }

  .mini-workflow {
    display: none;
  }

  .stat-card {
    min-height: 265px;
  }

  .section-title .text-link {
    position: static;
    margin-top: 24px;
  }

  .case-visual {
    height: 230px;
  }

  .pipeline-flow {
    transform: scale(0.8);
  }

  .case-content {
    padding: 25px 22px;
  }

  .case-content h3 {
    font-size: 22px;
  }

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

  .founder-visual {
    min-height: 450px;
    transform: scale(0.88);
    margin: -25px -30px;
  }

  .founder-card {
    width: 290px;
  }

  .tag-one {
    left: 6px;
  }

  .tag-two {
    right: 3px;
  }

  .process-step {
    min-height: 240px;
  }

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

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

  .contact-card {
    padding: 24px 19px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-copy h2 {
    font-size: 50px;
  }

  .footer-top {
    gap: 50px;
  }

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

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* Premium art-direction layer */
:root {
  --premium-shadow: 0 1px 2px rgba(15, 23, 42, 0.03), 0 18px 50px rgba(15, 23, 42, 0.07);
  --premium-border: rgba(108, 128, 164, 0.18);
}

body {
  background:
    radial-gradient(circle at 15% 10%, rgba(70, 110, 255, 0.035), transparent 28%),
    #fff;
  overflow-x: clip;
}

.site-header {
  top: 12px;
  right: max(16px, calc((100vw - 1220px) / 2));
  left: max(16px, calc((100vw - 1220px) / 2));
  width: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(7, 14, 27, 0.72);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.site-header.is-scrolled {
  background: rgba(7, 14, 27, 0.91);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.nav {
  width: calc(100% - 42px);
  min-height: 64px;
}

.brand {
  letter-spacing: -0.8px;
}

.brand-mark {
  box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 8px 24px rgba(37, 99, 235, 0.42);
}

.button {
  border-radius: 10px;
}

.button-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #1f5ee9, #4e5ff4 58%, #6657e9);
  box-shadow: 0 1px 0 rgba(255,255,255,.22) inset, 0 18px 42px rgba(37, 99, 235, 0.3);
}

.button-primary::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -60%;
  width: 45%;
  height: 300%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: rotate(24deg);
  transition: left .65s ease;
}

.button-primary:hover::before {
  left: 125%;
}

.hero {
  min-height: 880px;
  padding-top: 190px;
  background:
    radial-gradient(circle at 72% 46%, rgba(62, 85, 207, 0.19), transparent 26%),
    radial-gradient(circle at 15% 12%, rgba(35, 78, 185, 0.18), transparent 32%),
    linear-gradient(135deg, #07101d 0%, #091321 56%, #0d1128 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.hero-grid {
  opacity: .07;
  background-size: 84px 84px;
}

.hero-layout {
  grid-template-columns: .88fr 1.12fr;
  gap: 76px;
}

.hero h1 {
  font-size: clamp(58px, 5.5vw, 84px);
  line-height: .96;
  letter-spacing: -.072em;
  text-wrap: balance;
  text-shadow: 0 3px 26px rgba(0,0,0,.18);
}

.hero-description {
  max-width: 570px;
  color: #a8b4c7;
  font-size: 17px;
}

.eyebrow-dark {
  padding: 7px 11px;
  border: 1px solid rgba(123, 152, 255, 0.18);
  border-radius: 999px;
  background: rgba(63, 93, 183, 0.09);
  letter-spacing: .12em;
}

.dashboard-shell {
  border-color: rgba(135, 157, 214, 0.2);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(20, 31, 51, .9), rgba(10, 18, 32, .9));
  box-shadow:
    0 0 0 1px rgba(255,255,255,.03) inset,
    0 50px 120px rgba(0, 0, 0, 0.52),
    0 0 90px rgba(57, 78, 177, 0.12);
}

.dashboard-shell::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg, rgba(255,255,255,.28), transparent 28%, transparent 68%, rgba(98,111,255,.28));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 5% -5% -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 87, 206, .23), transparent 66%);
  filter: blur(24px);
}

.float-card {
  border-color: rgba(150, 170, 225, .2);
  background: linear-gradient(145deg, rgba(24, 37, 61, .96), rgba(14, 24, 42, .94));
  box-shadow: 0 25px 65px rgba(0,0,0,.48), 0 1px 0 rgba(255,255,255,.08) inset;
}

.hero-scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255,.38);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll-cue i {
  width: 1px;
  height: 30px;
  overflow: hidden;
  background: rgba(255,255,255,.13);
}

.hero-scroll-cue i::after {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: linear-gradient(transparent, #7b9cff);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  from { transform: translateY(-100%); }
  to { transform: translateY(200%); }
}

.tech-strip {
  position: relative;
  z-index: 4;
  border-bottom-color: rgba(118, 136, 169, .14);
  box-shadow: 0 18px 50px rgba(24, 39, 75, .035);
}

.tech-logo {
  opacity: .72;
  transition: opacity .25s ease, transform .25s ease, filter .25s ease;
}

.tech-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}

.section {
  position: relative;
  padding: 142px 0;
}

.section-kicker {
  display: grid;
  grid-template-columns: auto 72px auto;
  align-items: center;
  gap: 12px;
  width: max-content;
  margin-bottom: 42px;
  color: #929eb0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section-kicker i {
  height: 1px;
  background: linear-gradient(90deg, #b8c4d8, transparent);
}

.section-kicker-dark {
  color: #66758b;
}

.section-kicker-dark i {
  background: linear-gradient(90deg, #52627a, transparent);
}

.services {
  background:
    radial-gradient(circle at 8% 20%, rgba(37,99,235,.045), transparent 22%),
    linear-gradient(180deg, #fff, #fafbfe);
}

.section-intro h2,
.section-title h2,
.founder-copy h2,
.testimonial-heading h2,
.faq-intro h2,
.results-header h2 {
  letter-spacing: -.065em;
}

.service-grid {
  gap: 14px;
}

.service-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  border-color: var(--premium-border);
  border-radius: 20px;
  background:
    radial-gradient(500px circle at var(--mouse-x) var(--mouse-y), rgba(81, 117, 241, .08), transparent 40%),
    rgba(255,255,255,.91);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(130deg, rgba(255,255,255,.6), transparent 35%);
  transition: opacity .3s ease;
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(79, 111, 210, .3);
  box-shadow: var(--premium-shadow), 0 0 0 1px rgba(255,255,255,.85) inset;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  background:
    radial-gradient(550px circle at var(--mouse-x) var(--mouse-y), rgba(73, 104, 244, .13), transparent 42%),
    linear-gradient(135deg, #f9fbff, #f1f3ff);
}

.service-icon {
  box-shadow: 0 7px 18px rgba(30, 64, 175, .08), 0 1px 0 rgba(255,255,255,.9) inset;
}

.results-section {
  background:
    radial-gradient(circle at 50% -10%, rgba(58, 91, 192, .24), transparent 34%),
    linear-gradient(145deg, #08111e, #0b1525 60%, #0c1224);
}

.stat-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  border-color: rgba(143, 162, 210, .12);
  background:
    radial-gradient(420px circle at var(--mouse-x) var(--mouse-y), rgba(87, 119, 232, .13), transparent 40%),
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  box-shadow: 0 1px 0 rgba(255,255,255,.055) inset, 0 25px 60px rgba(0,0,0,.1);
  transition: transform .35s ease, border-color .35s ease;
}

.stat-card:hover {
  border-color: rgba(121, 147, 230, .26);
  transform: translateY(-5px);
}

.case-studies {
  background:
    linear-gradient(rgba(246,248,252,.94), rgba(246,248,252,.94)),
    radial-gradient(circle at 10% 10%, #dfe8ff, transparent 34%);
}

.case-card {
  border-color: rgba(119, 139, 174, .18);
  border-radius: 24px;
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 25px 70px rgba(29, 45, 78, .07);
}

.case-card:hover {
  box-shadow: 0 38px 90px rgba(23, 38, 70, .14);
}

.case-visual {
  border-bottom: 1px solid rgba(123, 142, 181, .1);
}

.founder-section {
  background:
    radial-gradient(circle at 25% 50%, rgba(57, 99, 221, .055), transparent 25%),
    #fff;
}

.founder-card {
  border-color: rgba(119, 143, 190, .24);
  background: linear-gradient(155deg, rgba(255,255,255,.98), #edf2ff);
  box-shadow: 0 45px 100px rgba(35, 61, 115, .18), 0 1px 0 white inset;
}

.founder-monogram {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.14), transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(68,103,208,.35), transparent 38%),
    linear-gradient(145deg, #101d34, #233b69);
  text-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.founder-monogram::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.08) 45%, transparent 60%);
  transform: translateX(-100%);
  animation: portraitShine 6s ease-in-out infinite;
}

@keyframes portraitShine {
  60%, 100% { transform: translateX(120%); }
}

.process-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(82, 103, 223, .045), transparent 28%),
    #fafbfe;
}

.process-step {
  border-color: var(--premium-border);
  border-radius: 20px;
  box-shadow: 0 1px 0 white inset;
}

.process-step:hover {
  border-color: rgba(87, 113, 196, .26);
  box-shadow: var(--premium-shadow);
}

.testimonial-card {
  border-color: var(--premium-border);
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #f8f9fc);
  box-shadow: 0 1px 0 white inset;
}

.testimonial-card.featured-quote {
  background:
    radial-gradient(circle at 100% 0, rgba(63, 96, 194, .28), transparent 38%),
    linear-gradient(145deg, #101d31, #091321);
}

.faq-section {
  background:
    radial-gradient(circle at 4% 20%, rgba(37, 99, 235, .04), transparent 25%),
    #fafbfc;
}

.accordion details {
  transition: padding .25s ease, background .25s ease;
}

.accordion details[open] {
  margin-inline: -18px;
  padding-inline: 18px;
  border-radius: 12px;
  background: rgba(255,255,255,.65);
}

.cta-section {
  background:
    radial-gradient(circle at 15% 35%, rgba(35, 82, 194, .22), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(96, 61, 205, .2), transparent 31%),
    linear-gradient(135deg, #07101c, #0a1423 58%, #10132e);
}

.contact-card {
  border-color: rgba(255,255,255,.25);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,250,255,.97));
  box-shadow: 0 50px 110px rgba(0,0,0,.37), 0 1px 0 white inset;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  border-color: #e1e6ef;
  background: rgba(247,249,252,.9);
}

.site-footer {
  background:
    radial-gradient(circle at 15% 0, rgba(34, 70, 158, .09), transparent 28%),
    #050c15;
}

@media (max-width: 840px) {
  .site-header {
    top: 8px;
    right: 8px;
    left: 8px;
    width: auto;
  }

  .nav {
    width: calc(100% - 28px);
  }

  .nav-menu {
    top: 81px;
    height: calc(100vh - 81px);
    border-radius: 16px 16px 0 0;
  }

  .hero {
    padding-top: 150px;
  }

  .hero h1 {
    font-size: clamp(52px, 9vw, 72px);
  }
}

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

  .hero {
    padding-top: 132px;
  }

  .hero h1 {
    font-size: clamp(44px, 13.5vw, 58px);
  }

  .hero-scroll-cue {
    display: none;
  }

  .section-kicker {
    grid-template-columns: auto 45px auto;
    margin-bottom: 28px;
  }
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
  font-weight: 500;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.assessment-cta {
  background: #08111f;
  padding: 40px 0 80px;
}

.assessment-card {
  max-width: 1100px;
  margin: 0 auto;

  padding: 48px;

  border-radius: 24px;

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(12px);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.35);
}

.assessment-card h2 {
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.assessment-card p {
  color: rgba(255,255,255,0.75);
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 800px;
}

.assessment-badge {
  display: inline-flex;
  align-items: center;

  color: #7ea3ff;

  font-weight: 600;

  margin-bottom: 20px;
}

.assessment-features {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin: 32px 0;
}

.feature-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.feature-item strong {
  color: #ffffff;
  display: block;
  margin-bottom: 8px;
}

.feature-item span {
  color: rgba(255,255,255,0.65);
}
