:root {
  --navy-980: #020b15;
  --navy-940: #061526;
  --navy-900: #0a1a2d;
  --navy-760: #1e3449;
  --navy-glow: #0e2840;
  --paper: #f4f1eb;
  --paper-soft: #faf8f3;
  --ink: #151923;
  --muted: #60646e;
  --line: #ded8cc;
  --line-dark: rgba(226, 205, 171, 0.2);
  --gold: #d6a66a;
  --gold-soft: #e1bd86;
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-snap-type: y mandatory;
  background: var(--paper);
  color: var(--ink);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "PingFang TC",
    "Noto Sans TC",
    "Helvetica Neue",
    Arial,
    sans-serif;
}

body {
  margin: 0;
  overscroll-behavior-y: contain;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  background: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 700px;
  min-height: 100svh;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  color: #fff;
  background:
    url("../images/hero-data-landscape.png") right center / cover no-repeat,
    var(--navy-980);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 58%, rgba(42, 122, 211, 0.14), transparent 40%),
    linear-gradient(90deg, rgba(2, 11, 21, 0.84) 0%, rgba(3, 15, 28, 0.58) 32%, rgba(5, 19, 34, 0.08) 66%, rgba(2, 11, 21, 0.02) 100%),
    linear-gradient(180deg, rgba(2, 11, 21, 0.24), rgba(2, 11, 21, 0.02) 50%, rgba(2, 11, 21, 0.36));
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 1px;
  content: "";
  background: rgba(226, 205, 171, 0.22);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__media video {
  width: 100%;
  height: 100%;
  filter: saturate(1.12) contrast(1.04) brightness(1.04);
  object-fit: cover;
  object-position: center center;
}

.hero--static-reference {
  background:
    url("../images/hero-data-landscape.png") right center / cover no-repeat,
    var(--navy-980);
}

.hero--static-reference::before {
  background:
    radial-gradient(circle at 78% 57%, rgba(43, 128, 218, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(2, 11, 21, 0.82) 0%, rgba(3, 15, 28, 0.58) 34%, rgba(5, 19, 34, 0.08) 68%, rgba(2, 11, 21, 0.08) 100%),
    linear-gradient(180deg, rgba(2, 11, 21, 0.28), rgba(2, 11, 21, 0.02) 50%, rgba(2, 11, 21, 0.42));
}

.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 38px clamp(42px, 3.8vw, 68px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--gold);
}

.brand__mark {
  width: 72px;
  height: 72px;
  color: var(--gold);
  flex: 0 0 auto;
}

.brand__ring,
.brand__needle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
}

.brand__needle {
  fill: currentColor;
  stroke-width: 0;
}

.brand__zh,
.brand__en {
  display: block;
  letter-spacing: 0;
}

.brand__zh {
  font-family: "Songti TC", "Noto Serif TC", "PMingLiU", serif;
  font-size: 29px;
  font-weight: 650;
}

.brand__en {
  margin-top: 7px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.14em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 500;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-toggle {
  position: relative;
  z-index: 40;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(214, 166, 106, 0.55);
  border-radius: 50%;
  padding: 0;
  background: rgba(2, 11, 21, 0.4);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--gold);
  transition: transform 180ms ease;
}

.nav-toggle--open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle--open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 36px clamp(48px, 6.3vw, 108px) 96px;
}

.hero:not(.hero--static-reference) .hero__content::before {
  position: absolute;
  inset: -86px auto -72px 0;
  z-index: -1;
  width: min(760px, 72vw);
  content: "";
  pointer-events: none;
  background: radial-gradient(ellipse at left center, rgba(2, 11, 21, 0.46), rgba(2, 11, 21, 0.2) 54%, transparent 76%);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1,
.intro-section h2,
.section h2,
.contact-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  color: var(--gold);
  font-family: "Songti TC", "Noto Serif TC", "PMingLiU", Georgia, serif;
  font-size: clamp(62px, 5.55vw, 96px);
  line-height: 1.25;
}

.hero__rule {
  width: 74px;
  height: 2px;
  margin: 26px 0 0;
  background: var(--gold);
}

.hero__lead {
  max-width: 600px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  line-height: 1.95;
  letter-spacing: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 222px;
  min-height: 62px;
  padding: 0 30px;
  border-radius: 2px;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0;
}

.button--primary {
  color: var(--navy-980);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
}

.button--ghost {
  border: 1px solid rgba(214, 166, 106, 0.86);
  color: var(--gold);
  background: rgba(2, 11, 21, 0.04);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--paper-soft);
}

.intro-section__copy {
  align-self: center;
  max-width: 520px;
  margin-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding: 72px 60px 72px 0;
}

.intro-section h2 {
  color: var(--ink);
  font-size: 46px;
  line-height: 1.14;
}

.intro-section p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.intro-section__image {
  height: 100%;
  min-height: 100svh;
  margin: 0;
}

.intro-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
}

.text-link::after {
  width: 38px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.section {
  display: grid;
  align-content: center;
  max-width: var(--max);
  min-height: 100svh;
  margin: 0 auto;
  padding: 90px 28px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section__header {
  max-width: 760px;
  margin-bottom: 42px;
}

.section__header--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  max-width: none;
}

.section h2 {
  color: var(--ink);
  font-size: 44px;
  line-height: 1.16;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

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

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

.service-card {
  padding: 34px 40px 40px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.service-card:last-child,
.service-grid--four .service-card:nth-child(4),
.service-grid--five .service-card:nth-child(5) {
  border-right: 0;
}

.service-card + .service-card {
  padding-left: 32px;
}

.card-index {
  display: block;
  margin-bottom: 26px;
  color: #9a7b4f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.service-card__icon {
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  color: #aa844c;
}

.service-card__icon circle,
.service-card__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.service-card h3 {
  color: var(--ink);
  font-size: 23px;
  line-height: 1.32;
}

.service-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.section--advantages {
  max-width: none;
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  color: #fff;
  background:
    radial-gradient(circle at 84% 36%, rgba(37, 116, 194, 0.2), transparent 34%),
    linear-gradient(135deg, var(--navy-980), var(--navy-940) 46%, #07111c);
}

.section--advantages .section__header {
  max-width: 800px;
}

.section--advantages .section h2,
.section--advantages h2 {
  color: #fff;
}

.section--advantages .service-grid {
  max-width: var(--max);
}

.section--advantages .service-card {
  border-color: rgba(226, 205, 171, 0.22);
}

.section--advantages .service-card h3 {
  color: #fff;
}

.section--advantages .service-card p {
  color: rgba(255, 255, 255, 0.68);
}

.section--advantages .card-index {
  color: var(--gold);
}

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

.section--process {
  max-width: none;
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.section--process .section__header,
.section--process .process-grid {
  max-width: var(--max);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 0;
  border-bottom: 0;
  padding-top: 42px;
}

.process-grid::before {
  position: absolute;
  top: 64px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line);
}

.process-step {
  position: relative;
  min-height: 0;
  padding: 0 40px 0 0;
  border-right: 0;
  border-bottom: 0;
}

.process-step + .process-step {
  padding-left: 32px;
}

@media (min-width: 981px) {
  .service-grid--five .service-card:nth-child(3n) {
    border-right: 0;
  }

  .service-grid--five .service-card:nth-child(3n + 1) {
    padding-left: 0;
  }

  .process-grid {
    row-gap: 72px;
  }

  .process-step:nth-child(3n + 1) {
    padding-left: 0;
  }
}

.process-step span,
.insights-panel span {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0;
}

.process-step span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-bottom: 28px;
  background: var(--paper-soft);
  font-family: Georgia, "Times New Roman", serif;
}

.process-step h3,
.insights-panel h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0;
}

.process-step p,
.insights-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.insights-band {
  display: grid;
  align-content: center;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.insights-band__inner {
  display: grid;
  grid-template-columns: minmax(210px, 0.68fr) minmax(320px, 1.32fr);
  align-items: start;
  gap: 18px 52px;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 28px;
}

.insights-band__inner > .text-link {
  grid-column: 2;
  margin-top: 26px;
}

.insights-band h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

.insights-panel {
  max-width: none;
  border-top: 0;
  border-left: 1px solid var(--line);
  padding: 0 0 0 34px;
}

.insights-panel article {
  max-width: 620px;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-content: center;
  min-height: 100svh;
  gap: 86px;
  padding: 82px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 10, 17, 0.96), rgba(9, 18, 29, 0.82)),
    url("../images/contact-room.jpg") center center / cover no-repeat;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(226, 205, 171, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 205, 171, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.42;
  pointer-events: none;
}

.contact-section__copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-section h2 {
  max-width: 440px;
  color: #fff;
  font-size: 46px;
  line-height: 1.15;
}

.contact-section p {
  max-width: 380px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.5;
  list-style: none;
}

.contact-list li {
  border-left: 1px solid var(--gold);
  padding-left: 14px;
}

.contact-form {
  display: grid;
  gap: 16px;
  align-self: start;
  padding-top: 10px;
}

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

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

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(226, 205, 171, 0.34);
  border-radius: 0;
  padding: 13px 0 15px;
  color: #fff;
  background: transparent;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(226, 205, 171, 0.78);
}

.form-submit {
  justify-self: end;
  min-height: 44px;
  border: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-submit::after {
  display: inline-block;
  width: 44px;
  height: 1px;
  margin-left: 14px;
  vertical-align: middle;
  content: "";
  background: var(--gold);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.65;
  text-align: right;
}

.form-status--success {
  color: #9fe6b8;
}

.form-status--error {
  color: #f3a6a6;
}

.back-to-top {
  position: fixed;
  right: calc(clamp(18px, 2.4vw, 34px) + env(safe-area-inset-right));
  bottom: calc(clamp(18px, 2.4vw, 34px) + env(safe-area-inset-bottom));
  z-index: 20;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(214, 166, 106, 0.62);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(2, 11, 21, 0.78);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease,
    opacity 200ms ease;
  backdrop-filter: blur(10px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  border-color: var(--gold);
  background: rgba(2, 11, 21, 0.92);
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .hero {
    min-height: 100svh;
  }

  .hero:not(.hero--static-reference)::before {
    background:
      radial-gradient(circle at 74% 58%, rgba(42, 122, 211, 0.16), transparent 42%),
      linear-gradient(90deg, rgba(2, 11, 21, 0.86) 0%, rgba(3, 15, 28, 0.56) 48%, rgba(3, 15, 28, 0.2) 100%),
      linear-gradient(180deg, rgba(2, 11, 21, 0.4), rgba(2, 11, 21, 0.5));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    background: rgba(2, 11, 21, 0.96);
    font-size: 22px;
  }

  .nav--open {
    display: flex;
  }

  .hero__content {
    margin-top: 0;
  }

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

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

  .intro-section__copy {
    max-width: none;
    margin: 0;
    padding: 72px 28px;
  }

  .intro-section__image {
    min-height: 50svh;
  }

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

  .service-card,
  .service-grid--five .service-card,
  .section--advantages .service-card {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 24px 28px 0;
  }

  .section--advantages .service-card {
    border-color: rgba(226, 205, 171, 0.22);
  }

  .service-card:nth-child(2n) {
    border-right: 0;
    padding-left: 24px;
  }

  .service-card:nth-child(2n + 1) {
    padding-left: 0;
  }

  .service-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .service-grid--five .service-card:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 10px;
  }

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

  .process-step,
  .process-step:nth-child(2n),
  .process-step:nth-child(3n),
  .process-step:nth-child(3n + 2) {
    border-bottom: 1px solid var(--line);
    padding: 28px 24px 28px 0;
  }

  .process-step:nth-child(2n) {
    padding-left: 24px;
  }

  .process-step:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .process-step:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .process-step + .process-step {
    padding-left: 0;
  }

  .process-step:nth-child(2n) {
    padding-left: 24px;
  }

  .insights-band__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 46px 28px;
  }

  .insights-band__inner > .text-link {
    grid-column: auto;
    margin-top: 0;
  }

  .insights-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 24px 0 0;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 24px 22px;
  }

  .brand__mark {
    width: 44px;
    height: 44px;
  }

  .brand__zh {
    font-size: 18px;
  }

  .brand__en {
    font-size: 10px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero:not(.hero--static-reference)::before {
    background:
      radial-gradient(circle at 72% 54%, rgba(42, 122, 211, 0.14), transparent 40%),
      linear-gradient(180deg, rgba(2, 11, 21, 0.58), rgba(2, 11, 21, 0.68));
  }

  .hero__content {
    margin-top: 0;
    padding: 24px 22px 64px;
  }

  .hero h1 {
    font-size: 47px;
    line-height: 1.28;
  }

  .hero__rule {
    width: 58px;
    margin-top: 18px;
  }

  .hero__lead {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.85;
  }

  .hero__actions {
    gap: 12px;
    margin-top: 32px;
  }

  .button {
    min-width: 0;
    min-height: 50px;
    padding: 0 20px;
    font-size: 15px;
  }

  .intro-section h2,
  .section h2,
  .contact-section h2 {
    font-size: 34px;
  }

  .section {
    padding: 70px 22px;
  }

  .service-grid,
  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card,
  .service-grid--five .service-card,
  .section--advantages .service-card,
  .service-card:nth-child(2n),
  .service-card:nth-child(2n + 1),
  .service-card:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
  }

  .section--advantages .service-card {
    border-color: rgba(226, 205, 171, 0.2);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .process-step,
  .process-step:nth-child(2n),
  .process-step:nth-child(3n),
  .process-step:nth-child(3n + 2),
  .process-step:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

  .process-step + .process-step {
    padding-left: 0;
  }

  .process-step span {
    width: 40px;
    height: 40px;
    margin-bottom: 22px;
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .insights-band__inner {
    padding: 42px 22px;
  }

  .insights-band h2 {
    font-size: 32px;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .contact-section {
    gap: 42px;
    padding: 70px 22px;
  }
}

@media (min-width: 981px) and (max-height: 840px) {
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section__header {
    margin-bottom: 30px;
  }

  .service-card {
    padding-top: 24px;
    padding-bottom: 26px;
  }

  .service-card__icon {
    margin-bottom: 20px;
  }

  .card-index {
    margin-bottom: 18px;
  }

  .process-grid {
    row-gap: 48px;
  }

  .intro-section h2,
  .section h2,
  .contact-section h2 {
    font-size: 38px;
  }

  .contact-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .contact-form {
    gap: 12px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px 0 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media {
    display: none;
  }
}
