:root {
  --ink: #10242b;
  --muted: #5b6970;
  --paper: #eef6f4;
  --porcelain: #fbfdfb;
  --jade: #0b7c72;
  --jade-dark: #064c49;
  --cinnabar: #b83a2f;
  --gold: #c59a3f;
  --sky: #dceff1;
  --line: rgba(20, 32, 39, 0.12);
  --shadow: 0 24px 70px rgba(16, 45, 54, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 2%, rgba(197, 154, 63, 0.1), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(11, 124, 114, 0.08), transparent 25rem),
    linear-gradient(180deg, #fbfdfb 0%, #eef6f4 48%, #fbfdfb 100%);
  font-family:
    "Inter", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui,
    sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 253, 248, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 236px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(11, 124, 114, 0.2);
}

.brand strong,
.site-footer strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #334149;
  font-size: 15px;
}

.nav-links a {
  padding: 26px 0;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--jade);
}

.header-cta,
.primary-button,
.secondary-button,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.language-select select {
  width: 116px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  outline: 0;
  cursor: pointer;
}

.language-flag {
  display: inline-grid;
  place-items: center;
  width: 22px;
  font-size: 18px;
  line-height: 1;
}

.header-cta,
.primary-button,
.lead-form button {
  color: #fff;
  background: linear-gradient(135deg, var(--jade), var(--jade-dark));
  box-shadow: 0 14px 30px rgba(15, 139, 123, 0.24);
}

.secondary-button {
  border: 1px solid rgba(20, 32, 39, 0.18);
  background: rgba(255, 255, 255, 0.68);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section,
.section-band {
  padding: 72px 5vw;
}

.section-band {
  position: relative;
  overflow: hidden;
}

.section-band::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(11, 124, 114, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 154, 63, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
}

.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 54px;
  width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--jade-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  color: #3e4c53;
  font-size: 18px;
  line-height: 1.68;
}

.hero-slogan {
  max-width: 630px;
  margin-bottom: 16px;
  color: var(--jade-dark);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin-top: 28px;
}

.trust-row span {
  padding: 16px;
  border: 1px solid rgba(15, 139, 123, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--muted);
}

.trust-row strong {
  display: block;
  color: var(--ink);
  font-size: 25px;
}

.trust-row em {
  display: block;
  font-style: normal;
  font-size: 13px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 430px;
}

.orbit-map {
  display: grid;
  place-items: center;
  min-height: 430px;
  border: 1px solid rgba(15, 139, 123, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(220, 239, 241, 0.6)),
    radial-gradient(circle at center, rgba(11, 124, 114, 0.16), transparent 54%);
  box-shadow: var(--shadow);
}

.orbit-map img {
  width: min(92%, 540px);
}

.signal-card {
  position: absolute;
  width: min(230px, 44%);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 18px 45px rgba(20, 32, 39, 0.14);
  backdrop-filter: blur(14px);
}

.signal-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.signal-card strong {
  display: block;
  margin-top: 6px;
}

.signal-card-top {
  top: 40px;
  right: 22px;
}

.signal-card-bottom {
  bottom: 34px;
  left: 24px;
}

.market-labels {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 430px;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.market-label {
  position: absolute;
  width: min(230px, 38%);
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 28px rgba(20, 32, 39, 0.12);
  backdrop-filter: blur(12px);
}

.market-label strong,
.market-label em {
  display: block;
}

.market-label strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
}

.market-label em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.market-me {
  top: 72px;
  left: 110px;
}

.market-cas {
  top: 84px;
  right: 106px;
}

.market-afr {
  right: 62px;
  top: 250px;
}

.market-sam {
  left: 136px;
  bottom: 84px;
}

.market-sea {
  right: 146px;
  bottom: 22px;
}

.hero-fortune-note {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--cinnabar);
  font-family: "Segoe Print", "Comic Sans MS", "KaiTi", "STKaiti", cursive;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  text-wrap: balance;
}

[dir="rtl"] .hero-fortune-note {
  font-family: "Segoe Print", "Comic Sans MS", cursive;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section-lede {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
}

.text-link {
  color: var(--jade-dark);
  font-weight: 800;
  white-space: nowrap;
}

.funnel-grid,
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.funnel-grid article,
.solution-grid article,
.news-list article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.step-index {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  font-size: 32px;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.3;
}

.funnel-grid p,
.solution-grid p,
.brand-card p,
.featured-news p,
.timeline p,
.apply-panel p,
.site-footer p {
  color: var(--muted);
  line-height: 1.72;
}

.apply-note {
  margin-top: 24px;
  max-width: 420px;
  color: var(--jade-dark);
  font-family: "Segoe Script", "Bradley Hand ITC", "Comic Sans MS", cursive;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.35;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.brand-card {
  overflow: hidden;
  border: 1px solid rgba(15, 139, 123, 0.14);
  border-radius: 8px;
  background: var(--porcelain);
  box-shadow: 0 18px 44px rgba(16, 45, 54, 0.09);
}

.brand-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e7f3f2;
}

.brand-card > div {
  padding: 22px;
}

.brand-card span,
.news-list span,
.news-tag {
  color: var(--jade-dark);
  font-size: 13px;
  font-weight: 800;
}

dl {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
}

dl div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--gold);
  font-weight: 800;
}

dd {
  margin: 0;
  color: #334149;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: 20px;
}

.featured-news {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(20, 32, 39, 0.18), rgba(20, 32, 39, 0.86)),
    url("assets/news-market.svg") center / cover;
}

.featured-news h3 {
  max-width: 760px;
  font-size: clamp(28px, 3.4vw, 46px);
}

.featured-news h3 a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.featured-news h3 a:hover,
.featured-news h3 a:focus-visible {
  text-decoration: underline;
}

.featured-news p,
.featured-news .news-tag {
  color: rgba(255, 255, 255, 0.82);
}

.featured-news > a {
  align-self: flex-start;
  margin-top: 12px;
  color: #fff;
  font-weight: 800;
}

.news-list {
  display: grid;
  gap: 14px;
}

.news-list article {
  min-height: 0;
}

.news-list time {
  color: var(--muted);
  font-size: 14px;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--jade), var(--jade-dark));
  font-weight: 900;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid rgba(15, 139, 123, 0.28);
}

.timeline li {
  position: relative;
  padding: 30px 24px 0 0;
}

.timeline li::before {
  position: absolute;
  top: -8px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.timeline span {
  color: var(--jade-dark);
  font-weight: 900;
}

.apply-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 44px;
  padding: 46px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 32, 39, 0.94), rgba(7, 95, 86, 0.92)),
    url("assets/china-global-network.svg") right center / 52% no-repeat;
  color: #fff;
  box-shadow: var(--shadow);
}

.apply-panel p,
.apply-panel .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.lead-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  font-weight: 700;
}

.lead-form .hp-field,
.lead-form label:first-child,
.lead-form .lead-field-wide,
.lead-form label:has(textarea),
.lead-form button,
.lead-form-note {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  outline: 0;
}

.lead-form textarea {
  min-height: 104px;
  padding: 12px;
  resize: vertical;
  line-height: 1.5;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.lead-form select option {
  color: var(--ink);
}

.lead-form button {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--cinnabar), #8f2f29);
}

.lead-form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.site-footer {
  padding: 42px 5vw 24px;
  border-top: 1px solid var(--line);
  background: var(--porcelain);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(150px, 0.6fr));
  gap: 30px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 14px;
  max-width: 390px;
}

.footer-logo {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(11, 124, 114, 0.16);
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--jade);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.legal-page {
  min-height: 56vh;
}

.legal-wrap {
  max-width: 900px;
}

.legal-panel {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 44px rgba(16, 45, 54, 0.08);
}

.legal-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--jade), var(--jade-dark));
  box-shadow: 0 18px 38px rgba(20, 32, 39, 0.22);
  font-size: 24px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .brand,
[dir="rtl"] .hero-actions,
[dir="rtl"] .header-tools,
[dir="rtl"] .language-select,
[dir="rtl"] .footer-brand {
  flex-direction: row-reverse;
}

[dir="rtl"] .market-label {
  text-align: right;
}

[dir="rtl"] .signal-card-top {
  left: 22px;
  right: auto;
}

[dir="rtl"] .signal-card-bottom {
  right: 24px;
  left: auto;
}

[dir="rtl"] .timeline li {
  padding: 30px 0 0 24px;
}

[dir="rtl"] .timeline li::before {
  right: 0;
  left: auto;
}

[dir="rtl"] .back-to-top {
  right: auto;
  left: 24px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .header-tools {
    justify-self: end;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-header.nav-open .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 5vw 20px;
    background: rgba(255, 253, 248, 0.97);
    border-bottom: 1px solid var(--line);
  }

  .site-header.nav-open .header-cta {
    display: inline-flex;
    position: absolute;
    top: 230px;
    right: 5vw;
  }

  .site-header.nav-open .nav-links a {
    padding: 14px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .news-layout,
  .apply-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .orbit-map {
    min-height: 340px;
  }

  .market-labels {
    height: 340px;
  }

  .funnel-grid,
  .solution-grid,
  .brand-grid,
  .agent-faq-list,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-label {
    width: min(190px, 36%);
  }

  .hero-fortune-note {
    max-width: 560px;
    font-size: 20px;
  }

  .market-me {
    left: 48px;
  }

  .market-cas {
    right: 48px;
  }

  .market-sam {
    left: 68px;
  }

  .market-sea {
    right: 82px;
  }
}

@media (max-width: 640px) {
  .section,
  .section-band {
    padding: 62px 20px;
  }

  .site-header {
    padding: 0 20px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    display: none;
  }

  .language-select {
    padding: 0 8px;
  }

  .language-select span {
    display: none;
  }

  .language-select select {
    width: 92px;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    font-size: 36px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .trust-row,
  .funnel-grid,
  .solution-grid,
  .brand-grid,
  .agent-faq-list,
  .timeline {
    grid-template-columns: 1fr;
  }

  .section-heading.split {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .market-labels {
    position: static;
    display: grid;
    gap: 12px;
    margin-top: 12px;
  }

  .market-panel,
  .market-label,
  .signal-card {
    position: static;
    width: 100%;
    margin-top: 12px;
    transform: none;
    text-align: start;
  }

  .hero-fortune-note {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.5;
    text-align: start;
  }

  .featured-news,
  .apply-panel {
    padding: 26px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }
}


/* Multilingual brand cards need more flexible text flow. */
.brand-card {
  display: flex;
  flex-direction: column;
}

.brand-card > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-card h3,
.brand-card p,
.brand-card span,
.brand-card dt,
.brand-card dd {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.brand-card h3 {
  margin-bottom: 12px;
  line-height: 1.2;
}

.brand-card p {
  margin-bottom: 0;
}

.brand-card dl {
  margin-top: auto;
  padding-top: 20px;
}

.brand-card dl div {
  grid-template-columns: minmax(58px, max-content) minmax(0, 1fr);
  align-items: start;
}

.brand-card dd {
  line-height: 1.45;
}

.brand-directory-intro {
  padding-bottom: 48px;
}

.brand-directory-section {
  padding-top: 42px;
}

.brand-directory-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.brand-directory-head h2 {
  margin-bottom: 0;
}

.brand-directory-head > p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.brand-directory-grid {
  align-items: stretch;
}

.directory-brand-card[hidden] {
  display: none;
}

.directory-brand-card img {
  padding: 0;
}

.directory-brand-card h3 {
  font-size: 24px;
}

.brand-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.brand-pagination div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.brand-pagination span {
  color: var(--muted);
  font-weight: 900;
  padding: 0 4px;
}

.brand-pagination button {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid rgba(11, 124, 114, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(16, 45, 54, 0.08);
}

.brand-pagination button:hover:not(:disabled),
.brand-pagination button.is-active {
  border-color: rgba(11, 124, 114, 0.55);
  background: var(--jade);
  color: #fff;
}

.brand-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

html[lang="id"] .brand-card dl div,
html[lang="ru"] .brand-card dl div,
html[lang="pt"] .brand-card dl div,
html[lang="es"] .brand-card dl div,
html[lang="ar"] .brand-card dl div {
  grid-template-columns: 1fr;
  gap: 4px;
}

html[lang="id"] .brand-card > div,
html[lang="ru"] .brand-card > div,
html[lang="pt"] .brand-card > div,
html[lang="es"] .brand-card > div,
html[lang="ar"] .brand-card > div {
  padding: 20px;
}

@media (max-width: 980px) {
  .brand-directory-head {
    display: grid;
    align-items: start;
  }

  .brand-directory-head > p {
    white-space: normal;
  }

  .brand-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


@media (max-width: 1180px) {
  html[lang="id"] .brand-grid,
  html[lang="ru"] .brand-grid,
  html[lang="pt"] .brand-grid,
  html[lang="es"] .brand-grid,
  html[lang="ar"] .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html[lang="id"] .brand-grid,
  html[lang="ru"] .brand-grid,
  html[lang="pt"] .brand-grid,
  html[lang="es"] .brand-grid,
  html[lang="ar"] .brand-grid {
    grid-template-columns: 1fr;
  }
}


.news-list h3 a,
.news-page-card h2 a {
  color: inherit;
}

.news-list p {
  margin: 8px 0 12px;
  color: var(--muted);
  line-height: 1.58;
}

.news-page .section-heading p {
  color: var(--muted);
  line-height: 1.72;
}

.news-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.news-page-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
}

.news-page-card span {
  color: var(--jade-dark);
  font-size: 13px;
  font-weight: 800;
}

.news-page-card p {
  color: var(--muted);
  line-height: 1.68;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.article-meta a {
  color: var(--jade-dark);
  font-weight: 800;
}

@media (max-width: 780px) {
  .news-page-grid {
    grid-template-columns: 1fr;
  }
}


.news-list h3 a,
.news-page-card h2 a {
  color: inherit;
}

.news-list p {
  margin: 8px 0 12px;
  color: var(--muted);
  line-height: 1.58;
}

.news-page .section-heading p,
.article-lede,
.article-body p {
  color: var(--muted);
  line-height: 1.72;
}

.news-directory-page .seo-hero {
  padding-bottom: 48px;
}

.news-directory-intro {
  padding-bottom: 46px;
}

.news-directory-section {
  padding-top: 42px;
}

.news-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.news-page-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(15, 139, 123, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(16, 45, 54, 0.09);
  position: relative;
  overflow: hidden;
}

.news-page-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--jade), var(--gold));
  opacity: 0.78;
}

.news-page-card span {
  color: var(--jade-dark);
  font-size: 13px;
  font-weight: 800;
}

.news-page-card h2 {
  margin: 14px 0 12px;
  font-size: 24px;
  line-height: 1.22;
}

.news-page-card p {
  color: var(--muted);
  line-height: 1.68;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: auto 0 0;
  padding-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.article-meta a {
  color: var(--jade-dark);
  font-weight: 800;
}

.article-detail {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.article-detail h1 {
  margin-top: 12px;
  max-width: 780px;
}

.article-detail .news-tag,
.article-detail h1,
.article-detail .article-lede,
.article-detail .article-meta {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.article-body {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 780px) {
  .news-page-grid {
    grid-template-columns: 1fr;
  }
}

/* Professional article page override */
.article-detail {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.article-header {
  max-width: 940px;
  margin: 0 auto 34px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.article-detail h1 {
  max-width: 920px;
  margin-top: 12px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
}

.article-detail .news-tag,
.article-detail h1,
.article-detail .article-lede,
.article-detail .article-meta {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.article-body {
  display: grid;
  gap: 20px;
  max-width: 860px;
  margin: 30px auto 0;
  font-size: 18px;
}

.article-body p {
  margin: 0;
}

.article-body h2 {
  margin: 24px 0 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.28;
  letter-spacing: 0;
}

.article-body ul {
  margin: 0;
  padding-left: 1.35em;
}

.article-body li {
  margin: 8px 0;
}

.article-body strong {
  font-weight: 800;
}

/* B2B lead-generation SEO landing pages */
.seo-page {
  background: linear-gradient(180deg, #fbfdfb 0%, #eef6f4 100%);
}

.seo-hero,
.seo-section,
.seo-intro,
.seo-cta {
  padding: 72px 5vw;
}

.seo-hero,
.seo-intro,
.seo-section,
.seo-cta {
  max-width: 1180px;
  margin: 0 auto;
}

.seo-hero {
  padding-top: 92px;
}

.seo-hero h1 {
  max-width: 900px;
}

.conversion-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.76fr);
  gap: 42px;
  align-items: start;
  max-width: 1240px;
  padding-top: 58px;
  padding-bottom: 54px;
}

.conversion-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 70px);
}

.conversion-hero-copy {
  padding-top: 18px;
}

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

.conversion-proof-row span {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(11, 124, 114, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(16, 45, 54, 0.08);
}

.conversion-proof-row strong,
.conversion-proof-row small {
  display: block;
}

.conversion-proof-row strong {
  margin-bottom: 6px;
  color: var(--jade-dark);
  font-size: 18px;
}

.conversion-proof-row small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.conversion-hero-panel {
  display: grid;
  gap: 14px;
}

.opportunity-visual {
  position: relative;
  overflow: hidden;
  min-height: 214px;
  border: 1px solid rgba(11, 124, 114, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 45, 54, 0.1);
}

.opportunity-visual img {
  width: 100%;
  height: 214px;
  object-fit: cover;
}

.visual-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #fff;
  background: rgba(16, 36, 43, 0.78);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.visual-chip-top {
  top: 14px;
  left: 14px;
}

.visual-chip-bottom {
  right: 14px;
  bottom: 14px;
}

.landing-hero-form {
  background: linear-gradient(135deg, rgba(20, 32, 39, 0.95), rgba(7, 95, 86, 0.94));
  box-shadow: var(--shadow);
}

.conversion-intro {
  padding-bottom: 54px;
}

.visual-opportunities {
  max-width: 1240px;
}

.opportunity-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.opportunity-image-grid article {
  overflow: hidden;
  border: 1px solid rgba(11, 124, 114, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 44px rgba(16, 45, 54, 0.1);
}

.opportunity-image-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #edf5f4;
}

.opportunity-image-grid article > div {
  padding: 22px;
}

.opportunity-image-grid span,
.scenario-grid span {
  color: var(--jade-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.opportunity-image-grid h3,
.scenario-grid h3 {
  margin: 10px 0;
}

.opportunity-image-grid p,
.scenario-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

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

.scenario-grid article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(11, 124, 114, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 246, 244, 0.72)),
    radial-gradient(circle at 0 0, rgba(197, 154, 63, 0.16), transparent 44%);
  box-shadow: 0 18px 44px rgba(16, 45, 54, 0.08);
}

.scenario-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--jade), var(--gold));
}

.final-conversion {
  scroll-margin-top: 108px;
}

.ad-lp-hero {
  scroll-margin-top: 100px;
}

.ad-lp-visual {
  overflow: hidden;
  border: 1px solid rgba(11, 124, 114, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 45, 54, 0.1);
}

.ad-lp-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1.91 / 1;
  object-fit: cover;
}

.ad-lp-fit {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.ad-lp-fit > div:first-child > p {
  margin-top: 0;
  font-size: 18px;
  line-height: 1.7;
}

.mobile-apply-bar {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  display: none;
  min-height: 48px;
  max-width: calc(100vw - 28px);
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: #b83a31;
  box-shadow: 0 16px 32px rgba(79, 20, 16, 0.28);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.seo-section h2 {
  margin-bottom: 34px;
}

.seo-intro {
  padding-top: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.8;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.seo-intro p {
  margin: 0;
}

.seo-intro-list,
.seo-path-panel {
  border: 1px solid rgba(11, 124, 114, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 246, 244, 0.82)),
    radial-gradient(circle at 16% 0%, rgba(190, 139, 45, 0.16), transparent 34%);
  box-shadow: 0 18px 44px rgba(16, 45, 54, 0.08);
  padding: 24px;
}

.seo-intro-list {
  display: grid;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

.seo-intro-list span {
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.seo-intro-list span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(190, 139, 45, 0.14);
}

.seo-card-grid,
.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-card,
.faq-list article,
.seo-link-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(16, 45, 54, 0.08);
}

.seo-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.seo-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--jade), var(--gold));
  opacity: 0.78;
}

.seo-card h3,
.faq-list h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.seo-card p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.seo-link-grid a {
  padding: 18px;
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.seo-link-grid a small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.seo-link-grid a:hover {
  color: var(--jade);
  border-color: rgba(11, 124, 114, 0.35);
  transform: translateY(-2px);
}

.home-seo-path .section-lede {
  max-width: 980px;
  margin-bottom: 26px;
}

.home-seo-path > .section-heading,
.home-seo-path > .section-lede,
.home-seo-path > .seo-card-grid,
.home-seo-path > .seo-link-columns {
  width: 100%;
}

.home-seo-path .section-heading {
  align-items: flex-start;
  margin-bottom: 18px;
}

.home-seo-path h2 {
  max-width: 1120px;
  font-size: clamp(34px, 3.6vw, 52px);
}

.home-seo-path .text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(11, 124, 114, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(16, 45, 54, 0.08);
}

.home-seo-path .seo-card {
  min-height: 132px;
  padding: 24px 26px;
  color: inherit;
  text-decoration: none;
}

.home-seo-path .seo-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-link-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.seo-link-columns h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.home-seo-path .seo-link-grid {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 12px;
}

.home-seo-path .seo-link-grid a {
  min-height: 58px;
  align-items: center;
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.35;
  box-shadow: none;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  padding: 22px;
}

.agent-faq {
  padding-top: 76px;
  padding-bottom: 76px;
}

.agent-faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.agent-faq-list article {
  position: relative;
  overflow: hidden;
  min-height: 190px;
}

.agent-faq-list article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--jade), var(--gold));
}

.agent-faq-list h3,
.agent-faq-list p {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
}

.agent-faq-list h3::before {
  content: "Q";
}

.agent-faq-list p::before {
  content: "A";
}

.agent-faq-list h3::before,
.agent-faq-list p::before {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  color: var(--porcelain);
  background: var(--jade-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.agent-faq-list p::before {
  background: var(--gold);
}

.seo-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 56px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(20, 32, 39, 0.94), rgba(7, 95, 86, 0.92));
  color: #fff;
}

.seo-cta.lead-capture {
  grid-template-columns: minmax(360px, 0.88fr) minmax(460px, 0.72fr);
  align-items: start;
  gap: 46px;
  padding: 72px clamp(42px, 7vw, 118px);
  scroll-margin-top: 108px;
}

.seo-cta.lead-capture > div {
  max-width: 560px;
  padding-top: 4px;
}

.landing-proof-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.landing-proof-list span {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 520px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.landing-proof-list strong {
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.seo-cta.lead-capture .lead-form-light {
  width: 100%;
  max-width: 500px;
  justify-self: end;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.14);
}

.lead-form-light label > span {
  min-height: 22px;
  line-height: 1.25;
}

.lead-form-light input,
.lead-form-light select {
  height: 48px;
}

.lead-form-light textarea {
  min-height: 112px;
}

.seo-cta p,
.seo-cta .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  .seo-section h2 {
    margin-bottom: 24px;
  }

  .seo-card-grid,
  .seo-link-grid,
  .seo-intro,
  .seo-cta {
    grid-template-columns: 1fr;
  }

  .seo-cta.lead-capture {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 28px;
  }

  .conversion-hero,
  .conversion-proof-row,
  .opportunity-image-grid,
  .scenario-grid {
    grid-template-columns: 1fr;
  }

  .conversion-hero {
    gap: 26px;
    padding-top: 48px;
  }

  .conversion-hero-copy {
    padding-top: 0;
  }

  .seo-cta.lead-capture > div,
  .seo-cta.lead-capture .lead-form-light {
    max-width: none;
    justify-self: stretch;
  }

  .landing-proof-list span {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .home-seo-path .seo-card-grid,
  .home-seo-path .seo-link-grid,
  .seo-link-columns {
    grid-template-columns: 1fr;
  }
}

/* Mobile layout polish: keep desktop unchanged, prevent small-screen overlap. */
@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    min-height: 66px;
    padding: 0 14px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    max-width: 142px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-tools {
    min-width: 0;
    gap: 8px;
  }

  .language-select {
    min-height: 40px;
    max-width: 118px;
    padding: 0 7px;
  }

  .language-select select {
    width: 82px;
    min-width: 0;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .site-header.nav-open .nav-links {
    top: 66px;
    padding: 6px 20px 16px;
    box-shadow: 0 18px 40px rgba(16, 45, 54, 0.12);
  }

  .site-header.nav-open .nav-links a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(20, 32, 39, 0.08);
    line-height: 1.25;
  }

  .site-header.nav-open .header-cta {
    display: none;
  }

  .section,
  .section-band {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-heading,
  .section-heading.split,
  .section-lede,
  .home-seo-path .section-lede {
    max-width: 100%;
  }

  .section-heading.split {
    gap: 14px;
  }

  h1 {
    font-size: clamp(32px, 10vw, 40px);
    line-height: 1.08;
  }

  h2,
  .home-seo-path h2,
  .article-detail h1 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.12;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 42px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions a,
  .primary-button,
  .secondary-button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-visual {
    min-height: auto;
  }

  .orbit-map {
    min-height: 260px;
    padding: 18px;
  }

  .orbit-map img {
    width: min(100%, 360px);
  }

  .market-labels {
    height: auto;
    margin-top: 14px;
  }

  .market-label {
    margin-top: 0;
  }

  .trust-row,
  .funnel-grid,
  .solution-grid,
  .brand-grid,
  .news-layout,
  .news-page-grid,
  .agent-faq-list,
  .timeline,
  .seo-card-grid,
  .seo-link-grid,
  .seo-link-columns,
  .seo-intro,
  .seo-cta {
    grid-template-columns: 1fr;
  }

  .funnel-grid article,
  .solution-grid article,
  .news-list article,
  .agent-faq-list article,
  .news-page-card,
  .seo-card,
  .seo-link-grid a {
    min-width: 0;
  }

  .home-seo-path .seo-card {
    min-height: 0;
    padding: 20px;
  }

  .home-seo-path .seo-link-grid {
    grid-template-columns: 1fr;
  }

  .seo-link-columns {
    gap: 22px;
  }

  .featured-news {
    min-height: 330px;
  }

  .brand-directory-head {
    gap: 12px;
  }

  .brand-directory-head > p {
    width: 100%;
  }

  .brand-pagination {
    justify-content: stretch;
  }

  .brand-pagination > button {
    flex: 1 1 120px;
  }

  .brand-pagination div {
    width: 100%;
  }

  .apply-panel {
    gap: 26px;
    padding: 24px;
    background:
      linear-gradient(135deg, rgba(20, 32, 39, 0.94), rgba(7, 95, 86, 0.92)),
      url("assets/china-global-network.svg") right top / 90% no-repeat;
  }

  .lead-form {
    padding: 18px;
  }

  .footer-main {
    gap: 24px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }

  .seo-page {
    background: linear-gradient(180deg, #fbfdfb 0%, #eef6f4 100%);
  }

  .seo-hero,
  .seo-intro,
  .seo-section,
  .seo-cta {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .seo-hero {
    padding-top: 78px;
    padding-bottom: 34px;
  }

  .conversion-hero {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .seo-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.08;
  }

  .seo-hero .hero-lede {
    font-size: 16px;
    line-height: 1.58;
  }

  .seo-intro {
    gap: 16px;
    padding-top: 0;
    padding-bottom: 42px;
    font-size: 16px;
    line-height: 1.65;
  }

  .seo-intro-list,
  .seo-path-panel {
    padding: 18px;
  }

  .seo-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .seo-section h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 9vw, 38px);
  }

  .seo-card-grid,
  .seo-link-grid {
    gap: 12px;
  }

  .seo-card,
  .faq-list article,
  .seo-link-grid a {
    padding: 18px;
  }

  .conversion-proof-row {
    gap: 10px;
    margin-top: 20px;
  }

  .conversion-proof-row span {
    padding: 14px;
  }

  .opportunity-visual {
    min-height: 178px;
  }

  .opportunity-visual img {
    height: 178px;
  }

  .opportunity-image-grid {
    gap: 14px;
  }

  .opportunity-image-grid article > div,
  .scenario-grid article {
    padding: 18px;
  }

  .scenario-grid article {
    min-height: 0;
  }

  .seo-card h3,
  .faq-list h3 {
    font-size: 18px;
  }

  .seo-card p,
  .faq-list p,
  .seo-link-grid a small {
    line-height: 1.55;
  }

  .seo-cta.lead-capture {
    gap: 20px;
    width: calc(100% - 24px);
    margin: 10px 12px 38px;
    padding: 26px 14px;
    border-radius: 8px;
  }

  .seo-cta.lead-capture > div {
    padding-top: 0;
  }

  .seo-cta.lead-capture h2 {
    font-size: clamp(29px, 8.6vw, 36px);
  }

  .landing-proof-list {
    gap: 8px;
    margin-top: 18px;
  }

  .landing-proof-list span {
    min-height: 0;
    padding: 10px 12px;
    font-size: 13px;
  }

  .landing-proof-list strong {
    font-size: 16px;
  }

  .ad-lp-fit {
    grid-template-columns: 1fr;
  }

  .ad-lp-fit > div:first-child > p {
    font-size: 16px;
    line-height: 1.62;
  }

  .ad-lp-visual img {
    aspect-ratio: 1.35 / 1;
  }

  .mobile-apply-bar {
    display: inline-flex;
  }

  .ad-lp .final-conversion {
    margin-bottom: 74px;
  }

  .seo-cta.lead-capture .lead-form-light,
  .lead-form {
    gap: 12px;
    padding: 14px;
  }

  .lead-form label {
    gap: 6px;
  }

  .lead-form-light label > span {
    min-height: 0;
    line-height: 1.3;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea,
  .lead-form-light input,
  .lead-form-light select {
    min-height: 48px;
    height: auto;
    font-size: 16px;
  }

  .lead-form textarea,
  .lead-form-light textarea {
    min-height: 118px;
  }

  .lead-form button {
    min-height: 50px;
    margin-top: 2px;
    font-size: 15px;
  }

  .lead-form-note {
    font-size: 12px;
    text-align: start;
  }

  [dir="rtl"] .site-header {
    grid-template-columns: auto auto minmax(0, 1fr);
  }

  [dir="rtl"] .site-header.nav-open .nav-links {
    right: 0;
    left: 0;
  }
}


.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


.required-mark {
  display: inline-block;
  margin-left: 4px;
  color: #ff4d3d;
  font-weight: 900;
}

[dir="rtl"] .required-mark {
  margin-right: 4px;
  margin-left: 0;
}
