.sp-services .sp-flow {
  margin: 0;
  padding: 36px 30px 25px;
  border: 1px solid #dce5f3;
  border-radius: 22px;
  background: #fff;
}
.sp-services .sp-flow-overview {
  padding-bottom: 72px;
}
.sp-services .sp-flow figcaption {
  display: grid;
  gap: 9px;
  margin-bottom: 32px;
}
.sp-services .sp-flow-eyebrow {
  color: #1252f5;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
}
.sp-services .sp-flow figcaption strong {
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.sp-services .sp-flow-canvas {
  position: relative;
  display: grid;
  grid-template-columns: 29% 14% 14% 14% 29%;
  align-items: center;
  min-height: 285px;
}
.sp-services .sp-flow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.sp-services .sp-flow-lines path {
  stroke: #a8c2fc;
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 6 5;
  animation: sp-flow-travel 22s linear infinite;
}
.sp-services .sp-flow-inputs {
  grid-column: 1;
  display: grid;
  gap: 16px;
  z-index: 1;
}
.sp-services .sp-flow-outputs {
  grid-column: 5;
  display: grid;
  gap: 25px;
  z-index: 1;
}
.sp-services .sp-flow-node {
  min-height: 55px;
  padding: 12px 16px;
  border: 1px solid #d8e3fc;
  background: #fff;
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.sp-services .sp-flow-node:hover {
  transform: translateY(-3px);
  border-color: #1252f5;
  box-shadow: 0 7px 20px #1252f512;
}
.sp-services .sp-flow-outputs .sp-flow-node {
  justify-content: space-between;
  color: #1252f5;
  border-color: #8caffb;
}
.sp-services .sp-flow-dot {
  width: 8px;
  height: 8px;
  background: #a2acba;
  flex-shrink: 0;
  border-radius: 50%;
}
.sp-services .sp-flow-outputs .sp-flow-dot {
  background: #169975;
}
.sp-services .sp-flow-hub {
  grid-column: 3;
  grid-row: 1;
  z-index: 1;
  justify-self: center;
  width: 160px;
  min-height: 164px;
  border: 1px solid #c8dafe;
  border-radius: 28px;
  background: #eff6ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 8px;
  box-shadow: 0 12px 30px #1252f50d;
  transition: transform 0.2s ease;
}
.sp-services .sp-flow-hub:hover {
  transform: scale(1.04);
}
.sp-services .sp-flow-hub svg {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: #111827;
}
.sp-services .sp-flow-hub b {
  font-size: 14px;
}
.sp-services .sp-flow-hub small {
  font-size: 10px;
  line-height: 1.5;
  margin-top: 6px;
  color: #5b6472;
}
.sp-services .sp-flow-caption {
  font-size: 12px;
  text-align: center;
  margin: 22px 0 0;
  color: #5b6472;
}
.sp-services .sp-flow-compact {
  padding: 22px 16px 16px;
  margin-top: 30px;
  background: #f8faff;
  border-radius: 16px;
}
.sp-services .sp-flow-compact figcaption {
  margin-bottom: 20px;
}
.sp-services .sp-flow-compact figcaption strong {
  font-size: 17px;
}
.sp-services .sp-flow-compact .sp-flow-canvas {
  min-height: 210px;
  grid-template-columns: 30% 10% 20% 10% 30%;
}
.sp-services .sp-flow-compact .sp-flow-node {
  font-size: 9px;
  gap: 5px;
  min-height: 38px;
  padding: 7px;
  border-radius: 7px;
}
.sp-services .sp-flow-compact .sp-flow-inputs {
  gap: 12px;
}
.sp-services .sp-flow-compact .sp-flow-outputs {
  gap: 20px;
}
.sp-services .sp-flow-compact .sp-flow-dot {
  width: 4px;
  height: 4px;
}
.sp-services .sp-flow-compact .sp-flow-hub {
  width: 76px;
  min-height: 100px;
  padding: 8px 4px;
  border-radius: 16px;
}
.sp-services .sp-flow-compact .sp-flow-hub svg {
  width: 25px;
  height: 25px;
  margin-bottom: 6px;
}
.sp-services .sp-flow-compact .sp-flow-hub b {
  font-size: 10px;
}
.sp-services .sp-flow-compact .sp-flow-hub small {
  font-size: 8px;
}
.sp-services .sp-flow-compact .sp-flow-caption {
  font-size: 11px;
  margin-top: 15px;
}
.sp-services .sp-category-heading {
  position: static;
}
@keyframes sp-flow-travel {
  to {
    stroke-dashoffset: -220;
  }
}
@media (max-width: 650px) {
  .sp-services .sp-flow-overview {
    padding-bottom: 45px;
  }
  .sp-services .sp-flow:not(.sp-flow-compact) {
    padding: 26px 18px;
  }
  .sp-services .sp-flow:not(.sp-flow-compact) .sp-flow-canvas {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .sp-services .sp-flow:not(.sp-flow-compact) .sp-flow-lines {
    display: none;
  }
  .sp-services .sp-flow:not(.sp-flow-compact) .sp-flow-inputs,
  .sp-services .sp-flow:not(.sp-flow-compact) .sp-flow-outputs {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .sp-services .sp-flow:not(.sp-flow-compact) .sp-flow-outputs {
    grid-template-columns: 1fr;
  }
  .sp-services .sp-flow:not(.sp-flow-compact) .sp-flow-node {
    font-size: 12px;
    padding: 11px;
    gap: 7px;
  }
  .sp-services .sp-flow:not(.sp-flow-compact) .sp-flow-hub {
    position: relative;
    min-height: 135px;
  }
  .sp-services .sp-flow:not(.sp-flow-compact) .sp-flow-hub:before,
  .sp-services .sp-flow:not(.sp-flow-compact) .sp-flow-hub:after {
    content: "";
    position: absolute;
    height: 32px;
    border-left: 2px dashed #a8c2fc;
    left: 50%;
  }
  .sp-services .sp-flow:not(.sp-flow-compact) .sp-flow-hub:before {
    bottom: 100%;
  }
  .sp-services .sp-flow:not(.sp-flow-compact) .sp-flow-hub:after {
    top: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sp-services .sp-flow * {
    animation: none !important;
    transition: none !important;
  }
}
.sp-services .sp-flow-compact .sp-flow-node {
  font-size: 11px;
}
.sp-services .sp-flow-compact .sp-flow-hub small {
  font-size: 9px;
}
.sp-services .sp-founder-photo {
  margin: 30px 0 0;
  border-radius: 22px;
  overflow: hidden;
}
.sp-services .sp-founder-photo img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}
.sp-services .sp-founder-photo:hover img {
  transform: scale(1.025);
}
@media (prefers-reduced-motion: reduce) {
  .sp-services .sp-founder-photo img {
    transition: none;
    transform: none;
  }
}
.sp-services .sp-hero {
  padding-top: 190px;
  padding-bottom: 100px;
}
.sp-services .sp-hero h1 {
  max-width: 920px;
}
.sp-services .sp-hero h1 span {
  color: #1252f5;
}
.sp-services .sp-intro {
  max-width: 660px;
  margin: 28px 0 32px;
}
.sp-services .sp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.sp-services .sp-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 64px;
  padding-bottom: 70px;
  border-top: 1px solid #dce5f3;
}
.sp-services .sp-overview p {
  margin-top: 0;
}
.sp-services .sp-categories {
  display: flex;
  gap: 32px;
  margin-top: 26px;
}
.sp-services .sp-categories a {
  padding: 10px 0;
  color: #1252f5;
  font-weight: 600;
}
.sp-services .sp-category {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 80px;
  padding-top: 80px;
  padding-bottom: 90px;
  border-top: 1px solid #dce5f3;
}
.sp-services .sp-service {
  appearance: none;
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  gap: 18px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #dce5f3;
  padding: 26px 12px;
  color: #111827;
  cursor: pointer;
  font: inherit;
  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}
.sp-services .sp-service:first-child {
  border-top: 1px solid #dce5f3;
}
.sp-services .sp-number {
  font-size: 12px;
  color: #5b6472;
  padding-top: 5px;
}
.sp-services .sp-service-copy {
  display: grid;
  gap: 10px;
}
.sp-services .sp-service-name {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.022em;
}
.sp-services .sp-service-description {
  font-size: 16px;
  line-height: 1.65;
  color: #5b6472;
}
.sp-services .sp-arrow {
  color: #1252f5;
  font-size: 24px;
  transition: transform 0.18s ease;
}
.sp-services .sp-service:hover,
.sp-services .sp-service:focus-visible {
  background: #eff6ff;
  border-color: #1252f5;
}
.sp-services .sp-service:hover .sp-arrow,
.sp-services .sp-service:focus-visible .sp-arrow {
  transform: translate(3px, -3px);
}
.sp-services .sp-service:focus-visible,
.sp-services .sp-categories a:focus-visible {
  outline: 2px solid #1252f5;
  outline-offset: 3px;
}
.sp-services .sp-cta {
  padding: 80px 0;
  background: #eff6ff;
  text-align: center;
}
.sp-services .sp-cta p:not(.cr-kicker) {
  max-width: 610px;
  margin: 0 auto 30px;
}
.sp-services section[id] {
  scroll-margin-top: 130px;
}
@media (max-width: 900px) {
  .sp-services .sp-hero {
    padding-top: 155px;
    padding-bottom: 75px;
  }
  .sp-services .sp-overview,
  .sp-services .sp-category {
    gap: 36px;
  }
  .sp-services .sp-category {
    grid-template-columns: 1fr;
    padding-top: 60px;
    padding-bottom: 65px;
  }
}
@media (max-width: 600px) {
  .sp-services .sp-hero {
    padding-top: 130px;
    padding-bottom: 60px;
  }
  .sp-services .sp-desktop-break {
    display: none;
  }
  .sp-services .sp-overview {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .sp-services .sp-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .sp-services .sp-service {
    gap: 12px;
    padding: 23px 4px;
    grid-template-columns: 20px 1fr 20px;
  }
  .sp-services .sp-cta {
    padding: 60px 0;
  }
  .sp-services section[id] {
    scroll-margin-top: 100px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sp-services *,
  .sp-services *:before,
  .sp-services *:after {
    animation: none !important;
    transition: none !important;
  }
}
.sp-services .sp-service {
  border-radius: 0;
  box-shadow: none;
  transform: none;
}
.sp-services .sp-actions .cr-button {
  gap: 12px;
}
.sp-services .sp-hero {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 64px;
  align-items: center;
  padding-top: 175px;
  padding-bottom: 85px;
}
.sp-services .sp-hero h1 {
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.09;
}
.sp-services .sp-hero-note {
  font-size: 13px;
  margin: 22px 0 0;
  color: #5b6472;
}
.sp-services .sp-growth-map {
  padding: 34px;
  background: #eff6ff;
  border: 1px solid #dce5f3;
  border-radius: 22px;
}
.sp-services .sp-map-label {
  color: #1252f5;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 0 0 26px;
}
.sp-services .sp-growth-map h2 {
  font-size: 29px;
  line-height: 1.25;
  margin-bottom: 30px;
}
.sp-services .sp-growth-map h2 span {
  color: #1252f5;
}
.sp-services .sp-growth-map a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 19px 0;
  border-top: 1px solid #cbdcf9;
  transition: color 0.18s;
}
.sp-services .sp-growth-map a:hover {
  color: #1252f5;
}
.sp-services .sp-growth-map small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #5b6472;
  margin-bottom: 5px;
}
.sp-services .sp-growth-map b {
  font-size: 16px;
}
.sp-services .sp-map-foot {
  font-size: 13px;
  line-height: 1.6;
  margin: 24px 0 0;
}
.sp-services .sp-category-heading {
  align-self: start;
  position: sticky;
  top: 145px;
}
.sp-services .sp-outcome {
  border-left: 2px solid #1252f5;
  padding-left: 20px;
  margin: 30px 0 22px;
}
.sp-services .sp-outcome span,
.sp-services .sp-detail-label {
  color: #1252f5;
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.sp-services .sp-outcome p {
  font-size: 16px;
  margin: 8px 0 0;
}
.sp-services .sp-category-link {
  color: #1252f5;
  font-weight: 600;
  font-size: 14px;
}
.sp-services .sp-service-detail {
  border: 0;
  border-top: 1px solid #dce5f3;
  border-radius: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  box-shadow: none;
}
.sp-services .sp-service-detail:last-child {
  border-bottom: 1px solid #dce5f3;
}
.sp-services .sp-service-detail summary {
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  gap: 18px;
  padding: 27px 12px;
  cursor: pointer;
  list-style: none;
  transition: background 0.18s;
}
.sp-services .sp-service-detail summary::-webkit-details-marker {
  display: none;
}
.sp-services .sp-service-detail summary:after {
  display: none;
}
.sp-services .sp-service-detail summary:hover,
.sp-services .sp-service-detail[open] summary {
  background: #eff6ff;
}
.sp-services .sp-service-detail summary:focus-visible {
  outline: 2px solid #1252f5;
  outline-offset: 3px;
}
.sp-services .sp-expand {
  font-size: 25px;
  color: #1252f5;
  transition: transform 0.18s;
}
.sp-services .sp-service-detail[open] .sp-expand {
  transform: rotate(45deg);
}
.sp-services .sp-detail-body {
  padding: 0 54px 28px;
  background: #eff6ff;
}
.sp-services .sp-detail-body p {
  font-size: 15px;
  margin: 0 0 18px;
}
.sp-services .sp-detail-body .sp-detail-label {
  font-size: 11px;
  margin: 0 0 7px;
}
.sp-services .sp-discuss {
  padding: 10px 0;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #1252f5;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  cursor: pointer;
}
.sp-services .sp-next {
  margin-top: 45px;
  padding-top: 32px;
  border-top: 1px solid #cbdcf9;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}
.sp-services .sp-next span {
  display: block;
  font-size: 12px;
  color: #1252f5;
  margin-bottom: 12px;
}
.sp-services .sp-next b {
  display: block;
  font-size: 16px;
}
.sp-services .sp-next p:not(.cr-kicker) {
  font-size: 14px;
  margin: 8px 0 0;
}
@media (max-width: 900px) {
  .sp-services .sp-hero {
    gap: 30px;
    grid-template-columns: 1.2fr 0.8fr;
  }
  .sp-services .sp-growth-map {
    padding: 24px;
  }
  .sp-services .sp-category-heading {
    position: static;
  }
}
@media (max-width: 650px) {
  .sp-services .sp-hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
    gap: 36px;
  }
  .sp-services .sp-growth-map {
    padding: 26px;
  }
  .sp-services .sp-growth-map h2 {
    font-size: 26px;
  }
  .sp-services .sp-service-detail summary {
    padding: 24px 4px;
    gap: 12px;
    grid-template-columns: 20px 1fr 20px;
  }
  .sp-services .sp-detail-body {
    padding: 0 20px 24px 36px;
  }
  .sp-services .sp-next {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.aq-page .aq-hero-band {
  background: #eff4fa;
}
.aq-page .sp-hero {
  grid-template-columns: 1.3fr 0.9fr;
  gap: 80px;
  padding-top: 175px;
  padding-bottom: 100px;
}
.aq-page .sp-hero h1 {
  font-size: clamp(36px, 3.4vw, 46px);
  line-height: 1.15;
}
.aq-page .aq-hero-image {
  position: relative;
  margin: 0 0 25px;
}
.aq-page .aq-hero-image > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.aq-page .aq-float {
  position: absolute;
  background: #fff;
  padding: 17px 21px;
  border: 1px solid #e5eaf1;
  border-radius: 7px;
  box-shadow: 0 5px 14px #0f172a12;
  display: grid;
  gap: 6px;
}
.aq-page .aq-float b {
  font-size: 14px;
}
.aq-page .aq-float span {
  font-size: 11px;
  color: #5b6472;
}
.aq-page .aq-float-one {
  left: -36px;
  bottom: 50px;
}
.aq-page .aq-float-two {
  right: 18px;
  bottom: -28px;
}
.aq-page .aq-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.aq-page .aq-audience {
  padding-top: 38px;
  padding-bottom: 20px;
  text-align: center;
}
.aq-page .aq-audience > p {
  font-size: 10px;
  letter-spacing: 0.09em;
  color: #5b6472;
}
.aq-page .aq-audience > div {
  display: flex;
  justify-content: center;
  gap: 55px;
  margin-top: 25px;
  color: #5b6472;
  font-size: 17px;
  font-weight: 600;
}
.aq-page .aq-method {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 80px;
  align-items: start;
}
.aq-page .aq-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}
.aq-page .aq-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.aq-page .aq-steps {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  display: grid;
  gap: 22px;
}
.aq-page .aq-steps li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
}
.aq-page .aq-steps li > span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e5edff;
  color: #1252f5;
  font-size: 12px;
  display: grid;
  place-items: center;
}
.aq-page .aq-steps h3 {
  font-size: 16px;
  margin: 0 0 6px;
}
.aq-page .aq-steps p {
  font-size: 15px;
  margin: 0;
}
.aq-page .aq-problems {
  padding-top: 25px;
}
.aq-page .aq-problems h2 {
  max-width: 780px;
}
.aq-page .aq-intro {
  max-width: 790px;
}
.aq-page .aq-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 60px;
  margin-top: 35px;
}
.aq-page .aq-problem-grid article {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 17px;
  padding: 30px;
  border-radius: 12px;
  background: #f5f7fc;
}
.aq-page .aq-number {
  background: #1252f5;
  color: #fff;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 12px;
}
.aq-page .aq-problem-grid h3 {
  font-size: 17px;
  margin: 0 0 10px;
}
.aq-page .aq-problem-grid p {
  font-size: 15px;
  margin: 0;
}
.aq-page .sp-overview {
  padding-top: 35px;
}
.aq-page .sp-category {
  padding-top: 65px;
  padding-bottom: 75px;
}
.aq-page .cr-case {
  background: #fdf2e4;
}
.aq-page .aq-entry {
  border: 1px solid #dce5f3;
  border-radius: 13px;
  padding: 35px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 40px;
}
.aq-page .aq-entry h2 {
  font-size: 26px;
}
.aq-page .aq-entry p:last-child {
  font-size: 16px;
  margin-bottom: 0;
}
.aq-page .aq-entry button {
  justify-self: end;
}
.aq-page .aq-growth {
  max-width: 780px;
  padding-top: 80px;
}
.aq-page .aq-callout {
  border-left: 2px solid #1252f5;
  padding-left: 22px;
  margin: 30px 0;
  font-size: 16px;
}
.aq-page .aq-founder {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  padding-top: 15px;
}
.aq-page .aq-checks {
  padding: 0;
  list-style: none;
}
.aq-page .aq-checks li {
  position: relative;
  padding-left: 28px;
  margin: 20px 0;
  font-size: 16px;
}
.aq-page .aq-checks li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #1252f5;
}
.aq-page .aq-checks p {
  font-size: 15px;
  margin: 6px 0 0;
}
.aq-page .sp-cta {
  background: #eff4fa;
}
.aq-page .sp-next {
  display: none;
}
.aq-page .aq-questions {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 80px;
}
.aq-page .aq-questions details {
  border: 0;
  border-bottom: 1px solid #e5eaf1;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
.aq-page .aq-questions summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-size: 16px;
  cursor: pointer;
}
.aq-page .aq-questions summary:after,
.aq-page .aq-questions summary::-webkit-details-marker {
  display: none;
}
.aq-page .aq-questions summary span {
  color: #1252f5;
}
.aq-page .aq-questions details > p {
  font-size: 15px;
  margin: 0 0 24px;
}
.aq-page .aq-questions summary:focus-visible {
  outline: 2px solid #1252f5;
  outline-offset: 4px;
}
@media (max-width: 900px) {
  .aq-page .sp-hero,
  .aq-page .aq-method,
  .aq-page .aq-founder,
  .aq-page .aq-questions {
    gap: 35px;
  }
  .aq-page .aq-problem-grid {
    gap: 20px;
  }
  .aq-page .aq-entry {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .aq-page .aq-entry button {
    justify-self: start;
  }
  .aq-page .aq-float-one {
    left: -15px;
  }
}
@media (max-width: 650px) {
  .aq-page .sp-hero {
    grid-template-columns: 1fr;
    padding-top: 125px;
    padding-bottom: 70px;
  }
  .aq-page .aq-hero-image {
    margin: 0 12px 15px;
  }
  .aq-page .aq-section {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .aq-page .aq-method,
  .aq-page .aq-founder,
  .aq-page .aq-questions,
  .aq-page .aq-problem-grid {
    grid-template-columns: 1fr;
  }
  .aq-page .aq-audience > div {
    flex-wrap: wrap;
    gap: 15px 25px;
    font-size: 14px;
  }
  .aq-page .aq-problem-grid article {
    padding: 23px;
  }
  .aq-page .aq-entry {
    padding: 25px;
  }
  .aq-page .aq-growth {
    padding-top: 55px;
  }
  .aq-page .aq-float {
    padding: 12px 15px;
  }
  .aq-page .aq-questions {
    gap: 15px;
  }
}
