:root {
  --ink: #07101e;
  --ink-2: #0a1728;
  --navy: #0d2e57;
  --gold: #c49a4a;
  --gold-soft: #d7b86c;
  --paper: #f6f1e7;
  --paper-2: #fbf8f0;
  --muted: #aab2be;
  --text: #101827;
  --soft-line: rgba(13, 46, 87, 0.16);
  --gold-line: rgba(196, 154, 74, 0.28);
  --shadow: 0 28px 70px rgba(6, 14, 25, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #151412;
  color: var(--text);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: 12.8px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 74px;
  padding: 0 64px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 16, 30, 0.92);
  border-bottom: 1px solid rgba(246, 241, 231, 0.08);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(7, 16, 30, 0.96);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.brand {
  align-self: stretch;
  min-height: 74px;
  padding: 0 24px 0 clamp(24px, 4.2vw, 148px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-scrolled .brand {
  min-height: 64px;
}

.brand img {
  width: 150px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.brand:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  color: #d8d0c4;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  font-size: 15px;
  padding: 12px 0;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 220ms ease;
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  margin-left: 8px;
  padding: 17px 25px !important;
  border: 1px solid var(--gold);
  background: rgba(196, 154, 74, 0.08);
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--ink);
}

section,
.site-footer {
  width: 100%;
}

.section-dark,
.section-light {
  padding-left: clamp(24px, 7.2vw, 148px);
  padding-right: clamp(24px, 7.2vw, 148px);
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

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

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 11.2px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(27.2px, 3.2vw, 43.2px);
  line-height: 1.24;
}

.hero {
  min-height: min(720px, calc(100svh - 74px));
  padding-left: clamp(24px, 5vw, 96px);
  padding-right: clamp(24px, 4vw, 80px);
  display: grid;
  grid-template-columns: 620px minmax(760px, 1100px);
  gap: clamp(18px, 2vw, 36px);
  align-items: center;
  justify-content: start;
  background:
    radial-gradient(circle at 24% 18%, rgba(13, 46, 87, 0.72), transparent 36%),
    linear-gradient(135deg, #060a12, #0a1728 54%, #08101d);
  border-bottom: 1px solid rgba(246, 241, 231, 0.12);
}

.hero-copy {
  padding: 38px 0;
}

.hero h1 {
  color: #fffef9;
  font-size: clamp(46.4px, 4.88vw, 60.8px);
  line-height: 1.14;
}

.hero h1 span {
  color: var(--gold);
  text-shadow: 0 0 24px rgba(196, 154, 74, 0.18);
}

.hero-subtitle {
  max-width: 590px;
  margin: 20px 0 30px;
  color: #e5ded0;
  font-size: clamp(16.8px, 1.6vw, 17.6px);
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  overflow: hidden;
  border: 1px solid rgba(246, 241, 231, 0.28);
  color: var(--paper);
  font-weight: 800;
  isolation: isolate;
  transition: transform 200ms ease, border-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateY(102%);
  background: rgba(255, 255, 255, 0.12);
  transition: transform 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.button:hover::before {
  transform: translateY(0);
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #08111f;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.02);
}

.button.navy {
  background: var(--navy);
  border-color: var(--navy);
}

.hero-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 9px 14px;
  border: 1px solid rgba(233, 223, 207, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: #e9dfcf;
  font-size: 12px;
  font-weight: 700;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  justify-self: end;
  min-height: 560px;
}

.photo-layer {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 241, 231, 0.16);
  background: #111;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.photo-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layer-back {
  top: 24px;
  right: 22px;
  width: min(520px, 76%);
  height: 390px;
}

.layer-front {
  bottom: 42px;
  left: 0;
  width: min(420px, 62%);
  height: 315px;
}

.layer-portrait {
  right: 72px;
  bottom: 0;
  width: min(270px, 42%);
  height: 360px;
}

.photo-layer figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 16, 30, 0.62);
  color: #f7f0e7;
  font-size: 11.2px;
  font-weight: 700;
}

.intro {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 72px;
  padding-top: 112px;
  padding-bottom: 112px;
}

.intro-copy p {
  margin: 0 0 28px;
  color: #394250;
  font-size: clamp(15.2px, 1.36vw, 19.2px);
  line-height: 1.85;
  font-weight: 600;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.trust-pills li {
  padding: 13px 18px;
  border: 1px solid var(--soft-line);
  background: rgba(13, 46, 87, 0.035);
  color: var(--navy);
  font-size: 13.6px;
  font-weight: 800;
}

.intro-image {
  grid-column: 1 / -1;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 24%;
  border: 1px solid var(--soft-line);
}

.services,
.pricing,
.quality {
  padding-top: 116px;
  padding-bottom: 116px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 56px;
  margin-bottom: 64px;
}

.section-head > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(14.4px, 1.28vw, 17.6px);
  line-height: 1.75;
  font-weight: 600;
}

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

.service-grid article {
  min-height: 295px;
  padding: 46px 34px 52px;
  border-right: 1px solid rgba(196, 154, 74, 0.22);
  transition: background 200ms ease, transform 200ms ease;
}

.service-grid article:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.035);
}

.service-grid article:last-child {
  border-right: 0;
}

.service-grid span,
.quality-copy span {
  display: block;
  margin-bottom: 46px;
  color: var(--gold);
  font-size: 12.8px;
  font-weight: 800;
}

.service-grid h3 {
  margin-bottom: 18px;
  font-size: clamp(22.4px, 2vw, 27.2px);
  line-height: 1.25;
}

.service-grid p,
.quality-copy p {
  margin: 0;
  color: #cbd0d8;
  font-size: 14.4px;
  line-height: 1.75;
  font-weight: 600;
}

.service-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 108px;
  color: #f5ead9;
  font-size: 19.2px;
  font-weight: 800;
}

.service-chain i {
  display: block;
  width: 96px;
  height: 1px;
  background: var(--gold);
  opacity: 0.65;
}

.cases {
  padding-top: 116px;
  padding-bottom: 118px;
}

.cases .section-head > p {
  color: #5d6570;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.case-card {
  padding: 18px;
  border: 1px solid rgba(13, 46, 87, 0.12);
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(13, 46, 87, 0.12);
}

.case-card h3 {
  margin: 22px 0 8px;
  color: var(--navy);
  font-size: 20.8px;
}

.case-card p {
  margin: 0;
  color: #5d6570;
  font-size: 14.4px;
  font-weight: 600;
}

.stacked-compare {
  display: grid;
  grid-template-rows: 330px 330px;
  gap: 14px;
}

.stacked-compare figure,
.print-compare figure,
.contact-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #eee8dd;
}

.stacked-compare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stacked-compare span,
.print-compare span {
  position: absolute;
  z-index: 1;
  left: 24px;
  top: 24px;
  padding: 9px 13px;
  background: rgba(7, 16, 30, 0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.print-case {
  grid-column: 1 / -1;
  padding: 26px;
}

.print-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.print-compare figure {
  height: 760px;
  padding: 20px;
  background: #f3eee5;
}

.print-compare img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(13, 46, 87, 0.16));
}

.compare-slider {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 4357 / 3042;
  overflow: hidden;
  border: 1px solid rgba(246, 241, 231, 0.16);
  background: #1b1b1b;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
  touch-action: none;
  user-select: none;
  cursor: ew-resize;
}

.compare-caption {
  position: absolute;
  top: 50%;
  right: 18px;
  max-width: 150px;
  margin: 0;
  color: rgba(246, 241, 231, 0.74);
  font-size: 14.4px;
  line-height: 1.5;
  text-align: center;
  transform: translateY(-50%);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48);
}

.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.compare-before {
  clip-path: inset(0 calc((100 - var(--pos)) * 1%) 0 0);
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--pos) * 1%);
  z-index: 3;
  width: 2px;
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  cursor: ew-resize;
  box-shadow: 0 0 0 1px rgba(7, 16, 30, 0.25);
}

.compare-handle:focus-visible {
  outline: none;
}

.compare-handle:focus-visible .compare-handle-grip {
  box-shadow: 0 0 0 3px var(--gold), 0 6px 18px rgba(0, 0, 0, 0.3);
}

.compare-handle-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.compare-handle-grip::before,
.compare-handle-grip::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-block: 6px solid transparent;
}

.compare-handle-grip::before {
  left: 12px;
  border-right: 8px solid var(--navy);
}

.compare-handle-grip::after {
  right: 12px;
  border-left: 8px solid var(--navy);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.price-card {
  display: grid;
  grid-template-rows: 74px 72px 1fr;
  min-height: 278px;
  padding: 32px 28px;
  border: 1px solid rgba(196, 154, 74, 0.34);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 154, 74, 0.72);
  background: rgba(255, 255, 255, 0.055);
}

.price-card h3 {
  display: flex;
  align-items: flex-start;
  color: #fff;
  font-size: 19.2px;
  line-height: 1.28;
}

.price {
  display: flex;
  align-items: baseline;
  margin: 0;
  white-space: nowrap;
}

.price strong {
  color: var(--gold);
  font-size: 33.6px;
  line-height: 1;
}

.price span {
  margin-left: 4px;
  color: #d7d0c4;
  font-size: 13.6px;
  line-height: 1;
  font-weight: 800;
}

.price-card > p:last-child {
  align-self: start;
  margin: 8px 0 0;
  color: #cbd0d8;
  font-weight: 600;
}

.price-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 24px 0 0;
  padding: 24px 28px;
  border: 1px solid rgba(246, 241, 231, 0.16);
  background: rgba(7, 16, 30, 0.36);
}

.price-note strong {
  color: #fff;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 19.2px;
}

.price-note span {
  color: #e8dece;
  font-size: 16px;
  font-weight: 800;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(246, 241, 231, 0.18);
  background: rgba(246, 241, 231, 0.16);
}

.quality-grid article {
  display: flex;
  flex-direction: column;
  min-height: 486px;
  background: #0b1727;
}

.quality-copy {
  min-height: 250px;
  padding: 38px 30px 30px;
}

.quality-copy span {
  margin-bottom: 36px;
  color: #d4ad62;
}

.quality-copy h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 21.6px;
  line-height: 1.3;
}

.quality-grid img {
  width: 100%;
  height: 236px;
  padding: 8px;
  object-fit: cover;
  border-top: 1px solid rgba(246, 241, 231, 0.18);
  background: #0b1727;
}

.standard {
  padding-top: 112px;
  padding-bottom: 112px;
}

.standard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 58px;
}

.standard article {
  padding: 38px;
  border: 1px solid rgba(13, 46, 87, 0.18);
  background: #fff;
}

.standard h3 {
  margin-bottom: 28px;
  color: var(--navy);
  font-size: 25.6px;
}

dl {
  margin: 0;
}

.standard dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(13, 46, 87, 0.12);
  font-size: 15.2px;
  font-weight: 700;
}

.standard dt {
  color: #6b7280;
}

.standard dd {
  margin: 0;
  text-align: right;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 56px;
  align-items: center;
  padding-top: 112px;
  padding-bottom: 104px;
  background: linear-gradient(135deg, #f7f2e8 0%, #e7dcc8 100%);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px 0 40px;
  color: #3d4652;
  font-size: 18.4px;
  font-weight: 600;
  line-height: 1.75;
}

.mini-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid rgba(13, 46, 87, 0.16);
  border-bottom: 1px solid rgba(13, 46, 87, 0.16);
  list-style: none;
}

.mini-flow li {
  padding: 22px 24px;
  border-right: 1px solid rgba(13, 46, 87, 0.14);
  color: #0b1727;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 17.6px;
  font-weight: 800;
}

.mini-flow li:last-child {
  border-right: 0;
}

.mini-flow span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: 12px;
}

.contact-visual {
  height: 390px;
  border: 1px solid rgba(13, 46, 87, 0.18);
  box-shadow: 0 24px 80px rgba(13, 46, 87, 0.16);
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-visual figcaption {
  position: absolute;
  left: 28px;
  bottom: 26px;
  padding: 14px 18px;
  border: 1px solid rgba(246, 241, 231, 0.18);
  background: rgba(7, 16, 30, 0.78);
  color: #fff;
  font-weight: 800;
}

.site-footer {
  min-height: 150px;
  padding: 34px clamp(24px, 7.2vw, 148px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--ink);
  color: #b8bec8;
}

.site-footer > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer > div:last-child {
  align-items: flex-end;
  text-align: right;
}

.site-footer strong {
  color: var(--paper);
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 17.6px;
}

.site-footer span,
.site-footer a {
  color: #7f8794;
  font-size: 10.5px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 1560px) {
  .hero {
    padding-left: clamp(24px, 4vw, 72px);
    padding-right: clamp(24px, 3vw, 56px);
    grid-template-columns: 620px minmax(0, 1fr);
  }
}

@media (max-width: 1100px) {
  .site-header {
    position: static;
    padding: 12px 24px 12px 0;
    gap: 18px;
    align-items: flex-start;
  }

  .brand {
    width: 230px;
    min-height: 58px;
  }

  .brand img {
    width: 182px;
    max-height: 44px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 20px;
  }

  .hero,
  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-art {
    flex-direction: column;
    margin-left: 0;
    transform: none;
    min-height: 540px;
  }

  .hero-tags {
    flex-wrap: wrap;
  }

  .compare-caption {
    position: static;
    max-width: none;
    margin: 18px auto 0;
    transform: none;
  }

  .service-grid,
  .price-grid,
  .quality-grid,
  .standard-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: auto;
  }

  .brand {
    width: 200px;
    min-height: 54px;
  }

  .brand img {
    width: 160px;
    max-height: 40px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    font-size: 11.2px;
  }

  .nav-cta {
    padding: 12px 16px !important;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-art {
    min-height: 420px;
  }

  .hero-tags {
    flex-wrap: nowrap;
    gap: clamp(4px, 1.2vw, 8px);
  }

  .hero-tags li {
    flex: 1 1 0;
    min-width: 0;
    padding: clamp(7px, 1.9vw, 9px) clamp(4px, 1.4vw, 10px);
    font-size: clamp(8.8px, 2.45vw, 12px);
    text-align: center;
    white-space: nowrap;
  }

  .trust-pills {
    flex-wrap: nowrap;
    gap: clamp(4px, 1.4vw, 8px);
    width: 100%;
  }

  .trust-pills li {
    flex: 1 1 0;
    min-width: 0;
    padding: clamp(7px, 1.9vw, 11px) clamp(4px, 1.2vw, 10px);
    font-size: clamp(6.8px, 2.18vw, 13.6px);
    text-align: center;
    white-space: nowrap;
  }

  .layer-back {
    right: 0;
    width: 78%;
    height: 260px;
  }

  .layer-front {
    width: 70%;
    height: 230px;
  }

  .layer-portrait {
    right: 8px;
    width: 38%;
    height: 260px;
  }

  .intro,
  .services,
  .cases,
  .pricing,
  .quality,
  .standard,
  .contact {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-head {
    display: block;
  }

  .section-head > p {
    margin-top: 22px;
  }

  .intro-image {
    height: 380px;
  }

  .service-grid,
  .price-grid,
  .quality-grid,
  .standard-grid,
  .print-compare,
  .mini-flow {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(196, 154, 74, 0.22);
  }

  .service-chain i {
    width: 42px;
  }

  .stacked-compare {
    grid-template-rows: 260px 260px;
  }

  .print-compare figure {
    height: 540px;
  }

  .price-note,
  .site-footer {
    display: block;
  }

  .price-note span {
    display: block;
    margin-top: 10px;
  }

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

  .mini-flow li {
    border-right: 0;
    border-bottom: 1px solid rgba(13, 46, 87, 0.14);
  }

  .mini-flow li:last-child {
    border-bottom: 0;
  }

  .site-footer > div:last-child {
    align-items: flex-start;
    margin-top: 22px;
    text-align: left;
  }
}

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

  .hero-subtitle {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .hero-tags {
    margin-top: 34px;
  }

  .print-compare figure {
    height: 470px;
  }
}
