:root {
  --navy: #001e3b;
  --deep: #020b16;
  --blue: #0788ff;
  --blue-2: #37b4ff;
  --sky: #eaf6ff;
  --ink: #081424;
  --muted: #5d6b7d;
  --line: rgba(7, 136, 255, 0.16);
  --shadow: 0 20px 50px rgba(0, 30, 59, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7fbff;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px 14px 12px 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(1, 14, 30, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 148px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 42px);
  color: #fff;
  font-size: 0.91rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.84;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  color: var(--blue-2);
  opacity: 1;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0064f7);
  box-shadow: 0 10px 26px rgba(7, 136, 255, 0.35);
  font-size: 0.88rem;
}

.button {
  padding: 0 22px;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #005df2);
  box-shadow: 0 14px 34px rgba(7, 136, 255, 0.34);
}

.button-primary svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 11, 24, 0.98) 0%, rgba(0, 19, 39, 0.92) 38%, rgba(0, 19, 39, 0.34) 72%),
    radial-gradient(circle at 25% 20%, rgba(7, 136, 255, 0.24), transparent 34%);
}

.hero-showcase {
  position: absolute;
  z-index: -1;
  right: max(-68px, calc((100vw - 1480px) / 2));
  bottom: 128px;
  width: min(760px, 52vw);
  height: min(510px, 35vw);
  pointer-events: none;
}

.hero-showcase img {
  position: absolute;
  height: auto;
  user-select: none;
}

.showcase-laptop {
  right: 6%;
  bottom: 0;
  width: 88%;
}

.showcase-phone {
  right: 0;
  bottom: 7%;
  width: 20%;
}

.showcase-before {
  left: 10%;
  bottom: -1%;
  width: 35%;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -4%;
  bottom: -76px;
  left: -4%;
  height: 194px;
  content: "";
  border-radius: 52% 48% 0 0 / 45% 40% 0 0;
  background: #f7fbff;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 170px 0 132px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.cta-section h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.97;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
  line-height: 1.62;
}

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

.trust-list {
  display: grid;
  gap: 12px;
  max-width: 430px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 800;
}

.trust-list svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  padding: 4px;
  border: 1px solid rgba(55, 180, 255, 0.3);
  border-radius: 50%;
  background: rgba(7, 136, 255, 0.12);
  fill: none;
  stroke: var(--blue-2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.logo-carousel-section {
  margin-top: -1px;
  overflow: hidden;
  padding: 34px 0 24px;
  background: #f7fbff;
}

.logo-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-carousel::before,
.logo-carousel::after {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: min(18vw, 180px);
  content: "";
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #f7fbff, rgba(247, 251, 255, 0));
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #f7fbff, rgba(247, 251, 255, 0));
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logo-scroll 36s linear infinite;
  will-change: transform;
}

.logo-set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
  padding-right: clamp(42px, 7vw, 96px);
}

.logo-set img {
  width: auto;
  height: clamp(32px, 4.2vw, 48px);
  max-width: 190px;
  object-fit: contain;
  filter: saturate(0.92);
}

@keyframes logo-scroll {
  to {
    transform: translateX(-50%);
  }
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.services-section {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  margin-top: -1px;
}

.services-copy {
  position: relative;
  grid-column: 2;
}

.services-copy h2 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.08;
}

.services-copy h2 span {
  position: relative;
  display: inline-block;
  color: var(--blue);
}

.services-copy h2 span::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
}

.services-copy > p:not(.eyebrow):not(.services-note) {
  max-width: 540px;
  margin: 28px 0 22px;
  color: #344662;
  font-size: 1.12rem;
  line-height: 1.48;
}

.services-cta {
  min-height: 52px;
}

.services-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 28px;
  color: #52637c;
  font-size: 0.94rem;
  line-height: 1.35;
}

.services-note svg,
.service-row-result svg,
.service-card > span:not(.icon-box) svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  padding: 4px;
  border: 1px solid rgba(7, 136, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.services-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 560px;
  padding: 18px 16px;
  border: 1px solid rgba(0, 30, 59, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.services-proof > div {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 0 14px;
  text-align: center;
}

.services-proof > div + div {
  border-left: 1px solid rgba(0, 30, 59, 0.12);
}

.service-proof-icon,
.icon-box {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(7, 136, 255, 0.2);
  border-radius: 8px;
  color: var(--blue);
  background: #f3faff;
}

.service-proof-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.service-proof-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.services-proof strong {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.18;
}

.services-proof p {
  margin: 0;
  color: #53637a;
  font-size: 0.82rem;
  line-height: 1.38;
}

.services-panel {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  gap: 20px;
  padding: 26px;
  border: 1px solid rgba(0, 30, 59, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.service-list-card {
  display: grid;
  padding: 8px 24px;
  border: 1px solid rgba(0, 30, 59, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.service-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(170px, 0.7fr);
  gap: 26px;
  align-items: center;
  padding: 20px 0;
}

.service-row + .service-row {
  border-top: 1px solid rgba(0, 30, 59, 0.12);
}

.service-row h3,
.service-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
}

.service-row p,
.service-card p {
  margin: 0;
  color: #263956;
  font-size: 0.94rem;
  line-height: 1.42;
}

.service-row-result,
.service-card > span:not(.icon-box) {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #304765;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.32;
  text-align: left;
}

.service-card > span:not(.icon-box) {
  margin-top: auto;
  padding-top: 20px;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 20px;
  border-top: 1px dashed rgba(7, 136, 255, 0.24);
}

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

.section h2,
.cta-section h2 {
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.05;
}

.service-grid,
.testimonial-grid,
.stat-grid,
.why-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

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

.problem-section {
  position: relative;
  width: min(1280px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 6vw, 76px);
  align-items: center;
  isolation: isolate;
  overflow: clip;
}

.problem-section::after {
  position: absolute;
  z-index: -1;
  right: -12vw;
  bottom: -90px;
  width: 46vw;
  height: 46vw;
  content: "";
  border: 1px solid rgba(7, 136, 255, 0.1);
  border-radius: 50%;
  background-image: radial-gradient(rgba(7, 136, 255, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.62;
}

.problem-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.55rem, 4.6vw, 4.55rem);
  line-height: 1.05;
}

.problem-copy h2 span {
  position: relative;
  display: inline-block;
  color: #086cf7;
  white-space: nowrap;
}

.problem-copy h2 span::after {
  position: absolute;
  right: 0;
  bottom: 0.03em;
  left: 0;
  height: 0.08em;
  content: "";
  border-radius: 999px;
  background: #086cf7;
  transform: rotate(-1deg);
  transform-origin: left center;
}

.problem-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: 1.06rem;
  line-height: 1.75;
}

.problem-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
  color: #086cf7;
  font-weight: 900;
}

.problem-link svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.problem-link:hover svg {
  color: #fff;
  background: #086cf7;
  transform: translateX(3px);
}

.problem-audit {
  overflow: hidden;
  border: 1px solid rgba(0, 30, 59, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(0, 30, 59, 0.13);
  backdrop-filter: blur(14px);
}

.problem-audit-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 30px 22px;
}

.problem-audit-icon,
.problem-item-icon,
.problem-footer-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #086cf7;
  background: #eaf3ff;
}

.problem-audit-icon {
  width: 58px;
  height: 58px;
}

.problem-audit-icon svg,
.problem-item-icon svg,
.problem-footer-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-audit-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.problem-audit-header .eyebrow {
  margin-bottom: 8px;
}

.problem-audit-header h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.12;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 8px 30px 28px;
}

.problem-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  min-height: 164px;
  align-items: center;
  padding: 22px 18px 22px 22px;
  border: 1px solid rgba(0, 30, 59, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.problem-item strong,
.problem-item > div span {
  display: block;
}

.problem-item strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.12;
}

.problem-item > div span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.52;
}

.problem-item-icon {
  align-self: start;
  width: 52px;
  height: 52px;
}

.problem-item-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.problem-item-arrow {
  align-self: end;
  width: 28px;
  height: 28px;
  padding: 7px;
  border: 1px solid rgba(0, 30, 59, 0.1);
  border-radius: 50%;
  color: var(--navy);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.problem-audit-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 30px;
  background: #eaf4ff;
}

.problem-footer-icon {
  width: 44px;
  height: 44px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #005df2);
}

.problem-footer-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.4;
}

.problem-audit-footer p {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.35;
}

.problem-audit-footer p strong,
.problem-audit-footer p span {
  display: block;
}

.problem-audit-footer p span {
  margin-top: 4px;
  color: var(--muted);
}

.service-card,
.stat-card,
.testimonial-card,
.why-item,
.faq-item {
  border: 1px solid rgba(0, 30, 59, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.service-card {
  display: grid;
  justify-items: center;
  min-height: 236px;
  padding: 22px 18px;
  text-align: center;
  align-content: start;
}

.icon-box {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
}

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

h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.16;
}

p {
  color: var(--muted);
}

.why-item span,
.faq-item p,
.testimonial-card p,
.process-step p,
.results-copy p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.52;
}

.why-choose-section {
  display: grid;
  width: min(1360px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(46px, 6vw, 86px);
  align-items: start;
  scroll-margin-top: 140px;
}

.why-choose-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  align-self: center;
}

.why-choose-copy {
  grid-column: 1;
  grid-row: 1;
}

.why-choose-visual::after {
  position: absolute;
  inset: 13% 0 4% 10%;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 136, 255, 0.18), rgba(7, 136, 255, 0) 64%);
  filter: blur(10px);
}

.why-choose-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 30, 59, 0.1));
}

.why-choose-copy h2 {
  max-width: 620px;
  font-size: clamp(2.15rem, 3.3vw, 3.2rem);
  line-height: 1.08;
}

.why-choose-lede {
  max-width: 690px;
  margin: 26px 0 26px;
  color: #14243a;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.54;
}

.why-choose-lede strong {
  color: var(--blue);
}

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

.why-item {
  position: relative;
  display: grid;
  min-height: 150px;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 8px;
  align-content: start;
  padding: 28px 60px 28px 28px;
}

.why-item strong,
.why-item span {
  display: block;
}

.why-item strong {
  align-self: end;
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.16;
}

.why-item > span:not(.why-icon) {
  grid-column: 2;
  color: #263956;
  font-size: 0.98rem;
  line-height: 1.55;
}

.why-item > .why-icon {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  grid-row: 1 / span 2;
  place-items: center;
  color: var(--blue);
  line-height: 0;
}

.why-item > .why-icon::before {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #edf6ff;
  content: "";
}

.why-item > .why-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  display: block;
  transform: translate(-50%, -50%);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.testimonial-section {
  width: min(1180px, calc(100% - 40px));
  background: #f7fbff;
}

.results-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
  align-items: center;
}

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

.stat-card {
  min-height: 156px;
  padding: 28px 18px;
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.16;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(0, 1.7fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: end;
}

.testimonial-intro {
  grid-column: 1;
  grid-row: 1;
}

.testimonial-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  line-height: 1.02;
}

.testimonial-intro > p:not(.eyebrow) {
  max-width: 430px;
  margin: 18px 0 28px;
  font-size: 1.08rem;
  line-height: 1.48;
}

.review-summary-card {
  grid-column: 1;
  grid-row: 2;
  max-width: 330px;
  padding: 22px;
  border: 1px solid rgba(0, 30, 59, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.review-summary-top,
.review-score,
.review-benefits li {
  display: flex;
  align-items: center;
}

.review-summary-top {
  gap: 16px;
}

.review-summary-top img {
  width: 42px;
  height: 42px;
}

.review-summary-top span {
  color: #f8a400;
  font-size: 1.22rem;
  letter-spacing: 0;
}

.review-score {
  gap: 18px;
  margin-top: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 30, 59, 0.13);
}

.review-score strong {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.review-score span {
  color: var(--muted);
  font-weight: 800;
}

.review-benefits {
  display: grid;
  gap: 11px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.review-benefits li {
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.review-benefits svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  padding: 4px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.review-summary-cta {
  width: 100%;
}

.testimonial-stage {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 0;
  padding: 68px 28px 22px;
  border: 1px solid rgba(0, 30, 59, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 0 42px rgba(7, 136, 255, 0.04);
}

.testimonial-controls {
  position: absolute;
  top: 20px;
  right: 28px;
  display: flex;
  gap: 10px;
}

.testimonial-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(0, 30, 59, 0.12);
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 30, 59, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.testimonial-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 136, 255, 0.36);
  color: var(--blue);
}

.testimonial-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.testimonial-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-y;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  display: flex;
  flex: 0 0 calc((100% - 40px) / 3);
  flex-direction: column;
  min-height: 320px;
  scroll-snap-align: start;
  margin: 0;
  padding: 24px;
  overflow: visible;
  border-bottom: 5px solid var(--blue);
}

.review-google-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  padding: 8px;
  border-radius: 50%;
  background: #edf6ff;
}

.testimonial-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.58;
}

.testimonial-card cite {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 30, 59, 0.12);
  color: var(--ink);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
}

.testimonial-card cite svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  fill: var(--blue);
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  min-height: 10px;
  margin-top: 26px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 30, 59, 0.14);
  cursor: pointer;
  padding: 0;
}

.testimonial-dot.is-active {
  background: var(--blue);
}

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

.process-line::before {
  position: absolute;
  top: 26px;
  right: 10%;
  left: 10%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-2), #0063ed);
  box-shadow: 0 12px 28px rgba(7, 136, 255, 0.28);
  font-weight: 900;
}

.process-step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.faq-section {
  padding-top: 84px;
}

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

.faq-item {
  padding: 24px;
}

.faq-item h3 {
  color: var(--navy);
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 76px 20px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(0, 15, 32, 0.95), rgba(0, 30, 59, 0.82)),
    url("assets/Website%20hero.png") center 62% / cover;
}

.cta-section h2,
.cta-section p {
  color: #fff;
}

.cta-content {
  width: min(920px, 100%);
  margin: 0 auto;
}

.cta-content p {
  margin: 16px auto 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.55;
}

.site-footer {
  padding: 58px max(20px, calc((100vw - 1180px) / 2)) 26px;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(0, 30, 59, 0.98), rgba(0, 11, 22, 1)),
    #001327;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(160px, 0.5fr) minmax(260px, 0.8fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.footer-brand img {
  width: 164px;
}

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.58;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-links a {
  width: max-content;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--blue-2);
}

.footer-contact p {
  max-width: 320px;
  margin: 2px 0 6px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.52;
}

.footer-cta {
  display: inline-flex;
  min-height: 44px;
  width: max-content;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #005df2);
  box-shadow: 0 12px 28px rgba(7, 136, 255, 0.24);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer-bottom a {
  color: #fff;
  font-weight: 800;
  transition: color 180ms ease;
}

.mockup-page {
  background: #f3f8fd;
}

.mockup-hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 520px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin: 0 auto;
  padding: 180px 0 72px;
}

.mockup-hero::before {
  position: absolute;
  z-index: -1;
  top: 140px;
  right: -7vw;
  width: min(360px, 26vw);
  aspect-ratio: 1;
  border: 1px solid rgba(7, 136, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  content: "";
  animation: mockup-float 9s ease-in-out infinite;
}

.mockup-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.55rem, 5vw, 5.3rem);
  line-height: 0.98;
}

.mockup-hero-copy p:last-child {
  max-width: 690px;
  margin: 24px 0 0;
  color: #263956;
  font-size: clamp(1.02rem, 1.45vw, 1.24rem);
  line-height: 1.58;
}

.mockup-hero-panel {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(0, 30, 59, 0.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: opacity 700ms ease, transform 700ms ease, box-shadow 220ms ease;
}

.mockup-hero-panel:hover {
  box-shadow: 0 24px 58px rgba(0, 30, 59, 0.18);
}

.mockup-hero-panel strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.mockup-hero-panel span {
  color: #42536c;
  line-height: 1.55;
}

.mockup-form-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 96px;
}

.mockup-form {
  display: grid;
  gap: 28px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(0, 30, 59, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.mockup-page.page-loaded .mockup-form > * {
  animation: mockup-rise 640ms ease both;
}

.mockup-page.page-loaded .mockup-form > *:nth-child(1) {
  animation-delay: 80ms;
}

.mockup-page.page-loaded .mockup-form > *:nth-child(2) {
  animation-delay: 140ms;
}

.mockup-page.page-loaded .mockup-form > *:nth-child(3) {
  animation-delay: 200ms;
}

.mockup-page.page-loaded .mockup-form > *:nth-child(4) {
  animation-delay: 260ms;
}

.mockup-page.page-loaded .mockup-form > *:nth-child(5) {
  animation-delay: 320ms;
}

.mockup-page.page-loaded .mockup-form > *:nth-child(6) {
  animation-delay: 380ms;
}

.mockup-page.page-loaded .mockup-form > *:nth-child(7) {
  animation-delay: 440ms;
}

.form-honeypot,
.mockup-form input[type="hidden"] {
  display: none;
}

.form-section-heading h2 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
}

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

.form-wide {
  grid-column: 1 / -1;
}

.mockup-form label,
.mockup-form fieldset {
  min-width: 0;
}

.mockup-form label {
  display: grid;
  gap: 8px;
}

.mockup-form label > span,
.mockup-form legend {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.3;
}

.mockup-form input,
.mockup-form select,
.mockup-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(0, 30, 59, 0.14);
  border-radius: 7px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.mockup-form textarea {
  min-height: 120px;
  resize: vertical;
}

.mockup-form input:focus,
.mockup-form select:focus,
.mockup-form textarea:focus {
  border-color: rgba(7, 136, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(7, 136, 255, 0.12);
}

.mockup-form fieldset {
  display: grid;
  gap: 14px;
  margin: 0;
  border: 0;
  padding: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid label {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid rgba(0, 30, 59, 0.12);
  border-radius: 7px;
  background: #f8fbff;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.choice-grid label:hover {
  transform: translateY(-1px);
  border-color: rgba(7, 136, 255, 0.28);
  background: #fff;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  width: 100%;
  padding: 12px 14px;
  color: #263956;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.choice-grid label:has(input:checked) {
  border-color: rgba(7, 136, 255, 0.75);
  background: #eaf6ff;
  box-shadow: inset 0 0 0 1px rgba(7, 136, 255, 0.2);
}

.choice-grid label:has(input:focus-visible) {
  box-shadow: 0 0 0 4px rgba(7, 136, 255, 0.12);
}

.form-submit-row {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
}

.form-submit-row p {
  max-width: 560px;
  margin: 0;
  color: #42536c;
  line-height: 1.5;
}

.form-submit-row .button {
  border: 0;
  cursor: pointer;
}

.thanks-section {
  display: grid;
  min-height: 100vh;
  width: min(760px, calc(100% - 40px));
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 80px;
}

.thanks-card {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(0, 30, 59, 0.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  margin: 8px 0 16px;
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
}

.thanks-card p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 0 28px;
  color: #263956;
  font-size: 1.08rem;
  line-height: 1.55;
}

@keyframes mockup-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mockup-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 18px, 0);
  }
}

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

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

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

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

  .mockup-hero::before,
  .mockup-page.page-loaded .mockup-form > * {
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 660px;
  }

  .hero-media img {
    object-position: 62% 50%;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 11, 24, 0.98), rgba(0, 19, 39, 0.82), rgba(0, 19, 39, 0.48));
  }

  .hero-showcase {
    right: -110px;
    bottom: 126px;
    width: 580px;
    height: 390px;
    opacity: 0.46;
  }

  .service-grid,
  .testimonial-grid,
  .stat-grid,
  .why-grid,
  .faq-grid,
  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-section,
  .results-section,
  .problem-section,
  .services-section,
  .testimonial-layout {
    grid-template-columns: 1fr;
  }

  .mockup-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .mockup-hero-panel {
    max-width: 560px;
  }

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

  .why-choose-section {
    gap: 30px;
  }

  .why-choose-visual {
    grid-column: auto;
    grid-row: auto;
    order: 2;
    max-width: 760px;
    margin: 0 auto;
  }

  .why-choose-copy {
    grid-column: auto;
    grid-row: auto;
    order: 1;
  }

  .why-choose-copy h2,
  .why-choose-lede {
    max-width: 820px;
  }

  .services-section {
    gap: 30px;
  }

  .services-copy,
  .services-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .services-copy h2 {
    max-width: 760px;
  }

  .services-copy > p:not(.eyebrow):not(.services-note) {
    max-width: 680px;
  }

  .services-proof {
    max-width: none;
  }

  .service-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .service-row-result {
    grid-column: 2;
  }

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

  .problem-audit-footer .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .review-summary-card {
    grid-column: auto;
    grid-row: auto;
    max-width: none;
  }

  .testimonial-intro,
  .testimonial-stage {
    grid-column: auto;
    grid-row: auto;
  }

  .testimonial-stage {
    padding-top: 76px;
  }

  .testimonial-card {
    flex-basis: calc((100% - 20px) / 2);
  }

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

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 10px;
    padding: 10px;
  }

  .brand img {
    width: 112px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.75rem;
  }

  .mockup-hero,
  .mockup-form-section {
    width: min(100% - 28px, 560px);
  }

  .mockup-hero {
    padding-top: 132px;
    padding-bottom: 42px;
  }

  .mockup-hero-copy h1 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

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

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero {
    min-height: 0;
  }

  .hero-media img {
    object-position: 58% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 11, 24, 0.98) 0%, rgba(0, 18, 38, 0.91) 52%, rgba(0, 18, 38, 0.74) 100%);
  }

  .hero-showcase {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 0;
    width: min(360px, calc(100% - 28px));
    height: 270px;
    margin: 34px auto 34px;
    opacity: 1;
  }

  .showcase-laptop {
    right: 4%;
    bottom: 38px;
    width: 82%;
  }

  .showcase-phone {
    right: 0;
    bottom: 54px;
    width: 18%;
  }

  .showcase-before {
    left: 0;
    bottom: 8px;
    width: 42%;
  }

  .hero-content {
    width: min(100% - 28px, 560px);
    padding: 126px 0 0;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12.2vw, 3.25rem);
  }

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

  .button {
    width: 100%;
  }

  .trust-list {
    gap: 10px;
    margin-top: 26px;
  }

  .trust-list li {
    font-size: 0.9rem;
  }

  .section {
    width: min(100% - 28px, 560px);
    padding: 54px 0;
  }

  .logo-carousel-section {
    padding: 24px 0 18px;
  }

  .logo-carousel::before,
  .logo-carousel::after {
    width: 42px;
  }

  .logo-set {
    gap: 30px;
    padding-right: 30px;
  }

  .logo-set img {
    height: 22px;
    max-width: 112px;
  }

  .section h2,
  .cta-section h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }

  .services-section {
    width: min(100% - 28px, 560px);
    gap: 24px;
    padding-top: 54px;
  }

  .services-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .services-copy h2 span::after {
    bottom: -4px;
    height: 3px;
  }

  .services-copy > p:not(.eyebrow):not(.services-note) {
    margin: 22px 0 18px;
    font-size: 1rem;
  }

  .services-cta {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
  }

  .services-note {
    align-items: flex-start;
    margin-bottom: 22px;
    font-size: 0.9rem;
  }

  .services-proof {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 18px;
  }

  .services-proof > div {
    grid-template-columns: auto 1fr;
    justify-items: start;
    gap: 4px 14px;
    padding: 18px 0;
    text-align: left;
  }

  .services-proof > div + div {
    border-top: 1px solid rgba(0, 30, 59, 0.12);
    border-left: 0;
  }

  .service-proof-icon {
    grid-row: span 2;
  }

  .services-panel {
    padding: 16px;
  }

  .service-list-card {
    padding: 0 16px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 0;
  }

  .service-row .icon-box {
    margin-bottom: 0;
  }

  .service-row-result {
    grid-column: auto;
    align-items: flex-start;
  }

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

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

  .why-choose-section {
    width: min(100% - 28px, 560px);
    padding-top: 54px;
    padding-bottom: 54px;
    text-align: left;
  }

  .why-choose-visual {
    order: 2;
    margin-top: 6px;
  }

  .why-choose-copy h2 {
    font-size: clamp(1.95rem, 8vw, 2.45rem);
  }

  .why-choose-lede {
    margin: 18px 0 20px;
    font-size: 1rem;
  }

  .why-item {
    min-height: 0;
    padding: 22px 50px 22px 18px;
    column-gap: 14px;
  }

  .why-icon {
    width: 46px;
    height: 46px;
  }

  .why-icon svg {
    width: 25px;
    height: 25px;
  }

  .problem-section {
    gap: 34px;
  }

  .problem-section::after {
    display: none;
  }

  .problem-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }

  .problem-copy h2 span {
    white-space: normal;
  }

  .problem-link {
    margin-top: 28px;
  }

  .problem-audit-header {
    align-items: flex-start;
    padding: 22px 18px 16px;
  }

  .problem-audit-icon,
  .problem-item-icon {
    width: 48px;
    height: 48px;
  }

  .problem-grid {
    gap: 12px;
    padding: 6px 18px 20px;
  }

  .problem-item {
    grid-template-columns: auto 1fr;
    min-height: 0;
    padding: 18px;
  }

  .problem-item-arrow {
    display: none;
  }

  .problem-audit-footer {
    padding: 18px;
  }

  .feature-image {
    min-height: 220px;
  }

  .testimonial-section {
    width: min(100% - 28px, 560px);
  }

  .testimonial-carousel {
    gap: 0;
  }

  .testimonial-card {
    flex-basis: 100%;
    min-height: 290px;
  }

  .testimonial-stage {
    padding: 76px 16px 20px;
  }

  .testimonial-controls {
    right: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .footer-brand img,
  .footer-links a,
  .footer-cta {
    margin: 0 auto;
  }

  .footer-brand p,
  .footer-contact p {
    margin-right: auto;
    margin-left: auto;
  }

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