:root {
  --background: #f8f9fc;
  --surface: #ffffff;
  --surface-low: #f2f5fb;
  --surface-mid: #e6edf8;
  --surface-high: #d7e2f2;
  --text: #102033;
  --muted: #526171;
  --soft: #74808c;
  --border: #d3deec;
  --border-soft: #e4eaf3;
  --primary: #0757c8;
  --primary-strong: #0445a1;
  --primary-soft: #1b71d9;
  --accent: #0757c8;
  --shadow-soft: 0 12px 28px rgba(16, 32, 51, 0.06);
  --shadow-card: 0 18px 34px rgba(16, 32, 51, 0.1);
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(7, 87, 200, 0.36);
  outline-offset: 2px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  padding: 10px 0 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition:
    border-color 120ms ease,
    box-shadow 120ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: transparent;
  background: transparent;
  box-shadow: none;
}

.nav-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  gap: 18px;
  padding: 0 14px 0 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.34)),
    rgba(235, 243, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(7, 87, 200, 0.06),
    0 18px 38px rgba(16, 32, 51, 0.1);
  backdrop-filter: blur(22px) saturate(1.45);
  -webkit-backdrop-filter: blur(22px) saturate(1.45);
}

.nav-shell::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.72), transparent 38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(7, 87, 200, 0.06));
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
}

.primary-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(6px, 1.1vw, 14px);
  padding-inline: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.primary-nav::-webkit-scrollbar {
  display: none;
}

.primary-nav a,
.mobile-nav a,
.site-footer a,
.site-footer span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease;
}

.primary-nav a {
  position: relative;
  z-index: 0;
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  white-space: nowrap;
}

.primary-nav a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(7, 87, 200, 0.12);
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 8px 18px rgba(16, 32, 51, 0.06);
  opacity: 0;
  transform: scale(0.98);
  transition: none;
}

.primary-nav a::after {
  display: none;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--primary);
}

.primary-nav a:hover::before {
  opacity: 0.72;
  transform: scale(1);
}

.primary-nav a.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.nav-cta {
  min-height: 40px;
  border-color: rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(7, 87, 200, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 24px rgba(7, 87, 200, 0.2);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(7, 87, 200, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.mobile-nav {
  display: none;
  width: min(var(--container), calc(100% - 48px));
  margin: 8px auto 10px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.42)),
    rgba(235, 243, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(16, 32, 51, 0.1);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 14px 24px;
  border-top: 1px solid rgba(7, 87, 200, 0.08);
  background: transparent;
}

.mobile-nav a:first-child {
  border-top: 0;
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.42);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav-shell,
  .mobile-nav {
    background: rgba(255, 255, 255, 0.88);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 10px 24px rgba(7, 87, 200, 0.2);
}

.button-primary:hover {
  background: var(--primary-strong);
}

.button-secondary {
  color: var(--primary);
  background: #fff;
  border-color: rgba(7, 87, 200, 0.22);
}

.button-secondary:hover {
  background: #f2f6fc;
  border-color: var(--primary);
}

.button-light {
  color: var(--primary);
  background: #fff;
  border-color: #fff;
}

.button-outline-light {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(255, 255, 255, 0.58);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background: linear-gradient(180deg, #fff 0%, var(--background) 100%);
  border-bottom: 1px solid var(--border-soft);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.hero-copy {
  max-width: 920px;
  text-align: center;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 850;
  line-height: 1.04;
}

h1 span {
  color: var(--primary);
}

.hero-copy p {
  max-width: 710px;
  margin-bottom: 22px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-promises {
  display: flex;
  max-width: 760px;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 30px;
}

.hero-promises span {
  padding: 7px 11px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(7, 87, 200, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(16, 32, 51, 0.05);
  font-size: 12px;
  font-weight: 800;
}

.hero-copy .button-row {
  justify-content: center;
}

.icon-node svg,
.process-icon svg,
.success-card svg {
  width: 22px;
  height: 22px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 94px 0;
  background: #fff;
  scroll-margin-top: 86px;
}

.section-blue {
  background: var(--surface-low);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section-heading {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered {
  margin-bottom: 42px;
  text-align: center;
}

.section-heading.centered p {
  margin-right: auto;
  margin-left: auto;
}

.section-marker {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2,
.success-card h2,
.cta-inner h2 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 760;
  line-height: 1.16;
}

.section-heading p,
.lead,
.about-copy p,
.card p,
.service-card p,
.process-step p,
.response-time {
  color: var(--muted);
}

.split-intro {
  display: grid;
  max-width: 900px;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 38px;
  text-align: center;
}

.lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: 19px;
}

.cards-grid,
.metrics-grid,
.process-grid,
.service-grid {
  display: grid;
  gap: 24px;
  justify-content: center;
}

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

.card,
.service-card,
.metric-card,
.process-step {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card::before,
.service-card::before,
.metric-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--primary), rgba(7, 87, 200, 0.32));
  opacity: 0.42;
  transition: opacity 220ms ease;
}

.card:hover::before,
.service-card:hover::before {
  opacity: 0.72;
}

.card {
  min-height: 220px;
  padding: 28px;
  text-align: center;
}

.card h3,
.service-card h3,
.process-step h3 {
  position: relative;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.3;
}

.icon-node {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  place-items: center;
  color: var(--primary);
  background: #f5f7fc;
  border: 1px solid rgba(7, 87, 200, 0.18);
  border-radius: 14px;
}

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

.service-card {
  display: flex;
  min-height: 272px;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.service-card p {
  margin-bottom: 20px;
}

.service-card a {
  position: relative;
  display: inline-flex;
  margin-top: auto;
  margin-right: auto;
  margin-left: auto;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.service-card a:hover {
  color: var(--primary-strong);
}

.metrics-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.metric-card {
  min-height: 180px;
  padding: 30px 20px;
  text-align: center;
}

.metric-card span {
  position: relative;
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 820;
  line-height: 1;
}

.metric-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.process-section {
  overflow: hidden;
}

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

.process-grid::before {
  position: absolute;
  top: 68px;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: var(--border);
}

.process-step {
  min-height: 246px;
  padding: 26px 22px;
  text-align: center;
  background: #fff;
}

.process-step > span {
  display: block;
  margin-bottom: 14px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
}

.process-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  color: var(--primary);
  background: #fff;
  border: 1px solid rgba(7, 87, 200, 0.18);
  border-radius: 16px;
  place-items: center;
}

.success-band {
  padding: 52px 0;
  background: #fff;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.success-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
  gap: 24px;
  padding: 34px 38px;
  color: #fff;
  background: linear-gradient(135deg, #102033, #0757c8);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(16, 32, 51, 0.16);
  text-align: center;
}

.success-card svg {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  margin: 0 auto;
}

.success-card h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 22px;
}

.success-card p {
  max-width: 680px;
  margin: 0;
  color: #eef4ff;
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
}

.about-grid {
  display: grid;
  max-width: 820px;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: center;
}

.about-copy {
  padding-top: 6px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.product-rate-grid {
  display: flex;
  justify-content: center;
  max-width: 640px;
  margin-bottom: 24px;
  text-align: center;
}

.product-rate-card {
  width: 100%;
  padding: 38px 34px;
  border: 1px solid rgba(7, 87, 200, 0.16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.product-rate-card > span {
  display: block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-rate-card strong {
  display: block;
  color: var(--primary);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
}

.product-rate-card p {
  max-width: 420px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.pricing-option {
  display: flex;
  max-width: 640px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
  padding: 16px 20px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(7, 87, 200, 0.1);
  border-radius: 12px;
  text-align: center;
}

.pricing-option span {
  flex: 0 0 auto;
  padding: 3px 8px;
  color: var(--primary);
  background: rgba(7, 87, 200, 0.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-option p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.pricing-assurance {
  max-width: 760px;
  padding-top: 4px;
  text-align: center;
}

.pricing-assurance p {
  margin: 0;
  color: var(--primary);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 760;
  line-height: 1.3;
}

.cta-section {
  padding: 92px 0;
  background: var(--surface-low);
  border-top: 1px solid var(--border-soft);
}

.cta-inner {
  max-width: 840px;
  text-align: center;
}

.cta-inner h2 {
  margin-right: auto;
  margin-left: auto;
}

.response-time {
  margin: 0 0 22px;
  color: #4c5f78;
  font-size: 14px;
  font-weight: 600;
}

.cta-inner .button-row {
  justify-content: center;
}

.contact-form {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 14px;
}

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

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-grid label:last-child {
  grid-column: 1 / -1;
}

.contact-form label span {
  color: #2f4666;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 87, 200, 0.18);
  border-radius: 10px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-message {
  grid-column: 1 / -1;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #2f5e9d;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.quick-contact {
  margin: 6px 0 18px;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--border-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
  gap: 34px;
  padding: 46px 0;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
}

.footer-grid h2 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.footer-brand p {
  margin: 8px 0 2px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.static-page {
  min-height: 100vh;
  background: var(--background);
}

.page-main {
  padding: 70px 0 90px;
}

.page-panel {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.page-panel h1 {
  margin-bottom: 10px;
  font-size: clamp(30px, 3.5vw, 44px);
}

.page-panel p {
  color: var(--muted);
}

.legal-content {
  text-align: left;
}

.legal-content h1 {
  text-align: center;
}

.legal-content h2 {
  max-width: 760px;
  margin: 28px auto 8px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.35;
}

.legal-content p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.legal-content a {
  color: var(--primary);
  font-weight: 700;
}

.legal-content code {
  padding: 2px 5px;
  color: var(--primary-strong);
  background: var(--surface-low);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
}

.page-kicker {
  color: var(--primary) !important;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.page-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.page-list li {
  padding: 11px 13px;
  background: var(--surface-low);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.back-link {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.back-link:hover {
  color: var(--primary-strong);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }

  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-copy {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-copy .button-row {
    justify-content: center;
  }

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

  .process-grid,
  .cards-grid.three,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 920px) {
  .primary-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .mobile-nav {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding: 66px 0 46px;
  }

  h1 {
    font-size: clamp(35px, 10.8vw, 52px);
  }

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

  .split-intro,
  .about-grid,
  .service-grid,
  .metrics-grid,
  .process-grid,
  .cards-grid.three,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-intro,
  .about-grid {
    gap: 24px;
  }

  .lead {
    margin-top: 0;
  }

  .footer-brand {
    grid-column: auto;
  }

  .success-card {
    flex-direction: column;
    padding: 28px;
  }

  .pricing-option {
    flex-direction: column;
    gap: 8px;
  }

  .footer-grid {
    padding: 38px 0;
  }
}

@media (max-width: 560px) {
  .button-row,
  .button {
    width: 100%;
  }

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

  .card,
  .service-card,
  .metric-card,
  .process-step,
  .page-panel {
    padding: 24px;
  }
}
