﻿:root {
  --emerald: #0f5132;
  --emerald-dark: #083321;
  --emerald-soft: #e9f1ed;
  --gold: #c8a96a;
  --gold-dark: #a67f35;
  --ivory: #f7f4ee;
  --paper: #fffdf8;
  --ink: #17231d;
  --muted: #607168;
  --line: rgba(15, 81, 50, 0.16);
  --shadow: 0 18px 60px rgba(11, 45, 31, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(15, 81, 50, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1280px, calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 128px;
  color: var(--emerald);
  line-height: 1;
}

.brand-main {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 1px;
}

.brand-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
}

.brand-sub {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 650;
  color: #15251f;
}

.desktop-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.desktop-nav a:hover {
  color: var(--emerald);
  border-color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-toggle,
.menu-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 2px;
  font-size: 13px;
  font-weight: 700;
}

.language-toggle span:not(.active) {
  color: #6e7d75;
}

.menu-button {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mobile-nav {
  display: none;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto 18px;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 12px 6px;
  font-weight: 700;
  color: var(--emerald-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 750;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
}

.button.small {
  min-height: 46px;
  padding: 0 18px;
  font-size: 13px;
}

.button-solid {
  background: var(--emerald);
  color: white;
  box-shadow: 0 12px 28px rgba(15, 81, 50, 0.22);
}

.button-solid:hover {
  background: var(--emerald-dark);
}

.button-ghost {
  background: rgba(255, 253, 248, 0.68);
  color: var(--emerald-dark);
  border-color: rgba(15, 81, 50, 0.22);
}

.button-gold {
  width: 100%;
  background: var(--gold);
  color: #1f211b;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero-bg,
.business-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.hero-bg {
  background-image: url("../assets/hero-hong-kong.png");
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.9) 34%, rgba(255, 253, 248, 0.36) 63%, rgba(15, 81, 50, 0.18) 100%);
}

.hero-content {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 170px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--emerald-dark);
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 34px;
  color: #2f3f37;
  font-size: 20px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(8, 51, 33, 0.94);
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
  font-weight: 700;
}

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

.trust-item svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex: 0 0 auto;
}

section {
  scroll-margin-top: 96px;
}

.audience-section,
.services-section,
.process-section,
.contact-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.audience-section {
  padding: 72px 0 84px;
}

.section-heading {
  margin-bottom: 34px;
}

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

.section-heading.narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.business-copy h2,
.contact-copy h2 {
  color: var(--emerald-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.business-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.audience-card {
  min-height: 140px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  color: var(--emerald-dark);
  display: grid;
  place-items: center;
  gap: 14px;
  cursor: pointer;
  font-weight: 760;
  box-shadow: 0 1px 0 rgba(15, 81, 50, 0.04);
}

.audience-card svg {
  width: 32px;
  height: 32px;
}

.audience-card.active {
  background: var(--emerald);
  color: white;
  border-color: var(--emerald);
  box-shadow: 0 18px 42px rgba(15, 81, 50, 0.22);
}

.audience-card.active::after {
  content: "";
  width: 76px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
}

.audience-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px auto 0;
  padding: 18px 20px;
  max-width: 880px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--ivory);
  color: var(--muted);
  line-height: 1.55;
}

.audience-detail strong {
  color: var(--emerald-dark);
  white-space: nowrap;
}

.destination-row {
  margin-top: 26px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}

.destination-row span {
  color: var(--muted);
}

.destination-row a {
  font-weight: 750;
}

.destination-row a:hover,
.text-link:hover {
  color: var(--emerald);
}

.destination-more {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.services-section {
  padding: 54px 0 98px;
}

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

.service-block {
  padding: 10px 8px;
}

.icon-wrap {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--emerald);
  border: 1px solid rgba(15, 81, 50, 0.18);
  border-radius: 8px;
  background: white;
}

.icon-wrap svg {
  width: 27px;
  height: 27px;
}

.service-block h3 {
  max-width: 210px;
  color: var(--emerald-dark);
  font-size: 25px;
  line-height: 1.15;
}

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

li::marker {
  color: var(--emerald);
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  font-weight: 780;
  color: var(--emerald-dark);
}

.business-section {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--ivory);
}

.business-image {
  background-image: url("../assets/business-landing.png");
  opacity: 0.55;
}

.business-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 244, 238, 0.98) 0%, rgba(247, 244, 238, 0.92) 40%, rgba(247, 244, 238, 0.64) 100%);
}

.business-content {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 540px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 42px;
  padding: 72px 0;
}

.business-copy h2 {
  margin-bottom: 20px;
}

.business-copy p:not(.eyebrow) {
  max-width: 430px;
  margin-bottom: 30px;
}

.business-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(15, 81, 50, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.business-panel article {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}

.business-panel article:last-child {
  border-right: 0;
}

.mini-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--emerald-dark);
}

.mini-title svg {
  width: 28px;
  height: 28px;
}

.mini-title h3 {
  margin: 0;
  font-size: 20px;
}

.process-section {
  padding: 84px 0 94px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 8px 12px;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  border-top: 1px dashed rgba(200, 169, 106, 0.72);
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.process-icon {
  color: var(--emerald);
  margin-bottom: 14px;
}

.process-icon svg {
  width: 34px;
  height: 34px;
}

.process-step h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--emerald-dark);
}

.process-step p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.contact-section {
  padding: 0 0 84px;
}

.contact-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
  padding: 58px;
  background: var(--emerald-dark);
  color: white;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.contact-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-hong-kong.png");
  background-size: cover;
  background-position: center bottom;
  opacity: 0.16;
}

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

.contact-copy .eyebrow,
.contact-copy h2,
.contact-copy p {
  color: white;
}

.contact-copy p {
  max-width: 480px;
  opacity: 0.84;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.86);
}

.contact-methods span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-methods svg {
  width: 19px;
  height: 19px;
  color: var(--gold);
}

.consult-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.consult-form label {
  display: grid;
  gap: 8px;
  color: var(--emerald-dark);
  font-size: 13px;
  font-weight: 780;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 81, 50, 0.16);
  border-radius: 7px;
  background: white;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.2);
}

.form-success {
  min-height: 22px;
  margin: 0;
  color: var(--emerald);
  font-weight: 760;
}

.site-footer {
  background: #06281a;
  color: rgba(255, 255, 255, 0.8);
  padding: 56px 0 28px;
}

.footer-top,
.footer-bottom {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 34px;
}

.site-footer .brand {
  color: white;
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 300px;
  line-height: 1.6;
}

.site-footer h3 {
  color: white;
  font-size: 14px;
  margin-bottom: 14px;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-actions .button.small {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .site-header.menu-open .mobile-nav {
    display: block;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .business-content,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .business-panel {
    grid-template-columns: 1fr;
  }

  .business-panel article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .business-panel article:last-child {
    border-bottom: 0;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

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

@media (max-width: 720px) {
  .header-inner,
  .mobile-nav,
  .hero-content,
  .audience-section,
  .services-section,
  .process-section,
  .contact-section,
  .business-content,
  .footer-top,
  .footer-bottom {
    width: min(100% - 32px, 1280px);
  }

  .header-inner {
    height: 72px;
  }

  .brand-main {
    font-size: 28px;
  }

  .language-toggle {
    font-size: 12px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.92) 46%, rgba(255, 253, 248, 0.48) 100%);
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero-content {
    padding: 88px 0 260px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .audience-grid,
  .service-grid,
  .process-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 70px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .audience-detail {
    display: grid;
  }

  .destination-more {
    margin-left: 0;
    width: 100%;
  }

  .business-content {
    padding: 54px 0;
  }

  .contact-band {
    padding: 30px 20px;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Multi-page service architecture */
.selector-shell,.trust-overview,.detail-section,.proof-section,.faq-section,.simple-page{width:min(1280px,calc(100% - 48px));margin:0 auto}.selector-shell{margin-top:-90px;position:relative;z-index:4}.selector-card{background:rgba(255,253,248,.96);border:1px solid var(--line);border-radius:8px;padding:30px 34px;box-shadow:var(--shadow)}.selector-card h2{font-size:18px;color:var(--emerald-dark);margin-bottom:20px}.selector-card h3{font-size:16px;margin:26px 0 14px;color:var(--emerald-dark)}.destination-pills{display:flex;flex-wrap:wrap;gap:16px}.destination-pills a{padding:13px 18px;border:1px solid var(--line);border-radius:8px;background:white;font-weight:760}.page-card-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:18px}.page-card{display:flex;flex-direction:column;min-height:220px;padding:26px;border:1px solid var(--line);border-radius:8px;background:#fff;box-shadow:0 2px 0 rgba(15,81,50,.04)}.page-card h3{color:var(--emerald-dark);font-size:22px;line-height:1.18}.page-card p{color:var(--muted);line-height:1.58}.page-card span{margin-top:auto;display:inline-flex;align-items:center;gap:8px;color:var(--emerald);font-weight:780}.trust-overview{display:grid;grid-template-columns:repeat(4,1fr);gap:0;padding:56px 0;border-bottom:1px solid var(--line)}.trust-overview .proof-item{padding:0 28px;border-right:1px solid var(--line)}.trust-overview .proof-item:last-child{border-right:0}.proof-item svg{width:42px;height:42px;color:var(--emerald);margin-bottom:18px}.proof-item h3{font-size:20px;color:var(--emerald-dark);margin-bottom:10px}.proof-item p{color:var(--muted);line-height:1.58}.detail-section{padding:72px 0 84px}.architecture-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}.architecture-card{background:#fff;border:1px solid var(--line);border-radius:8px;overflow:hidden;box-shadow:0 12px 40px rgba(15,81,50,.08)}.arch-head{background:var(--emerald-dark);color:#fff;padding:18px 24px}.architecture-card:nth-child(3) .arch-head{background:var(--gold);color:#1f211b}.arch-head h3{margin:0;text-align:center;font-size:21px}.architecture-card p{padding:22px 24px 0;color:var(--muted);line-height:1.58}.architecture-card ul{list-style:none;padding:16px 24px 16px;margin:0}.architecture-card li{display:flex;align-items:flex-start;gap:10px;margin:10px 0;color:var(--ink)}.architecture-card li svg{width:18px;height:18px;color:var(--emerald);flex:0 0 auto;margin-top:3px}.architecture-card a{display:inline-flex;align-items:center;gap:9px;margin:8px 24px 26px;color:var(--emerald);font-weight:780}.bridge-section{display:grid;grid-template-columns:1fr 1.12fr;min-height:430px;background:var(--ivory)}.bridge-copy{padding:70px max(48px,calc((100vw - 1280px)/2)) 70px max(48px,calc((100vw - 1280px)/2));display:flex;flex-direction:column;justify-content:center}.bridge-copy h2{font-size:clamp(34px,4vw,52px);line-height:1.08;color:var(--emerald-dark)}.bridge-copy p{color:var(--muted);line-height:1.65;max-width:520px}.bridge-image{background-size:cover;background-position:center;min-height:430px}.proof-section{padding:74px 0}.proof-row{display:grid;grid-template-columns:repeat(5,1fr);gap:0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}.proof-row article{padding:28px 22px;text-align:center;border-right:1px solid var(--line)}.proof-row article:last-child{border-right:0}.proof-row h3{font-size:20px;color:var(--emerald-dark)}.proof-row p{color:var(--muted);line-height:1.5}.faq-section{padding:0 0 84px}.faq-list{display:grid;gap:12px}.faq-list details{background:#fff;border:1px solid var(--line);border-radius:8px;padding:20px 24px}.faq-list summary{cursor:pointer;font-weight:800;color:var(--emerald-dark)}.faq-list p{color:var(--muted);line-height:1.6;margin:14px 0 0}.closing-band{display:flex;align-items:center;justify-content:space-between;gap:30px;background:var(--emerald-dark);color:white;padding:48px max(48px,calc((100vw - 1280px)/2));background-image:linear-gradient(90deg,rgba(6,40,26,.98),rgba(15,81,50,.88))}.closing-band h2{font-size:36px;line-height:1.1;margin-bottom:12px}.closing-band p{margin:0;color:rgba(255,255,255,.82);font-size:18px}.simple-page{padding:90px 0}.simple-page h1{max-width:850px}.simple-page>p{max-width:780px;color:var(--muted);font-size:20px;line-height:1.7}.value-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:38px}.value-grid article{background:#fff;border:1px solid var(--line);border-radius:8px;padding:30px}.contact-page{display:grid;grid-template-columns:.8fr 1fr;gap:54px;align-items:start}.contact-page>p,.contact-page>h1,.contact-page>.eyebrow{grid-column:1}.contact-page .consult-form{grid-column:2;grid-row:1 / span 4}.desktop-nav a.active{color:var(--emerald);border-color:var(--gold)}
@media(max-width:1080px){.page-card-grid{grid-template-columns:repeat(2,1fr)}.trust-overview,.proof-row{grid-template-columns:repeat(2,1fr)}.architecture-grid,.bridge-section,.contact-page{grid-template-columns:1fr}.contact-page .consult-form{grid-column:auto;grid-row:auto}.proof-row article:nth-child(2n),.trust-overview .proof-item:nth-child(2n){border-right:0}.bridge-copy{padding:54px 24px}.closing-band{display:grid}.page-card-grid .page-card:last-child{grid-column:1/-1}}
@media(max-width:720px){.selector-shell,.trust-overview,.detail-section,.proof-section,.faq-section,.simple-page{width:min(100% - 32px,1280px)}.selector-shell{margin-top:-44px}.selector-card{padding:22px}.page-card-grid,.trust-overview,.proof-row,.architecture-grid,.value-grid{grid-template-columns:1fr}.trust-overview .proof-item,.proof-row article{border-right:0;border-bottom:1px solid var(--line)}.bridge-section{display:block}.bridge-image{min-height:300px}.closing-band{padding:36px 20px}.closing-band h2{font-size:30px}}
