:root {
  --ink: #151815;
  --navy: #0b1c2e;
  --navy-deep: #0e2240;
  --graphite: #30352f;
  --forest: #0f5b45;
  --teal: #216d8c;
  --rust: #a85832;
  --amber: #c98a3a;
  --mist: #f4f6f1;
  --line: #d4dbcf;
  --white: #ffffff;
  --shadow: 0 18px 52px rgba(21, 24, 21, 0.14);
  --container: min(1120px, calc(100% - 40px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

strong {
  font-weight: 850;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 30;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(21, 24, 21, 0.11);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(11, 28, 46, 0.16);
}

.brand-name {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav a,
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 6px;
  color: var(--graphite);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(15, 91, 69, 0.1);
  color: var(--forest);
}

.header-cta {
  background: var(--ink);
  color: var(--white);
}

.header-cta:hover {
  background: var(--forest);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(201, 138, 58, 0.16), transparent 32%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.16;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.2));
}

.hero::after {
  inset: auto -120px -180px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 138, 58, 0.24) 0%, rgba(201, 138, 58, 0) 68%);
  filter: blur(12px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 56px;
  align-items: center;
}

.hero-content {
  padding: 76px 0;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.6rem;
  line-height: 0.96;
  text-wrap: balance;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.28rem;
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button.primary {
  background: var(--forest);
  color: var(--white);
}

.button.primary:hover {
  background: var(--amber);
  color: var(--ink);
}

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

.button.secondary:hover {
  background: var(--white);
  color: var(--ink);
}

.hero-proof {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.hero-proof span {
  position: relative;
  padding-left: 18px;
}

.hero-proof span::before,
.hero-service-list li::before,
.technical-panel li::before,
.launch-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--amber);
  transform: rotate(45deg);
}

.hero-proof span::before {
  top: 0.68em;
  width: 7px;
  height: 7px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  align-content: center;
}

.hero-service-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 54px rgba(7, 15, 30, 0.22);
  backdrop-filter: blur(12px);
}

.hero-panel-kicker {
  margin: 0;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-service-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-service-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.hero-service-list li::before,
.technical-panel li::before,
.launch-checks li::before {
  top: 1.4em;
}

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-grid p {
  margin: 0;
  padding: 22px 20px;
  background: var(--white);
}

.trust-grid strong,
.trust-grid span,
.case-facts strong,
.case-facts span {
  display: block;
}

.trust-grid strong,
.case-facts strong {
  color: var(--ink);
  font-size: 1rem;
}

.trust-grid span,
.case-facts span {
  margin-top: 4px;
  color: var(--graphite);
  font-size: 0.93rem;
}

.section {
  padding: 88px 0;
}

.section:nth-of-type(odd) {
  background: var(--white);
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.3rem;
  line-height: 1.08;
  text-wrap: balance;
}

.section h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
}

.section p {
  color: var(--graphite);
  font-size: 1.04rem;
}

.plain-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  background: #eef5ec;
  border: 1px solid #cfdcc8;
  border-left: 4px solid var(--forest);
  border-radius: 8px;
}

.section .section-kicker,
.plain-note strong,
.inline-link,
.footer-inner a {
  color: var(--forest);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.wide-heading {
  max-width: 880px;
}

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

.service-card,
.package-card {
  min-height: 232px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 900;
}

.service-card p,
.package-card p {
  margin: 12px 0 0;
  font-size: 0.96rem;
}

.why-section,
.contact-section {
  background: var(--ink) !important;
  color: var(--white);
}

.why-section h2,
.why-section h3,
.contact-section h2 {
  color: var(--white);
}

.why-section p,
.contact-section p {
  color: rgba(255, 255, 255, 0.82);
}

.why-section .section-kicker,
.contact-section .section-kicker,
.contact-details strong {
  color: var(--amber);
}

.split-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 70px;
  align-items: start;
}

.proof-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.proof-list p {
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-list strong {
  color: var(--amber);
}

.technical-panel,
.launch-checks {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.technical-panel ul,
.launch-checks ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.technical-panel li,
.launch-checks li {
  position: relative;
  padding: 12px 0 12px 22px;
  color: rgba(255, 255, 255, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.case-study-layout,
.hosting-layout,
.faq-layout,
.admin-portal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: 56px;
  align-items: start;
}

.admin-portal-section {
  background: #f7f9f4;
}

.admin-preview-panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-preview-panel h3 {
  margin-bottom: 18px;
}

.admin-feature-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.admin-feature-grid p {
  margin: 0;
  padding: 18px;
  background: var(--white);
}

.admin-feature-grid strong,
.admin-feature-grid span {
  display: block;
}

.admin-feature-grid strong {
  color: var(--ink);
}

.admin-feature-grid span {
  margin-top: 4px;
  color: var(--graphite);
  font-size: 0.94rem;
}

.inline-link {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 900;
}

.case-facts {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.case-facts p {
  margin: 0;
  padding: 18px 20px;
  background: var(--white);
}

.case-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.case-photo {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.case-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-photo {
  grid-row: span 2;
  min-height: 621px;
}

.case-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 54px 16px 16px;
  background: linear-gradient(180deg, rgba(21, 24, 21, 0) 0%, rgba(21, 24, 21, 0.86) 100%);
  color: var(--white);
  font-size: 0.88rem;
}

.case-photo figcaption strong {
  width: max-content;
  max-width: 100%;
  padding: 3px 8px;
  background: var(--amber);
  color: var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.case-photo figcaption span {
  max-width: 34ch;
  font-weight: 750;
}

.case-materials {
  margin-top: 38px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.case-materials-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.case-materials-heading h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.case-materials-heading p:last-child {
  max-width: 68ch;
  margin: 12px 0 0;
  color: var(--graphite);
}

.slider-controls {
  display: inline-flex;
  gap: 8px;
}

.slider-button {
  width: 42px;
  min-height: 40px;
  padding: 0;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 900;
}

.slider-button:hover,
.slider-button:focus-visible {
  background: var(--forest);
}

.materials-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 44%);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 2px;
  padding: 2px 2px 18px;
}

.materials-track:focus-visible {
  outline: 3px solid rgba(201, 138, 58, 0.42);
  outline-offset: 4px;
}

.material-slide {
  display: grid;
  grid-template-rows: minmax(320px, 440px) auto;
  min-height: 100%;
  overflow: hidden;
  background: #fbfcf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  scroll-snap-align: start;
}

.material-preview {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 18px;
  background:
    linear-gradient(45deg, rgba(21, 24, 21, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(21, 24, 21, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(21, 24, 21, 0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(21, 24, 21, 0.05) 75%),
    #eef2ea;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  background-size: 20px 20px;
}

.material-preview img,
.material-preview iframe {
  width: 100%;
  height: 100%;
  max-height: 404px;
  background: var(--white);
  border: 0;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(21, 24, 21, 0.18);
}

.document-preview img,
.pdf-preview iframe {
  object-fit: contain;
}

.square-preview img,
.portrait-preview img {
  object-fit: contain;
}

.material-slide-copy {
  display: grid;
  align-content: start;
  padding: 18px;
}

.slide-label {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.material-slide-copy h4 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.08;
}

.material-slide-copy p:not(.slide-label) {
  margin: 10px 0 0;
  color: var(--graphite);
  font-size: 0.95rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  list-style: none;
}

.process-list li {
  min-height: 254px;
  padding: 26px;
  background: var(--white);
}

.process-list span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--rust);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
}

.process-list p {
  margin: 12px 0 0;
  font-size: 0.96rem;
}

.hosting-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hosting-stack span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 800;
}

.launch-checks {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

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

.featured-package {
  border-color: var(--forest);
  box-shadow: inset 0 4px 0 var(--forest);
}

.faq-layout {
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  min-height: 58px;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  font-style: normal;
}

.contact-details span,
.contact-details a {
  color: var(--white);
}

.contact-details a {
  font-weight: 900;
}

.inquiry-form {
  padding: 30px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: block;
  margin: 16px 0 6px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.inquiry-form label:first-child {
  margin-top: 0;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #cdd5c7;
  border-radius: 6px;
  padding: 12px 13px;
  background: #fbfcfa;
  color: var(--ink);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus,
.site-nav a:focus-visible,
.header-cta:focus-visible,
.button:focus-visible,
.mobile-email:focus-visible,
.footer-inner a:focus-visible {
  outline: 3px solid rgba(201, 138, 58, 0.45);
  outline-offset: 2px;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--forest);
}

.inquiry-form button {
  width: 100%;
  margin-top: 18px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--graphite) !important;
  font-size: 0.9rem !important;
}

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--graphite);
  font-size: 0.94rem;
}

.mobile-email {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 21;
  min-height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(21, 24, 21, 0.28);
  font-weight: 900;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-email.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  html {
    scroll-padding-top: 128px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 10px 16px;
    padding: 12px 0;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: center;
    order: 3;
  }

  .hero {
    min-height: 620px;
  }

  .hero-grid,
  .case-study-layout,
  .hosting-layout,
  .faq-layout,
  .admin-portal-layout,
  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-visual {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .section h2 {
    font-size: 2.65rem;
  }

  .trust-grid,
  .service-grid,
  .process-list,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .materials-track {
    grid-auto-columns: minmax(320px, 62%);
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  html {
    scroll-padding-top: 176px;
  }

  body {
    padding-bottom: 68px;
  }

  .header-inner {
    grid-template-columns: 1fr;
    padding: 8px 0;
    gap: 8px;
  }

  .brand {
    white-space: normal;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 6px;
  }

  .brand-name {
    font-size: 1rem;
    line-height: 1.05;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 3px;
    width: 100%;
  }

  .site-nav a {
    min-width: 0;
    min-height: 30px;
    padding: 0 4px;
    background: #f8faf6;
    border: 1px solid #e4eadf;
    font-size: 0.68rem;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .hero-visual,
  .trust-grid,
  .service-grid,
  .process-list,
  .package-grid,
  .contact-layout,
  .case-gallery {
    grid-template-columns: 1fr;
  }

  .case-materials {
    padding: 20px;
  }

  .case-materials-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .slider-controls {
    width: 100%;
  }

  .slider-button {
    flex: 1;
  }

  .materials-track {
    grid-auto-columns: minmax(268px, 86%);
  }

  .material-slide {
    grid-template-rows: minmax(280px, 360px) auto;
  }

  .hero-content {
    padding: 50px 0 44px;
  }

  .hero h1 {
    max-width: 9.5ch;
    font-size: 3.1rem;
  }

  .hero-lede {
    font-size: 1.04rem;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-proof {
    display: grid;
    gap: 8px;
    font-size: 0.98rem;
  }

  .hero-logo-card,
  .hero-service-panel,
  .technical-panel,
  .launch-checks,
  .inquiry-form {
    padding: 18px;
  }

  .hero-logo {
    max-width: 260px;
  }

  .section {
    padding: 64px 0;
  }

  .section h2 {
    font-size: 2.15rem;
  }

  .service-card,
  .package-card,
  .process-list li,
  .lead-photo,
  .case-photo {
    min-height: auto;
  }

  .hosting-stack span {
    width: 100%;
  }

  .footer-inner {
    min-height: 96px;
    display: grid;
    align-content: center;
  }

  .mobile-email {
    display: flex;
  }
}

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

  .button,
  .mobile-email {
    transition: none;
  }
}