
:root {
  color-scheme: light;
  --orange: #e9550c;
  --orange-dark: #b73508;
  --cream: #fff8ef;
  --paper: #fff8ef;
  --paper-soft: rgba(255, 248, 239, 0.9);
  --white: #fffaf3;
  --ink: #21140e;
  --muted: #765542;
  --muted-dark: #4a2d20;
  --line: rgba(233, 85, 12, 0.2);
  --dark: #21140e;
  --shadow: 0 18px 48px rgba(91, 35, 4, 0.16);
  --page-padding: clamp(20px, 4vw, 48px);
  --section-y: clamp(48px, 7vw, 84px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis-weight: none;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.9), rgba(255, 248, 239, 0.96)),
    url("/background.jpg") center top / cover;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 239, 0.97);
  padding: clamp(10px, 1.8vw, 14px) var(--page-padding);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  transition: padding 180ms ease, transform 220ms ease, box-shadow 180ms ease;
}

.brand,
.brand-logo {
  display: block;
}

.brand-logo,
.footer-logo {
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.12);
}

.brand-logo {
  width: clamp(40px, 5vw, 52px);
  height: clamp(40px, 5vw, 52px);
  transition: width 180ms ease, height 180ms ease;
}

.top-nav {
  display: flex;
  max-height: 48px;
  min-width: 0;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  overflow-x: auto;
  color: var(--muted-dark);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  scrollbar-width: none;
  transition: max-height 180ms ease, opacity 160ms ease, transform 180ms ease;
}

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

.top-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px clamp(14px, 1.8vw, 20px);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  overflow-wrap: anywhere;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button.dark {
  background: var(--orange-dark);
  color: var(--cream);
  box-shadow: 0 12px 32px rgba(233, 85, 12, 0.22);
}

.button.light {
  border-color: var(--line);
  background: rgba(255, 248, 239, 0.92);
  color: var(--orange-dark);
}

.button.outline {
  border-color: rgba(255, 248, 239, 0.68);
  color: var(--cream);
}

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

.header-button {
  min-width: clamp(108px, 11vw, 138px);
  min-height: 40px;
  font-size: 0.88rem;
}

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

h1 {
  max-width: 600px;
  margin-bottom: clamp(16px, 3vw, 24px);
  font-size: clamp(2.15rem, 3.8vw, 3.35rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: clamp(12px, 2vw, 16px);
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  align-items: center;
  padding: clamp(28px, 5vw, 56px) var(--page-padding);
  background: var(--orange);
  isolation: isolate;
}

.hero-wall,
.hero-shade,
.geometric-lines {
  position: absolute;
  pointer-events: none;
}

.hero-wall {
  inset: -2%;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(233, 85, 12, 0.08), rgba(183, 53, 8, 0.18)),
    url("/background.jpg") center / cover;
  transform: scale(1.03);
}

.geometric-lines {
  inset: -4%;
  z-index: 1;
  width: 108%;
  height: 108%;
  opacity: 0.8;
  filter: drop-shadow(0 10px 22px rgba(91, 35, 4, 0.2));
}

.geometric-line {
  fill: none;
  stroke: rgba(255, 250, 243, 0.96);
  stroke-width: 6;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-dasharray: 136 34;
  stroke-dashoffset: 0;
  vector-effect: non-scaling-stroke;
  animation: geometricFlow 10s linear infinite;
}

.geometric-line.wide {
  stroke-width: 10;
  stroke-dasharray: 190 46;
  animation-duration: 13s;
}

.geometric-line.thin {
  stroke-width: 3;
  stroke-dasharray: 58 22;
  animation-duration: 8s;
}

.geometry-track-secondary .geometric-line {
  animation-direction: reverse;
  animation-duration: 15s;
}

.geometry-track-accent .geometric-line {
  opacity: 0.7;
  animation-duration: 18s;
}

.hero-shade {
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(33, 20, 14, 0.1), rgba(255, 248, 239, 0.16) 44%, rgba(255, 248, 239, 0.78) 78%, rgba(255, 248, 239, 0.9)),
    radial-gradient(circle at 76% 50%, rgba(255, 248, 239, 0.88), rgba(255, 248, 239, 0.18) 42%, transparent 66%),
    linear-gradient(180deg, transparent 74%, rgba(255, 248, 239, 0.94));
}

.hero-brand-lockup {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(100%, 1180px);
  justify-items: end;
  gap: clamp(16px, 2.6vw, 24px);
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: clamp(250px, 34vw, 520px);
  max-width: min(76vw, 520px);
  height: auto;
  border-radius: clamp(24px, 3vw, 42px);
  box-shadow:
    0 30px 70px rgba(91, 35, 4, 0.3),
    0 0 0 1px rgba(255, 248, 239, 0.36);
  animation: logoArrival 860ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-tagline {
  width: min(100%, 480px);
  margin: 0;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 700;
  line-height: 1.5;
  text-wrap: balance;
}

.hero-actions {
  display: grid;
  width: min(100%, 380px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-actions .button {
  width: 100%;
  min-height: 46px;
  font-size: 0.94rem;
}

.hero-scroll-link {
  position: absolute;
  right: var(--page-padding);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 4;
  width: 38px;
  height: 38px;
  border-right: 3px solid rgba(74, 45, 32, 0.62);
  border-bottom: 3px solid rgba(74, 45, 32, 0.62);
  transform: rotate(45deg);
  transition: transform 160ms ease, border-color 160ms ease;
}

.hero-scroll-link:hover {
  border-color: var(--orange-dark);
  transform: translateY(3px) rotate(45deg);
}

@keyframes geometricFlow {
  to {
    stroke-dashoffset: -520;
  }
}

@keyframes logoArrival {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  .geometric-line,
  .hero-logo {
    animation: none;
  }

  .button,
  .hero-scroll-link,
  .site-header,
  .brand-logo,
  .top-nav {
    transition: none;
  }
}

.section {
  padding: var(--section-y) var(--page-padding);
  scroll-margin-top: 84px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(24px, 3.5vw, 34px);
}

.section-heading p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.06rem);
}

.kicker {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.services-section,
.inquiry-section {
  background: rgba(255, 248, 239, 0.9);
  backdrop-filter: blur(10px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(12px, 1.8vw, 18px);
}

.service-card {
  display: grid;
  min-height: clamp(270px, 28vw, 330px);
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.94);
  padding: clamp(20px, 2.4vw, 26px);
  box-shadow: var(--shadow);
}

.service-card span,
.product-card span {
  color: var(--orange-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-card strong {
  font-size: clamp(1.8rem, 3.2vw, 2.35rem);
  line-height: 1;
}

.service-card p,
.service-card li,
.product-card p,
.steps p,
.form-fallback {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 6px;
  margin: 0 0 8px;
  padding-left: 18px;
}

.service-card .button {
  width: fit-content;
  min-height: 42px;
  margin-top: auto;
  font-size: 0.88rem;
}

.product-section,
.process-section {
  background: rgba(255, 250, 243, 0.78);
  backdrop-filter: blur(8px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(12px, 1.8vw, 18px);
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  align-content: start;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.58), rgba(255, 250, 243, 0.96)),
    var(--cream);
  padding: 0;
  box-shadow: 0 14px 38px rgba(91, 35, 4, 0.1);
}

.product-image {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  height: auto;
  border-bottom: 1px solid var(--line);
  object-fit: cover;
}

.product-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(18px, 2.2vw, 22px);
}

.product-copy p {
  margin-bottom: 0;
}

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

.steps li {
  display: grid;
  grid-template-columns: minmax(48px, 68px) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 20px);
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.94);
  padding: clamp(18px, 2.4vw, 24px);
}

.steps li > span {
  color: var(--orange-dark);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 900;
  line-height: 1;
}

.steps li div {
  max-width: 760px;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.customer-form {
  display: grid;
  width: min(100%, 920px);
  gap: 18px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.96);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow);
}

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

.customer-form label,
.message-field {
  display: grid;
  gap: 8px;
}

.customer-form label span,
.device-fieldset legend {
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.customer-form input,
.customer-form select,
.customer-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 239, 0.94);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

.customer-form textarea {
  min-height: 150px;
  resize: vertical;
}

.customer-form input:focus,
.customer-form select:focus,
.customer-form textarea:focus {
  outline: 3px solid rgba(183, 53, 8, 0.18);
  border-color: var(--orange-dark);
}

.device-fieldset {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.device-fieldset legend {
  padding: 0 8px;
}

.device-fieldset label {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 239, 0.78);
  padding: 10px 12px;
  color: var(--muted-dark);
  font-weight: 800;
}

.device-fieldset input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--orange-dark);
}

.customer-form .button {
  width: fit-content;
  min-width: 180px;
}

.form-fallback {
  margin: 0;
  font-size: 0.92rem;
}

.form-fallback a {
  color: var(--orange-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
  gap: clamp(28px, 5vw, 48px);
  align-items: end;
  padding: var(--section-y) var(--page-padding);
  background:
    linear-gradient(90deg, rgba(183, 53, 8, 0.94), rgba(233, 85, 12, 0.9)),
    url("/background.jpg") center / cover;
  color: var(--cream);
}

.contact-section h2 {
  max-width: 780px;
}

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

.contact-section .button.light,
.contact-section .button.dark {
  border-color: rgba(255, 248, 239, 0.72);
  background: var(--cream);
  color: var(--orange-dark);
}

.footer-logo {
  margin-bottom: 24px;
}

.owner-cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  padding: clamp(38px, 6vw, 68px) var(--page-padding);
  background: var(--paper);
}

.owner-cta-section h2 {
  margin-bottom: 0;
}

.owner-page {
  background: var(--paper);
}

.owner-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: var(--page-padding);
  background: var(--dark);
  color: var(--cream);
  text-align: center;
}

.owner-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 20, 14, 0.02), rgba(33, 20, 14, 0.24));
  content: "";
  pointer-events: none;
}

.owner-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 30%;
}

.owner-home-link {
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  left: clamp(18px, 3vw, 34px);
  z-index: 2;
  border: 1px solid rgba(255, 248, 239, 0.58);
  border-radius: 8px;
  background: rgba(33, 20, 14, 0.22);
  padding: 10px 14px;
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.scroll-cue {
  position: absolute;
  bottom: clamp(22px, 4vw, 42px);
  left: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-right: 3px solid rgba(255, 248, 239, 0.9);
  border-bottom: 3px solid rgba(255, 248, 239, 0.9);
  transform: translateX(-50%) rotate(45deg);
}

.owner-story {
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: var(--section-y) var(--page-padding);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.95), rgba(255, 250, 243, 1)),
    url("/background.jpg") center bottom / cover;
}

.owner-story-copy {
  width: min(100%, 880px);
  margin: 0 auto;
}

.owner-story-copy p {
  color: var(--muted-dark);
  font-size: clamp(1.12rem, 2.1vw, 1.55rem);
  font-weight: 600;
  line-height: 1.65;
}

.owner-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 4vw, 40px);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px var(--page-padding);
  background: var(--orange-dark);
  color: rgba(255, 248, 239, 0.78);
  font-size: 0.85rem;
}

.scanner-body {
  background: #f5f1ea;
}

.scanner-header {
  position: sticky;
  transform: none;
  margin: 18px auto 0;
}

.scanner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 6vw, 92px);
}

.scanner-panel,
.manual-form {
  border: 1px solid rgba(32, 26, 19, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(18px, 4vw, 28px);
  box-shadow: var(--shadow);
}

.scanner-panel video {
  display: block;
  width: 100%;
  min-height: 420px;
  border-radius: 12px;
  background: #17191b;
  object-fit: cover;
}

.scanner-status,
.form-note {
  margin: 14px 0 0;
  color: var(--muted);
}

.scan-result {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.scan-result span,
.manual-form label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scan-result a {
  overflow-wrap: anywhere;
  color: #9a4a11;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.manual-section {
  background: var(--paper);
}

.manual-form {
  display: grid;
  max-width: 760px;
  gap: 16px;
  margin: 0 auto;
}

.manual-form label {
  display: grid;
  gap: 8px;
}

.manual-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
}

.scanner-benefits .product-card {
  min-height: 260px;
}

@media (max-width: 860px) {
  .scanner-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .scanner-panel video {
    min-height: 320px;
  }
}

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

  .top-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .hero {
    min-height: calc(100svh - 118px);
    align-items: end;
    padding-top: clamp(34px, 6vw, 58px);
    padding-bottom: clamp(46px, 8vw, 72px);
  }

  .hero-brand-lockup {
    justify-items: center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 248, 239, 0.08), rgba(255, 248, 239, 0.24) 42%, rgba(255, 248, 239, 0.92)),
      radial-gradient(circle at 50% 54%, rgba(255, 248, 239, 0.55), rgba(255, 248, 239, 0.08) 52%, transparent 72%);
  }

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

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

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

@media (max-width: 760px) {
  .site-header {
    align-items: start;
    will-change: transform;
  }

  .site-header.is-compact {
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    box-shadow: 0 10px 30px rgba(91, 35, 4, 0.1);
  }

  .site-header.is-hidden {
    pointer-events: none;
    transform: translateY(calc(-100% - 8px));
    box-shadow: none;
  }

  .site-header:focus-within {
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.is-compact .brand-logo {
    width: 36px;
    height: 36px;
  }

  .site-header.is-compact .top-nav {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
  }

  .header-actions {
    justify-content: flex-end;
  }

  .header-button {
    min-width: min(42vw, 160px);
  }

  .hero-actions {
    width: 100%;
  }

  .hero {
    min-height: calc(100svh - 132px);
  }

  .hero-logo {
    width: min(74vw, 380px);
    border-radius: 26px;
  }

  .hero-tagline {
    width: min(100%, 360px);
    font-size: 1rem;
  }

  .geometric-lines {
    opacity: 0.68;
  }

  .site-footer {
    flex-direction: column;
  }

  .owner-story-actions {
    display: grid;
  }
}

@media (max-width: 520px) {
  :root {
    --page-padding: 20px;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .top-nav,
  .header-actions {
    width: 100%;
    grid-column: auto;
    grid-row: auto;
  }

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

  .header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-button {
    min-width: 0;
    width: 100%;
  }

  .site-header.is-compact .header-button {
    min-height: 36px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.8rem;
  }

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

  .hero {
    min-height: calc(100svh - 156px);
    padding-top: 30px;
    padding-bottom: 58px;
  }

  .hero-logo {
    width: min(78vw, 320px);
  }

  .hero-scroll-link {
    right: 50%;
    width: 30px;
    height: 30px;
    transform: translateX(50%) rotate(45deg);
  }

  .hero-scroll-link:hover {
    transform: translate(50%, 3px) rotate(45deg);
  }

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

  .button {
    width: 100%;
  }

  .service-card .button {
    width: 100%;
  }

  .form-grid,
  .device-fieldset {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 360px) {
  :root {
    --page-padding: 16px;
  }

  h1 {
    font-size: 2.15rem;
  }

  .button {
    padding-right: 14px;
    padding-left: 14px;
  }
}
