: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 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 label:has(textarea),
.lead-form button {
  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);
}

.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;
}

/* 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;
}

.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);
}

.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 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;
  }
}


.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;
}
