
:root {
  --ink: #173033;
  --muted: #5f7374;
  --paper: #fbfaf7;
  --white: #ffffff;
  --teal: #0b6672;
  --teal-dark: #074851;
  --teal-light: #dceeed;
  --teal-pale: #eff7f5;
  --sand: #efe7d9;
  --orange: #e8713f;
  --orange-dark: #c95326;
  --line: rgba(23, 48, 51, 0.13);
  --shadow: 0 30px 80px rgba(16, 58, 62, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1,
h2 {
  font-family: "Noto Serif TC", "Songti TC", "PMingLiU", serif;
}

h1 em,
h2 em {
  color: var(--teal);
  font-style: normal;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 0 0 10px 10px;
  background: var(--ink);
  color: var(--white);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.announcement {
  position: relative;
  z-index: 20;
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
}

.announcement__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.announcement p {
  margin: 0;
}

.announcement p span {
  margin-inline: 7px;
  opacity: 0.45;
}

.announcement a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-weight: 700;
}

.announcement__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9adbd1;
  box-shadow: 0 0 0 6px rgba(154, 219, 209, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  border-bottom: 1px solid rgba(23, 48, 51, 0.08);
  background: rgba(251, 250, 247, 0.91);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: 136px;
  height: 56px;
  object-fit: contain;
}

.brand__division {
  padding-left: 16px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  color: #42595b;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.005em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.site-nav a:focus-visible,
.text-link:focus-visible,
.contact__map-link:focus-visible,
.mobile-cta a:focus-visible {
  outline: 3px solid rgba(232, 113, 63, 0.45);
  outline-offset: 3px;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.button--small {
  min-height: 45px;
  padding-inline: 18px;
  font-size: 13px;
}

.button--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(203, 76, 34, 0.2);
}

.button--primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 16px 32px rgba(203, 76, 34, 0.26);
}

.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.button--secondary:hover {
  border-color: rgba(11, 102, 114, 0.35);
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 82px;
  background:
    radial-gradient(circle at 20% 10%, rgba(213, 235, 231, 0.8), transparent 28%),
    linear-gradient(135deg, #f9f8f3 0%, #eef5f2 100%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(44px, 7vw, 95px);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero__orb--one {
  width: 340px;
  height: 340px;
  right: -160px;
  top: -110px;
  border: 1px solid rgba(11, 102, 114, 0.12);
}

.hero__orb--two {
  width: 120px;
  height: 120px;
  left: 47%;
  bottom: -70px;
  background: rgba(232, 113, 63, 0.08);
}

.eyebrow,
.section-kicker {
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 26px;
  font-size: clamp(48px, 5.1vw, 74px);
  font-weight: 650;
  letter-spacing: -0.055em;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: #465e60;
  font-size: 18px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__microcopy {
  margin: 15px 0 0;
  color: #718183;
  font-size: 12px;
}

.trust-row {
  margin: 32px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  list-style: none;
  color: #4e6264;
  font-size: 13px;
  font-weight: 650;
}

.trust-row span {
  margin-right: 4px;
  color: var(--teal);
}

.hero__visual {
  position: relative;
  padding: 0 20px 34px 0;
}

.hero__image-wrap {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 210px 210px var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero__image-wrap > img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: 74% center;
}

.hero__image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 47, 53, 0.56), transparent 36%);
}

.hero__image-caption {
  position: absolute;
  left: 28px;
  bottom: 24px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero__image-caption span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9adbd1;
}

.acquisition-card {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: min(310px, 76%);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 50px rgba(17, 66, 70, 0.18);
  backdrop-filter: blur(12px);
}

.acquisition-card__logos {
  display: flex;
  align-items: center;
  gap: 11px;
}

.acquisition-card__logos span {
  color: var(--orange);
  font-weight: 900;
}

.acquisition-card__leao {
  width: 96px;
  height: 47px;
  object-fit: contain;
}

.acquisition-card__hksev {
  width: 58px;
  height: 47px;
  object-fit: contain;
}

.acquisition-card p {
  margin: 10px 0 0;
  color: #607173;
  font-size: 12px;
  line-height: 1.55;
}

.acquisition-card strong {
  color: var(--teal-dark);
  font-size: 14px;
}

.proof-strip {
  background: var(--teal-dark);
  color: var(--white);
}

.proof-strip__grid {
  min-height: 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.proof-strip__grid > div {
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.proof-strip__grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.proof-strip strong {
  margin-bottom: 3px;
  font-size: 17px;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.section {
  padding: 120px 0;
}

.section-kicker {
  margin-bottom: 22px;
}

.section-kicker--light {
  color: #9adbd1;
}

.chapter {
  background: var(--white);
}

.chapter__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 150px);
}

.chapter__intro h2,
.section-heading h2,
.services__copy h2,
.faq-section__intro h2,
.contact h2 {
  font-size: clamp(40px, 4.3vw, 64px);
  font-weight: 650;
  letter-spacing: -0.05em;
}

.chapter__content > p {
  color: var(--muted);
  font-size: 16px;
}

.chapter__content .chapter__lead {
  margin-bottom: 20px;
  color: var(--ink);
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-size: 24px;
  font-weight: 650;
  line-height: 1.55;
}

.chapter__points {
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.chapter__points article {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.chapter__points article > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.chapter__points h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.chapter__points p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.experience {
  background: var(--teal-pale);
}

.section-heading {
  max-width: 750px;
  margin-bottom: 62px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 22px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.experience__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.925fr 0.925fr;
  gap: 20px;
}

.feature-card {
  position: relative;
  min-height: 365px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(23, 48, 51, 0.09);
  border-radius: var(--radius-md);
  background: var(--white);
}

.feature-card--large {
  background: var(--teal-dark);
  color: var(--white);
}

.feature-card--tint {
  background: #e9dfcf;
}

.feature-card__number {
  color: rgba(23, 48, 51, 0.33);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.feature-card--large .feature-card__number {
  color: rgba(255, 255, 255, 0.43);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 70px 0 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal-pale);
  color: var(--teal);
}

.feature-card--large .feature-card__icon {
  background: rgba(255, 255, 255, 0.12);
  color: #9adbd1;
}

.feature-card--tint .feature-card__icon {
  background: rgba(255, 255, 255, 0.62);
}

.feature-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 23px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-card--large p {
  color: rgba(255, 255, 255, 0.67);
}

.services {
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.services__copy {
  position: sticky;
  top: 140px;
}

.services__copy h2 {
  margin-bottom: 24px;
}

.services__copy > p {
  max-width: 420px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--teal);
  color: var(--teal);
  font-weight: 800;
}

.services__list {
  border-top: 1px solid var(--line);
}

.services__list article {
  min-height: 155px;
  padding: 30px 4px;
  display: grid;
  grid-template-columns: 46px 1fr 30px;
  gap: 22px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.services__index {
  padding-top: 4px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.services__list h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.services__list p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.services__arrow {
  color: #8a999a;
  font-size: 20px;
}

.services__urgent h3,
.services__urgent .services__index {
  color: var(--orange-dark);
}

.services__urgent > a {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 850;
}

.process {
  background: #ece5da;
}

.process__grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  counter-reset: steps;
}

.process__grid li {
  min-height: 260px;
  padding: 34px 42px;
  border-left: 1px solid rgba(23, 48, 51, 0.14);
}

.process__grid li:last-child {
  border-right: 1px solid rgba(23, 48, 51, 0.14);
}

.process__grid li > span {
  display: inline-block;
  margin-bottom: 68px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.process__grid h3 {
  margin-bottom: 13px;
  font-size: 21px;
}

.process__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-section {
  background: var(--paper);
}

.faq-section__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 10vw, 150px);
}

.faq-section__intro p {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 44px 25px 0;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 750;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  right: 6px;
  top: 50%;
  width: 15px;
  height: 1px;
  background: var(--teal);
  content: "";
}

.faq-list summary span::after {
  right: 0;
  top: 0;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 660px;
  margin: -5px 0 27px;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  padding: 0 0 90px;
  background: var(--paper);
}

.contact__card {
  min-height: 520px;
  padding: clamp(44px, 7vw, 88px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 94% 8%, rgba(154, 219, 209, 0.13), transparent 25%),
    var(--teal-dark);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(50px, 10vw, 140px);
  align-items: center;
}

.contact h2 {
  margin-bottom: 22px;
}

.contact h2 em {
  color: #9adbd1;
}

.contact__copy > p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.68);
}

.contact__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.button--light {
  background: var(--white);
  color: var(--teal-dark);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.contact__details {
  margin: 0;
  padding: 35px 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  font-style: normal;
}

.contact__details > div {
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact__details span {
  display: block;
  margin-bottom: 4px;
  color: #9adbd1;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact__details p,
.contact__details a {
  margin: 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
}

.contact__details .contact__map-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9adbd1;
  font-size: 13px;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  align-items: center;
  gap: 30px;
}

.footer-brand img {
  width: 105px;
  height: 45px;
  object-fit: contain;
}

.footer-brand p,
.site-footer__note,
.site-footer__copyright {
  margin: 6px 0 0;
  color: #788687;
  font-size: 11px;
}

.site-footer__note {
  max-width: 500px;
  margin: 0;
}

.site-footer__copyright {
  margin: 0;
  white-space: nowrap;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1040px) {
  .site-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 48px;
  }

  .hero__image-wrap,
  .hero__image-wrap > img {
    min-height: 510px;
  }

  .experience__grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card--large {
    grid-row: span 2;
  }

  .contact__card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .announcement__inner {
    padding: 8px 0;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .announcement__dot {
    flex: 0 0 auto;
    margin-top: 7px;
  }

  .announcement p span,
  .announcement a {
    display: none;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand img {
    width: 108px;
    height: 46px;
  }

  .brand__division,
  .header-cta {
    display: none;
  }

  .hero {
    padding: 48px 0 58px;
  }

  .hero__grid,
  .chapter__grid,
  .services__grid,
  .faq-section__grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(44px, 12vw, 62px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero__visual {
    margin-top: 10px;
    padding-right: 10px;
  }

  .hero__image-wrap {
    border-radius: 150px 150px 30px 30px;
  }

  .hero__image-wrap,
  .hero__image-wrap > img {
    min-height: 500px;
  }

  .acquisition-card {
    right: -4px;
  }

  .proof-strip__grid {
    grid-template-columns: 1fr;
  }

  .proof-strip__grid > div,
  .proof-strip__grid > div:last-child {
    min-height: 88px;
    padding: 18px 20px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .section {
    padding: 82px 0;
  }

  .chapter__grid,
  .services__grid,
  .faq-section__grid {
    gap: 42px;
  }

  .experience__grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card--large {
    min-height: auto;
    grid-row: auto;
  }

  .feature-card__icon {
    margin-top: 45px;
  }

  .services__copy {
    position: static;
  }

  .services__list article {
    min-height: auto;
    grid-template-columns: 34px 1fr 24px;
    gap: 12px;
  }

  .services__list h3 {
    font-size: 20px;
  }

  .process__grid {
    grid-template-columns: 1fr;
  }

  .process__grid li,
  .process__grid li:last-child {
    min-height: auto;
    padding: 28px 18px;
    border-right: 0;
    border-left: 0;
    border-top: 1px solid rgba(23, 48, 51, 0.14);
  }

  .process__grid li > span {
    margin-bottom: 30px;
  }

  .contact {
    padding-bottom: 68px;
  }

  .contact__card {
    width: calc(100% - 20px);
    padding: 48px 26px;
    border-radius: 30px;
    gap: 44px;
  }

  .contact__details {
    padding: 25px;
  }

  .site-footer {
    padding-bottom: 100px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 50;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    min-height: 58px;
    padding: 5px;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 12px 40px rgba(6, 45, 50, 0.24);
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 850;
  }

  .mobile-cta svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .mobile-cta__call {
    background: #eef2f1;
    color: var(--teal-dark);
  }

  .mobile-cta__whatsapp {
    background: var(--orange);
    color: var(--white);
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 41px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero__image-wrap,
  .hero__image-wrap > img {
    min-height: 440px;
  }

  .acquisition-card {
    width: 82%;
    padding: 15px 16px;
  }

  .chapter__intro h2,
  .section-heading h2,
  .services__copy h2,
  .faq-section__intro h2,
  .contact h2 {
    font-size: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

    