/* CMS / help / news / restrict */
.qs-cms { background: #f8fafd; }
.qs-cms-hero {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, #377dff 0%, #1366ff 100%);
  color: #fff;
}
.qs-cms-hero h1 {
  margin: 0 0 .5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.qs-cms-hero p {
  margin: 0;
  color: rgba(255,255,255,.85);
}
.qs-cms-body { padding: 2.5rem 0 3rem; }
.qs-cms-card {
  background: #fff;
  border: 1px solid #e7eaf3;
  border-radius: .75rem;
  padding: 1.75rem;
}
.qs-cms-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #8c98a4;
}
.qs-help {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
}
.qs-help-side-title,
.qs-help-main-title {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8c98a4;
  margin-bottom: 1rem;
}
.qs-help-side .nav-link {
  color: #677788;
  border-radius: .5rem;
  padding: .55rem .85rem;
}
.qs-help-side .nav-link.active,
.qs-help-side .nav-link:hover {
  background: rgba(55,125,255,.08);
  color: #377dff;
}
.qs-help-link {
  display: block;
  padding: .85rem 1rem;
  border: 1px solid #e7eaf3;
  border-radius: .5rem;
  margin-bottom: .75rem;
  color: #1e2022;
  text-decoration: none;
}
.qs-help-link:hover {
  border-color: #377dff;
  color: #377dff;
  text-decoration: none;
}
.qs-help-cta {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: .75rem;
  background: #377dff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.qs-help-cta h2 { color: #fff; font-size: 1.25rem; margin: 0 0 .35rem; }
.qs-help-cta p { margin: 0; color: rgba(255,255,255,.85); }
.qs-news-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid #e7eaf3;
  border-radius: .75rem;
  margin-bottom: .85rem;
  color: inherit;
  text-decoration: none;
  background: #fff;
}
.qs-news-item:hover {
  border-color: #377dff;
  text-decoration: none;
  color: inherit;
}
.qs-news-date {
  min-width: 72px;
  text-align: center;
  color: #377dff;
}
.qs-news-date .qs-day { display: block; font-size: 1.75rem; font-weight: 700; line-height: 1; }
.qs-news-date .qs-ym { font-size: .8125rem; color: #8c98a4; }
.qs-news-body h3 { margin: 0 0 .35rem; font-size: 1.0625rem; }
.qs-news-body p { margin: 0; color: #677788; }
.qs-pagination { margin-top: 1.5rem; }
.qs-article-back {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: 1rem;
  color: #377dff;
}
.qs-article-head h1 { font-size: 1.75rem; margin-bottom: .75rem; }
.qs-meta { color: #8c98a4; font-size: .875rem; margin-bottom: 1.25rem; }
.qs-article-body { line-height: 1.8; color: #677788; }
.qs-legal h3 { font-size: 1.125rem; margin: 1.75rem 0 .75rem; }
.qs-legal h3:first-child { margin-top: 0; }
.qs-legal p, .qs-legal li { color: #677788; line-height: 1.8; }
@media (max-width: 767.98px) {
  .qs-help { grid-template-columns: 1fr; }
  .qs-help-cta { flex-direction: column; align-items: flex-start; }
  .qs-cms-hero h1 { font-size: 1.5rem; }
}

/* Terms */
  html { scroll-behavior: smooth; }
  .terms-page {
    --terms-primary: #377dff;
    --terms-dark: #1e2022;
    --terms-body: #677788;
    --terms-muted: #8c98a4;
    --terms-border: #e7eaf3;
    background-color: #f8fafd;
  }
  
  .terms-hero {
    padding: 2rem 0;
    background: linear-gradient(135deg, #377dff 0%, #1366ff 100%);
  }
  .terms-hero-title {
    margin-bottom: .75rem;
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
  }
  .terms-hero-subtitle {
    max-width: 34rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, .85);
  }
  .terms-body { padding: 2rem 0; }
  
  .terms-toc {
    margin-bottom: 1.5rem;
    padding: 1.5rem 1.25rem;
    background: #fff;
    border: 1px solid var(--terms-border);
    border-radius: .75rem;
  }
  .terms-toc-title {
    margin: 0 0 1rem;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--terms-muted);
  }
  .terms-toc-list { margin: 0; padding: 0; list-style: none; }
  .terms-toc-list a {
    display: block;
    padding: .4rem .75rem;
    border-left: 2px solid transparent;
    border-radius: 0 .25rem .25rem 0;
    font-size: .875rem;
    color: var(--terms-body);
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
  }
  .terms-toc-list a:hover {
    background: rgba(55, 125, 255, .06);
    color: var(--terms-primary);
    text-decoration: none;
  }
  .terms-toc-list a.is-active {
    background: rgba(55, 125, 255, .08);
    border-left-color: var(--terms-primary);
    color: var(--terms-primary);
    font-weight: 600;
  }
  
  .terms-card {
    padding: 2.5rem;
    background: #fff;
    border: 1px solid var(--terms-border);
    border-radius: .75rem;
  }
  .terms-section {
    scroll-margin-top: calc(var(--qs-header-height, 60px) + 16px);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--terms-border);
  }
  .terms-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  
  .terms-section-title {
    position: relative;
    margin-bottom: 1.25rem;
    padding-left: .875rem;
    font-size: 1.1875rem;
    font-weight: 600;
    color: var(--terms-dark);
  }
  .terms-section-title::before {
    content: "";
    position: absolute;
    top: .2em;
    bottom: .2em;
    left: 0;
    width: 4px;
    border-radius: 2px;
    background: var(--terms-primary);
  }
  .terms-section ol { margin: 0; padding-left: 1.25rem; }
  .terms-section ol li,
  .terms-section p {
    margin-bottom: .75rem;
    line-height: 1.8;
    color: var(--terms-body);
  }
  .terms-section ol li:last-child,
  .terms-section p:last-child { margin-bottom: 0; }
  
  .terms-section .terms-note {
    margin-top: 1rem;
    padding: .75rem 1rem;
    border-left: 3px solid #ffc107;
    border-radius: 0 .375rem .375rem 0;
    background: #fffdf5;
    font-size: .875rem;
    color: #8a6d3b;
  }
  .terms-copyright {
    margin: 2rem 0 0;
    text-align: center;
    font-size: .875rem;
    color: var(--terms-muted);
  }
  @media (min-width: 992px) {
    .terms-toc {
      position: sticky;
      top: calc(var(--qs-header-height, 60px) + 12px);
      margin-bottom: 0;
      max-height: calc(100vh - var(--qs-header-height, 60px) - 24px);
      overflow-y: auto;
    }
  }
  @media (max-width: 991.98px) {
    .terms-hero-title { font-size: 1.75rem; }
    .terms-card { padding: 1.5rem; }
  }
  @media (max-width: 575.98px) {
    .terms-card { padding: 1.25rem; }
    .terms-section-title { font-size: 1.0625rem; }
  }

@media (max-width: 767.98px) {
  .terms-hero { padding: 2rem 0; }
  .terms-body { padding: 2rem 0; }
}
@media (min-width: 768px) {
  .terms-hero { padding: 3rem 0; }
  .terms-body { padding: 3rem 0; }
}

/* Subsite */
/* Independent site landing — homepage-scale hero, not agent-card layout */

.ss-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  padding: .28rem .75rem;
  border-radius: 999px;
  background: rgba(55, 125, 255, .1);
  color: #377dff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.ss-hero {
  padding-top: 0;
}
.ss-hero-inner {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .ss-hero-inner {
    padding-top: 3.25rem;
    padding-bottom: 3rem;
  }
}
.ss-hero h1 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.ss-hero .lead {
  max-width: 34rem;
  color: #677788;
}
.ss-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
}
.ss-hero-actions .btn {
  min-width: 9.5rem;
  padding: .85rem 1.4rem;
  font-weight: 600;
}
.ss-stage {
  width: 100%;
  max-width: 34rem;
  margin-left: auto;
  padding: 10px;
  background: linear-gradient(180deg, #3a3f4a 0%, #1d2128 100%);
  border: 1px solid #11141a;
  border-radius: 1rem;
  box-shadow: 0 1.25rem 2.5rem rgba(31, 45, 61, .18);
}
.ss-stage-screen {
  overflow: hidden;
  background: #fff;
  border-radius: .7rem;
}
.ss-stage-bar {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem .8rem;
  background: #eceff4;
  border-bottom: 1px solid #e1e6ee;
}
.ss-stage-dot {
  width: .52rem;
  height: .52rem;
  border-radius: 50%;
  background: #dbe3ee;
}
.ss-stage-dot:nth-child(1) { background: #ff5f57; }
.ss-stage-dot:nth-child(2) { background: #febc2e; }
.ss-stage-dot:nth-child(3) { background: #28c840; }
.ss-stage-url {
  flex: 1;
  margin-left: .35rem;
  padding: .18rem .65rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dfe4ec;
  color: #677788;
  font-size: .72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ss-stage-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #eef2f7;
  flex-wrap: nowrap;
}
.ss-stage-brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-width: 0;
}
.ss-stage-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: .5rem;
  background: linear-gradient(135deg, #377dff, #1f4fd8);
  color: #fff;
  font-size: .8rem;
}
.ss-stage-brand strong {
  display: block;
  overflow: hidden;
  color: #1e2022;
  font-size: .92rem;
  line-height: 1.2;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ss-stage-menu {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: .75rem;
  color: #8c98a4;
  font-size: .78rem;
  white-space: nowrap;
}
.ss-stage-menu b { color: #377dff; font-weight: 700; }
.ss-stage-banner {
  margin: 1rem 1.15rem .85rem;
  padding: 1rem 1.1rem;
  border-radius: .7rem;
  color: #fff;
  background: linear-gradient(135deg, #377dff 0%, #1f4fd8 100%);
}
.ss-stage-banner strong {
  display: block;
  margin-bottom: .3rem;
  font-size: 1rem;
}
.ss-stage-banner span {
  display: block;
  opacity: .88;
  font-size: .8rem;
  line-height: 1.5;
}
.ss-stage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  padding: 0 1.15rem 1.15rem;
}
.ss-stage-cell {
  padding: .75rem .8rem;
  border-radius: .55rem;
  background: #f5f7fb;
  border: 1px solid #eef2f7;
}
.ss-stage-cell small {
  display: block;
  color: #8c98a4;
  font-size: .7rem;
  margin-bottom: .2rem;
}
.ss-stage-cell b {
  color: #1e2022;
  font-size: .86rem;
  font-weight: 700;
}
.ss-stage-on {
  color: #16a34a !important;
}
.ss-stats {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.ss-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: #eef2f7;
  border: 1px solid #e7eaf3;
  border-radius: 1rem;
  box-shadow: 0 1.25rem 2.5rem rgba(31, 45, 61, .08);
}
.ss-stats-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1.5rem 1.25rem;
  background: #fff;
  text-align: left;
}
.ss-stats-ico {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: .55rem;
  font-size: .95rem;
}
.ss-stats-ico--brand {
  background: rgba(55, 125, 255, .12);
  color: #377dff;
}
.ss-stats-ico--profit {
  background: rgba(40, 167, 69, .12);
  color: #28a745;
}
.ss-stats-ico--lock {
  background: rgba(23, 162, 184, .12);
  color: #17a2b8;
}
.ss-stats-ico--go {
  background: rgba(255, 193, 7, .16);
  color: #e0a800;
}
.ss-stats-item strong {
  display: block;
  margin-bottom: .25rem;
  color: #1e2022;
  font-size: 1.05rem;
}
.ss-stats-item > div span {
  display: block;
  color: #8c98a4;
  font-size: .88rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .ss-stats-row { grid-template-columns: repeat(4, 1fr); }
  .ss-stats-item { padding: 1.75rem 1.25rem; }
  .ss-stats-item strong { font-size: 1.125rem; }
}

.ss-rights {
  padding-top: 2rem;
  padding-bottom: 1rem;
  scroll-margin-top: 4.5rem;
}
@media (min-width: 768px) {
  .ss-rights {
    padding-top: 3.5rem;
    padding-bottom: 1.5rem;
  }
}
.ss-rights-head {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.ss-block {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  height: 100%;
  padding: 2rem 1.75rem;
  background: #fff;
}
.ss-block-num {
  flex: 0 0 auto;
  color: #d7e3ff;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
}
.ss-block h3 {
  margin: 0 0 .55rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e2022;
}
.ss-block p {
  margin: 0;
  color: #677788;
  line-height: 1.8;
}
.ss-block + .ss-block {
  border-top: 1px solid #eef2f7;
}
@media (min-width: 992px) {
  .ss-block + .ss-block { border-top: 0; border-left: 1px solid #eef2f7; }
}

.ss-flow {
  background: #f8fafd;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .ss-flow {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.ss-flow-list {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .ss-flow-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}
.ss-flow-item {
  position: relative;
  text-align: center;
  padding: 0 1.25rem;
}
.ss-flow-item::after {
  content: "";
  display: none;
}
@media (min-width: 768px) {
  .ss-flow-item:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    top: 1.15rem;
    left: calc(50% + 1.6rem);
    right: calc(-50% + 1.6rem);
    height: 1px;
    background: #d7e3ff;
  }
}
.ss-flow-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #377dff;
  color: #fff;
  font-weight: 700;
}
.ss-flow-item h3 {
  margin-bottom: .5rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.ss-flow-item p {
  margin: 0 auto;
  max-width: 16rem;
  color: #8c98a4;
  line-height: 1.7;
}

.ss-billboard {
  position: relative;
  overflow: hidden;
  padding: 3rem 1.5rem;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.14), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(55,125,255,.45), transparent 30%),
    linear-gradient(135deg, #12224f 0%, #1f4fd8 55%, #163a96 100%);
}
@media (min-width: 768px) {
  .ss-billboard { padding: 4.5rem 2rem; }
}
.ss-billboard h2 {
  margin: 0 0 .75rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
.ss-billboard p {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  line-height: 1.7;
}
.ss-billboard .btn {
  min-width: 11rem;
  padding: .95rem 1.6rem;
  background: #fff;
  border: 0;
  color: #1f4fd8;
  font-weight: 700;
}
.ss-billboard .btn:hover {
  background: #f4f7ff;
  color: #1f4fd8;
}

@media (max-width: 767.98px) {
  .ss-hero-inner {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .ss-stage {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 7px;
    border-radius: .85rem;
  }
  .ss-stage-screen { border-radius: .5rem; }
  .ss-stage-bar { padding: .4rem .65rem; }
  .ss-stage-menu { display: none; }
  .ss-stage-nav { padding: .6rem .75rem; }
  .ss-stage-banner {
    margin: .6rem .75rem .45rem;
    padding: .65rem .75rem;
  }
  .ss-stage-banner strong { font-size: .88rem; margin-bottom: .1rem; }
  .ss-stage-banner span { display: none; }
  .ss-stage-grid {
    grid-template-columns: 1fr 1fr;
    gap: .4rem;
    padding: 0 .75rem .75rem;
  }
  .ss-stage-cell { padding: .5rem .55rem; }
  .ss-stage-cell small { font-size: .62rem; }
  .ss-stage-cell b { font-size: .78rem; }
  .ss-block {
    padding: 1.5rem 1.15rem;
  }
  .ss-billboard h2 { font-size: 1.55rem; }
}

/* Agent */
  
  .agent-tier {
    --tier: #377dff;
    --tier-soft: rgba(55, 125, 255, .14);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #e7eaf3;
    border-radius: .75rem;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .agent-tier::before { display: none; }
  .agent-tier:hover {
    transform: translateY(-6px);
    border-color: var(--tier);
    box-shadow: 0 1rem 2.5rem rgba(31, 45, 61, .12);
  }
  .agent-tier--vip1 { --tier: #f0ad4e; --tier-soft: rgba(240, 173, 78, .14); }
  .agent-tier--vip2 { --tier: #17a2b8; --tier-soft: rgba(23, 162, 184, .14); }
  .agent-tier--vip3 { --tier: #377dff; --tier-soft: rgba(55, 125, 255, .14); }
  .agent-tier--vip4 { --tier: #dc3545; --tier-soft: rgba(220, 53, 69, .14); }
  .agent-tier--featured {
    border-color: var(--tier);
    box-shadow: 0 .75rem 2rem rgba(55, 125, 255, .16);
  }
  .agent-tier-ribbon {
    position: absolute;
    top: .9rem;
    right: -2.5rem;
    width: 9rem;
    padding: .2rem 0;
    background: var(--tier);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    text-align: center;
    transform: rotate(45deg);
  }
  .agent-tier-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 2rem 1.5rem;
    text-align: center;
  }
  .agent-tier-level {
    align-self: center;
    padding: .25rem .9rem;
    border-radius: 50rem;
    background: var(--tier-soft);
    color: var(--tier);
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .06em;
  }
  .agent-tier-name {
    margin: .875rem 0 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e2022;
  }
  .agent-tier-price {
    margin: 1.25rem 0 .5rem;
    line-height: 1;
    color: var(--tier);
  }
  .agent-tier-discount { font-size: 3rem; font-weight: 700; }
  .agent-tier-unit { margin-left: .125rem; font-size: 1.125rem; font-weight: 600; }
  .agent-tier-desc {
    margin-bottom: 1.5rem;
    font-size: .875rem;
    color: #8c98a4;
  }
  .agent-tier-features {
    flex: 1 1 auto;
    margin: 0 0 1.75rem;
    padding: 1.25rem 0 0;
    border-top: 1px dashed #e7eaf3;
    list-style: none;
    text-align: left;
  }
  .agent-tier-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: .75rem;
    font-size: .875rem;
    color: #677788;
  }
  .agent-tier-features li:last-child { margin-bottom: 0; }
  .agent-tier-features i {
    flex: 0 0 auto;
    margin: .3em .5rem 0 0;
    font-size: .75rem;
    color: var(--tier);
  }
  .agent-tier-btn {
    display: block;
    padding: .75rem 1rem;
    border-radius: .5rem;
    background: var(--tier);
    color: #fff !important;
    font-weight: 600;
    text-align: center;
    text-decoration: none !important;
    transition: opacity .3s ease, transform .3s ease;
  }
  .agent-tier-btn:hover { opacity: .88; transform: translateY(-2px); }
  @media (max-width: 991.98px) {
    .agent-tier-body { padding: 1.75rem 1.25rem; }
    .agent-tier-discount { font-size: 2.5rem; }
  }
  
  .hover-shadow-lg:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
  }
  
  .agent-live-check {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0 !important;
    flex: 0 0 1.75rem;
    border-radius: 50% !important;
    line-height: 1;
    box-sizing: border-box;
  }
  .agent-live-check i {
    margin: 0;
    padding: 0;
    line-height: 1;
    width: 1em;
    text-align: center;
    font-size: .75rem;
  }

  .icon-shape {
    height: 3rem;
    width: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
  }
  .icon-soft-primary { background: rgba(102, 126, 234, .1); }
  .icon-soft-success { background: rgba(40, 167, 69, .1); }
  .icon-soft-info { background: rgba(23, 162, 184, .1); }
  .icon-soft-warning { background: rgba(255, 193, 7, .1); }
  html { scroll-behavior: smooth; }
  
  .agent-contact {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 2rem;
    padding: 2.25rem 2.5rem;
    margin: 0 auto 2rem;
    color: #fff;
    background:
      radial-gradient(circle at 12% 20%, rgba(255,255,255,.16), transparent 28%),
      radial-gradient(circle at 88% 80%, rgba(7,193,96,.22), transparent 32%),
      linear-gradient(135deg, #1f4fd8 0%, #377dff 48%, #2558d6 100%);
    border-radius: 1rem;
    box-shadow: 0 1.25rem 2.75rem rgba(31, 79, 216, .28);
  }
  .agent-contact::before {
    content: "";
    position: absolute;
    right: -4rem;
    top: -4rem;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    pointer-events: none;
  }
  .agent-contact::after {
    content: "";
    position: absolute;
    left: -3rem;
    bottom: -5rem;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    pointer-events: none;
  }
  .agent-contact-copy,
  .agent-contact-action {
    position: relative;
    z-index: 1;
  }
  .agent-contact-eyebrow {
    display: inline-block;
    margin-bottom: .65rem;
    padding: .2rem .7rem;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.92);
    font-size: .75rem;
    letter-spacing: .08em;
  }
  .agent-contact-title {
    margin: 0 0 .45rem;
    color: #fff;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.25;
  }
  .agent-contact-desc {
    margin: 0;
    max-width: 28rem;
    color: rgba(255,255,255,.82);
    font-size: .98rem;
    line-height: 1.6;
  }
  .agent-contact-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .55rem;
    min-width: 16rem;
  }
  .agent-contact-wechat {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .9rem 1.2rem;
    background: #fff;
    border-radius: .75rem;
    box-shadow: 0 .75rem 1.75rem rgba(0,0,0,.16);
    color: #1e2022;
  }
  .agent-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: .65rem;
    background: rgba(7,193,96,.12);
    color: #07c160;
    font-size: 1.45rem;
  }
  .agent-contact-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
  }
  .agent-contact-meta span {
    color: #8c98a4;
    font-size: .78rem;
  }
  .agent-contact-meta strong {
    margin-top: .2rem;
    color: #1e2022;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: .03em;
  }
  @media (max-width: 767.98px) {
    .agent-contact {
      padding: 1.75rem 1.35rem;
      text-align: center;
      justify-content: center;
    }
    .agent-contact-copy,
    .agent-contact-action,
    .agent-contact-meta {
      align-items: center;
      width: 100%;
    }
    .agent-contact-desc {
      margin-left: auto;
      margin-right: auto;
    }
    .agent-contact-wechat {
      width: 100%;
      justify-content: center;
    }
    .agent-contact-title {
      font-size: 1.4rem;
    }
  }

/* Agent EN size tweaks */
html[lang="en"] .agent-tier-discount { font-size: 2.75rem; font-weight: 700; }
html[lang="en"] .agent-tier-unit { margin-left: 0; font-size: 1.125rem; font-weight: 600; }
@media (max-width: 991.98px) {
  html[lang="en"] .agent-tier-discount { font-size: 2.25rem; }
}
