:root {
  --ink: #081126;
  --ink-2: #111b3a;
  --text: #152036;
  --muted: #647188;
  --paper: #f4f7fb;
  --white: #ffffff;
  --line: #dbe3ef;
  --blue: #2f6bff;
  --violet: #6d4cff;
  --teal: #12bfae;
  --mint: #d9fff7;
  --aqua: #e8fbff;
  --lime: #b9f36a;
  --shadow: 0 24px 70px rgba(8, 17, 38, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
  font-family: "Segoe UI Variable", "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

button,
input,
textarea {
  font: inherit;
}

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

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

:focus-visible {
  outline: 3px solid rgba(47, 107, 255, 0.34);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 14px clamp(16px, 4.5vw, 64px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(8, 17, 38, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 38px rgba(8, 17, 38, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 850;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav a,
.header-action,
.primary-action,
.secondary-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 780;
  white-space: nowrap;
}

.nav a {
  padding: 0 12px;
  color: #314057;
  font-size: 14px;
}

.nav a:hover {
  background: rgba(47, 107, 255, 0.08);
}

.header-action {
  padding: 0 15px;
  color: #fff;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 71px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 42%, rgba(255, 255, 255, 0.2) 67%, rgba(244, 247, 251, 0.1) 100%),
    radial-gradient(circle at 72% 18%, rgba(47, 107, 255, 0.18), transparent 30%),
    #f8fbff;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(520px, 1.14fr);
  min-height: calc(100svh - 168px);
  align-items: start;
  padding: 0 clamp(18px, 5vw, 72px) 0;
}

.hero-copy-panel {
  position: relative;
  z-index: 3;
  width: min(680px, 100%);
  padding: 72px 0 46px;
}

.hero-wordmark {
  width: min(360px, 78vw);
  border-radius: 8px;
  margin-bottom: 26px;
}

.brand-claim {
  margin: 0 0 28px 88px;
  color: #17213a;
  font-size: clamp(13px, 1.1vw, 17px);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1,
.section-head h2,
.solution-copy h2,
.model-main h2,
.contact h2,
.legal-hero h1 {
  margin-bottom: 0;
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(40px, 4.4vw, 68px);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: #344259;
  font-size: clamp(18px, 1.35vw, 21px);
}

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

.primary-action,
.secondary-action {
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
}

.primary-action {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  box-shadow: 0 18px 46px rgba(47, 107, 255, 0.26);
}

.primary-action.dark {
  background: var(--ink);
  box-shadow: none;
}

.secondary-action {
  color: var(--ink);
  border-color: rgba(8, 17, 38, 0.16);
  background: rgba(255, 255, 255, 0.74);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(100, 113, 136, 0.24);
  border-radius: 8px;
  background: rgba(100, 113, 136, 0.18);
}

.hero-proof div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.hero-proof strong {
  color: var(--violet);
  font-size: 27px;
  line-height: 1;
}

.hero-proof span {
  color: #4d5a70;
  font-size: 13px;
  font-weight: 720;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  align-self: stretch;
  margin-right: calc(clamp(18px, 5vw, 72px) * -1);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -28%;
  z-index: 2;
  width: 52%;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.86) 36%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 50% center;
  filter: saturate(1.02) contrast(1.03);
}

.hero-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 124px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    radial-gradient(circle at 28% 22%, rgba(109, 76, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #070b1d 0%, #111b3a 56%, #073f43 100%);
}

.hero-strip p {
  max-width: 940px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.6vw, 22px);
}

.hero-strip strong {
  color: #fff;
}

.hero-strip a {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  font-size: 18px;
  font-weight: 850;
  white-space: nowrap;
}

.section {
  padding: 92px clamp(18px, 5vw, 72px);
}

.section-head {
  width: min(1060px, 100%);
  margin-bottom: 34px;
}

.section-head.compact {
  width: min(920px, 100%);
}

.section-head h2,
.solution-copy h2,
.model-main h2,
.contact h2 {
  font-size: clamp(34px, 4.7vw, 62px);
}

.section-head p,
.solution-copy p,
.model-main p,
.contact p,
.legal-hero p {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.problem,
.build,
.faq {
  background: #fff;
}

.problem-layout,
.outcome-grid,
.build-grid,
.steps,
.model-grid,
.sector-grid {
  display: grid;
  gap: 16px;
}

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

.problem-layout article,
.outcome-grid article,
.build-grid article,
.steps article,
.model-grid article,
.sector-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(8, 17, 38, 0.06);
}

.problem-layout article {
  position: relative;
  min-height: 320px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 24px;
  overflow: hidden;
}

.card-icon {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(135deg, rgba(109, 76, 255, 0.16), rgba(18, 191, 174, 0.14));
  box-shadow:
    inset 0 0 0 1px rgba(47, 107, 255, 0.12),
    0 14px 30px rgba(47, 107, 255, 0.1);
}

.card-icon::after {
  content: "";
  position: absolute;
  inset: auto 10px 9px 10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--violet));
}

.card-icon svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-layout article:nth-child(2) {
  background: var(--aqua);
}

.problem-layout article:nth-child(3) {
  background: #edfdf8;
}

.problem-layout article > span:not(.card-icon),
.steps span,
.build-grid article > span:not(.card-icon),
.model-grid small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.problem-layout h3,
.outcome-grid h3,
.build-grid h3,
.steps h3,
.sector-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
}

.problem-layout p,
.outcome-grid p,
.build-grid p,
.steps p,
.model-grid p,
.sector-grid p,
.faq-list p,
.footer p,
.legal-content p,
.legal-content li {
  margin: 0;
  color: var(--muted);
}

.solution {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(185, 243, 106, 0.2), transparent 24%),
    linear-gradient(135deg, #081126 0%, #12265a 48%, #074b52 100%);
}

.solution .eyebrow,
.solution-copy h2 {
  color: #fff;
}

.solution-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.ba-col {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.ba-col.active {
  background: rgba(255, 255, 255, 0.14);
}

.ba-col h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 24px;
}

.ba-col p {
  margin: 0;
  padding: 11px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 760;
}

.ba-arrow {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 243, 106, 0.22);
  border-radius: 8px;
  color: var(--lime);
  background: rgba(8, 17, 38, 0.22);
}

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

.outcomes,
.model,
.sectors {
  background: var(--paper);
}

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

.outcome-grid article,
.build-grid article,
.sector-grid article {
  position: relative;
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 22px;
  overflow: hidden;
}

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

.build-grid article {
  min-height: 300px;
}

.how {
  background:
    linear-gradient(180deg, #fff 0%, #eef8f8 100%);
}

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

.steps article {
  position: relative;
  min-height: 300px;
  display: grid;
  align-content: end;
  gap: 11px;
  padding: 24px;
  overflow: hidden;
}

.steps article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--violet));
}

.model {
  background:
    radial-gradient(circle at 92% 18%, rgba(18, 191, 174, 0.12), transparent 28%),
    var(--paper);
}

.model-main {
  width: min(980px, 100%);
  margin-bottom: 30px;
}

.plans-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.plans-panel,
.monthly-calculator,
.hours-explainer,
.welcome-pack {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 52px rgba(8, 17, 38, 0.07);
}

.plans-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.plan-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 218px;
  padding: 22px;
  background: #fff;
}

.plan-card.featured {
  background:
    linear-gradient(180deg, rgba(47, 107, 255, 0.08), rgba(255, 255, 255, 0.96));
}

.plan-card span,
.monthly-calculator h3,
.hours-explainer h3,
.welcome-pack strong {
  color: var(--ink);
  font-weight: 900;
}

.plan-card span {
  font-size: 19px;
}

.plan-card strong {
  color: var(--ink);
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1;
}

.plan-card p,
.plan-card small,
.monthly-calculator p,
.monthly-calculator small,
.hours-explainer p,
.hours-explainer li,
.welcome-pack p {
  color: var(--muted);
}

.plan-card small {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 850;
}

.plans-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 13px 18px;
  color: #48566f;
  background: #f8fbff;
  font-size: 13px;
  font-weight: 780;
}

.monthly-calculator {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.monthly-calculator h3 {
  margin: -5px 0 0;
  font-size: 28px;
}

.monthly-calculator label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.field-help {
  color: #697791;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.35;
}

.monthly-calculator select,
.monthly-calculator input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
}

.monthly-result {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #15336a 58%, #086358);
}

.monthly-result span {
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.72);
}

.monthly-result strong {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
}

.monthly-breakdown {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.monthly-breakdown span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 820;
}

.monthly-breakdown strong {
  color: var(--ink);
  white-space: nowrap;
}

.monthly-calculator p,
.monthly-calculator small {
  margin: 0;
}

.hours-explainer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: 22px;
  margin-top: 18px;
  padding: 26px;
}

.hours-explainer h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
}

.hours-explainer ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.welcome-pack {
  display: grid;
  gap: 9px;
  align-content: center;
  padding: 22px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, var(--ink), #15336a 55%, #086358);
}

.welcome-pack small {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.welcome-pack strong,
.welcome-pack-total,
.welcome-pack p {
  color: #fff;
}

.welcome-pack-total {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.1;
}

.welcome-pack em {
  width: max-content;
  max-width: 100%;
  padding: 7px 11px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.faq-list {
  width: min(980px, 100%);
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.faq-list p {
  padding-top: 12px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: start;
  padding: clamp(42px, 5vw, 70px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #e9fbff 0%, #eef2ff 48%, #ecfff8 100%);
}

.contact a:not(.primary-action) {
  color: var(--blue);
  font-weight: 850;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(47, 107, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  resize: vertical;
}

.contact-form textarea {
  min-height: 118px;
}

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

.trap-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-check {
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: start;
  gap: 10px !important;
  font-size: 12px !important;
  line-height: 1.4;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 1px;
  padding: 0;
}

.contact-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

.form-status.success {
  color: #047857;
}

.form-status.error {
  color: #b42318;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.footer img {
  width: min(270px, 100%);
  border-radius: 8px;
  margin-bottom: 14px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: start;
  gap: 10px 18px;
}

.footer a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 780;
}

.legal-main {
  min-height: 100vh;
  padding: 118px clamp(18px, 5vw, 72px) 70px;
  background: #fff;
}

.legal-hero,
.legal-content {
  width: min(960px, 100%);
}

.legal-hero {
  margin-bottom: 34px;
}

.legal-hero h1 {
  font-size: clamp(38px, 6vw, 70px);
}

.legal-content {
  display: grid;
  gap: 26px;
}

.legal-content section {
  display: grid;
  gap: 10px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
}

.legal-content section.legal-owner {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.legal-content section.legal-owner h2 {
  font-size: 18px;
}

.legal-content section.legal-owner p {
  font-size: 0.95rem;
}

.legal-content a {
  color: var(--blue);
  font-weight: 780;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.legal-table {
  overflow-x: auto;
}

.legal-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

thead th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

@media (max-width: 1160px) {
  .hero-grid {
    grid-template-columns: minmax(360px, 0.98fr) minmax(430px, 1.02fr);
  }

  .hero-proof {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .build-grid,
  .steps,
  .sector-grid,
  .plans-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

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

  .nav {
    display: none;
  }

  .hero-grid,
  .solution,
  .contact,
  .footer {
    grid-template-columns: 1fr;
  }

  .plans-layout,
  .hours-explainer {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 0;
  }

  .hero-visual {
    min-height: 560px;
    margin: 0 -18px;
  }

  .hero-photo {
    min-height: 560px;
  }

  .hero-visual::before {
    inset: -1px 0 auto;
    width: 100%;
    height: 28%;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  }

  .problem-layout,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .ba-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-strip a {
    justify-self: start;
  }

  .footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span {
    display: none;
  }

  .header-action {
    min-height: 38px;
    padding: 0 11px;
    font-size: 13px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-copy-panel {
    padding-top: 56px;
  }

  .hero-grid,
  .section,
  .contact,
  .legal-main {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .hero-copy {
    font-size: 17px;
  }

  .brand-claim {
    margin-left: 0;
    font-size: 12px;
  }

  .hero-actions,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-visual {
    min-height: 470px;
    margin: 0 -16px;
  }

  .hero-photo {
    min-height: 470px;
    object-position: 48% center;
  }

  .hero-strip {
    padding: 28px 16px;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section-head h2,
  .solution-copy h2,
  .model-main h2,
  .contact h2 {
    font-size: 34px;
  }

  .build-grid,
  .steps,
  .sector-grid,
  .plans-panel,
  .contact-form {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 460px) {
  .hero h1 {
    font-size: 39px;
  }

  .hero-copy,
  .section-head p,
  .solution-copy p,
  .model-main p,
  .contact p {
    font-size: 16px;
  }
}
