:root {
  --navy: #173f72;
  --navy-deep: #04152b;
  --blue: #2f62a2;
  --blue-soft: #edf4fb;
  --text: #193052;
  --muted: #6c7b8f;
  --line: #e3eaf2;
  --paper: #f2f5f9;
  --white: #ffffff;
  --shadow: 0 22px 58px rgba(7, 35, 71, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.62;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .site-header,
html[dir="rtl"] .detail-header {
  direction: rtl;
}

html[dir="rtl"] .social-links,
html[dir="rtl"] .site-nav,
html[dir="rtl"] .detail-nav,
html[dir="rtl"] .quick-services,
html[dir="rtl"] .showcase-rail {
  direction: ltr;
}

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

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: flex-start;
  gap: 18px;
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 0;
  color: var(--white);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  width: 122px;
  height: 34px;
  opacity: 0.96;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.utility-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  color: rgba(255, 255, 255, 0.72);
}

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  overflow: visible;
}

.social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-link > span:not(.text-logo) {
  display: none;
}

.social-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.46);
  transform: translateY(-2px);
}

.qr-popover {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 40;
  width: 148px;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(8, 35, 71, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(4, 21, 43, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.qr-popover::before {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--white);
  border-top: 1px solid rgba(8, 35, 71, 0.1);
  border-left: 1px solid rgba(8, 35, 71, 0.1);
  transform: translateX(-50%) rotate(45deg);
}

.qr-popover img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 8px;
}

.social-link.has-qr:hover .qr-popover,
.social-link.has-qr:focus-visible .qr-popover {
  opacity: 1;
  transform: translate(-50%, 0);
}

.social-link svg,
.social-link .text-logo {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  fill: currentColor;
}

.social-link svg {
  padding: 4px;
}

.facebook svg {
  background: #1877f2;
}

.instagram svg {
  background: radial-gradient(circle at 30% 110%, #feda75 0 16%, #fa7e1e 28%, #d62976 48%, #962fbf 70%, #4f5bd5 100%);
}

.tiktok svg {
  background: #050505;
  box-shadow: 2px 0 0 #25f4ee, -2px 0 0 #fe2c55;
}

.wechat svg {
  background: #07c160;
}

.email svg {
  padding: 2px;
  background: #0078d4;
}

.email svg path {
  fill: none;
}

.email .outlook-bg {
  fill: #0078d4;
}

.email .outlook-envelope,
.email .outlook-flap,
.email .outlook-door,
.email .outlook-o {
  fill: #ffffff;
}

.email .outlook-door {
  opacity: 0.96;
}

.email .outlook-o {
  fill-rule: evenodd;
}

.social-link .text-logo {
  width: 24px;
  padding: 0;
  color: #fff;
  background: #ff2442;
  border: 0;
  border-radius: 50%;
  font-size: 6px;
  font-weight: 900;
  line-height: 1;
}

.language-picker {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.language-picker span {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.language-picker select {
  width: auto;
  min-width: 116px;
  height: 34px;
  padding: 0 30px 0 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  outline: none;
}

.language-picker option {
  color: var(--text);
  background: var(--white);
}

.main-nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  padding-top: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 132px;
  height: 58px;
}

.brand img {
  width: 100%;
  max-height: 58px;
  height: 100%;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.site-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  justify-self: end;
  width: min(470px, 40vw);
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: block;
  min-height: 50px;
  padding: 5px 15px 8px;
  color: rgba(255, 255, 255, 0.84);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-item strong,
.nav-item small {
  display: block;
}

.nav-item strong {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-item small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-item > a:hover,
.nav-item:hover > a {
  color: var(--white);
}

.nav-contact > a {
  background: rgba(255, 255, 255, 0.08);
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 168px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 4px;
  box-shadow: 0 18px 42px rgba(4, 21, 43, 0.24);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.submenu::before {
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  content: "";
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.submenu a {
  display: block;
  padding: 9px 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.submenu a:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 545px;
  display: grid;
  place-items: end center;
  padding: 128px 24px 118px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(3, 20, 40, 0.72) 0%, rgba(3, 20, 40, 0.42) 42%, rgba(3, 20, 40, 0.06) 74%),
    linear-gradient(180deg, rgba(2, 15, 31, 0.22), rgba(2, 15, 31, 0.36)),
    url("./assets/hero-welcome.jpg");
  background-size: cover;
  background-position: center 42%;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(47, 98, 162, 0.24), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 48px));
  max-width: 960px;
  margin: 0 auto;
}

.service-line {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(13px, 1.3vw, 18px);
  font-weight: 900;
  letter-spacing: 0.28em;
  white-space: nowrap;
}

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

h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
}

html[lang="zh-CN"] .hero h1 {
  letter-spacing: 0.08em;
  word-spacing: 0.48em;
}

.hero-highlight {
  color: #4aa3ff;
}

h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  color: var(--text);
  font-size: 20px;
  line-height: 1.28;
}

.hero-lead {
  max-width: none;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(15px, 1.75vw, 25px);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: 0;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.menu-cta {
  display: flex;
  justify-content: center;
  padding: 28px 24px 0;
  background: var(--white);
}

.cta-qr-wrap {
  position: relative;
  display: inline-flex;
  justify-content: center;
}

.menu-cta .button.primary {
  min-width: 260px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(47, 98, 162, 0.22);
}

.cta-qr-popover {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 20;
  width: 176px;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(8, 35, 71, 0.1);
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(4, 21, 43, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cta-qr-popover::before {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--white);
  border-top: 1px solid rgba(8, 35, 71, 0.1);
  border-left: 1px solid rgba(8, 35, 71, 0.1);
  transform: translateX(-50%) rotate(45deg);
}

.cta-qr-popover img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 8px;
}

.cta-qr-wrap .button:hover + .cta-qr-popover,
.cta-qr-wrap .button:focus-visible + .cta-qr-popover {
  opacity: 1;
  transform: translate(-50%, 0);
}

.quick-services {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(980px, calc(100% - 48px));
  min-height: 130px;
  margin: -68px auto 0;
  background: var(--white);
  box-shadow: 0 22px 55px rgba(8, 35, 71, 0.15);
}

.quick-services a {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  align-content: center;
  row-gap: 0;
  padding: 22px 16px;
  color: var(--text);
  text-align: center;
  border-right: 1px solid var(--line);
  background-color: var(--white);
  background-image: var(--card-image);
  background-size: cover;
  background-position: center;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.quick-services a:last-child {
  border-right: 0;
}

.quick-services a::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.94);
  transition: background 180ms ease;
}

.quick-services a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(4, 21, 43, 0.22), rgba(4, 21, 43, 0.74));
  opacity: 0;
  transition: opacity 180ms ease;
}

.quick-services strong,
.quick-services span,
.quick-services small {
  position: relative;
  z-index: 1;
}

.quick-services strong {
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1;
  font-weight: 950;
  transition: opacity 180ms ease, transform 180ms ease;
}

.quick-services span {
  position: absolute;
  top: 46%;
  left: 12px;
  right: 12px;
  color: #6d7b90;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease;
}

.quick-services small {
  position: absolute;
  top: calc(46% + 27px);
  left: 12px;
  right: 12px;
  color: #6d7b90;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease;
}

.quick-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #b9c7d6;
  font-weight: 900;
  transition: color 180ms ease;
}

.quick-feature {
  transform: none;
}

.education-card {
  --card-image: url("./assets/menu-study-tour.jpg");
}

.study-card {
  --card-image: url("./assets/menu-education.jpg");
}

.immigration-card {
  --card-image: url("./assets/menu-immigration.jpg");
}

.visa-card {
  --card-image: url("./assets/menu-visa.jpg");
}

.enterprise-card {
  --card-image: url("./assets/menu-enterprise.jpg");
}

.quick-services a:hover,
.quick-services a:focus-visible {
  z-index: 2;
  color: var(--white);
  transform: translateY(-18px);
  box-shadow: 0 18px 38px rgba(47, 98, 162, 0.24);
}

.quick-services a:hover::before,
.quick-services a:focus-visible::before {
  background: rgba(47, 98, 162, 0.12);
}

.quick-services a:hover::after,
.quick-services a:focus-visible::after {
  opacity: 1;
}

.quick-services a:hover .quick-icon,
.quick-services a:focus-visible .quick-icon {
  color: var(--white);
}

.quick-services a:hover strong,
.quick-services a:focus-visible strong {
  opacity: 0;
  transform: translateY(-12px);
}

.quick-services a:hover span,
.quick-services a:hover small,
.quick-services a:focus-visible span,
.quick-services a:focus-visible small {
  color: var(--white);
  opacity: 1;
  transform: translateY(0);
}

.section-pad {
  padding: 88px clamp(24px, 5vw, 76px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.center-heading {
  max-width: 980px;
  margin: 0 auto 58px;
  text-align: center;
}

.center-heading h2 {
  color: var(--blue);
  font-size: clamp(26px, 3.3vw, 42px);
  font-weight: 950;
  letter-spacing: 0.02em;
}

.intro {
  background: var(--white);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 90px);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.image-stack {
  position: relative;
  min-height: 300px;
}

.image-stack img {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-back {
  top: 0;
  left: 8px;
  width: 70%;
  height: 230px;
  opacity: 0.72;
}

.image-front {
  right: 0;
  bottom: 0;
  width: 78%;
  height: 245px;
  border: 8px solid var(--white);
}

.intro-copy {
  color: var(--muted);
  font-size: 17px;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.value-tags span {
  padding: 7px 12px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
}

.showcase-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 10px 4px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 98, 162, 0.42) transparent;
}

.showcase-rail::-webkit-scrollbar {
  height: 8px;
}

.showcase-rail::-webkit-scrollbar-thumb {
  background: rgba(47, 98, 162, 0.42);
  border-radius: 999px;
}

.showcase-slide {
  position: relative;
  flex: 0 0 min(72vw, 255px);
  overflow: hidden;
  min-height: 360px;
  padding: 0;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: 4px;
  box-shadow: 0 20px 48px rgba(8, 35, 71, 0.14);
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease, outline-color 180ms ease;
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 220ms ease, opacity 180ms ease;
}

.showcase-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(4, 21, 43, 0.02), rgba(4, 21, 43, 0.68));
}

.showcase-slide span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.showcase-slide:hover,
.showcase-slide:focus-visible,
.showcase-slide.is-active {
  z-index: 2;
  outline: 3px solid var(--blue);
  outline-offset: -3px;
  transform: translateY(-8px);
  box-shadow: 0 26px 58px rgba(47, 98, 162, 0.24);
}

.showcase-slide:hover img,
.showcase-slide:focus-visible img,
.showcase-slide.is-active img {
  opacity: 0.94;
  transform: scale(1.04);
}

.showcase-copy {
  position: relative;
  min-height: 420px;
  padding: clamp(26px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(47, 98, 162, 0.94), rgba(23, 63, 114, 0.98)),
    url("./assets/brand-wave.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 58px rgba(8, 35, 71, 0.16);
}

.showcase-panel {
  display: none;
}

.showcase-panel.is-active {
  display: block;
}

.showcase-panel h3 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 40px);
}

.showcase-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.showcase-panel ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.showcase-panel li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.showcase-panel li::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  transform: translateY(-50%);
}

.showcase-panel a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.showcase-panel a::after {
  content: "›";
  font-size: 22px;
  line-height: 1;
}

.insight-grid,
.audience-grid {
  display: grid;
  max-width: 1040px;
  margin: 54px auto 0;
}

.insight-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.insight-grid article,
.audience-grid article {
  background: var(--white);
}

.insight-grid article {
  min-height: 178px;
  padding: 24px 22px;
}

.insight-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 950;
}

.insight-grid p,
.audience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.audience-grid article {
  padding: 24px;
  border-left: 3px solid var(--blue);
  box-shadow: 0 12px 34px rgba(8, 35, 71, 0.06);
}

.audience-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 18px;
}

.difference {
  display: grid;
  grid-template-columns: minmax(240px, 0.76fr) repeat(3, minmax(220px, 1fr));
  gap: 38px;
  align-items: start;
  background: var(--paper);
}

.difference-lead {
  max-width: 360px;
}

.capability-list {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.capability-list span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
}

.difference-lead p,
.feature-card p,
.case-list p,
.contact-copy p {
  color: var(--muted);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
  margin-bottom: 22px;
}

.partnership-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 6px;
  background: rgba(47, 98, 162, 0.16);
}

.partnership-strip span {
  padding: 18px 20px;
  color: var(--blue);
  background: var(--white);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.round-link {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-top: 22px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

.services {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 49, 91, 0.98), rgba(25, 72, 121, 0.94)),
    url("./assets/brand-wave.jpg");
  background-size: cover;
  background-position: center;
}

.services::after {
  position: absolute;
  right: -160px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: inset 0 0 0 48px rgba(255, 255, 255, 0.02), inset 0 0 0 118px rgba(255, 255, 255, 0.018);
}

.services-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(34px, 6vw, 70px);
  max-width: 1040px;
  margin: 0 auto;
}

.services h2,
.services h3 {
  color: var(--white);
}

.services .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.services-title h2 {
  max-width: 260px;
}

.round-link.light {
  color: var(--blue);
  background: var(--white);
}

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

.service-card {
  min-height: 190px;
  padding: 24px 26px;
  border: 2px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.025);
  scroll-margin-top: 96px;
}

.service-card.active {
  border-color: rgba(255, 255, 255, 0.9);
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.service-card ul {
  display: grid;
  gap: 7px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.service-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transform: translateY(-50%);
}

.service-card a,
.case-list a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
}

.service-card a::after,
.case-list a::after {
  margin-left: 8px;
  content: "›";
}

.service-icon {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 900;
}

.process {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 21, 43, 0.34), rgba(4, 21, 43, 0.12)),
    url("./assets/workflow-bg.png");
  background-size: cover;
  background-position: center;
}

.process::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(4, 21, 43, 0.72), rgba(47, 98, 162, 0.24) 54%, rgba(4, 21, 43, 0.58));
}

.process .section-heading,
.process .process-grid {
  position: relative;
  z-index: 1;
}

.process .eyebrow,
.process h2 {
  color: var(--white);
}

.process .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.process-grid article {
  min-height: 190px;
  padding: 26px 24px;
  background: rgba(5, 24, 49, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(4, 21, 43, 0.22);
}

.process-grid span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 950;
}

.process-grid h3 {
  color: var(--white);
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.stats-band {
  padding-top: 54px;
  padding-bottom: 54px;
  background: var(--paper);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1040px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stats div {
  padding: 28px 22px;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats strong {
  display: block;
  color: var(--blue);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-size: 14px;
}

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

.section-heading {
  max-width: 1040px;
  margin: 0 auto 34px;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.case-list article {
  min-height: 218px;
  padding: 30px 28px;
  background: var(--white);
  border-top: 4px solid var(--blue);
  box-shadow: 0 12px 34px rgba(8, 35, 71, 0.08);
  scroll-margin-top: 96px;
}

.case-list a {
  color: var(--blue);
}

.vision {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 21, 43, 0.94), rgba(8, 35, 71, 0.82)),
    url("./assets/culture-palace.jpg");
  background-size: cover;
  background-position: center;
}

.vision-copy {
  max-width: 760px;
}

.vision .eyebrow,
.vision h2,
.vision p {
  color: var(--white);
}

.vision p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(34px, 6vw, 76px);
  background: var(--white);
}

.contact-copy {
  align-self: center;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(8, 35, 71, 0.1);
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
}

.contact .button.primary {
  color: var(--white);
  background: var(--blue);
  border-radius: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) repeat(2, minmax(120px, 0.68fr)) minmax(260px, 1.1fr) minmax(240px, 0.95fr);
  gap: 34px;
  padding: 72px clamp(24px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-deep);
}

.site-footer strong {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-brand p,
.footer-subscribe p {
  max-width: 300px;
  margin: 0;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links a {
  font-size: 14px;
}

.footer-contact-list {
  display: grid;
  gap: 13px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  fill: var(--blue);
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-subscribe div {
  display: grid;
  grid-template-columns: 1fr 48px;
  margin-top: 18px;
}

.footer-subscribe input {
  height: 44px;
  border: 0;
}

.footer-subscribe button {
  color: var(--white);
  background: var(--blue);
  border: 0;
  font-size: 26px;
  cursor: pointer;
}

.footer-record-link {
  display: inline-flex;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.footer-record-link:hover {
  color: var(--white);
}

.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 20, 38, 0.58);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.consult-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.consult-modal-card {
  position: relative;
  width: min(360px, 100%);
  padding: 28px;
  text-align: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 80px rgba(8, 35, 71, 0.28);
  backdrop-filter: blur(14px);
}

.consult-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  color: var(--text);
  background: var(--paper);
  border: 0;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.consult-modal-card img {
  width: 210px;
  height: 210px;
  object-fit: contain;
  margin: 6px auto 18px;
  background: var(--white);
}

.consult-modal-card strong {
  display: block;
  color: var(--text);
  font-size: 22px;
}

.consult-modal-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.submissions-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.submissions-table-wrap {
  overflow-x: auto;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(8, 35, 71, 0.1);
}

.submissions-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.submissions-table th,
.submissions-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.submissions-table th {
  color: var(--text);
  background: var(--paper);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.submissions-empty {
  padding: 28px;
  color: var(--muted);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(8, 35, 71, 0.1);
}

.detail-body {
  background: var(--paper);
}

.detail-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(22px, 5vw, 76px);
  background: rgba(4, 21, 43, 0.96);
  box-shadow: 0 12px 34px rgba(4, 21, 43, 0.16);
}

.detail-logo {
  display: inline-flex;
  align-items: center;
  width: 118px;
  height: 34px;
}

.detail-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.detail-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 850;
}

.detail-nav a:hover {
  color: var(--white);
}

.detail-language {
  flex: 0 0 auto;
}

.detail-language span {
  display: none;
}

.detail-language select {
  min-width: 108px;
}

.detail-hero {
  padding: 86px clamp(24px, 5vw, 76px) 72px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(4, 21, 43, 0.92), rgba(47, 98, 162, 0.94)),
    url("./assets/brand-wave.jpg");
  background-size: cover;
  background-position: center;
}

.detail-hero-education,
.detail-hero-study,
.detail-hero-residence,
.detail-hero-visa,
.detail-hero-enterprise {
  min-height: 410px;
  display: grid;
  align-items: end;
  padding-top: 132px;
  background-size: cover;
  background-position: center;
}

.detail-hero-education {
  background-image:
    linear-gradient(90deg, rgba(4, 21, 43, 0.76), rgba(4, 21, 43, 0.34) 58%, rgba(4, 21, 43, 0.14)),
    url("./assets/menu-study-tour.jpg");
}

.detail-hero-study {
  background-image:
    linear-gradient(90deg, rgba(4, 21, 43, 0.78), rgba(4, 21, 43, 0.38) 58%, rgba(4, 21, 43, 0.18)),
    url("./assets/menu-education.jpg");
}

.detail-hero-residence {
  background-image:
    linear-gradient(90deg, rgba(4, 21, 43, 0.78), rgba(4, 21, 43, 0.38) 58%, rgba(4, 21, 43, 0.18)),
    url("./assets/menu-immigration.jpg");
}

.detail-hero-visa {
  background-image:
    linear-gradient(90deg, rgba(4, 21, 43, 0.78), rgba(4, 21, 43, 0.38) 58%, rgba(4, 21, 43, 0.18)),
    url("./assets/menu-visa.jpg");
}

.detail-hero-enterprise {
  background-image:
    linear-gradient(90deg, rgba(4, 21, 43, 0.78), rgba(4, 21, 43, 0.34) 58%, rgba(4, 21, 43, 0.12)),
    url("./assets/menu-enterprise.jpg");
}

.detail-hero-inner,
.detail-section {
  max-width: 1060px;
  margin: 0 auto;
}

.detail-hero .eyebrow,
.detail-hero h1,
.detail-hero p {
  color: var(--white);
}

.detail-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  white-space: normal;
}

.detail-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.detail-section {
  padding: 58px clamp(20px, 4vw, 42px);
  background: var(--white);
}

.detail-section + .detail-section {
  margin-top: 18px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

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

.detail-card {
  padding: 26px 24px;
  background: var(--paper);
  border-top: 3px solid var(--blue);
}

.detail-card h3 {
  margin-bottom: 12px;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.detail-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.detail-list li::before {
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
  transform: translateY(-50%);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.detail-actions .button.primary {
  color: var(--white);
  background: var(--blue);
}

.button.secondary {
  color: var(--blue);
  background: var(--blue-soft);
  border-color: rgba(47, 98, 162, 0.16);
}

.detail-qr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 22px;
  align-items: start;
  margin-top: 30px;
}

.detail-qr-card {
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(8, 35, 71, 0.08);
}

.detail-qr-card img {
  width: 100%;
  border-radius: 8px;
}

.detail-qr-card strong {
  display: block;
  margin-top: 12px;
  text-align: center;
}

@media (max-width: 1040px) {
  .site-header {
    align-items: flex-start;
    grid-template-columns: auto 1fr auto;
    width: calc(100% - 32px);
  }

  .brand-logo {
    grid-column: 1;
    grid-row: 1;
  }

  .utility-nav {
    grid-column: 2;
    grid-row: 1;
    flex: 1 1 auto;
    flex-wrap: wrap;
    gap: 10px;
  }

  .main-nav-row {
    grid-column: 2 / 4;
    grid-row: 2;
    justify-self: end;
  }

  .language-picker {
    grid-column: 3;
    grid-row: 1;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: rgba(4, 21, 43, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .nav-item > a {
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .submenu {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    visibility: visible;
    opacity: 1;
    transform: none;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .submenu a {
    color: rgba(255, 255, 255, 0.82);
  }

  .nav-toggle {
    display: block;
  }

  .difference,
  .services-layout,
  .process-grid,
  .insight-grid,
  .audience-grid,
  .contact,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

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

  .difference-lead,
  .services-title {
    grid-column: 1 / -1;
    max-width: 620px;
  }

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

  .quick-feature {
    transform: none;
  }

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

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px 12px;
    width: calc(100% - 24px);
    padding-top: 12px;
  }

  .brand-logo {
    grid-column: 1;
    grid-row: 1;
    width: 82px;
    height: 28px;
  }

  .utility-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: auto;
    justify-content: center;
  }

  .main-nav-row {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .language-picker {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .language-picker span {
    display: none;
  }

  .language-picker select {
    min-width: 92px;
    height: 30px;
    padding: 0 24px 0 10px;
    font-size: 12px;
  }

  .social-links {
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .social-link {
    width: 30px;
    height: 30px;
  }

  .social-link svg,
  .social-link .text-logo {
    width: 20px;
    height: 20px;
  }

  .nav-toggle {
    width: 38px;
    height: 30px;
    padding: 6px;
  }

  .site-nav {
    top: calc(100% + 8px);
    max-height: calc(100vh - 104px);
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .submenu {
    grid-template-columns: 1fr;
    padding: 8px 10px 12px;
  }

  .submenu a {
    min-height: 38px;
    padding: 9px 10px;
  }

  .hero {
    min-height: 530px;
    padding: 126px 18px 118px;
    background-position: 58% center;
  }

  .hero-content {
    width: 100%;
    margin-top: 44px;
  }

  h1 {
    font-size: clamp(24px, 7.5vw, 38px);
  }

  html[lang="zh-CN"] .hero h1 {
    letter-spacing: 0.03em;
    word-spacing: 0.24em;
  }

  .hero-lead {
    max-width: 92vw;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(12px, 3.2vw, 16px);
    white-space: normal;
  }

  .service-line {
    font-size: 12px;
    letter-spacing: 0.12em;
    white-space: normal;
  }

  .quick-services,
  .intro-layout,
  .difference,
  .service-grid,
  .process-grid,
  .insight-grid,
  .audience-grid,
  .partnership-strip,
  .stats,
  .case-list,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-services {
    display: flex;
    width: calc(100% - 24px);
    min-height: 118px;
    margin-top: -58px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .quick-services::-webkit-scrollbar {
    display: none;
  }

  .menu-cta {
    padding: 22px 20px 0;
  }

  .menu-cta .button.primary {
    width: min(100%, 320px);
  }

  .quick-services a {
    flex: 0 0 min(72vw, 220px);
    min-height: 118px;
    padding: 18px 14px;
    border-right: 0;
    border-bottom: 0;
    border-left: 1px solid var(--line);
    scroll-snap-align: center;
  }

  .quick-services a:first-child {
    border-left: 0;
  }

  .quick-services a::before {
    background: rgba(255, 255, 255, 0.88);
  }

  .quick-services strong {
    font-size: 30px;
  }

  .quick-services span,
  .quick-services small {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    opacity: 1;
    transform: none;
  }

  .quick-services span {
    margin-top: 12px;
    color: #5f6f84;
    font-size: 14px;
  }

  .quick-services small {
    margin-top: 4px;
    color: #7a8798;
    font-size: 10px;
  }

  .quick-services a:hover,
  .quick-services a:focus-visible {
    transform: none;
  }

  .quick-services a:hover strong,
  .quick-services a:focus-visible strong {
    opacity: 1;
    transform: none;
  }

  .section-pad {
    padding: 68px 20px;
  }

  .service-showcase {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .showcase-rail {
    margin-right: -20px;
    margin-left: -20px;
    padding: 6px 20px 18px;
  }

  .showcase-slide {
    flex-basis: min(78vw, 260px);
    min-height: 310px;
  }

  .showcase-slide img {
    min-height: 310px;
  }

  .showcase-copy {
    min-height: 0;
    padding: 26px 22px;
  }

  .showcase-panel h3 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .showcase-panel p {
    font-size: 15px;
  }

  .showcase-panel ul {
    gap: 9px;
    margin-top: 18px;
  }

  .image-stack {
    min-height: 260px;
  }

  .image-back {
    width: 68%;
    height: 190px;
  }

  .image-front {
    width: 80%;
    height: 200px;
  }

  .stats div {
    text-align: left;
  }

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    gap: 28px;
    padding: 52px 22px;
  }

  .footer-subscribe div {
    grid-template-columns: minmax(0, 1fr) 46px;
  }

  .detail-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 20px;
  }

  .detail-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .detail-nav::-webkit-scrollbar {
    display: none;
  }

  .detail-nav a {
    flex: 0 0 auto;
  }

  .detail-language {
    justify-self: start;
  }

  .detail-hero {
    padding: 64px 20px 56px;
  }

  .detail-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .detail-section {
    padding: 46px 20px;
  }

  .detail-grid,
  .detail-grid.two,
  .detail-qr-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 68px;
  }

  .language-picker select {
    min-width: 84px;
    max-width: 112px;
  }

  .social-links {
    gap: 6px;
  }

  .social-link {
    width: 28px;
    height: 28px;
  }

  h1 {
    font-size: clamp(22px, 7vw, 31px);
  }

  .hero {
    min-height: 500px;
    padding-bottom: 104px;
  }

  .quick-services a {
    flex-basis: 74vw;
  }

  .menu-cta .button.primary {
    min-width: 0;
  }
}
