:root {
  --brand: #141496;
  --brand-deep: #09094f;
  --brand-bright: #4059e8;
  --brand-soft: #eef1ff;
  --ink: #0c1934;
  --muted: #58667d;
  --line: #dce2f0;
  --canvas: #ffffff;
  --soft: #f5f7fc;
  --success: #118466;
  --shadow-sm: 0 10px 30px rgba(21, 32, 73, 0.08);
  --shadow-lg: 0 24px 70px rgba(18, 24, 68, 0.16);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(46px, 5.3vw, 70px);
  font-weight: 780;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 760;
}

h3 {
  margin-bottom: 14px;
  font-size: 23px;
  font-weight: 730;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--brand);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid #6c7dff;
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 226, 240, 0.84);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand strong {
  font-weight: 590;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #33415b;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a,
.footer-contact a,
.location-content a,
.text-link {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.footer-contact a:hover,
.location-content a:hover,
.text-link:hover {
  color: var(--brand-bright);
}

.nav-shell > .button {
  justify-self: end;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.2;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 10px 17px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--brand-deep),
    var(--brand) 65%,
    var(--brand-bright)
  );
  box-shadow: 0 12px 26px rgba(20, 20, 150, 0.22);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(20, 20, 150, 0.3);
}

.button-outline,
.button-quiet {
  color: var(--brand);
  background: #fff;
  border-color: rgba(20, 20, 150, 0.2);
}

.button-quiet:hover,
.button-outline:hover {
  border-color: var(--brand);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 86px;
  background:
    radial-gradient(circle at 7% 8%, rgba(64, 89, 232, 0.12), transparent 27%),
    radial-gradient(
      circle at 93% 58%,
      rgba(20, 20, 150, 0.08),
      transparent 32%
    ),
    linear-gradient(180deg, #fbfcff, #f5f7ff);
}

.hero::after {
  position: absolute;
  right: -140px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(20, 20, 150, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  align-items: center;
  gap: 66px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 790;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 29px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  color: #40506a;
  font-size: 13px;
  font-weight: 640;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 17px;
}

.hero-points li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  content: "";
}

.hero-media {
  position: relative;
  padding: 20px 8px 34px 22px;
}

.hero-image-wrap {
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}

.hero-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 42% center;
}

.hero-proof {
  position: absolute;
  right: -8px;
  bottom: 4px;
  min-width: 330px;
  display: grid;
  grid-template-columns: 46px 35px 46px 1fr;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(20, 20, 150, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.proof-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.proof-connector {
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-bright));
}

.hero-proof p {
  margin: 0 0 0 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.hero-proof strong {
  color: var(--ink);
  font-size: 13px;
}

.experience {
  border-block: 1px solid var(--line);
  background: #fff;
}

.experience-grid {
  min-height: 118px;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 34px;
}

.experience-grid > p {
  margin: 0;
  color: #48566e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(76px, 1fr));
  align-items: center;
  gap: 28px;
}

.logo-row img {
  width: 100%;
  height: 42px;
  object-fit: contain;
  opacity: 0.92;
}

.logo-row .logo-square {
  height: 50px;
}

.logo-lockup {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  opacity: 0.92;
}

.logo-row .logo-lockup img {
  width: 72px;
  height: auto;
  flex: 0 0 auto;
  opacity: 1;
}

.tiktok-shop-lockup > span {
  color: #111;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.section {
  padding: 112px 0;
}

.section-heading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 90px;
  margin-bottom: 52px;
}

.section-heading-grid h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.section-heading-grid > p {
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.service-card::after {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  background: var(--brand-soft);
  border-radius: 50%;
  content: "";
}

.service-card-featured {
  border-color: rgba(20, 20, 150, 0.24);
  background: linear-gradient(155deg, #f2f4ff, #fff 58%);
}

.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 14px;
}

.icon-box svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.card-number {
  position: absolute;
  top: 31px;
  right: 31px;
  margin: 0;
  color: #9aa5ba;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card > p:not(.card-number) {
  margin-bottom: 24px;
  color: var(--muted);
}

.service-card > a {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--brand);
  font-size: 13px;
  font-weight: 750;
}

.approach-section {
  overflow: hidden;
  background: var(--soft);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 86px;
}

.approach-visual {
  position: relative;
  padding: 0 28px 78px 0;
}

.approach-visual > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 48% 58%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.workflow-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(470px, 92%);
  padding: 22px;
  color: #fff;
  background: linear-gradient(140deg, var(--brand-deep), var(--brand));
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(9, 9, 79, 0.28);
}

.workflow-label {
  margin-bottom: 14px;
  color: #bdc7ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow-card ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-card li {
  position: relative;
  min-width: 0;
  padding: 0 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.workflow-card li:first-child {
  padding-left: 0;
  border-left: 0;
}

.workflow-card li:last-child {
  padding-right: 0;
}

.workflow-card li span,
.workflow-card li small,
.workflow-card li strong {
  display: block;
}

.workflow-card li span {
  margin-bottom: 9px;
  color: #91a3ff;
  font-size: 10px;
  font-weight: 800;
}

.workflow-card li strong {
  font-size: 12px;
  line-height: 1.3;
}

.workflow-card li small {
  margin-top: 4px;
  color: #bfc8ea;
  font-size: 9px;
  line-height: 1.4;
}

.approach-copy h2 {
  max-width: 610px;
}

.large-copy {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 38px;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: #fff;
  border: 1px solid #d9def7;
  border-radius: 50%;
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.check-list strong,
.check-list span {
  display: block;
}

.check-list strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.check-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.process-section {
  color: #fff;
  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(64, 89, 232, 0.22),
      transparent 30%
    ),
    #080b2b;
}

.centered-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
  color: #9aabff;
}

.centered-heading > p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: #aeb8d6;
  font-size: 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  list-style: none;
}

.process-grid li {
  min-height: 220px;
  padding: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.process-grid li:first-child {
  border-left: 0;
}

.process-grid span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  color: #fff;
  background: var(--brand-bright);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.process-grid p {
  margin: 0;
  color: #aeb8d6;
  font-size: 13px;
  line-height: 1.6;
}

.locations-section {
  background: #fff;
}

.locations-heading {
  align-items: center;
}

.network-showcase {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  margin-bottom: 28px;
  border: 1px solid rgba(20, 20, 150, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  box-shadow: var(--shadow-lg);
}

.network-showcase-media {
  position: relative;
  min-height: 330px;
  overflow: hidden;
}

.network-showcase-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 8, 39, 0.62));
  content: "";
}

.network-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.network-showcase-media > span {
  position: absolute;
  z-index: 1;
  bottom: 22px;
  left: 24px;
  padding: 7px 11px;
  color: #fff;
  background: rgba(8, 11, 43, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.network-showcase-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 52px;
  color: #fff;
}

.network-showcase-copy::after {
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.network-showcase-copy .eyebrow {
  color: #bdc7ff;
}

.network-showcase-copy h3 {
  position: relative;
  z-index: 1;
  max-width: 570px;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 43px);
}

.network-showcase-copy > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-bottom: 24px;
  color: #cbd3ee;
  font-size: 14px;
  line-height: 1.75;
}

.network-showcase-copy ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.network-showcase-copy li {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #e4e8ff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 11px;
  font-weight: 700;
}

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

.business-hours {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.location-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.location-card-header {
  position: relative;
  overflow: hidden;
  min-height: 138px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 30px;
  color: var(--brand);
}

.location-card-header::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 20, 150, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 20, 150, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  content: "";
}

.location-card-sg .location-card-header {
  background: linear-gradient(135deg, #eef1ff, #fafbff);
}

.location-card-my .location-card-header {
  color: #0d6c77;
  background: linear-gradient(135deg, #eaf9fb, #f9fcfd);
}

.location-marker {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 10px 24px rgba(20, 20, 150, 0.12);
  transform: rotate(-45deg);
}

.location-marker::after {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 10px;
  height: 10px;
  background: currentColor;
  border-radius: 50%;
  content: "";
}

.location-card-header > div {
  position: relative;
  z-index: 1;
}

.location-card-header p {
  margin: 0 0 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-card-header div > span {
  color: var(--ink);
  font-size: 24px;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.location-card-header > strong {
  position: absolute;
  z-index: 0;
  right: 24px;
  bottom: -18px;
  color: currentColor;
  font-size: 92px;
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 1;
  opacity: 0.08;
}

.location-content {
  min-height: 265px;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.location-heading {
  margin-bottom: 22px;
}

.location-heading h3 {
  margin: 0 0 7px;
}

.location-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.location-content address {
  padding: 18px 0;
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}

.location-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 22px;
}

.location-email {
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.location-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid #ccd4e8;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.location-map-link:hover {
  border-color: rgba(20, 20, 150, 0.42);
  color: var(--brand);
  box-shadow: 0 8px 18px rgba(20, 20, 150, 0.09);
  transform: translateY(-1px);
}

.faq-section {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: 96px;
}

.faq-intro {
  position: sticky;
  top: 118px;
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(36px, 3.7vw, 50px);
}

.faq-intro > p:not(.eyebrow) {
  max-width: 430px;
  margin-bottom: 28px;
  color: var(--muted);
}

.text-link {
  color: var(--brand);
  font-size: 14px;
  font-weight: 750;
}

.faq-list {
  border-top: 1px solid #cfd6e6;
}

.faq-list details {
  border-bottom: 1px solid #cfd6e6;
}

.faq-list summary {
  position: relative;
  padding: 26px 46px 26px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 25px;
  right: 2px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: #fff;
  border-radius: 50%;
  content: "+";
  font-size: 19px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 690px;
  margin: -5px 50px 25px 0;
  color: var(--muted);
  line-height: 1.72;
}

.contact-section {
  padding: 0 0 80px;
  background: var(--soft);
}

.contact-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
  padding: 58px 64px;
  color: #fff;
  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(105, 125, 255, 0.5),
      transparent 30%
    ),
    linear-gradient(135deg, var(--brand-deep), var(--brand) 62%, #304bdc);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-card::after {
  position: absolute;
  right: -40px;
  bottom: -220px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.contact-card > div {
  position: relative;
  z-index: 1;
}

.eyebrow-light {
  color: #bfc8ff;
}

.contact-card h2 {
  max-width: 740px;
  margin-bottom: 18px;
}

.contact-card p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #c9d1ed;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.button-white {
  color: var(--brand);
  background: #fff;
}

.button-glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

.site-footer {
  padding: 44px 0;
  color: #98a5c8;
  background: #06081f;
}

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

.brand-footer {
  color: #fff;
}

.footer-contact {
  display: flex;
  gap: 24px;
  font-size: 13px;
}

.footer-grid > p {
  justify-self: end;
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
  text-align: right;
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

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

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

  .hero-media {
    max-width: 760px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 32px;
  }

  .logo-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 30px;
  }

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

  .service-card-featured {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .approach-visual {
    max-width: 720px;
  }

  .approach-copy {
    max-width: 780px;
  }

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

  .process-grid li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .process-grid li:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .faq-grid {
    gap: 60px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-actions {
    display: flex;
    flex-wrap: wrap;
  }

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

  .footer-contact {
    justify-self: end;
  }

  .footer-grid > p {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 74px;
  }

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand {
    font-size: 0;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-footer {
    font-size: 15px;
  }

  .hero {
    padding: 56px 0 64px;
  }

  .hero-grid {
    gap: 38px;
  }

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

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

  .hero-points {
    display: grid;
  }

  .hero-media {
    padding: 0 0 72px;
  }

  .hero-image-wrap {
    border-width: 5px;
    border-radius: 24px;
    transform: none;
  }

  .hero-image-wrap img {
    height: 360px;
  }

  .hero-proof {
    right: 12px;
    bottom: 0;
    left: 12px;
    min-width: 0;
    grid-template-columns: 40px 24px 40px 1fr;
    padding: 13px 14px;
  }

  .proof-mark {
    width: 40px;
    height: 40px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 28px;
  }

  .logo-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 22px;
  }

  .logo-row img {
    height: 34px;
  }

  .logo-row .logo-square {
    height: 40px;
  }

  .logo-lockup {
    height: 34px;
    gap: 4px;
  }

  .logo-row .logo-lockup img {
    width: 57px;
  }

  .tiktok-shop-lockup > span {
    font-size: 17px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading-grid {
    margin-bottom: 36px;
  }

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

  .service-card,
  .service-card-featured {
    grid-column: auto;
    min-height: 330px;
    padding: 26px;
  }

  .approach-grid {
    gap: 52px;
  }

  .approach-visual {
    padding: 0 0 112px;
  }

  .approach-visual > img {
    height: 340px;
    border-radius: 24px;
  }

  .workflow-card {
    right: 12px;
    left: 12px;
    width: auto;
    padding: 18px;
  }

  .workflow-card li {
    padding-inline: 9px;
  }

  .workflow-card li strong {
    font-size: 11px;
  }

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

  .process-grid li,
  .process-grid li:nth-child(3) {
    min-height: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 0;
  }

  .process-grid li:first-child {
    border-top: 0;
  }

  .process-grid span {
    margin-bottom: 20px;
  }

  .network-showcase {
    grid-template-columns: 1fr;
  }

  .network-showcase-media {
    min-height: 280px;
  }

  .network-showcase-copy {
    padding: 34px 28px 38px;
  }

  .location-card-header {
    min-height: 118px;
    padding: 24px;
  }

  .location-card-header div > span {
    font-size: 22px;
  }

  .location-card-header > strong {
    right: 20px;
    font-size: 80px;
  }

  .location-content {
    min-height: 0;
    padding: 26px 24px;
  }

  .location-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .location-map-link {
    width: 100%;
  }

  .faq-intro {
    position: static;
    margin-bottom: 18px;
  }

  .faq-list summary {
    font-size: 16px;
  }

  .contact-section {
    padding-bottom: 48px;
  }

  .contact-card {
    width: min(calc(100% - 24px), var(--container));
    padding: 42px 28px;
    border-radius: 24px;
  }

  .contact-actions {
    display: grid;
  }

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

  .footer-contact,
  .footer-grid > p {
    justify-self: start;
  }

  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
