:root {
  --blue: #0a45c2;
  --blue-dark: #071a4a;
  --cyan: #86b7ff;
  --green: #00c878;
  --purple: #6d38ff;
  --ink: #07111f;
  --muted: #607086;
  --paper: #f6f8fb;
  --white: #ffffff;
  --line: rgba(7, 17, 31, 0.12);
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header[data-elevated="true"],
.site-header.open {
  background: rgba(246, 248, 251, 0.9);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
  max-width: 52vw;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(7, 17, 31, 0.14);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.site-header[data-elevated="true"] .site-nav a,
.site-header.open .site-nav a {
  color: #243448;
}

.site-nav a:hover {
  background: rgba(10, 69, 194, 0.1);
  color: var(--white);
}

.site-header[data-elevated="true"] .site-nav a:hover,
.site-header.open .site-nav a:hover {
  color: var(--blue);
}

.site-nav .nav-cta {
  background: var(--green);
  color: #062015;
}

.site-header[data-elevated="true"] .site-nav .nav-cta,
.site-header.open .site-nav .nav-cta {
  color: #062015;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  overflow: hidden;
  padding: 110px clamp(18px, 5vw, 72px) 58px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(109, 56, 255, 0.42), transparent 30%),
    radial-gradient(circle at 12% 72%, rgba(0, 200, 120, 0.24), transparent 32%),
    linear-gradient(135deg, #061432 0%, #092d73 52%, #201155 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7vh;
  background: linear-gradient(to bottom, transparent, rgba(246, 248, 251, 0.92));
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.12;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-trust span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.button.primary {
  background: linear-gradient(135deg, var(--green), #5af0b6);
  color: #062015;
  box-shadow: 0 16px 32px rgba(0, 200, 120, 0.18);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.panel-top,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.panel-top span,
.metric-grid span,
.calc-result span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.metric-grid div,
.launch-card {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.launch-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.launch-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

.pulse {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(0, 200, 120, 0.16);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  margin: 0 auto 42px;
  max-width: 1180px;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
  margin-left: 0;
}

.builder-layout {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: 210px minmax(0, 1fr) minmax(320px, 430px);
  gap: 22px;
  align-items: stretch;
}

.service-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.service-tab {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
  padding: 0 14px;
}

.service-tab.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
}

.service-detail,
.mockup,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(7, 17, 31, 0.08);
}

.service-detail {
  padding: clamp(22px, 4vw, 36px);
}

.service-kicker {
  margin: 0 0 18px;
  color: var(--purple);
  font-weight: 800;
}

.service-detail > p:last-of-type {
  color: var(--muted);
  line-height: 1.6;
}

.service-detail ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  padding-left: 24px;
  background: linear-gradient(var(--green), var(--green)) left 0.58em / 10px 10px no-repeat;
  color: #243448;
}

.mockup {
  overflow: hidden;
}

.mockup-bar {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.mockup-screen {
  display: grid;
  min-height: 330px;
  grid-template-columns: 86px 1fr;
  padding: 18px;
  gap: 16px;
}

.mockup-sidebar {
  border-radius: 8px;
  background:
    linear-gradient(var(--white), var(--white)) 18px 22px / 34px 8px no-repeat,
    linear-gradient(var(--white), var(--white)) 18px 50px / 48px 8px no-repeat,
    linear-gradient(var(--white), var(--white)) 18px 78px / 40px 8px no-repeat,
    linear-gradient(180deg, var(--blue), var(--purple));
}

.mockup-main {
  display: grid;
  gap: 14px;
}

.mockup-hero,
.mockup-chart {
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(10, 69, 194, 0.12), rgba(0, 200, 120, 0.18));
}

.mockup-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mockup-row span {
  height: 58px;
  border-radius: 8px;
  background: rgba(109, 56, 255, 0.12);
}

.mockup-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  min-height: 130px;
  padding: 18px;
}

.mockup-chart i {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--green), var(--blue));
}

.process {
  background: #ffffff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.steps article {
  min-height: 210px;
  border-top: 3px solid var(--blue);
  padding: 20px 0 0;
}

.steps span {
  display: block;
  margin-bottom: 24px;
  color: var(--purple);
  font-weight: 900;
}

.steps p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.plans {
  background:
    linear-gradient(90deg, rgba(10, 69, 194, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #f6f8fb, #eef7f4);
  background-size: 46px 46px, auto;
}

.budget-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 64px);
  margin: 0 auto;
  max-width: 1180px;
  align-items: start;
}

.budget-intro {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 24px;
}

.budget-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(0, 200, 120, 0.12);
  color: #087b4d;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.budget-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(0, 200, 120, 0.14);
}

.budget-intro h2 {
  max-width: 520px;
}

.budget-intro > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.benefits {
  display: grid;
  gap: 14px;
}

.benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 17, 31, 0.06);
}

.benefit-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(10, 69, 194, 0.12), rgba(0, 200, 120, 0.18));
  color: var(--blue);
  font-weight: 900;
}

.benefit-item h3 {
  font-size: 1rem;
}

.benefit-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.quote-form {
  display: grid;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(22px, 4vw, 40px);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.12);
}

.progress-section {
  display: grid;
  gap: 14px;
}

.progress-bar-bg {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7ecf4;
}

.progress-bar-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--purple));
  transition: width 240ms ease;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.progress-header span {
  color: var(--muted);
  font-weight: 800;
}

fieldset {
  display: grid;
  gap: 20px;
  min-width: 0;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0 0 30px;
}

fieldset:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.fieldset-help {
  margin: -8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
}

legend span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  background: rgba(109, 56, 255, 0.1);
  color: var(--purple);
  font-size: 0.78rem;
}

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

label {
  display: grid;
  gap: 8px;
  color: #243448;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fbfcfe;
  color: var(--ink);
  padding: 13px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(10, 69, 194, 0.65);
  box-shadow: 0 0 0 4px rgba(10, 69, 194, 0.1);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid,
.privacy-check.is-invalid {
  border-color: #c1292e;
  box-shadow: 0 0 0 4px rgba(193, 41, 46, 0.1);
}

.field-error {
  min-height: 18px;
  color: #c1292e;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.field-error:empty {
  display: none;
}

textarea {
  resize: vertical;
}

input[type="range"] {
  accent-color: var(--purple);
}

.range-value {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-row input {
  width: 18px;
  height: 18px;
}

.service-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: #fbfcfe;
  color: #34445a;
  cursor: pointer;
}

.service-chip:has(input:checked) {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(10, 69, 194, 0.16);
}

.service-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.range-block {
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: #fbfcfe;
}

.range-block > span {
  color: #243448;
}

.range-block > strong {
  color: var(--blue);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
}

.range-block small {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.url-field.is-hidden {
  display: none;
}

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

.deadline-option {
  display: grid;
  gap: 5px;
  min-height: 88px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: #fbfcfe;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.deadline-option.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
}

.deadline-option span {
  color: inherit;
  opacity: 0.78;
  font-size: 0.82rem;
}

.upload-zone {
  display: grid;
  gap: 6px;
  border: 2px dashed rgba(10, 69, 194, 0.22);
  border-radius: 14px;
  padding: 22px;
  background: rgba(10, 69, 194, 0.04);
  text-align: center;
  cursor: pointer;
}

.upload-zone input {
  display: none;
}

.upload-zone span {
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.upload-zone small {
  color: var(--muted);
}

.file-list {
  display: grid;
  gap: 8px;
}

.file-list span {
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(0, 200, 120, 0.1);
  color: #087b4d;
  font-size: 0.9rem;
  font-weight: 800;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: #fbfcfe;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.quote-summary {
  display: grid;
  gap: 16px;
  border-radius: 16px;
  padding: clamp(20px, 4vw, 28px);
  background:
    radial-gradient(circle at 85% 12%, rgba(0, 200, 120, 0.28), transparent 28%),
    radial-gradient(circle at 24% 86%, rgba(109, 56, 255, 0.34), transparent 32%),
    linear-gradient(150deg, var(--blue-dark), #092d73 58%, #24105f);
  color: var(--white);
}

.summary-label,
.quote-summary dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.quote-summary strong {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
}

.quote-summary .button.primary {
  width: 100%;
}

.quote-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.quote-summary dl {
  display: grid;
  gap: 12px;
  margin: 8px 0 0;
}

.quote-summary dl div {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 12px;
}

.quote-summary dt,
.quote-summary dd {
  margin: 0;
}

.quote-summary dd {
  margin-top: 4px;
  font-weight: 900;
}

.quote-summary .form-status {
  color: rgba(255, 255, 255, 0.86);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.form-footer span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-footer .button {
  min-width: 220px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 560px);
  gap: clamp(24px, 6vw, 76px);
  align-items: start;
  background: var(--white);
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #243448;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-form .button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.form-status.is-success {
  color: #0b8f57;
}

.form-status.is-error {
  color: #c1292e;
}

.quote-summary .form-status.is-success,
.quote-summary .form-status.is-error {
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.1);
}

.quote-summary .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

.site-footer {
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero,
  .builder-layout,
  .budget-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .budget-intro {
    position: static;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 10px;
    background: rgba(7, 17, 31, 0.96);
  }

  .site-header[data-elevated="true"],
  .site-header.open {
    background: rgba(7, 17, 31, 0.94);
  }

  .site-header[data-elevated="true"] .site-nav a,
  .site-header.open .site-nav a {
    color: rgba(255, 255, 255, 0.84);
  }

  .site-header[data-elevated="true"] .site-nav .nav-cta,
  .site-header.open .site-nav .nav-cta {
    color: #062015;
  }

  .site-header.open .site-nav {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
  }

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

  .field-grid,
  .deadline-grid {
    grid-template-columns: 1fr;
  }

  .form-footer {
    display: grid;
  }

  .form-footer .button {
    width: 100%;
  }

  .mockup-screen {
    grid-template-columns: 60px 1fr;
  }

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

  .site-footer {
    display: grid;
    justify-items: start;
  }
}

@media (max-width: 460px) {
  .brand {
    width: 58px;
    overflow: hidden;
  }

  .metric-grid,
  .service-tabs,
  .mockup-row {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
