:root {
  --ink: #101827;
  --muted: #617087;
  --line: #e3e9f1;
  --surface: #ffffff;
  --soft: #f5f8fb;
  --panel: #eef5fb;
  --blue: #2c49d8;
  --navy: #112b55;
  --teal: #0f9b9b;
  --amber: #f28c28;
  --shadow: 0 20px 50px rgba(22, 39, 68, 0.12);
  --small-shadow: 0 12px 30px rgba(22, 39, 68, 0.08);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
}

#app:focus {
  outline: none;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 71px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-mark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  width: 66px;
  height: 42px;
  aspect-ratio: 584 / 370;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #2d3b50;
  font-size: 15px;
}

.main-menu a {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-menu a.is-active {
  color: var(--blue);
  border-color: var(--amber);
}

.language-switch,
.ghost-button,
.primary-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.language-switch,
.ghost-button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 10px 14px;
}

.primary-button {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  padding: 12px 18px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(44, 73, 216, 0.24);
}

.ghost-button:hover,
.language-switch:hover {
  border-color: var(--blue);
}

.primary-button:hover {
  background: #223bb9;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(16, 24, 39, 0.88), rgba(16, 24, 39, 0.55), rgba(16, 24, 39, 0.2)),
    linear-gradient(135deg, #15213d 0%, #253c74 40%, #0f9b9b 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.42;
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  padding: 84px 0 142px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #a7f3ff;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
}

.hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero .ghost-button {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.report-device {
  width: min(560px, 100%);
  aspect-ratio: 560 / 454;
  overflow: hidden;
  border: 16px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: #e9f2fb;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.report-device-top {
  height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  background: #112b55;
}

.report-device-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #89f0ff;
}

.report-device-body {
  position: relative;
  overflow: hidden;
  height: 360px;
}

.report-device-body::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 42%;
  height: 34%;
  border-radius: 12px 0 0 0;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}

.report-preview {
  overflow: hidden;
  width: 100%;
  height: 100%;
  aspect-ratio: 1360 / 1476;
  background: #fff;
}

.report-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.floating-note {
  position: absolute;
  right: 0;
  bottom: 38px;
  z-index: 3;
  width: 180px;
  padding: 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  color: var(--blue);
  font-size: 22px;
}

.floating-note span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.stats-strip {
  position: relative;
  z-index: 2;
  width: min(960px, calc(100% - 40px));
  margin: -52px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 22px;
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
}

.stat-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: #f1f6fb;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(36px, 4.8vw, 54px);
  line-height: 1.08;
}

.vip-grid,
.share-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vip-card,
.share-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--small-shadow);
}

.vip-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.vip-card:hover,
.vip-card:focus {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.vip-card-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  margin-bottom: 22px;
}

.vip-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
}

.vip-card:nth-child(1) .vip-icon {
  background: var(--blue);
}

.vip-card:nth-child(2) .vip-icon {
  background: var(--teal);
}

.vip-card:nth-child(3) .vip-icon {
  background: var(--amber);
}

.han-icon {
  display: block;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.vip-card h3,
.share-card h3,
.testimonial-card h3 {
  margin: 0;
  font-size: 24px;
}

.vip-card h3 {
  min-height: 2.5em;
  overflow: hidden;
  display: -webkit-box;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.vip-card p,
.share-card p,
.testimonial-card p,
.process-item p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag-row span {
  border-radius: 99px;
  background: var(--panel);
  color: var(--navy);
  padding: 7px 10px;
  font-size: 13px;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.report-type-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.report-type-grid .icon-tile {
  min-height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.report-type-grid .tile-icon {
  width: 52px;
  height: 52px;
}

.icon-tile {
  --tile-color: var(--blue);
  --tile-bg: #edf2ff;
  --tile-shadow: rgba(44, 73, 216, 0.14);
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.report-type-grid .icon-tile:hover {
  transform: translateY(-4px);
  border-color: var(--tile-color);
  background: #f8fbff;
  box-shadow: 0 14px 34px var(--tile-shadow);
}

.report-type-grid .icon-tile:hover .tile-icon {
  color: #fff;
  background: var(--tile-color);
}

.tile-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--tile-color);
  background: var(--tile-bg);
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.icon-tile:nth-child(4n + 2) {
  --tile-color: var(--teal);
  --tile-bg: #e9fbf8;
  --tile-shadow: rgba(15, 155, 155, 0.14);
}

.icon-tile:nth-child(4n + 3) {
  --tile-color: var(--amber);
  --tile-bg: #fff4e8;
  --tile-shadow: rgba(242, 140, 40, 0.14);
}

.icon-tile:nth-child(4n) {
  --tile-color: #8b5cf6;
  --tile-bg: #f3edff;
  --tile-shadow: rgba(139, 92, 246, 0.16);
}

.icon-tile span {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 28px;
  align-items: center;
  text-align: center;
}

.broker-logo {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 18px 24px;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(22, 39, 68, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.broker-logo:hover,
.broker-logo:focus {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(22, 39, 68, 0.16);
}

.broker-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.broker-logo:hover img,
.broker-logo:focus img {
  transform: scale(1.08);
}

.feature-band {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.feature-item {
  min-height: 146px;
  text-align: left;
  padding: 22px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(22, 39, 68, 0.07);
}

.feature-card-top,
.seo-card-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
  margin-bottom: 14px;
}

.feature-item .tile-icon,
.seo-card .tile-icon {
  width: 48px;
  height: 48px;
  color: #fff;
  background: linear-gradient(135deg, #2c49d8, #8b5cf6);
}

.feature-item:nth-child(2) .tile-icon,
.seo-card:nth-child(2) .tile-icon {
  background: linear-gradient(135deg, #0f9b9b, #30c7a0);
}

.feature-item:nth-child(3) .tile-icon,
.seo-card:nth-child(3) .tile-icon {
  background: linear-gradient(135deg, #f28c28, #ffb15a);
}

.feature-item:nth-child(4) .tile-icon,
.seo-card:nth-child(4) .tile-icon {
  background: linear-gradient(135deg, #20a56b, #37d482);
}

.feature-item:nth-child(5) .tile-icon {
  background: linear-gradient(135deg, #6070e8, #2c49d8);
}

.feature-item strong {
  display: -webkit-box;
  min-height: 2.7em;
  overflow: hidden;
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.feature-item span {
  display: block;
  margin-top: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.seo-card {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--small-shadow);
}

.seo-card h3 {
  margin: 0;
  min-height: 2.5em;
  overflow: hidden;
  font-size: 22px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.seo-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.process-item {
  min-height: 286px;
  padding: 32px 22px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--small-shadow);
}

.process-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
}

.process-item:nth-child(2) .process-icon {
  color: var(--teal);
  background: #e5fbf7;
}

.process-item:nth-child(3) .process-icon {
  color: var(--amber);
  background: #fff1e1;
}

.process-item:nth-child(4) .process-icon {
  color: #8b5cf6;
  background: #f3edff;
}

.process-item h3 {
  margin: 0;
  font-size: 22px;
}

.share-card {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  appearance: none;
  text-align: left;
  border: 1px solid rgba(44, 73, 216, 0.18);
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  color: inherit;
  background: #fff;
  box-shadow: 0 18px 48px rgba(22, 39, 68, 0.08);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

a.share-card {
  text-decoration: none;
}

.share-card:hover {
  transform: translateY(-5px);
  border-color: rgba(44, 73, 216, 0.45);
  box-shadow: var(--shadow);
}

.share-top {
  min-height: 150px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.share-top span {
  display: inline-flex;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
  padding: 9px 13px;
  font-size: 15px;
  font-weight: 800;
}

.share-top svg {
  width: 34px;
  height: 34px;
}

.share-card:nth-child(2) .share-top {
  background: linear-gradient(135deg, #0c777c, var(--teal));
}

.share-card:nth-child(3) .share-top {
  background: linear-gradient(135deg, #aa5720, var(--amber));
}

.share-card h3,
.share-card p {
  padding: 0 28px;
}

.share-card h3 {
  margin-top: 28px;
  font-size: 24px;
  line-height: 1.25;
}

.share-card p {
  margin-bottom: 28px;
  font-size: 16px;
}

.share-card .share-type {
  margin: 12px 0 -2px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
}

.home-report-card .share-report-header {
  min-height: 142px;
  padding: 26px 28px;
}

.home-report-card .report-card-broker {
  max-width: 190px;
  font-size: 22px;
}

.home-report-card .report-card-date-badge {
  padding: 7px 14px;
  font-size: 15px;
}

.home-report-card .share-report-body {
  min-height: 132px;
  padding: 28px 28px 0;
}

.home-report-card .report-card-title {
  min-height: 2.5em;
  margin: 0;
  padding: 0;
  font-size: 24px;
  line-height: 1.25;
}

.home-report-card .share-report-desc {
  display: -webkit-box;
  min-height: 3.4em;
  overflow: hidden;
  margin: 12px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-report-card .share-report-meta {
  margin-top: 24px;
  padding: 18px 28px;
  font-size: 15px;
}

.home-report-card .report-card-lang,
.home-report-card .report-card-pages {
  padding: 0;
}

.testimonial-card {
  position: relative;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  box-shadow: 0 14px 34px rgba(22, 39, 68, 0.06);
}

.testimonial-card::after {
  content: "“";
  position: absolute;
  right: 22px;
  top: 10px;
  color: rgba(16, 24, 39, 0.9);
  font-size: 62px;
  font-weight: 900;
  line-height: 1;
}

.testimonial-card blockquote {
  margin: 0;
  padding-right: 44px;
  color: #273850;
  line-height: 1.65;
  flex: 1;
}

.testimonial-card h3 {
  margin: 18px 0 0;
  color: var(--blue);
  font-size: 17px;
}

.testimonial-card p {
  margin-top: 3px;
  font-size: 14px;
}

.contact-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 24, 39, 0.86), rgba(16, 24, 39, 0.52), rgba(16, 24, 39, 0.16)),
    linear-gradient(135deg, #15213d 0%, #253c74 42%, #0f9b9b 100%);
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.26;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}

.contact-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #0e1525);
  pointer-events: none;
}

.contact-page-shell {
  position: relative;
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 52px;
}

.contact-page-copy {
  max-width: 700px;
}

.contact-page-copy .eyebrow {
  margin-bottom: 14px;
  color: #9ee8ef;
}

.contact-band .eyebrow,
.contact-band p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-band h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
}

.contact-page-lead {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.7;
}

.contact-page-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 40px rgba(158, 232, 239, 0.06), 0 22px 52px rgba(9, 18, 35, 0.25);
  backdrop-filter: blur(12px);
}

.contact-panel-title {
  margin: 22px 0 0;
  color: #9ee8ef;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-intro-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  text-align: left;
}

.contact-intro-item {
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-intro-item h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.contact-profile-card {
  width: min(620px, 100%);
  margin: 30px 0 0;
  padding: 26px 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(9, 18, 35, 0.16);
  text-align: left;
}

.contact-profile-tag {
  margin: 0;
  color: #9ee8ef;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-profile-copy {
  max-width: 100%;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.8;
}

.contact-method-grid {
  width: 100%;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-method-grid.contact-page-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-method,
.contact-link {
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.contact-method {
  position: relative;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(44, 73, 216, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  text-align: left;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-method:hover {
  transform: translateY(-4px);
  border-color: rgba(44, 73, 216, 0.3);
  box-shadow: 0 16px 32px rgba(12, 33, 74, 0.12);
}

.contact-method-icon,
.contact-link-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
}

.contact-method-icon {
  color: #fff;
  background: linear-gradient(135deg, #2c49d8, #6070e8);
}

.contact-link-icon {
  color: #9ee8ef;
}

.contact-method span:last-child,
.contact-link span:last-child {
  overflow-wrap: anywhere;
  line-height: 1.45;
  white-space: pre-line;
}

.contact-page-panel .contact-method span:last-child {
  font-size: 16px;
}

/* Dark glassmorphism for hero contact cards */
.contact-page-panel .contact-method {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.contact-page-panel .contact-method:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(158, 232, 239, 0.4);
  box-shadow: 0 0 20px rgba(158, 232, 239, 0.08), 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-page-panel .contact-method-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

/* Brand-colored icon backgrounds */
.contact-page-grid .contact-method:nth-child(1) .contact-method-icon {
  background: linear-gradient(135deg, #3b6cf5, #6b8df8);
}
.contact-page-grid .contact-method:nth-child(2) .contact-method-icon {
  background: linear-gradient(135deg, #e8a317, #f5c44e);
}
.contact-page-grid .contact-method:nth-child(3) .contact-method-icon {
  background: linear-gradient(135deg, #20a56b, #37d482);
}
.contact-page-grid .contact-method:nth-child(4) .contact-method-icon {
  background: linear-gradient(135deg, #07c160, #3dd866);
}

.wechat-link {
  position: relative;
}

.wechat-qr {
  position: absolute;
  right: 12px;
  bottom: calc(100% + 12px);
  z-index: 5;
  width: 108px;
  height: 108px;
  padding: 6px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: scale(0.82) translateY(8px);
  transform-origin: bottom right;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.wechat-qr img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.wechat-link:hover .wechat-qr,
.wechat-link:focus-within .wechat-qr,
.wechat-link:focus .wechat-qr {
  opacity: 1;
  transform: scale(1.35) translateY(0);
}

.contact-page-grid .wechat-link .wechat-qr {
  left: 50%;
  right: auto;
  transform: translateX(-50%) scale(1.12) translateY(8px);
  transform-origin: bottom center;
}

.contact-page-grid .wechat-link:hover .wechat-qr,
.contact-page-grid .wechat-link:focus-within .wechat-qr,
.contact-page-grid .wechat-link:focus .wechat-qr {
  opacity: 1;
  transform: translateX(-50%) scale(1.35) translateY(0);
}

.site-footer {
  color: #fff;
  background: linear-gradient(140deg, #101827 0%, #112b55 45%, #0e4550 72%, #0c3a42 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-body {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 0 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-heading {
  max-width: 620px;
}

.footer-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.12;
}

.footer-kicker {
  margin: 34px 0 12px;
  color: #9ee8ef;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-contact {
  display: grid;
  grid-template-columns: 333px 252px;
  gap: 14px;
}

.footer-contact .contact-card {
  position: relative;
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.94);
  text-align: left;
  line-height: 1.4;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.footer-contact .contact-card:hover,
.footer-contact .contact-card:focus {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.16);
}

.footer-contact .contact-link-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.footer-contact .contact-link-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}

.footer-contact .contact-card:nth-child(3) .contact-link-icon,
.footer-contact .contact-card:nth-child(4) .contact-link-icon {
  color: #59e18f;
}

.contact-card-text {
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.footer-contact .wechat-link .wechat-qr {
  left: 50%;
  right: auto;
  bottom: calc(100% + 12px);
  width: 104px;
  height: 104px;
  opacity: 0;
  transform: translateX(-50%) scale(0.86) translateY(8px);
  transform-origin: bottom center;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.footer-contact .wechat-link:hover .wechat-qr,
.footer-contact .wechat-link:focus-within .wechat-qr,
.footer-contact .wechat-link:focus .wechat-qr {
  opacity: 1;
  transform: translateX(-50%) scale(1.16) translateY(0);
}

.footer-note {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.footer-copy {
  width: 100%;
  margin: 8px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.44);
  font-size: 13px;
  text-align: center;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 8px 0 0;
  margin-bottom: 0;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.back-to-top {
  position: fixed;
  right: max(18px, calc((100vw - 1180px) / 2 - 118px));
  bottom: 96px;
  z-index: 40;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(14, 58, 66, 0.72);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
  opacity: 1;
  transform: translateY(0);
  backdrop-filter: blur(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.back-to-top:hover {
  background: rgba(14, 69, 80, 0.9);
  border-color: rgba(255, 255, 255, 0.32);
}

.back-to-top.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.copy-toast {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 60;
  padding: 12px 18px;
  border-radius: 6px;
  background: rgba(44, 73, 216, 0.86);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(44, 73, 216, 0.26);
  opacity: 0;
  backdrop-filter: blur(10px);
  transform: translate(-50%, -100%) translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, -100%);
}

svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ─── Reports Page ─────────────────────────────────────────── */

.reports-broker-bar {
  padding: 32px 0;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.broker-bar-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.broker-bar-item {
  position: relative;
  flex: 0 1 calc((100% - 84px) / 8);
  min-width: 100px;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.broker-bar-item:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(44, 73, 216, 0.1);
}

.broker-bar-item.is-active {
  border-color: var(--blue);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(44, 73, 216, 0.14);
}

.broker-bar-item img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 36px;
  object-fit: contain;
}

.broker-bar-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border-radius: 99px;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  border: 1px solid var(--line);
  box-shadow: 0 2px 6px rgba(44, 73, 216, 0.12);
}

.broker-bar-item.is-active .broker-bar-count {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 2px 6px rgba(44, 73, 216, 0.3);
}

.broker-bar-all {
  border-color: var(--line);
}

.broker-bar-all-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
}

.broker-bar-all-label svg {
  width: 18px;
  height: 18px;
}

.reports-body {
  padding: 40px 0 80px;
}

.reports-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

/* Sidebar */
.reports-sidebar {
  position: sticky;
  top: 90px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--small-shadow);
}

.reports-sidebar-title {
  margin: 0 0 20px;
  font-size: 18px;
  color: var(--navy);
}

.reports-filter-group {
  margin-bottom: 22px;
}

.reports-filter-group h4 {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reports-filter-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.reports-filter-group li {
  margin: 0;
}

.reports-filter-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 12px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.reports-filter-btn:hover {
  background: var(--soft);
}

.reports-filter-btn.is-active {
  background: #edf2ff;
  color: var(--blue);
  font-weight: 700;
}

.filter-count {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  background: var(--panel);
  padding: 2px 8px;
  border-radius: 99px;
}

.reports-filter-btn.is-active .filter-count {
  background: rgba(44, 73, 216, 0.12);
  color: var(--blue);
}

.reports-reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    color 0.15s ease;
}

.reports-reset-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.reports-reset-btn svg {
  width: 16px;
  height: 16px;
}

/* Main content */
.reports-main-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.reports-main-title {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
  color: var(--ink);
}

.reports-result-count {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.reports-active-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  padding: 4px 10px 4px 12px;
  border-radius: 99px;
  background: #edf2ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.reports-active-filter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(44, 73, 216, 0.16);
  color: var(--blue);
  cursor: pointer;
}

.reports-active-filter button svg {
  width: 12px;
  height: 12px;
}

/* Card grid */
.report-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.report-list-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--small-shadow);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

a.report-list-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.report-list-card .report-card-title {
  color: var(--ink);
  transition: color 0.15s ease;
}

a.report-list-card:hover .report-card-title {
  color: var(--blue);
}

.report-list-card:hover {
  transform: translateY(-4px);
  border-color: rgba(44, 73, 216, 0.3);
  box-shadow: var(--shadow);
}

/* Colored header by report type */
.report-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 80px;
  padding: 18px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.report-type-industry-report .report-card-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.report-type-market-report .report-card-header {
  background: linear-gradient(135deg, #085f63, #0d8a8a);
}

.report-type-company-report .report-card-header {
  background: linear-gradient(135deg, #7a3e15, #c47120);
}

.report-type-economic-report .report-card-header {
  background: linear-gradient(135deg, #5b21b6, #8b5cf6);
}

.report-type-fixed-income-report .report-card-header {
  background: linear-gradient(135deg, #065f46, #10b981);
}

.report-card-logo {
  display: block;
  width: auto;
  max-width: 100px;
  max-height: 28px;
  object-fit: contain;
}

.report-card-broker {
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 160px;
}

.report-card-date-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Card body */
.report-card-body {
  flex: 1;
  padding: 18px 20px 0;
}

.report-card-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  min-height: 2.9em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Card meta */
.report-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.report-card-type {
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

.report-type-market-report .report-card-type {
  color: var(--teal);
}

.report-type-company-report .report-card-type {
  color: var(--amber);
}

.report-type-economic-report .report-card-type {
  color: #8b5cf6;
}

.report-type-fixed-income-report .report-card-type {
  color: #10b981;
}

.report-card-lang {
  margin-left: auto;
}

.report-card-lang,
.report-card-pages {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.report-card-lang svg,
.report-card-pages svg {
  width: 15px;
  height: 15px;
  opacity: 0.6;
}

/* Pagination */
.reports-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.page-btn {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    color 0.15s ease;
}

.page-btn:hover:not(.is-disabled):not(.is-active) {
  border-color: var(--blue);
  color: var(--blue);
}

.page-btn.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.page-btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 38px;
  color: var(--muted);
  font-size: 16px;
}

/* Empty state */
.reports-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 16px;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 0;
  }

  .hero-copy {
    padding-bottom: 36px;
  }

  .hero-visual {
    min-height: 350px;
  }

  .floating-note {
    right: calc((100% - min(560px, 100%)) / 2 + 18px);
    bottom: 18px;
    width: 154px;
    padding: 13px 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
  }

  .report-device-body::after {
    display: none;
  }

  .stats-strip,
  .vip-grid,
  .share-grid,
  .testimonial-grid,
  .icon-grid,
  .seo-grid,
  .contact-how-grid,
  .contact-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-wall {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-method-grid.contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  .contact-profile-card {
    width: 100%;
    padding: 22px 24px;
  }

  /* Reports page responsive */
  .reports-layout {
    grid-template-columns: 1fr;
  }

  .reports-sidebar {
    position: static;
  }

  .report-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .broker-bar-item {
    min-height: 64px;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    min-height: 64px;
  }

  .brand-mark span:last-child {
    max-width: 180px;
    line-height: 1.2;
  }

  .menu-toggle {
    display: block;
  }

  .main-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .main-menu.is-open {
    display: flex;
  }

  .main-menu a,
  .language-switch {
    width: 100%;
    justify-content: center;
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-copy {
    padding: 58px 0 20px;
  }

  .hero p:not(.eyebrow) {
    font-size: 16px;
  }

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

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

  .vip-grid,
  .share-grid,
  .testimonial-grid,
  .seo-grid,
  .contact-method-grid,
  .contact-how-grid,
  .contact-methods-grid,
  .feature-list,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .contact-method-grid.contact-page-grid {
    grid-template-columns: 1fr;
  }

  .standalone-page {
    padding: 24px 0 60px;
  }

  .standalone-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
  }

  .standalone-header h1 {
    font-size: 28px;
  }

  .standalone-body {
    gap: 28px;
  }

  .contact-disclaimer-card {
    flex-direction: column;
    gap: 14px;
    padding: 22px 20px;
  }

  .contact-page-panel {
    padding: 18px;
  }

  .contact-profile-card {
    margin-top: 22px;
    padding: 20px 18px;
  }

  .report-type-grid {
    grid-template-columns: 1fr;
  }

  .logo-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-strip {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .feature-band {
    padding: 0;
  }

  .report-preview {
    min-height: 260px;
  }

  .report-device {
    border-width: 10px;
  }

  .report-device-top {
    height: 48px;
  }

  .report-device-body {
    height: 300px;
  }

  .footer-body {
    padding-top: 48px;
  }

  .footer-heading h2 {
    font-size: 28px;
  }

  /* Reports page responsive */
  .report-card-grid {
    grid-template-columns: 1fr;
  }

  .reports-body {
    padding: 24px 0 60px;
  }

  .broker-bar-all {
    flex: 1 1 100%;
  }

  .broker-bar-item {
    min-height: 56px;
    flex: 1 1 calc((100% - 36px) / 4);
    min-width: 80px;
  }

  .broker-bar-item img {
    max-height: 24px;
  }

  .broker-bar-count {
    font-size: 11px;
    min-width: 20px;
    height: 20px;
  }

  .reports-sidebar {
    padding: 18px;
  }

  .page-btn {
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  .icon-tile {
    gap: 10px;
    padding: 14px;
  }

  .icon-tile span {
    font-size: 17px;
  }

  .tile-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 360px) {
  .stats-strip,
  .icon-grid,
  .logo-wall {
    grid-template-columns: 1fr;
  }
}

/* ── Navigation Dropdowns ─────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 8px 0;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  color: inherit;
  font: inherit;
  font-size: 15px;
  line-height: inherit;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.nav-dropdown-toggle:hover {
  color: var(--fg);
}

.nav-dropdown.is-open > .nav-dropdown-toggle,
.nav-dropdown-toggle.is-active {
  color: var(--blue);
  border-color: var(--amber);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: 8px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  z-index: 100;
}

.nav-dropdown.is-open > .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 16px;
  border-bottom: none;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--bg);
  color: var(--fg);
}

/* ── Topic Landing Pages ──────────────────────────────────── */
.topic-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 60px;
}

.topic-page .rd-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 0 20px;
  color: #617087;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 4px;
}

.topic-page .rd-breadcrumb a {
  color: #2c49d8;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.topic-page .rd-breadcrumb a:hover {
  opacity: 0.75;
}

.topic-page .rd-breadcrumb-sep {
  color: #e3e9f1;
  font-size: 13px;
}

.topic-page .rd-breadcrumb span[aria-current="page"] {
  color: #101827;
  font-weight: 600;
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topic-header {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line, #e3e9f1);
}

.topic-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.topic-logo {
  flex-shrink: 0;
}

.topic-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.topic-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--fg, #101827);
  margin: 0;
  line-height: 1.25;
}

.topic-description {
  font-size: 16px;
  color: var(--muted, #617087);
  max-width: 640px;
  margin: 0 0 16px;
  line-height: 1.7;
}

.topic-meta {
  display: flex;
  gap: 12px;
}

.topic-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted, #617087);
  padding: 5px 14px;
  border: 1px solid var(--line, #e3e9f1);
  border-radius: 20px;
  background: #f8fbff;
}

.topic-reports {
  margin-bottom: 40px;
}

.topic-intro {
  max-width: 860px;
  margin: -8px 0 34px;
  padding: 22px 24px;
  border: 1px solid var(--line, #e3e9f1);
  border-radius: 8px;
  background: #f8fbff;
}

.topic-intro p {
  margin: 0;
  color: var(--muted, #617087);
  font-size: 15px;
  line-height: 1.75;
}

.topic-intro p + p {
  margin-top: 12px;
}

/* Related topics — flat text with badge links */
.topic-related {
  margin-top: 40px;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 0;
}

.topic-related h2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg, #101827);
  margin: 0 0 4px;
}

.topic-related .rd-intent-copy {
  margin: 0 0 14px;
  color: #617087;
  font-size: 14px;
  line-height: 1.7;
}

.topic-related .rd-intent-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-related .rd-intent-list li {
  display: inline-flex;
}

.topic-related .rd-intent-list a {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  background: #f0f3f8;
  color: #374151;
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid #e2e7ee;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.topic-related .rd-intent-list a:hover {
  background: #e0e7f1;
  color: #1f66d1;
  border-color: #bfcde0;
  text-decoration: none;
}

/* ── Responsive: Dropdowns in mobile menu ─────────────────── */
@media (max-width: 740px) {
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: center;
    padding: 8px 0;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }

  .nav-dropdown.is-open > .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    text-align: center;
    padding: 8px 0;
    font-size: 15px;
  }

  .topic-page {
    padding: 24px 0 40px;
  }

  .topic-title {
    font-size: 22px;
  }

  .topic-header {
    padding-bottom: 20px;
    margin-bottom: 24px;
  }
}

/* ── Contact Page: New Sections ───────────────────────────── */

.section-title-center {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  text-align: center;
  color: var(--ink);
}

.section-subtitle-center {
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
}

/* How it works — dark theme */
.contact-how-section {
  background: linear-gradient(180deg, #0e1525 0%, #111e38 100%);
  color: #fff;
}

.contact-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-how-card {
  padding: 28px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-how-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.contact-how-num {
  display: inline-block;
  color: #9ee8ef;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.contact-how-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: #9ee8ef;
  background: rgba(158, 232, 239, 0.22);
  box-shadow: 0 0 18px rgba(158, 232, 239, 0.15);
}

.contact-how-card:nth-child(2) .contact-how-icon {
  color: #5eead4;
  background: rgba(94, 234, 212, 0.24);
  box-shadow: 0 0 18px rgba(94, 234, 212, 0.18);
}

.contact-how-card:nth-child(3) .contact-how-icon {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.24);
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.18);
}

.contact-how-card:nth-child(4) .contact-how-icon {
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.24);
  box-shadow: 0 0 18px rgba(167, 139, 250, 0.18);
}

.contact-how-card h3 {
  margin: 0;
  font-size: 19px;
  color: #fff;
}

.contact-how-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

/* Dark section shared utilities */
.dark-section { color: #fff; }
.dark-title { color: #fff !important; }
.dark-subtitle { color: rgba(255, 255, 255, 0.6) !important; }

/* Contact methods full section */
.contact-methods-full {
  background: var(--surface);
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-method-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 160px;
  padding: 26px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--small-shadow);
  cursor: pointer;
  text-align: center;
  color: inherit;
  font: inherit;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-method-card:hover {
  transform: translateY(-4px);
  border-color: rgba(44, 73, 216, 0.3);
  box-shadow: var(--shadow);
}

.contact-method-card .cmc-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #2c49d8, #6070e8);
  margin-bottom: 6px;
}

.contact-method-card:nth-child(2) .cmc-icon {
  background: linear-gradient(135deg, #20a56b, #37d482);
}

.contact-method-card:nth-child(3) .cmc-icon {
  background: linear-gradient(135deg, #0f9b9b, #30c7a0);
}

.contact-method-card:nth-child(4) .cmc-icon {
  background: linear-gradient(135deg, #f28c28, #ffb15a);
}

.contact-method-card .cmc-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.contact-method-card .cmc-value {
  font-size: 13px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

/* WeChat QR in contact methods */
.wechat-card .wechat-qr {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 5;
  width: 120px;
  height: 120px;
  padding: 6px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(-50%) scale(0.82) translateY(8px);
  transform-origin: bottom center;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.wechat-card .wechat-qr img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.wechat-card:hover .wechat-qr,
.wechat-card:focus-within .wechat-qr {
  opacity: 1;
  transform: translateX(-50%) scale(1) translateY(0);
}

/* Contact disclaimer — dark compact */
.contact-disclaimer-section {
  background: linear-gradient(180deg, #111e38 0%, #101827 100%);
  padding-bottom: 0;
}

.contact-disclaimer-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 20px 48px;
}

.disclaimer-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.7;
}

.disclaimer-more {
  display: inline-block;
  margin-top: 10px;
  color: #9ee8ef;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.disclaimer-more:hover {
  opacity: 0.75;
}

/* ── Standalone Pages (About / Disclaimer) ────────────────── */

.standalone-page {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 80px;
}

.standalone-page .rd-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 0 20px;
  color: #617087;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 4px;
}

.standalone-page .rd-breadcrumb a {
  color: #2c49d8;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.standalone-page .rd-breadcrumb a:hover {
  opacity: 0.75;
}

.standalone-page .rd-breadcrumb-sep {
  color: #e3e9f1;
  font-size: 13px;
}

.standalone-page .rd-breadcrumb span[aria-current="page"] {
  color: #101827;
  font-weight: 600;
}

.standalone-header {
  margin-bottom: 42px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.standalone-header h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: var(--ink);
}

.standalone-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
}

.standalone-body {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.standalone-section h2 {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.3;
}

.standalone-section p {
  margin: 0;
  color: #3a4a60;
  font-size: 16px;
  line-height: 1.8;
}

.standalone-list {
  margin: 12px 0 0;
  padding: 0 0 0 20px;
  color: #3a4a60;
  font-size: 16px;
  line-height: 1.9;
}

.standalone-list li {
  margin-bottom: 6px;
}

.standalone-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.btn-inline:hover {
  border-color: var(--blue);
  background: #edf2ff;
}

.btn-inline svg {
  width: 18px;
  height: 18px;
}

.wechat-btn {
  position: relative;
  cursor: pointer;
}

.wechat-btn .wechat-qr {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  width: 120px;
  height: 120px;
  padding: 6px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(-50%) scale(0.85) translateY(6px);
  transform-origin: bottom center;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.wechat-btn .wechat-qr img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.wechat-btn:hover .wechat-qr,
.wechat-btn:focus .wechat-qr,
.wechat-btn:focus-within .wechat-qr {
  opacity: 1;
  transform: translateX(-50%) scale(1) translateY(0);
  pointer-events: auto;
}

/* Disclaimer numbered sections */
.disclaimer-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.disclaimer-num {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--panel);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  margin-top: 2px;
}

/* ── Light Content Protection ──────────────────────────────── */
img {
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  user-drag: none;
}
