.customs-query-page {
  min-width: 320px;
  background:
    radial-gradient(circle at 76% 6%, rgba(51, 123, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #f6faff 0%, #ffffff 56%, #fbfdff 100%);
}

.cq-page {
  color: #10245a;
  padding-bottom: 48px;
}

.cq-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
}

.cq-hero {
  padding: 54px 0 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f9ff 0%, #fff 100%);
}

.cq-hero-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.cq-hero-copy {
  position: relative;
  z-index: 2;
}

.cq-hero-copy h1 {
  margin: 0 0 18px;
  color: #071f55;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.22;
}

.cq-hero-copy p {
  max-width: 710px;
  color: #52617d;
  font-size: 15px;
  line-height: 1.8;
}

.cq-search {
  position: relative;
  width: min(760px, 100%);
  margin-top: 28px;
}

.cq-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  width: 22px;
  height: 22px;
  color: #a9b6ca;
  transform: translateY(-50%);
  pointer-events: none;
}

.cq-search-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.cq-search input {
  width: 100%;
  height: 56px;
  padding: 0 20px 0 54px;
  border: 1px solid #dbe5f4;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(36, 75, 135, 0.08);
  color: #12265d;
  font-size: 14px;
  outline: none;
}

.cq-search input::placeholder {
  color: #b0bdd0;
}

.cq-search input:focus {
  border-color: #1e66ff;
  box-shadow: 0 0 0 4px rgba(30, 102, 255, 0.1), 0 14px 30px rgba(36, 75, 135, 0.1);
}

.cq-hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.cq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 230px;
  height: 54px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cq-btn svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 2;
}

.cq-btn-primary {
  background: linear-gradient(135deg, #1f76ff 0%, #0c47e9 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(22, 89, 237, 0.24);
}

.cq-btn-outline {
  border: 2px solid #1e66ff;
  background: #fff;
  color: #1555ee;
}

.cq-btn:hover {
  transform: translateY(-2px);
}

.cq-hero-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  --orbit-x-far: clamp(88px, 16vw, 240px);
  --orbit-x-near: clamp(68px, 12vw, 180px);
  --orbit-y-high: clamp(50px, 7vw, 96px);
  --orbit-y-low: clamp(36px, 5vw, 70px);
}

.cq-hero-map::before {
  content: "";
  position: absolute;
  inset: -38px -30px -22px;
  background:
    radial-gradient(circle at 55% 52%, rgba(106, 166, 255, 0.24), transparent 22%),
    radial-gradient(circle at 76% 30%, rgba(0, 194, 255, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(244, 249, 255, 0.28), rgba(244, 249, 255, 0.02));
  filter: blur(1px);
}

.cq-hero-map img {
  position: absolute;
  inset: 26px 0 auto;
  width: 100%;
  opacity: 0.27;
  filter: saturate(0.9) brightness(1.5);
}

.map-glow {
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 14px;
  border: 3px solid rgba(36, 195, 255, 0.72);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 12px rgba(36, 195, 255, 0.13), 0 0 28px rgba(36, 195, 255, 0.52);
  animation: mapPointBreath 2.6s ease-in-out infinite;
}

.point-us { left: 14%; top: 36%; }
.point-eu { left: 48%; top: 25%; animation-delay: 0.35s; }
.point-asia { right: 20%; top: 39%; animation-delay: 0.7s; }
.point-africa { left: 56%; top: 61%; animation-delay: 1.05s; }

.map-note-orbit {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.map-note {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 184px;
  min-height: 108px;
  padding: 18px 18px;
  border: 1px solid rgba(210, 224, 247, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(49, 91, 152, 0.16);
  animation: mapNoteOrbitPath 24s linear infinite;
}

@keyframes mapPointBreath {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
    box-shadow: 0 0 0 10px rgba(36, 195, 255, 0.12), 0 0 24px rgba(36, 195, 255, 0.48);
  }

  50% {
    transform: scale(1.28);
    opacity: 1;
    box-shadow: 0 0 0 18px rgba(36, 195, 255, 0.05), 0 0 38px rgba(36, 195, 255, 0.68);
  }
}

@keyframes mapNoteOrbitPath {
  0%,
  100% {
    transform: translate(-50%, -50%) translate(var(--orbit-x-far), calc(0px - var(--orbit-y-low)));
  }

  20% {
    transform: translate(-50%, -50%) translate(var(--orbit-x-near), var(--orbit-y-high));
  }

  42% {
    transform: translate(-50%, -50%) translate(calc(0px - var(--orbit-x-near)), var(--orbit-y-low));
  }

  64% {
    transform: translate(-50%, -50%) translate(calc(0px - var(--orbit-x-far)), calc(0px - var(--orbit-y-high)));
  }

  82% {
    transform: translate(-50%, -50%) translate(var(--orbit-x-near), calc(0px - var(--orbit-y-high)));
  }
}

.map-note strong,
.map-note small {
  display: block;
}

.map-note strong {
  margin-left: 30px;
  color: #24375c;
  font-size: 12px;
  font-weight: 700;
}

.map-note b {
  display: block;
  margin: 10px 0 2px 30px;
  color: #1367ff;
  font-size: 23px;
  line-height: 1;
}

.map-note small {
  margin-left: 30px;
  color: #7b8aa5;
  font-size: 12px;
}

.note-icon {
  position: absolute;
  top: 19px;
  left: 18px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: #1e66ff;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.note-icon.cyan {
  background: #20c7d2;
}

.note-top { animation-delay: 0s; }
.note-left { animation-delay: -8s; }
.note-right { animation-delay: -16s; }

.cq-overview {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr 1.35fr 1.05fr;
  min-height: 122px;
  margin-top: 28px;
  border: 1px solid #dfe8f6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(42, 80, 132, 0.1);
}

.overview-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  align-content: center;
  column-gap: 16px;
  row-gap: 0;
  padding: 24px 28px;
  border-right: 1px solid #dfe6f0;
}

.overview-item:last-child {
  border-right: 0;
}

.overview-item strong {
  display: block;
  grid-column: 2;
  color: #172d63;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.overview-item small {
  display: block;
  grid-column: 2;
  margin-top: 5px;
  color: #6a7892;
  font-size: 13px;
  white-space: nowrap;
}

.overview-icon {
  position: relative;
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  color: #1e66ff;
}

.use-icon {
  display: block;
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.overview-icon {
  grid-row: 1 / 3;
  background-repeat: no-repeat;
  background-position: var(--icon-x, center) var(--icon-y, center);
  background-size: var(--icon-size, contain) auto;
}

.overview-icon::before,
.overview-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.overview-icon::before,
.overview-icon::after {
  display: none;
}

.overview-icon.globe {
  background-image: url('../../images/data_icon1.png');
  --icon-size: 130px;
  --icon-x: -29px;
  --icon-y: -6px;
}

.overview-icon.database {
  background-image: url('../../images/data_icon2.png');
  --icon-size: 119px;
  --icon-x: -25px;
  --icon-y: -8px;
}

.overview-icon.users {
  background-image: url('../../images/data_icon3.png');
  --icon-size: 138px;
  --icon-x: -33px;
  --icon-y: -11px;
}

.overview-icon.chart {
  background-image: url('../../images/data_icon4.png');
  --icon-size: 130px;
  --icon-x: -30px;
  --icon-y: -8px;
}

.overview-icon.clock {
  background-image: url('../../images/data_icon5.png');
  --icon-size: 126px;
  --icon-x: -30px;
  --icon-y: -3px;
}

.cq-region {
  margin-top: 28px;
}

.continent-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid #dfe8f6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(42, 80, 132, 0.08);
  overflow: hidden;
}

.continent-card {
  min-height: 126px;
  padding: 18px 18px 16px;
  border-right: 1px solid #dfe6f0;
  color: #273758;
  background: #fff;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.continent-card:last-child {
  border-right: 0;
}

.continent-card.active {
  position: relative;
  z-index: 1;
  border: 2px solid #5a99ff;
  border-radius: 8px;
  background: linear-gradient(180deg, #f4f9ff, #fff);
  color: #1261f6;
  box-shadow: 0 12px 26px rgba(18, 97, 246, 0.16);
}

.continent-card strong {
  display: block;
  margin-top: 6px;
  font-size: 17px;
  font-weight: 800;
}

.mini-map {
  display: block;
  width: 86px;
  height: 54px;
  margin: 0 auto;
  background-image: var(--mini-map-image);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 1;
}

.mini-map.gray {
  opacity: 1;
}

.continent-card[data-continent="asia"] .mini-map {
  --mini-map-image: url('../../images/country/asia.png');
}

.continent-card[data-continent="europe"] .mini-map {
  --mini-map-image: url('../../images/country/europe.png');
}

.continent-card[data-continent="north-america"] .mini-map {
  --mini-map-image: url('../../images/country/north-america.png');
}

.continent-card[data-continent="south-america"] .mini-map {
  --mini-map-image: url('../../images/country/south-america.png');
}

.continent-card[data-continent="africa"] .mini-map {
  --mini-map-image: url('../../images/country/africa.png');
}

.continent-card[data-continent="oceania"] .mini-map {
  --mini-map-image: url('../../images/country/oceania.png');
}

.continent-card.active[data-continent="asia"] .mini-map {
  --mini-map-image: url('../../images/country/asia_act.png');
}

.continent-card.active[data-continent="europe"] .mini-map {
  --mini-map-image: url('../../images/country/europe_act.png');
}

.continent-card.active[data-continent="north-america"] .mini-map {
  --mini-map-image: url('../../images/country/north-america_act.png');
}

.continent-card.active[data-continent="south-america"] .mini-map {
  --mini-map-image: url('../../images/country/south-america_act.png');
}

.continent-card.active[data-continent="africa"] .mini-map {
  --mini-map-image: url('../../images/country/africa_act.png');
}

.continent-card.active[data-continent="oceania"] .mini-map {
  --mini-map-image: url('../../images/country/oceania_act.png');
}

.region-head {
  margin-top: 32px;
}

.region-head h2,
.cq-hot h2,
.cq-use h2,
.cq-faq h2 {
  color: #09245e;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
}

.region-head p {
  margin-top: 12px;
  color: #5d6d8a;
  font-size: 14px;
}

.region-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
}

.zone-tabs,
.data-tabs {
  display: flex;
  align-items: center;
  gap: 14px;
}

.zone-tabs button,
.data-tabs button {
  min-width: 86px;
  height: 32px;
  border: 1px solid #d7e4f5;
  border-radius: 18px;
  background: #fff;
  color: #566780;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.zone-tabs button.active,
.data-tabs button.active {
  border-color: #1764f8;
  background: linear-gradient(135deg, #1f76ff, #0c4fec);
  color: #fff;
}

.data-tabs {
  position: relative;
  padding-left: 45px;
}

.data-tabs::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 1px;
  height: 26px;
  background: #b9c9de;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.country-card {
  min-height: 134px;
  padding: 20px 20px 18px;
  border: 1px solid #e1e9f5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(43, 79, 130, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.country-card:hover {
  border-color: #9fc2ff;
  box-shadow: 0 16px 36px rgba(43, 79, 130, 0.14);
  transform: translateY(-2px);
}

.country-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.country-flag {
  display: grid;
  width: 34px;
  height: 25px;
  place-items: center;
  border: 1px solid #eef1f6;
  background: #fff;
  font-size: 20px;
  line-height: 1;
  overflow: hidden;
}

.country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-title h3 {
  color: #162a61;
  font-size: 16px;
  font-weight: 800;
}

.country-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 14px 48px;
}

.country-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 21px;
  padding: 0 8px;
  border-radius: 4px;
  background: #eef5ff;
  color: #1d63e8;
  font-size: 12px;
  font-weight: 700;
}

.country-tags span:nth-child(3) {
  background: #fff0f0;
  color: #db5656;
}

.country-tags span:nth-child(4) {
  background: #f5efff;
  color: #7b56d9;
}

.country-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-left: 48px;
}

.country-meta small {
  color: #687792;
  font-size: 12px;
}

.country-meta button,
.country-detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 14px;
  border: 1px solid #8cb8ff;
  border-radius: 6px;
  background: #fff;
  color: #1261f6;
  font-size: 12px;
  font-weight: 700;
}

.more-country {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px auto 0;
  color: #1462f5;
  font-size: 14px;
  font-weight: 700;
}

.more-country span {
  font-size: 28px;
  line-height: 1;
}

.cq-hot,
.cq-use,
.cq-faq {
  margin-top: 42px;
}

.hot-carousel {
  position: relative;
  margin-top: 20px;
  overflow: hidden;
}

.hot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  perspective: 1200px;
}

.hot-card {
  position: relative;
  display: flex;
  min-height: 220px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background-color: #113261;
  background-image: linear-gradient(135deg, #527fe8, #113261);
  color: #fff;
  box-shadow: 0 18px 38px rgba(20, 43, 78, 0.22);
  isolation: isolate;
  transform: translateZ(0);
}

.hot-photo,
.hot-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hot-photo {
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.hot-photo img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.hot-card::before,
.hot-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
}

.hot-card::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 18, 46, 0.04) 0%, rgba(5, 18, 46, 0.16) 42%, rgba(5, 18, 46, 0.82) 100%);
  transition: opacity 0.7s ease;
}

.hot-card::after {
  z-index: 2;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 16%, transparent 33%);
  background-position: -160% 0, center;
  background-size: 160% 100%, cover;
  mix-blend-mode: screen;
  opacity: 0.34;
}

.hot-card:hover::before {
  opacity: 0.82;
}

.hot-card:hover .hot-photo img {
  filter: saturate(1.16) contrast(1.08);
  transform: scale(1.1);
}

.hot-card:hover::after,
.hot-card.is-entering::after {
  animation: hotSweep 1.2s ease;
}

.hot-card.is-entering {
  animation: hotCardPop 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hot-card:nth-child(2).is-entering { animation-delay: 0.06s; }
.hot-card:nth-child(3).is-entering { animation-delay: 0.12s; }
.hot-card:nth-child(4).is-entering { animation-delay: 0.18s; }

.hot-card > * {
  position: relative;
  z-index: 3;
}

.hot-card .hot-photo {
  position: absolute;
  z-index: 0;
}

.hot-copy {
  min-width: 0;
  transform: translateY(-14px);
}

.hot-card h3 {
  font-size: 18px;
}

.hot-card p {
  max-width: 310px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.6;
}

.hot-card button {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  color: #fff;
  font-size: 0;
  line-height: 1;
  transition: background 0.22s ease, transform 0.22s ease;
}

.hot-card button::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateX(-1px) rotate(45deg);
}

.hot-card button:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(2px);
}

.hot-progress {
  height: 3px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(30, 102, 255, 0.12);
}

.hot-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1e66ff, #20c7d2, #ff874d);
  transform-origin: left center;
  animation: hotProgress 4.8s linear infinite;
}

.hot-progress.is-reset span {
  animation: none;
}

@keyframes hotCardPop {
  0% {
    opacity: 0;
    transform: translateY(24px) rotateX(12deg) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
}

@keyframes hotSweep {
  0% { background-position: -160% 0, center; }
  100% { background-position: 160% 0, center; }
}

@keyframes hotProgress {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hot-card,
  .hot-card::after,
  .hot-progress span {
    animation: none !important;
  }

  .hot-card::before {
    transition: none;
  }

  .hot-photo img {
    transition: none;
  }
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.use-item {
  display: flex;
  gap: 16px;
  min-height: 112px;
  padding: 22px 20px;
  border-radius: 8px;
  background: #f5f8fd;
}

.use-item h3 {
  color: #233760;
  font-size: 16px;
  font-weight: 800;
}

.use-item p {
  margin-top: 8px;
  color: #697791;
  font-size: 13px;
  line-height: 1.55;
}

.sample-panel {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-height: 248px;
  margin-top: 34px;
  padding: 30px 32px 26px;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(14, 92, 222, 0.96), rgba(17, 115, 244, 0.92)),
    #1262df;
  color: #fff;
}

.sample-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.sample-copy h2 {
  font-size: 24px;
  font-weight: 800;
}

.sample-copy p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.sample-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 250px;
  gap: 16px;
  align-items: end;
  margin-top: 22px;
}

.sample-form label {
  display: grid;
  gap: 9px;
}

.sample-form span {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.sample-form input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: #12265d;
  font-size: 13px;
  outline: none;
}

.sample-form input::placeholder {
  color: #a4b0c1;
}

.sample-form button {
  height: 44px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ff8d32, #ff552f);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(255, 99, 45, 0.28);
}

.sample-earth {
  position: absolute;
  right: 64px;
  top: -62px;
  width: 330px;
  max-width: none;
  opacity: 0.56;
}

.cq-faq {
  margin-bottom: 10px;
}

.faq-list {
  interpolate-size: allow-keywords;
  margin-top: 16px;
  border: 1px solid #dfe8f4;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.faq-list details + details {
  border-top: 1px solid #e6edf7;
}

.faq-list details::details-content {
  block-size: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    block-size 0.28s ease,
    opacity 0.24s ease,
    transform 0.24s ease,
    content-visibility 0.28s ease allow-discrete;
}

.faq-list details[open]::details-content {
  block-size: auto;
  opacity: 1;
  transform: translateY(0);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 44px 0 22px;
  color: #2a3b5f;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "⌄";
  position: absolute;
  right: 22px;
  top: 50%;
  color: #6d7d95;
  transform: translateY(-50%);
  transition: transform 0.24s ease, color 0.24s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
  color: #1764f8;
}

.faq-list summary span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #1764f8;
  color: #fff;
  font-size: 12px;
}

.faq-list p {
  padding: 0 44px 18px 50px;
  color: #61708a;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1360px) {
  .cq-container {
    max-width: 1200px;
  }

  .cq-hero-copy h1 {
    font-size: 38px;
  }

  .cq-hero-copy p,
  .cq-search input,
  .cq-btn {
    font-size: 14px;
  }

  .cq-btn {
    min-width: 200px;
  }

  .country-grid,
  .hot-grid,
  .use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cq-overview {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .overview-item {
    padding: 26px 22px;
  }

  .sample-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
  }

  .sample-form button {
    grid-column: span 2;
  }
}

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

  .cq-hero-map {
    min-height: 360px;
    --orbit-x-far: clamp(100px, 24vw, 260px);
    --orbit-x-near: clamp(70px, 18vw, 190px);
    --orbit-y-high: clamp(54px, 8vw, 92px);
    --orbit-y-low: clamp(40px, 6vw, 70px);
  }

  .cq-overview,
  .continent-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .overview-item:nth-child(2n),
  .continent-card:nth-child(2n) {
    border-right: 0;
  }

  .region-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .data-tabs {
    padding-left: 0;
  }

  .data-tabs::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .cq-page {
    padding-bottom: 36px;
  }

  .cq-container {
    padding: 0 14px;
  }

  .cq-hero {
    padding-top: 26px;
  }

  .cq-hero-copy h1 {
    font-size: 28px;
  }

  .cq-hero-copy p {
    font-size: 13px;
  }

  .cq-search input {
    height: 56px;
    padding-left: 52px;
    font-size: 14px;
  }

  .cq-search-icon {
    left: 18px;
    width: 20px;
    height: 20px;
  }

  .cq-hero-actions,
  .zone-tabs,
  .data-tabs {
    flex-wrap: wrap;
    gap: 12px;
  }

  .cq-btn {
    width: 100%;
    min-width: 0;
    height: 46px;
  }

  .cq-hero-map {
    min-height: 300px;
    --orbit-x-far: clamp(78px, 24vw, 168px);
    --orbit-x-near: clamp(56px, 17vw, 118px);
    --orbit-y-high: clamp(42px, 8vw, 62px);
    --orbit-y-low: clamp(30px, 6vw, 48px);
  }

  .map-note {
    width: 178px;
    min-height: 104px;
    padding: 18px 16px;
  }

  .map-note strong {
    font-size: 12px;
  }

  .map-note b {
    font-size: 22px;
  }

  .map-note small {
    font-size: 12px;
  }

  .note-left,
  .note-right {
    left: 50%;
    right: auto;
    bottom: auto;
  }

  .cq-overview,
  .continent-tabs,
  .country-grid,
  .hot-grid,
  .use-grid,
  .sample-form {
    grid-template-columns: 1fr;
  }

  .overview-item,
  .continent-card {
    border-right: 0;
    border-bottom: 1px solid #dfe6f0;
  }

  .overview-item:last-child,
  .continent-card:last-child {
    border-bottom: 0;
  }

  .continent-card {
    min-height: 112px;
  }

  .mini-map {
    height: 54px;
  }

  .sample-panel {
    padding: 28px 20px;
  }

  .sample-copy h2 {
    font-size: 22px;
  }

  .sample-form button {
    grid-column: auto;
  }

  .sample-earth {
    right: -90px;
    top: -20px;
    width: 250px;
  }
}
