:root {
  --ink: #111318;
  --muted: #596170;
  --soft: #8d94a0;
  --line: #e1e5ea;
  --line-strong: #d9dee6;
  --blue: #2756f6;
  --blue-soft: #e9eeff;
  --green: #58bd88;
  --paper: #ffffff;
  --wash: #fafbfc;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
  --mono: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 32px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 600;
  overflow-x: hidden;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.site-header {
  align-items: center;
  background: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 112px;
  padding: 22px clamp(24px, 3.9vw, 76px);
}

.brand {
  align-items: center;
  display: flex;
  justify-self: start;
  width: 92px;
}

.brand img {
  display: block;
  height: auto;
  width: 100%;
}

.main-nav {
  align-items: center;
  color: #4f5867;
  display: flex;
  font-size: clamp(16px, 1.3vw, 25px);
  font-weight: 800;
  gap: clamp(28px, 3.4vw, 62px);
  justify-content: center;
}

.main-nav a,
.button {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.button:hover {
  transform: translateY(-1px);
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 900;
  justify-content: center;
  min-height: 72px;
  padding: 0 46px;
  white-space: nowrap;
}

.button-primary {
  background: var(--blue);
  box-shadow: 0 14px 24px rgba(39, 86, 246, 0.18);
  color: #fff;
}

.button-secondary {
  background: #fff;
  border: 2px solid var(--line);
  color: var(--ink);
}

.header-cta {
  justify-self: end;
  min-height: 70px;
  padding-inline: 40px;
}

.section-shell {
  margin: 0 auto;
  max-width: 1880px;
  padding: clamp(72px, 8vw, 150px) clamp(30px, 3.8vw, 76px);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(56px, 7vw, 130px);
  grid-template-columns: minmax(0, 0.97fr) minmax(520px, 1fr);
  min-height: calc(100vh - 112px);
  padding-top: clamp(90px, 9vw, 178px);
}

.pill {
  align-items: center;
  border: 2px solid var(--line);
  border-radius: 999px;
  color: #565f6d;
  display: inline-flex;
  font-family: var(--mono);
  font-size: clamp(14px, 1.17vw, 21px);
  gap: 14px;
  padding: 14px 28px;
}

.status-dot {
  background: var(--green);
  border-radius: 50%;
  flex: 0 0 auto;
  height: 14px;
  width: 14px;
}

.hero h1,
.problem h2,
.services h2,
.process h2,
.developers h2,
.cta h2 {
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.hero h1 {
  font-size: clamp(74px, 7.2vw, 142px);
  font-weight: 900;
  margin-top: 66px;
}

.hero h1 span {
  color: var(--blue);
  display: block;
}

.hero-copy > p {
  color: var(--muted);
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 600;
  line-height: 1.45;
  margin: 54px 0 0;
  max-width: 850px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 72px;
}

.hero-actions .button {
  min-width: 316px;
}

.audit-window {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.window-bar {
  align-items: center;
  border-bottom: 2px solid var(--line);
  color: #555e6d;
  display: grid;
  font-family: var(--mono);
  font-size: clamp(18px, 1.3vw, 25px);
  font-weight: 700;
  grid-template-columns: 180px 1fr 180px;
  min-height: 72px;
  padding-inline: 42px;
  text-align: center;
}

.window-dots {
  display: flex;
  gap: 14px;
}

.window-dots span {
  border-radius: 50%;
  height: 22px;
  width: 22px;
}

.window-dots span:nth-child(1) {
  background: #f07575;
}

.window-dots span:nth-child(2) {
  background: #f4c347;
}

.window-dots span:nth-child(3) {
  background: #64d39d;
}

.audit-body {
  padding: 44px;
}

.audit-topline {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.mono-label,
.eyebrow {
  color: var(--blue);
  font-family: var(--mono);
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.mono-label {
  color: #626b79;
  font-size: 22px;
  margin: 0 0 12px;
}

.audit-topline h2 {
  font-size: clamp(21px, 1.4vw, 28px);
  margin: 0;
}

.score-badge {
  align-items: center;
  background: #ecfff5;
  border: 2px solid #a9edca;
  border-radius: 18px;
  color: #267b5d;
  display: flex;
  gap: 12px;
  padding: 18px 24px;
}

.score-badge svg {
  height: 24px;
  width: 24px;
}

.score-badge strong {
  font-size: clamp(30px, 2.2vw, 42px);
  font-weight: 900;
}

.score-badge span {
  font-family: var(--mono);
  font-size: 22px;
}

.metrics {
  display: grid;
  gap: 21px;
  margin-top: 42px;
}

.metric div {
  align-items: center;
  display: flex;
  font-family: var(--mono);
  font-size: clamp(18px, 1.3vw, 24px);
  justify-content: space-between;
  margin-bottom: 10px;
}

.metric span {
  color: #565f6d;
}

.metric i {
  background: #dde1e7;
  border-radius: 999px;
  display: block;
  height: 11px;
  overflow: hidden;
  position: relative;
}

.metric i::before {
  background: var(--bar);
  border-radius: inherit;
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: var(--value);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.tags span {
  align-items: center;
  border: 2px solid var(--line);
  border-radius: 999px;
  color: #5c6572;
  display: inline-flex;
  font-family: var(--mono);
  font-size: clamp(15px, 1.15vw, 23px);
  gap: 10px;
  padding: 11px 20px;
}

.tags svg {
  height: 23px;
  width: 23px;
}

.problem h2 {
  font-size: clamp(58px, 5.1vw, 104px);
  font-weight: 900;
  max-width: 1320px;
}

.problem h2 span {
  color: #59616f;
  display: block;
}

.eyebrow {
  font-size: clamp(18px, 1.35vw, 27px);
  margin: 0 0 34px;
}

.centered {
  text-align: center;
}

.problem-grid,
.service-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(72px, 7vw, 128px);
}

.problem-card,
.service-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 24px;
}

.problem-card {
  min-height: 374px;
  padding: 44px;
}

.problem-card > svg {
  color: #58616f;
  height: 40px;
  width: 40px;
}

.problem-card h3,
.service-card h3,
.timeline-content h3 {
  color: var(--ink);
  font-size: clamp(26px, 1.8vw, 36px);
  font-weight: 900;
  line-height: 1.15;
}

.problem-card h3 {
  margin: 38px 0 22px;
}

.problem-card p,
.timeline-content p,
.section-intro {
  color: var(--muted);
  font-size: clamp(21px, 1.45vw, 30px);
  line-height: 1.45;
}

.problem-card p {
  margin: 0 0 34px;
}

.problem-card code {
  background: var(--wash);
  border: 2px solid var(--line);
  border-radius: 20px;
  color: #99a0aa;
  display: block;
  font-family: var(--mono);
  font-size: clamp(15px, 1.1vw, 22px);
  line-height: 1.35;
  overflow: hidden;
  padding: 18px 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.problem-card code span {
  background: #999fa8;
  display: inline-block;
  height: 24px;
  vertical-align: middle;
  width: 150px;
}

.services,
.process {
  background: #fbfcfd;
  max-width: none;
}

.services > *,
.process > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1880px;
}

.services h2,
.process h2 {
  font-size: clamp(62px, 5vw, 100px);
  font-weight: 900;
  text-align: center;
}

.section-intro {
  max-width: 940px;
  text-align: center;
}

.service-card {
  min-height: 440px;
  padding: 58px 58px 48px;
}

.service-card.featured {
  border-color: #b9c8ff;
}

.icon-box,
.timeline-icon {
  align-items: center;
  background: #fbfcfd;
  border: 2px solid var(--line);
  border-radius: 20px;
  color: #58616f;
  display: flex;
  height: 76px;
  justify-content: center;
  width: 76px;
}

.featured .icon-box {
  border-color: #b9c8ff;
  color: var(--blue);
}

.icon-box svg,
.timeline-icon svg {
  height: 34px;
  width: 34px;
}

.service-card h3 {
  margin: 46px 0 34px;
}

.service-card ul {
  color: #59616f;
  font-family: var(--mono);
  font-size: clamp(18px, 1.3vw, 25px);
  line-height: 1.85;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-card li {
  align-items: baseline;
  display: flex;
  gap: 18px;
}

.service-card li::before {
  color: var(--blue);
  content: "•";
  font-family: var(--sans);
  font-size: 30px;
  line-height: 1;
}

.timeline {
  margin-top: clamp(95px, 9vw, 160px);
  max-width: 1440px;
  position: relative;
}

.timeline::before {
  background: var(--line);
  bottom: 80px;
  content: "";
  left: 39px;
  position: absolute;
  top: 78px;
  width: 2px;
}

.timeline-item {
  display: grid;
  gap: 60px;
  grid-template-columns: 78px 1fr;
  min-height: 290px;
  position: relative;
}

.timeline-icon {
  color: var(--blue);
  position: relative;
  z-index: 1;
}

.timeline-content {
  padding-bottom: 82px;
}

.timeline-content span {
  color: var(--blue);
  display: block;
  font-family: var(--mono);
  font-size: clamp(18px, 1.3vw, 25px);
  font-weight: 800;
  margin-bottom: 24px;
}

.timeline-content h3 {
  margin: 0 0 24px;
}

.timeline-content p {
  margin: 0;
  max-width: 1120px;
}

.developer-chip {
  align-items: center;
  border: 2px solid var(--line);
  border-radius: 20px;
  display: inline-flex;
  gap: 24px;
  margin-top: 36px;
  padding: 18px 30px;
}

.developer-chip strong {
  align-items: center;
  background: var(--blue-soft);
  border-radius: 50%;
  color: var(--blue);
  display: flex;
  flex: 0 0 auto;
  font-size: 22px;
  height: 60px;
  justify-content: center;
  width: 60px;
}

.developer-chip span {
  color: #59616f;
  display: inline;
  font-size: clamp(16px, 1.25vw, 25px);
  margin: 0;
}

.developers {
  align-items: start;
  display: grid;
  gap: 58px;
  grid-template-columns: 0.8fr 1fr;
}

.developers h2,
.cta h2 {
  font-size: clamp(52px, 4.4vw, 90px);
  font-weight: 900;
}

.developer-cards {
  display: grid;
  gap: 22px;
}

.developer-cards article {
  border: 2px solid var(--line);
  border-radius: 22px;
  display: grid;
  gap: 10px;
  padding: 30px;
}

.developer-cards strong {
  font-size: 26px;
  font-weight: 900;
}

.developer-cards span {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.4;
}

.developer-apply {
  margin-top: 42px;
}

.cta {
  padding-top: clamp(80px, 7vw, 120px);
  text-align: center;
}

.cta h2 {
  margin-inline: auto;
  max-width: 1180px;
}

.cta .button {
  margin-top: 44px;
}

.questionnaire {
  align-items: start;
  display: grid;
  gap: clamp(48px, 5.2vw, 96px);
  grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1fr);
  padding-top: clamp(80px, 7vw, 130px);
}

.questionnaire-page {
  min-height: calc(100vh - 112px);
}

.questionnaire-alt {
  background: #fbfcfd;
  max-width: none;
}

.questionnaire-alt > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1880px;
}

.questionnaire-heading h1,
.questionnaire-heading h2 {
  font-size: clamp(48px, 4.1vw, 84px);
  font-weight: 900;
  line-height: 1;
  margin: 0;
}

.questionnaire-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(21px, 1.45vw, 30px);
  line-height: 1.45;
  margin: 28px 0 0;
  max-width: 650px;
}

.contact-direct {
  border: 2px solid var(--line);
  border-radius: 20px;
  display: grid;
  gap: 12px;
  margin-top: 42px;
  padding: 24px;
}

.contact-direct span {
  color: #58616f;
  font-family: var(--mono);
  font-size: clamp(14px, 0.95vw, 18px);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-direct a {
  color: var(--ink);
  font-size: clamp(26px, 2vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.form-success {
  background: #ecfff5;
  border: 2px solid #a9edca;
  border-radius: 18px;
  color: #267b5d;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 900;
  margin-top: 32px;
  padding: 18px 22px;
}

.form-success[hidden] {
  display: none;
}

.questionnaire-form {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 24px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(28px, 3.2vw, 56px);
}

.questionnaire-form label:not(.option-card) {
  display: grid;
  gap: 10px;
}

.questionnaire-form label:not(.option-card) > span,
.option-group legend {
  color: #58616f;
  font-family: var(--mono);
  font-size: clamp(14px, 0.95vw, 18px);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.questionnaire-form input,
.questionnaire-form select,
.questionnaire-form textarea {
  appearance: none;
  background: var(--wash);
  border: 2px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  font: 700 clamp(17px, 1.2vw, 22px) var(--sans);
  min-height: 60px;
  outline: none;
  padding: 16px 18px;
  width: 100%;
}

.questionnaire-form textarea {
  line-height: 1.35;
  resize: vertical;
}

.questionnaire-form input:focus,
.questionnaire-form select:focus,
.questionnaire-form textarea:focus {
  border-color: #b9c8ff;
  box-shadow: 0 0 0 4px rgba(39, 86, 246, 0.08);
}

.option-group {
  border: 0;
  display: grid;
  gap: 12px;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.option-group legend {
  margin-bottom: 10px;
  padding: 0;
}

.option-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.option-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.option-card {
  cursor: pointer;
  display: block;
  min-width: 0;
  position: relative;
}

.option-card input {
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.option-card span {
  align-items: center;
  background: var(--wash);
  border: 2px solid var(--line);
  border-radius: 16px;
  color: #58616f;
  display: flex;
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 900;
  justify-content: center;
  min-height: 64px;
  padding: 14px 16px;
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.option-card input:checked + span {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 22px rgba(39, 86, 246, 0.16);
  color: #fff;
}

.option-card input:focus-visible + span {
  border-color: #b9c8ff;
  box-shadow: 0 0 0 4px rgba(39, 86, 246, 0.12);
}

.questionnaire-form .full-span,
.questionnaire-form .button {
  grid-column: 1 / -1;
}

.questionnaire-form .button {
  border: 0;
  cursor: pointer;
  margin-top: 10px;
}

.site-footer {
  color: var(--muted);
  padding: clamp(90px, 8vw, 150px) clamp(30px, 3.8vw, 76px) 44px;
}

.footer-main {
  align-items: start;
  display: grid;
  gap: clamp(26px, 3.2vw, 62px);
  grid-template-columns: minmax(240px, 0.9fr) minmax(130px, 0.45fr) minmax(150px, 0.5fr) minmax(420px, 1.65fr);
  margin: 0 auto;
  max-width: 1880px;
  min-height: 560px;
}

.footer-brand img {
  display: block;
  height: auto;
  margin: -46px 0 42px -28px;
  width: 132px;
}

.footer-brand p {
  font-size: clamp(23px, 1.55vw, 32px);
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
  max-width: 560px;
}

.footer-column,
.footer-contact {
  display: grid;
  gap: 32px;
}

.footer-column h2,
.footer-contact h2 {
  color: #5f6673;
  font-family: var(--mono);
  font-size: clamp(17px, 1.15vw, 25px);
  font-weight: 800;
  letter-spacing: 5px;
  line-height: 1.2;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
  font-size: clamp(23px, 1.45vw, 31px);
  font-weight: 600;
}

.footer-contact a {
  color: var(--ink);
  display: block;
  font-size: clamp(26px, 2.05vw, 42px);
  font-weight: 900;
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: keep-all;
}

.footer-bottom {
  border-top: 2px solid var(--line);
  display: flex;
  font-family: var(--mono);
  font-size: clamp(17px, 1.1vw, 24px);
  font-weight: 700;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  max-width: 1880px;
  padding-top: 60px;
}

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

  .main-nav {
    display: none;
  }

  .hero,
  .developers,
  .questionnaire,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .audit-window {
    max-width: 850px;
  }

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

@media (max-width: 760px) {
  .site-header {
    gap: 14px;
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 84px;
    padding: 14px 18px;
  }

  .brand {
    width: 62px;
  }

  .main-nav {
    display: flex;
    font-size: 14px;
    gap: clamp(12px, 4vw, 24px);
    justify-content: center;
    padding-right: 10px;
  }

  .header-cta {
    display: none;
  }

  .section-shell {
    padding: 56px 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    gap: 44px;
  }

  .hero h1 {
    font-size: 54px;
    line-height: 0.95;
    margin-top: 34px;
  }

  .hero-copy > p,
  .problem-card p,
  .timeline-content p,
  .section-intro {
    font-size: 18px;
  }

  .pill {
    border-radius: 18px;
    font-size: 13px;
    gap: 10px;
    line-height: 1.35;
    padding: 12px 14px;
    width: 100%;
  }

  .status-dot {
    height: 11px;
    width: 11px;
  }

  .hero-actions {
    gap: 16px;
    margin-top: 42px;
  }

  .hero-actions .button,
  .button {
    min-height: 58px;
    min-width: 100%;
    padding-inline: 24px;
  }

  .audit-body,
  .problem-card,
  .service-card {
    padding: 24px;
  }

  .audit-window {
    border-radius: 22px;
  }

  .window-bar {
    font-size: 14px;
    grid-template-columns: 56px 1fr 56px;
    min-height: 58px;
    padding-inline: 16px;
  }

  .window-dots {
    gap: 8px;
  }

  .window-dots span {
    height: 12px;
    width: 12px;
  }

  .audit-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .score-badge {
    justify-content: center;
    width: 100%;
  }

  .metrics {
    gap: 18px;
    margin-top: 30px;
  }

  .metric div {
    font-size: 15px;
  }

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

  .tags span {
    justify-content: center;
    padding-inline: 12px;
  }

  .problem h2,
  .services h2,
  .process h2,
  .developers h2,
  .questionnaire-heading h1,
  .questionnaire-heading h2,
  .cta h2 {
    font-size: 42px;
    line-height: 1.02;
  }

  .problem-grid,
  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .problem-card {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
    overflow: hidden;
    width: 100%;
  }

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

  .problem-card h3,
  .service-card h3,
  .timeline-content h3 {
    font-size: 27px;
  }

  .problem-card h3 {
    margin: 22px 0 12px;
  }

  .problem-card p {
    line-height: 1.32;
    margin-bottom: 18px;
  }

  .problem-card code {
    font-size: 13px;
    padding: 14px 16px;
    width: 100%;
  }

  .service-card ul {
    font-size: 16px;
    line-height: 1.7;
  }

  .timeline {
    margin-top: 62px;
  }

  .timeline::before {
    left: 29px;
  }

  .timeline-item {
    gap: 24px;
    grid-template-columns: 60px 1fr;
    min-height: 0;
  }

  .timeline-icon {
    border-radius: 16px;
    height: 60px;
    width: 60px;
  }

  .timeline-icon svg {
    height: 28px;
    width: 28px;
  }

  .developer-chip {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
    width: 100%;
  }

  .questionnaire-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .option-grid,
  .option-grid-wide,
  .option-grid.compact {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 70px 20px 36px;
  }

  .footer-main {
    gap: 46px;
    min-height: 0;
  }

  .footer-brand img {
    margin: -28px 0 28px -18px;
    width: 112px;
  }

  .footer-column,
  .footer-contact {
    gap: 20px;
  }

  .footer-contact a,
  .contact-direct a {
    font-size: 24px;
    line-height: 1.15;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 56px;
    padding-top: 34px;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    width: 54px;
  }

  .main-nav {
    font-size: 12px;
    gap: 10px;
    padding-right: 8px;
  }

  .section-shell {
    padding: 50px 16px;
  }

  .hero {
    padding-top: 30px;
  }

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

  .hero-copy > p {
    font-size: 18px;
    line-height: 1.42;
    margin-top: 28px;
  }

  .button {
    font-size: 15px;
  }

  .audit-body,
  .problem-card,
  .service-card,
  .developer-cards article {
    padding: 18px;
  }

  .window-bar {
    font-size: 12px;
  }

  .mono-label,
  .eyebrow {
    letter-spacing: 3px;
  }

  .problem h2,
  .services h2,
  .process h2,
  .developers h2,
  .questionnaire-heading h1,
  .questionnaire-heading h2,
  .cta h2 {
    font-size: 36px;
  }

  .problem-card > svg {
    height: 32px;
    width: 32px;
  }

  .problem-card h3 {
    font-size: 23px;
  }

  .problem-card p {
    font-size: 15px;
  }

  .problem-card code {
    font-size: 11px;
    padding: 10px 12px;
  }

  .footer-contact a,
  .contact-direct a {
    font-size: 21px;
  }
}
