:root {
  --ink: #101820;
  --ink-soft: #17232d;
  --navy: #0c2435;
  --paper: #f4f5f3;
  --white: #ffffff;
  --muted: #65717a;
  --line: #d9ddde;
  --orange: #f46a1a;
  --orange-dark: #d9530d;
  --red: #d73b35;
  --yellow: #e4b72e;
  --blue: #2f6fab;
  --green: #39805b;
  --purple: #76579a;
  --shadow: 0 24px 60px rgba(8, 22, 32, 0.12);
  --container: 1180px;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--orange);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(16, 24, 32, 0.97);
  box-shadow: 0 8px 24px rgba(7, 16, 24, 0.18);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  gap: 7px;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: #9fadb7;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.site-nav > a:not(.button) {
  position: relative;
  color: #dbe2e7;
  font-size: 14px;
  transition: color 0.2s ease;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  color: var(--white);
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease,
    color 0.2s ease, box-shadow 0.2s ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.footer-inner a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(244, 106, 26, 0.5);
  outline-offset: 4px;
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 12px 28px rgba(244, 106, 26, 0.22);
}

.button-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 14px 32px rgba(244, 106, 26, 0.32);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 14px;
}

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

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

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding-top: var(--header-height);
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 37%;
  height: 100%;
  content: "";
  background: var(--navy);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to right, transparent 0, #000 32%, #000 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: clamp(60px, 7vw, 110px);
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content {
  padding-top: 28px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.19em;
}

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

.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--orange);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: clamp(42px, 4.4vw, 68px);
  font-weight: 750;
  line-height: 1.23;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 12px;
  color: #d8e0e5;
  font-size: 18px;
  line-height: 1.9;
}

.hero-note {
  max-width: 650px;
  margin-bottom: 32px;
  color: #96a5af;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
  padding: 0;
  color: #bdc8cf;
  list-style: none;
  font-size: 13px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points span {
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #111d26;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.3);
}

.hero-visual::after {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 110px;
  height: 110px;
  content: "";
  border-right: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
}

.visual-topline,
.visual-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #768893;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.sample-stage {
  display: grid;
  height: 332px;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  margin: 36px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.sample-card {
  position: relative;
  display: flex;
  height: var(--sample-height);
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 11px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  background: var(--sample-color);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.sample-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.22;
  background-image: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.75) 0 1px, transparent 2px);
  background-size: 11px 13px, 14px 16px;
}

.sample-card:hover {
  z-index: 1;
  filter: saturate(1.12) brightness(1.06);
  transform: translateY(-8px);
}

.sample-card span,
.sample-card b {
  position: relative;
}

.sample-card span {
  align-self: flex-start;
  font-family: Georgia, serif;
  font-size: 26px;
}

.sample-card b {
  font-size: 9px;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
}

.sample-red { --sample-color: var(--red); --sample-height: 63%; }
.sample-yellow { --sample-color: var(--yellow); --sample-height: 81%; }
.sample-blue { --sample-color: var(--blue); --sample-height: 100%; }
.sample-green { --sample-color: var(--green); --sample-height: 74%; }
.sample-purple { --sample-color: var(--purple); --sample-height: 89%; }

.visual-footer div {
  display: grid;
  gap: 4px;
}

.visual-footer strong {
  color: var(--white);
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.visual-footer span {
  color: #81909a;
  letter-spacing: 0.04em;
}

.visual-footer .visual-index {
  color: var(--orange);
}

.hero-meta {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #95a4ae;
}

.meta-inner {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.section {
  padding: 108px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 64px;
  margin-bottom: 54px;
}

.section-kicker {
  margin-bottom: 14px;
}

.section-heading h2,
.about-title h2,
.contact-heading h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.section-heading > p {
  max-width: 500px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  content: "";
  background: var(--orange);
  transition: width 0.28s ease;
}

.service-card:hover {
  z-index: 2;
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-card:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 54px;
  color: #919ca3;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 13px;
}

.color-chip {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.chip-red { background: var(--red); }
.chip-yellow { background: var(--yellow); }
.chip-blue { background: var(--blue); }
.chip-green { background: var(--green); }

.service-card h3 {
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1.4;
}

.service-card p {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 15px;
}

.card-tag {
  position: absolute;
  bottom: 24px;
  left: 28px;
  color: #8b969d;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.scope-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.scope-note strong {
  color: var(--ink);
}

.about {
  color: var(--white);
  background: var(--ink-soft);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 10vw, 150px);
}

.section-kicker.light {
  color: #81919c;
}

.about-title h2 {
  font-size: clamp(48px, 6vw, 78px);
}

.about-content {
  padding-top: 40px;
}

.about-content > p {
  max-width: 720px;
  color: #9eacb5;
  font-size: 16px;
}

.about-content .about-lead {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(22px, 2.5vw, 31px);
  line-height: 1.6;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.about-facts div {
  min-height: 150px;
  padding: 20px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.about-facts span,
.about-facts strong,
.about-facts small {
  display: block;
}

.about-facts span {
  margin-bottom: 22px;
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 11px;
}

.about-facts strong {
  margin-bottom: 5px;
  font-size: 18px;
}

.about-facts small {
  color: #7f909b;
  font-size: 12px;
}

.process {
  background: #eceeec;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #c9cecf;
  list-style: none;
}

.process-item {
  display: grid;
  min-height: 122px;
  grid-template-columns: 110px 1fr;
  align-items: center;
  border-bottom: 1px solid #c9cecf;
  transition: padding-left 0.25s ease, background-color 0.25s ease;
}

.process-item:hover {
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.process-number {
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 15px;
}

.process-item div {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) 1fr;
  align-items: center;
  gap: 30px;
}

.process-item h3,
.process-item p {
  margin: 0;
}

.process-item h3 {
  font-size: 23px;
}

.process-item p {
  color: var(--muted);
}

.contact {
  padding: 110px 0;
  color: var(--white);
  background: #0d1820;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: clamp(50px, 8vw, 110px);
}

.section-kicker.orange {
  color: var(--orange);
}

.contact-heading h2 {
  margin-bottom: 26px;
  font-size: clamp(42px, 5vw, 64px);
}

.contact-heading > p:last-child {
  max-width: 420px;
  color: #95a3ad;
}

.contact-panel {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.contact-item {
  min-width: 0;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

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

.contact-item span,
.contact-item strong,
.contact-item small {
  display: block;
}

.contact-item span {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-item strong {
  margin-bottom: 8px;
  overflow-wrap: anywhere;
  font-size: 17px;
  line-height: 1.5;
}

.contact-item small {
  color: #879198;
  font-size: 12px;
}

.quote-guide {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 30px;
  padding: 30px;
}

.guide-label {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
}

.quote-guide ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-guide li {
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: #f7f8f7;
  font-size: 13px;
}

.qr-placeholder {
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px dashed #b6bdc1;
  text-align: center;
}

.qr-grid {
  width: 58px;
  height: 58px;
  margin-bottom: 8px;
  opacity: 0.55;
  background: repeating-linear-gradient(0deg, #17232d 0 4px, transparent 4px 8px),
    repeating-linear-gradient(90deg, #17232d 0 4px, transparent 4px 8px);
}

.qr-placeholder strong,
.qr-placeholder span {
  display: block;
  font-size: 12px;
}

.qr-placeholder span {
  color: #8b959c;
}

.site-footer {
  padding: 30px 0;
  color: #84939d;
  background: #091117;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  font-size: 12px;
}

.footer-inner div {
  display: flex;
  gap: 16px;
}

.footer-inner strong {
  color: #dce3e7;
  font-size: 14px;
}

.footer-inner p {
  margin: 0;
  text-align: center;
}

.footer-inner a {
  color: #c3ccd2;
  transition: color 0.2s ease;
}

.footer-inner a:hover {
  color: var(--orange);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.service-card:nth-child(2),
.process-item:nth-child(2) { transition-delay: 0.06s; }
.service-card:nth-child(3),
.process-item:nth-child(3) { transition-delay: 0.12s; }
.service-card:nth-child(4),
.process-item:nth-child(4) { transition-delay: 0.18s; }

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 48px;
  }

  .hero-visual {
    min-height: 440px;
    padding: 20px;
  }

  .sample-stage {
    height: 290px;
    gap: 7px;
    margin-block: 30px 22px;
  }

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

  .contact-wrap {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 54px;
  }

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

  .contact-item {
    padding: 20px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-item:last-child {
    border-bottom: 0;
  }

  .contact-item span {
    margin-bottom: 6px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 12px 9px;
    border: 0;
    place-items: center;
    color: var(--white);
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 90px 32px 40px;
    visibility: hidden;
    background: rgba(12, 24, 33, 0.985);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    font-size: 26px;
    font-weight: 650;
  }

  .site-nav .nav-quote {
    width: 100%;
    margin-top: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    top: auto;
    width: 100%;
    height: 43%;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 86px;
    padding-bottom: 70px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-visual {
    width: min(100%, 570px);
    justify-self: center;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 40px;
  }

  .about-layout,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-content {
    padding-top: 0;
  }

  .contact {
    padding: 84px 0;
  }

  .contact-heading > p:last-child {
    margin-bottom: 0;
  }
}

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

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero-layout {
    gap: 42px;
    padding-top: 68px;
    padding-bottom: 54px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: 0.11em;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(38px, 11.5vw, 50px);
    line-height: 1.2;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-note {
    margin-bottom: 28px;
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 32px;
  }

  .button {
    min-height: 50px;
    padding-inline: 12px;
    font-size: 14px;
  }

  .hero-points {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    min-height: 350px;
    padding: 18px;
  }

  .visual-topline span:last-child {
    display: none;
  }

  .sample-stage {
    height: 230px;
    gap: 5px;
    margin-block: 24px 18px;
  }

  .sample-card {
    min-height: 135px;
    padding: 10px 7px;
  }

  .sample-card span {
    font-size: 20px;
  }

  .sample-card b {
    font-size: 7px;
  }

  .visual-footer strong {
    font-size: 13px;
  }

  .visual-footer div > span {
    font-size: 8px;
  }

  .hero-meta {
    padding-block: 12px;
  }

  .meta-inner {
    display: grid;
    min-height: auto;
    gap: 4px;
    font-size: 10px;
  }

  .section,
  .contact {
    padding: 68px 0;
  }

  .section-heading h2,
  .about-title h2,
  .contact-heading h2 {
    font-size: 38px;
  }

  .section-heading > p {
    font-size: 15px;
  }

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

  .service-card {
    min-height: 285px;
  }

  .card-topline {
    margin-bottom: 42px;
  }

  .about-title h2,
  .contact-heading h2 {
    font-size: 44px;
  }

  .about-content .about-lead {
    font-size: 22px;
  }

  .about-facts {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }

  .about-facts div {
    min-height: 132px;
  }

  .process-item {
    min-height: 150px;
    grid-template-columns: 54px 1fr;
    align-items: start;
    padding-block: 28px;
  }

  .process-item:hover {
    padding-left: 10px;
  }

  .process-item div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-item h3 {
    font-size: 21px;
  }

  .process-item p {
    font-size: 14px;
  }

  .contact-panel {
    margin-inline: -2px;
  }

  .contact-item {
    padding: 20px;
  }

  .quote-guide {
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }

  .qr-placeholder {
    width: 150px;
    min-height: 150px;
    justify-self: start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-inner p {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
