:root {
  --bg: #f6f8fb;
  --paper: #ffffff;
  --ink: #111827;
  --muted: #687385;
  --line: #dfe6ef;
  --dark: #07101b;
  --dark-2: #0d1b2a;
  --cyan: #19c7f3;
  --blue: #1677ff;
  --warm: #ffb545;
  --shadow: 0 24px 70px rgba(12, 24, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 20px clamp(18px, 5vw, 72px);
  color: #fff;
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 16, 27, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  padding-block: 12px;
}

.brand img {
  width: 154px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  opacity: 0.84;
}

.nav a:hover {
  color: var(--cyan);
  opacity: 1;
}

.header-phone {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: clamp(680px, 72vh, 860px);
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 100px;
  clip-path: polygon(0 34%, 74% 100%, 100% 22%, 100% 100%, 0 100%);
  background: var(--bg);
  content: "";
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  opacity: 0.96;
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 44%, rgba(25, 199, 243, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(2, 8, 18, 0.18), rgba(2, 8, 18, 0.88) 52%),
    linear-gradient(180deg, rgba(2, 8, 18, 0.16), rgba(2, 8, 18, 0.78));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 48px;
  align-items: center;
  min-height: clamp(680px, 72vh, 860px);
  max-width: 1680px;
  margin: 0 auto;
  padding: 132px clamp(18px, 6vw, 84px) 120px;
}

.hero-copy {
  min-width: 0;
  max-width: min(730px, 100%);
  justify-self: end;
  text-align: right;
}

.hero h1 {
  margin: 0;
  max-width: 100%;
  font-size: 86px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lead {
  margin: 28px 0 0;
  font-size: clamp(19px, 2.2vw, 28px);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  justify-content: flex-end;
}

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

.button.primary {
  color: #06101c;
  background: linear-gradient(135deg, var(--cyan), #ffffff);
  box-shadow: 0 18px 40px rgba(25, 199, 243, 0.24);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.button.text {
  color: var(--blue);
  background: transparent;
}

.hero-panel {
  display: grid;
  gap: 14px;
  min-width: 0;
  width: 100%;
}

.hero-panel div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(3, 11, 22, 0.48);
  backdrop-filter: blur(18px);
}

.intro-section {
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  position: absolute;
  inset: 120px auto auto -80px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(22, 119, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 800;
}

.panel-icon,
.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: var(--cyan);
  border: 1px solid rgba(25, 199, 243, 0.42);
  font-weight: 900;
}

section {
  padding: 96px clamp(18px, 6vw, 84px);
}

.loading-state {
  display: grid;
  place-items: center;
  min-height: 100vh;
  color: #fff;
  background: var(--dark);
  font-weight: 800;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading p,
.section-label {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 14px;
  font-size: 26px;
  line-height: 1.16;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 42px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 36px;
}

.intro-copy {
  padding: 44px;
  border-left: 4px solid var(--cyan);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-visual {
  display: grid;
  place-items: center;
  min-height: 360px;
  position: relative;
}

.service-visual img {
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 28px 48px rgba(12, 24, 43, 0.22));
}

.service-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-list article {
  min-height: 238px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.service-list h3 {
  margin: 18px 0 10px;
  font-size: 18px;
}

.service-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.remote-section {
  padding-block: 48px;
}

.remote-card {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 42px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px;
  border: 1px solid rgba(25, 199, 243, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(25, 199, 243, 0.12), rgba(255, 255, 255, 0.92)),
    var(--paper);
  box-shadow: var(--shadow);
}

.remote-dashboard {
  display: grid;
  align-content: center;
  min-height: 280px;
  padding: 32px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(25, 199, 243, 0.22), rgba(22, 119, 255, 0.12)),
    #081522;
  box-shadow: 0 18px 48px rgba(12, 24, 43, 0.22);
}

.remote-dashboard span {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.remote-dashboard strong {
  margin: 18px 0;
  font-size: 96px;
  line-height: 0.9;
}

.remote-dashboard small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.web-section {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
  background: var(--paper);
}

.web-mockup {
  grid-column: 2;
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.work-grid {
  grid-column: 1 / -1;
}

.process-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-steps article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbff;
}

.process-steps span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.process-steps strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 22px;
}

.process-steps p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

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

.work-grid > .work-heading {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
  text-align: left;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.work-grid a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(12, 24, 43, 0.08);
}

.work-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.work-grid span {
  display: block;
  padding: 16px;
  font-size: 14px;
  font-weight: 800;
}

.contact-section {
  padding-top: 0;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(25, 199, 243, 0.16), transparent 32%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  transform: translateY(-34px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #0b1726;
  box-shadow: var(--shadow);
}

.contact-strip a {
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 20px;
  font-weight: 900;
}

.contact-strip a:last-child {
  border-right: 0;
}

.contact-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 52px;
  align-items: start;
  max-width: 1180px;
  margin: 30px auto 0;
  padding-bottom: 36px;
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.form-note {
  display: none;
  margin: 0;
  color: var(--cyan);
  font-size: 14px;
}

.form-note.is-visible {
  display: block;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(18px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.7);
  background: #050a11;
}

.footer img {
  width: 132px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-admin {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.subpage-main {
  min-height: calc(100vh - 160px);
  padding: 150px clamp(18px, 6vw, 84px) 96px;
  background:
    linear-gradient(180deg, rgba(246, 248, 251, 0.92), var(--bg)),
    radial-gradient(circle at 80% 12%, rgba(25, 199, 243, 0.16), transparent 28%);
}

.subpage {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.subpage h1 {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.subpage p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.subpage .section-label {
  color: var(--blue);
  font-size: 13px;
  line-height: 1.2;
}

.admin-page {
  min-width: 1180px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 10%, rgba(25, 199, 243, 0.18), transparent 30%),
    linear-gradient(135deg, var(--dark), #0a1422);
}

.admin-shell {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.admin-header img {
  width: 154px;
}

.admin-header p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.admin-panel {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.admin-intro h1 {
  margin: 0 0 18px;
  font-size: 48px;
  line-height: 1.02;
}

.admin-intro p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
}

.admin-form {
  display: grid;
  gap: 20px;
}

.admin-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.admin-form legend {
  padding: 0 8px;
  color: var(--cyan);
  font-weight: 900;
}

.admin-form label:has(textarea),
.admin-form fieldset:nth-of-type(2) label:last-child {
  grid-column: 1 / -1;
}

.admin-actions {
  display: flex;
  gap: 14px;
}

.admin-note {
  min-height: 24px;
  margin: 0;
  color: var(--cyan);
  font-weight: 800;
}

@media (min-width: 1680px) {
  .site-header {
    padding-inline: max(72px, calc((100vw - 1680px) / 2 + 72px));
  }
}

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

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

  .nav,
  .header-phone {
    display: none;
  }

  .menu-button {
    display: block;
    grid-column: 3;
  }

  .site-header.is-open .nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .site-header.is-open .nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-grid,
  .intro-grid,
  .remote-card,
  .web-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: 100%;
    justify-self: start;
    text-align: left;
  }

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

  .hero-actions {
    justify-content: flex-start;
  }

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

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

  .web-mockup {
    grid-column: auto;
  }

  .contact-strip,
  .process-steps,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .contact-strip a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 128px;
  }

  .hero,
  .hero-grid {
    min-height: 760px;
  }

  .hero-grid {
    padding-top: 112px;
    padding-bottom: 96px;
  }

  .hero h1 {
    font-size: 42px;
    overflow-wrap: break-word;
  }

  .hero-lead {
    font-size: 19px;
  }

  .hero-panel div,
  .contact-grid,
  .remote-card,
  .intro-copy {
    padding: 22px;
  }

  .hero-panel,
  .hero-panel div {
    max-width: 100%;
  }

  .hero-panel p {
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

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

/* Production width guard: keep WWW section inside the main page column on ultra-wide screens. */
.web-section {
  width: min(1180px, calc(100% - clamp(36px, 12vw, 168px))) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 980px) {
  .web-section {
    width: min(100% - 36px, 560px) !important;
    max-width: 560px !important;
  }
}

/* Production width guard: align hero content and footer with the main page column. */
.hero-grid {
  width: min(1180px, calc(100% - clamp(36px, 12vw, 168px))) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.hero-copy {
  justify-self: start !important;
  text-align: left !important;
  max-width: min(760px, 100%) !important;
}

.hero-actions {
  justify-content: flex-start !important;
}

.footer {
  width: min(1180px, calc(100% - clamp(36px, 12vw, 168px))) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 980px) {
  .hero-grid,
  .footer {
    width: min(100% - 36px, 560px) !important;
    max-width: 560px !important;
  }
}

/* Production width guard: align hero content and footer with the main page column. */
.hero-grid {
  width: min(1180px, calc(100% - clamp(36px, 12vw, 168px))) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.hero-copy {
  justify-self: start !important;
  text-align: left !important;
  max-width: min(760px, 100%) !important;
}

.hero-actions {
  justify-content: flex-start !important;
}

.footer {
  width: min(1180px, calc(100% - clamp(36px, 12vw, 168px))) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 980px) {
  .hero-grid,
  .footer {
    width: min(100% - 36px, 560px) !important;
    max-width: 560px !important;
  }
}

/* Production width guard v2: force hero to use the same page column width as the content strips. */
.hero-grid {
  box-sizing: border-box !important;
  inline-size: min(1180px, calc(100vw - clamp(36px, 12vw, 168px))) !important;
  width: min(1180px, calc(100vw - clamp(36px, 12vw, 168px))) !important;
  max-inline-size: 1180px !important;
  max-width: 1180px !important;
}

.hero-copy {
  justify-self: stretch !important;
  width: 100% !important;
  text-align: left !important;
}

/* Production width guard v3: full-width header/footer bands with content aligned to page column. */
.site-header {
  box-sizing: border-box !important;
  grid-template-columns: minmax(0, 1fr) auto auto auto minmax(0, 1fr) !important;
  gap: 32px !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-left: max(18px, calc((100vw - 1180px) / 2)) !important;
  padding-right: max(18px, calc((100vw - 1180px) / 2)) !important;
}

.site-header .brand {
  grid-column: 2 !important;
}

.site-header .nav {
  grid-column: 3 !important;
}

.site-header .header-phone {
  grid-column: 4 !important;
}

.site-header .menu-button {
  grid-column: 4 !important;
}

.footer {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-left: max(18px, calc((100vw - 1180px) / 2)) !important;
  padding-right: max(18px, calc((100vw - 1180px) / 2)) !important;
  background: #050a11 !important;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto !important;
    gap: 18px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .site-header .brand {
    grid-column: 1 !important;
  }

  .site-header .nav {
    grid-column: 1 / -1 !important;
  }

  .site-header .header-phone,
  .site-header .menu-button {
    grid-column: 3 !important;
  }

  .footer {
    width: 100% !important;
    max-width: none !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

/* Production width guard v4: header/footer use the exact same side gutters as content sections. */
.site-header {
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  gap: 32px !important;
  padding-left: max(calc(clamp(36px, 12vw, 168px) / 2), calc((100vw - 1180px) / 2)) !important;
  padding-right: max(calc(clamp(36px, 12vw, 168px) / 2), calc((100vw - 1180px) / 2)) !important;
}

.site-header .brand {
  grid-column: 1 !important;
  justify-self: start !important;
}

.site-header .nav {
  grid-column: 2 !important;
  justify-self: end !important;
}

.site-header .header-phone,
.site-header .menu-button {
  grid-column: 3 !important;
  justify-self: end !important;
}

.footer {
  padding-left: max(calc(clamp(36px, 12vw, 168px) / 2), calc((100vw - 1180px) / 2)) !important;
  padding-right: max(calc(clamp(36px, 12vw, 168px) / 2), calc((100vw - 1180px) / 2)) !important;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto !important;
    gap: 18px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .site-header .brand {
    grid-column: 1 !important;
  }

  .site-header .nav {
    grid-column: 1 / -1 !important;
    justify-self: stretch !important;
  }

  .site-header .header-phone,
  .site-header .menu-button {
    grid-column: 3 !important;
  }

  .footer {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}


/* Production layout v5: split WWW section into equal text/image columns. */
.web-section {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  column-gap: clamp(32px, 5vw, 72px) !important;
  align-items: center !important;
}

.web-section .web-copy {
  grid-column: 1 !important;
  max-width: 100% !important;
  align-self: center !important;
}

.web-section .web-mockup {
  grid-column: 2 !important;
  align-self: center !important;
  justify-self: center !important;
  width: min(100%, 560px) !important;
  max-width: 560px !important;
  height: auto !important;
}

.web-section .process-steps,
.web-section .work-grid {
  grid-column: 1 / -1 !important;
}

@media (max-width: 980px) {
  .web-section {
    grid-template-columns: 1fr !important;
    row-gap: 34px !important;
    align-items: start !important;
  }

  .web-section .web-copy,
  .web-section .web-mockup,
  .web-section .process-steps,
  .web-section .work-grid {
    grid-column: 1 !important;
  }

  .web-section .web-mockup {
    width: 100% !important;
    max-width: 560px !important;
  }
}
