/* Shenzhen Aipai Logistics — responsive company homepage */
:root {
  --ink: #111111;
  --ink-soft: #202020;
  --paper: #ffffff;
  --surface: #f5f5f2;
  --surface-2: #ecece7;
  --accent: #ffbe0b;
  --accent-deep: #eaa900;
  --red: #ef2f34;
  --muted: #6c6c68;
  --line: rgba(17, 17, 17, .12);
  --radius: 22px;
  --shadow: 0 22px 60px rgba(0, 0, 0, .10);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #000;
  background: var(--accent);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  border-bottom-color: rgba(17, 17, 17, .08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img,
.footer-brand img {
  width: 150px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > a {
  position: relative;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .02em;
}

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

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

.nav-cta {
  padding: 12px 18px;
  color: #111;
  background: var(--accent);
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease;
}

.nav-cta:hover {
  background: #ffd04a;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 82px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 190, 11, .18), transparent 28%),
    radial-gradient(circle at 17% 92%, rgba(239, 47, 52, .10), transparent 22%),
    linear-gradient(120deg, #0b0b0b 0%, #151515 56%, #1a1a1a 100%);
}

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

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 678px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 38px;
  padding-block: 58px 50px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .22em;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.eyebrow.dark {
  color: var(--muted);
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 6.1vw, 88px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-description {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.button-primary {
  color: #111;
  background: var(--accent);
}

.button-primary:hover {
  background: #ffd04a;
}

.button-ghost {
  color: #fff;
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.22);
}

.button-ghost:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.35);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 42px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.hero-tags span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-art {
  position: relative;
  min-height: 520px;
}

.globe {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.globe svg {
  width: min(100%, 620px);
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 170px;
  padding: 14px 18px;
  color: #111;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 15px;
}

.floating-card span {
  margin-top: 3px;
  color: #73736f;
  font-size: 12px;
}

.card-one {
  top: 14%;
  left: 2%;
}

.card-two {
  right: 0;
  bottom: 10%;
}

.hero-bottom-line {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 8px;
  background: var(--accent);
}

.service-strip {
  color: #111;
  background: var(--accent);
}

.strip-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.strip-inner > p {
  margin: 0;
  font-weight: 800;
}

.strip-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 13px;
  font-weight: 650;
}

.strip-items i {
  width: 4px;
  height: 4px;
  background: rgba(0,0,0,.45);
  border-radius: 50%;
}

.section {
  padding-block: 110px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 58px;
}

.section-heading h2,
.advantages h2,
.about h2,
.quote h2,
.contact h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.13;
  letter-spacing: -.045em;
}

.section-heading > p {
  max-width: 440px;
  margin: 0 0 4px;
  color: var(--muted);
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered > p {
  max-width: 620px;
  margin: 18px auto 0;
}

.services {
  background: var(--paper);
}

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

.service-card {
  position: relative;
  min-height: 330px;
  padding: 40px;
  overflow: hidden;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.2);
  transition: opacity .3s ease, transform .3s ease;
}

.service-card:hover {
  z-index: 2;
  color: #fff;
  background: var(--ink);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card:hover::after {
  opacity: .95;
  transform: scale(1);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border-radius: 16px;
  transition: background .3s ease;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover .service-icon {
  color: #111;
  background: var(--accent);
}

.service-number {
  position: absolute;
  top: 38px;
  right: 38px;
  color: #b7b7b2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.service-card h3 {
  margin: 52px 0 12px;
  font-size: 23px;
}

.service-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  transition: color .3s ease;
}

.service-card:hover p {
  color: rgba(255,255,255,.68);
}

.advantages {
  background: var(--surface);
}

.advantages-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 84px;
  align-items: center;
}

.advantages-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(17,17,17,.08), rgba(17,17,17,.92)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 70px),
    linear-gradient(135deg, #2f2f2d, #0f0f0f);
  border-radius: 0 90px 0 0;
  box-shadow: var(--shadow);
}

.advantages-visual::before,
.advantages-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}

.advantages-visual::before {
  width: 420px;
  height: 420px;
  top: 64px;
  left: -130px;
}

.advantages-visual::after {
  width: 280px;
  height: 280px;
  right: -90px;
  bottom: -60px;
}

.visual-panel {
  position: absolute;
  right: 36px;
  bottom: 48px;
  left: 36px;
  z-index: 2;
  padding: 32px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(15px);
}

.visual-panel p {
  margin: 0 0 16px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

.visual-panel strong {
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.25;
  letter-spacing: -.04em;
}

.visual-badge {
  position: absolute;
  top: 38px;
  right: 38px;
  z-index: 2;
  width: 118px;
  height: 118px;
  display: grid;
  place-content: center;
  text-align: center;
  color: #111;
  background: var(--accent);
  border-radius: 50%;
}

.visual-badge span {
  font-size: 12px;
}

.visual-badge strong {
  font-size: 29px;
  line-height: 1.1;
}

.advantages-content h2 {
  margin-bottom: 44px;
}

.advantage-list {
  border-top: 1px solid var(--line);
}

.advantage-item {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
  padding-block: 25px;
  border-bottom: 1px solid var(--line);
}

.advantage-item > span {
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
}

.advantage-item h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

.advantage-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process {
  background: #fff;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 72px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--line);
}

.process-list li {
  position: relative;
  z-index: 2;
  padding: 26px;
  text-align: center;
  background: #fff;
}

.step {
  position: absolute;
  top: 4px;
  right: 18px;
  color: #b7b7b2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.process-icon {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: #111;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease;
}

.process-list li:hover .process-icon {
  background: var(--accent);
  transform: translateY(-7px);
}

.process-list h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.about {
  color: #fff;
  background: var(--ink);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
  align-items: start;
}

.about-copy h2 {
  margin-bottom: 32px;
}

.about-copy > p:not(.eyebrow) {
  margin: 0 0 18px;
  color: rgba(255,255,255,.62);
  font-size: 16px;
  line-height: 2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 22px;
  color: var(--accent);
  font-weight: 750;
}

.text-link span {
  font-size: 22px;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.about-card {
  padding: 38px;
  color: #111;
  background: var(--accent);
  border-radius: var(--radius);
}

.about-quote {
  margin: 0 0 32px;
  font-size: 28px;
  font-weight: 850;
  letter-spacing: -.03em;
}

.about-card dl {
  margin: 0;
}

.about-card dl > div {
  padding: 17px 0;
  border-top: 1px solid rgba(0,0,0,.16);
}

.about-card dt {
  margin-bottom: 5px;
  color: rgba(0,0,0,.55);
  font-size: 12px;
}

.about-card dd {
  margin: 0;
  font-weight: 650;
}

.quote {
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,190,11,.13), transparent 25%),
    #191919;
}

.quote-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 80px;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 120px;
}

.quote-copy h2 {
  margin-bottom: 24px;
}

.quote-copy > p:not(.eyebrow) {
  color: rgba(255,255,255,.58);
}

.quote-contact {
  margin-top: 46px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.quote-contact span,
.quote-contact a {
  display: block;
}

.quote-contact span {
  color: rgba(255,255,255,.45);
  font-size: 12px;
}

.quote-contact a {
  margin-top: 6px;
  color: var(--accent);
  font-size: 21px;
  font-weight: 750;
}

.quote-form {
  padding: 40px;
  color: #111;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-grid label {
  display: block;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

.form-grid label > span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  color: #111;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 12px;
  outline: 0;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

input, select {
  height: 51px;
  padding: 0 15px;
}

textarea {
  min-height: 132px;
  padding: 14px 15px;
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  background: #fff;
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px rgba(255,190,11,.15);
}

.submit-button {
  width: 100%;
  margin-top: 26px;
  border: 0;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.contact {
  padding-block: 70px;
  color: #111;
  background: var(--accent);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr .7fr 1.25fr;
  gap: 45px;
  align-items: end;
}

.contact .eyebrow {
  color: rgba(0,0,0,.5);
}

.contact .eyebrow span {
  background: #111;
}

.contact h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.contact-item {
  padding-left: 28px;
  border-left: 1px solid rgba(0,0,0,.20);
}

.contact-item span {
  display: block;
  margin-bottom: 10px;
  color: rgba(0,0,0,.55);
  font-size: 12px;
  font-weight: 700;
}

.contact-item a,
.contact-item p {
  margin: 0;
  font-weight: 750;
  line-height: 1.7;
}

.site-footer {
  padding-block: 35px;
  color: rgba(255,255,255,.55);
  background: #080808;
}

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

.footer-brand {
  display: inline-flex;
  padding: 10px 13px;
  background: #fff;
  border-radius: 9px;
}

.footer-brand img {
  width: 112px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--accent);
}

.site-footer p {
  margin: 0;
  font-size: 12px;
}

.floating-email {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  transition: transform .2s ease;
}

.floating-email:hover {
  transform: translateY(-4px);
}

.floating-email svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

@media (max-width: 1020px) {
  .site-nav {
    gap: 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 105px 35px;
  }

  .hero-copy {
    max-width: 740px;
  }

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

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

  .advantages-layout,
  .about-layout,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .advantages-visual {
    min-height: 500px;
  }

  .quote-copy {
    position: static;
  }

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

  .contact-layout > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-inner {
    grid-template-columns: auto 1fr;
  }

  .site-footer p {
    grid-column: 1 / -1;
    text-align: center;
  }
}

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

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 132px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 16px 20px 24px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  }

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

  .site-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    text-align: center;
    border-bottom: 0;
  }

  .hero {
    padding-top: 72px;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 18px;
  }

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

  .process-list::before {
    display: none;
  }

  .strip-inner {
    display: block;
    padding-block: 18px;
  }

  .strip-items {
    justify-content: flex-start;
    margin-top: 8px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 78px;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

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

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

  .floating-card {
    min-width: 145px;
    padding: 11px 13px;
  }

  .card-one {
    top: 8%;
    left: 0;
  }

  .card-two {
    right: 0;
    bottom: 5%;
  }

  .hero-tags {
    gap: 8px 13px;
  }

  .hero-tags span {
    gap: 13px;
  }

  .section-heading h2,
  .advantages h2,
  .about h2,
  .quote h2 {
    font-size: 38px;
  }

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

  .service-card {
    min-height: 290px;
    padding: 32px;
  }

  .advantages-layout {
    gap: 52px;
  }

  .advantages-visual {
    min-height: 440px;
    border-radius: 0 55px 0 0;
  }

  .visual-panel {
    right: 20px;
    bottom: 24px;
    left: 20px;
    padding: 24px;
  }

  .visual-badge {
    top: 24px;
    right: 24px;
    width: 100px;
    height: 100px;
  }

  .advantage-item {
    grid-template-columns: 38px 1fr;
  }

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

  .process-list li {
    border-bottom: 1px solid var(--line);
  }

  .about-layout,
  .quote-layout {
    gap: 48px;
  }

  .about-card,
  .quote-form {
    padding: 26px 22px;
  }

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

  .form-grid label.full {
    grid-column: auto;
  }

  .quote-contact a {
    font-size: 18px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-layout > div:first-child {
    grid-column: auto;
  }

  .contact-item {
    padding: 20px 0 0;
    border-top: 1px solid rgba(0,0,0,.2);
    border-left: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    gap: 14px 20px;
  }

  .site-footer p {
    grid-column: auto;
  }
}

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

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

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