:root {
  --navy-950: #061d38;
  --navy-900: #0a2f5a;
  --navy-800: #103f70;
  --navy-700: #1a527f;
  --blue-100: #eaf2f8;
  --blue-50: #f5f8fb;
  --orange-600: #d96612;
  --orange-500: #e8751e;
  --orange-100: #fff0e4;
  --gold-400: #f2c14e;
  --green-700: #176d50;
  --green-600: #21815f;
  --green-100: #e8f4ef;
  --ink: #1f2937;
  --muted: #667085;
  --line: #e5eaf0;
  --white: #ffffff;
  --shadow-sm: 0 8px 28px rgba(16, 46, 76, 0.08);
  --shadow-lg: 0 24px 70px rgba(5, 31, 58, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(232, 117, 30, 0.35);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(11, 47, 89, 0.08);
  backdrop-filter: blur(16px);
}

.top-strip {
  color: rgba(255, 255, 255, 0.88);
  background: var(--navy-900);
  font-size: 12px;
}

.top-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid rgba(23, 109, 80, 0.22);
  border-radius: 50%;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), transparent),
    var(--green-700);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.13);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 23px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy-900);
  font-size: 21px;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: #657388;
  font-size: 10px;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #344054;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 29px 0 27px;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange-500);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 0.2s ease;
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--navy-900);
}

.main-nav > a:not(.nav-cta):hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  padding: 13px 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange-500);
  box-shadow: 0 7px 18px rgba(232, 117, 30, 0.24);
}

.nav-cta:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border-radius: 10px;
  background: var(--blue-50);
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--navy-900);
}

.hero {
  position: relative;
/*   min-height: 635px; */
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 8%, rgba(242, 193, 78, 0.14), transparent 24%),
    linear-gradient(115deg, #08284c 0%, #0a3968 62%, #0e4a78 100%);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(255, 255, 255, 0.025),
    0 0 0 110px rgba(255, 255, 255, 0.018);
  content: "";
}

.africa-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(30deg, rgba(242, 193, 78, 0.075) 12%, transparent 12.5%, transparent 87%, rgba(242, 193, 78, 0.075) 87.5%, rgba(242, 193, 78, 0.075)),
    linear-gradient(150deg, rgba(242, 193, 78, 0.075) 12%, transparent 12.5%, transparent 87%, rgba(242, 193, 78, 0.075) 87.5%, rgba(242, 193, 78, 0.075)),
    linear-gradient(30deg, rgba(242, 193, 78, 0.075) 12%, transparent 12.5%, transparent 87%, rgba(242, 193, 78, 0.075) 87.5%, rgba(242, 193, 78, 0.075)),
    linear-gradient(150deg, rgba(242, 193, 78, 0.075) 12%, transparent 12.5%, transparent 87%, rgba(242, 193, 78, 0.075) 87.5%, rgba(242, 193, 78, 0.075)),
    linear-gradient(60deg, rgba(255, 255, 255, 0.035) 25%, transparent 25.5%, transparent 75%, rgba(255, 255, 255, 0.035) 75%, rgba(255, 255, 255, 0.035));
  background-position: 0 0, 0 0, 38px 67px, 38px 67px, 0 0;
  background-size: 76px 134px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.25) 35%, #000 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
/*   min-height: 635px; */
  align-items: center;
  gap: 80px;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
/*   padding-top: 72px;
  padding-bottom: 78px; */
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #d6e4ef;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--orange-500);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(43px, 5vw, 66px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.hero h1 em {
  color: var(--gold-400);
  font-style: normal;
}

.hero-lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: #dbe7f0;
  font-size: 17px;
  line-height: 1.95;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

.button span {
  font-size: 18px;
}

.button.primary {
  color: var(--white);
  background: var(--orange-500);
  box-shadow: 0 12px 30px rgba(232, 117, 30, 0.23);
}

.button.primary:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button.ghost:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.09);
}

.button.outline {
  border-color: #cfd8e3;
  color: var(--navy-900);
  background: var(--white);
}

.button.outline:hover {
  border-color: var(--orange-500);
  color: var(--orange-600);
}

.button.small {
  min-height: 42px;
  padding: 0 18px;
  white-space: nowrap;
  font-size: 13px;
}

.button.full {
  width: 100%;
}

.hero-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.085);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(15px);
}

.hero-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.status-dot::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #7ce0b6;
  box-shadow: 0 0 0 4px rgba(124, 224, 182, 0.12);
  content: "";
}

.hero-stat-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  grid-template-columns: repeat(2, 1fr);
}

.hero-stat-grid article {
  min-height: 148px;
  padding: 26px 24px;
  background: rgba(8, 44, 80, 0.74);
}

.hero-stat-grid strong,
.hero-stat-grid span {
  display: block;
}

.hero-stat-grid strong {
  color: var(--gold-400);
  font-family: Arial, sans-serif;
  font-size: 38px;
  line-height: 1;
}

.hero-stat-grid span {
  margin-top: 14px;
  color: #dbe8f2;
  font-size: 13px;
  line-height: 1.65;
}

.hero-panel-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 16px 12px;
}

.hero-panel-bottom span {
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.hero-panel-bottom span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.truth-bar {
  color: #dce8f1;
  background: var(--navy-950);
}

.truth-bar-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.truth-bar strong {
  margin-right: 10px;
  color: var(--gold-400);
  font-size: 14px;
}

.truth-bar span {
  font-size: 15px;
  font-weight: 700;
}

.truth-bar i {
  color: var(--orange-500);
  font-style: normal;
  font-weight: 900;
}

.truth-bar small {
  margin-left: 14px;
  color: #8da4b9;
}

.section {
  padding: 76px 0;
}

.section-tint {
  background:
    linear-gradient(180deg, rgba(234, 242, 248, 0.62), rgba(255, 255, 255, 0.86)),
    var(--blue-50);
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.left {
  max-width: 800px;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.section-heading.compact {
  margin-bottom: 25px;
}

.section-kicker {
  margin: 0 0 11px;
  color: var(--orange-600);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-kicker.light {
  color: #ffc570;
}

.section-heading h2,
.service-copy h2,
.contact-card h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(30px, 3.6vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.section-heading > p:last-child {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.policy-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.policy-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.policy-card::after {
  position: absolute;
  right: -45px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border: 18px solid var(--blue-50);
  border-radius: 50%;
  content: "";
}

.policy-card.featured {
  border-color: rgba(232, 117, 30, 0.24);
  background: linear-gradient(145deg, #fff8f1, #ffffff 58%);
}

.policy-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 15px;
  color: var(--navy-900);
  background: var(--blue-100);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.featured .policy-icon {
  color: var(--orange-600);
  background: var(--orange-100);
}

.policy-tag {
  margin: 24px 0 8px;
  color: var(--orange-600);
  font-size: 12px;
  font-weight: 700;
}

.policy-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 23px;
}

.policy-card > p:not(.policy-tag) {
  margin: 17px 0 0;
  color: #576579;
  font-size: 14px;
  line-height: 1.85;
}

.policy-card ul {
  position: relative;
  z-index: 2;
  margin: 21px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.policy-card li {
  position: relative;
  padding: 6px 0 6px 20px;
  color: #3d4e63;
  font-size: 13px;
  line-height: 1.55;
}

.policy-card li::before {
  position: absolute;
  top: 12px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-600);
  content: "";
}

.integrated-access {
  display: grid;
  align-items: start;
  gap: 34px;
  margin-top: 42px;
  padding: 38px;
  border: 1px solid #dbe5ee;
  border-radius: 24px;
  background: var(--blue-50);
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
}

.integrated-intro h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 27px;
}

.integrated-intro > p:last-child {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.product-policy-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.product-policy {
  display: grid;
  align-items: start;
  gap: 14px;
  padding: 19px;
  border: 1px solid #e0e8ef;
  border-radius: 17px;
  background: var(--white);
  grid-template-columns: auto 1fr;
}

.product-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--orange-500);
  font-size: 14px;
  font-weight: 800;
}

.product-symbol.coffee {
  background: #805633;
}

.product-symbol.cashew {
  background: var(--green-600);
}

.product-symbol.wild-aquatic {
  background: #2873a8;
}

.product-policy > div > p,
.policy-source-link {
  margin: 0 0 5px;
  color: #8a98a9;
  font-size: 9px;
}

.policy-source-link {
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: 0.18s ease;
}

.policy-source-link:hover {
  border-color: var(--orange-500);
  color: var(--orange-600);
}

.product-policy h4 {
  margin: 0;
  color: var(--navy-900);
  font-size: 17px;
}

.product-policy h4 small {
  display: block;
  margin-top: 3px;
  color: #8997a8;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.effective-date {
  display: block;
  margin-top: 8px;
  color: var(--green-700);
  font-size: 10px;
  font-weight: 700;
}

.product-description {
  margin: 0;
  color: #58677a;
  font-size: 11px;
  line-height: 1.65;
  grid-column: 1 / -1;
}

.registration-layout {
  display: grid;
  align-items: start;
  gap: 38px;
  grid-template-columns: minmax(0, 1fr) 390px;
}

.steps {
  display: grid;
  gap: 11px;
}

.step {
  display: grid;
  align-items: start;
  gap: 20px;
  padding: 22px 24px;
  border: 1px solid #dfe7ee;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  grid-template-columns: 42px 1fr;
  transition: 0.2s ease;
}

.step:hover {
  border-color: rgba(232, 117, 30, 0.35);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.step > span {
  color: var(--orange-500);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.step h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 17px;
}

.step p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.route-panel {
  position: sticky;
  top: 128px;
  padding: 33px;
  border-radius: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 193, 78, 0.15), transparent 34%),
    var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.route-panel-label {
  margin: 0;
  color: #ffc875;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.route-panel h3 {
  margin: 12px 0 25px;
  font-size: 25px;
  line-height: 1.45;
}

.route-option {
  display: grid;
  gap: 15px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: 36px 1fr;
}

.route-option > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.1);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.route-option strong {
  font-size: 14px;
}

.route-option p {
  margin: 6px 0 0;
  color: #c3d2de;
  font-size: 12px;
  line-height: 1.65;
}

.route-panel .button {
  margin-top: 21px;
}

.category-panel {
  margin-top: 45px;
  padding: 36px;
  border: 1px solid #e0e7ed;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.category-panel h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 25px;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.category-chips span {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #dce5ed;
  border-radius: 999px;
  color: #425269;
  background: #fbfcfd;
  font-size: 12px;
  font-weight: 600;
}

.category-chips b {
  min-width: 34px;
  padding: 8px 9px;
  color: var(--orange-600);
  background: var(--orange-100);
  font-family: Arial, sans-serif;
  text-align: center;
}

.category-chips span {
  padding-right: 14px;
}

.category-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #7a8796;
  font-size: 12px;
  line-height: 1.7;
}

.split-heading {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  text-align: left;
}

.split-heading > div {
  max-width: 780px;
}

.filter-bar {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--blue-50);
}

.filter-bar label,
.query-form label {
  display: grid;
  gap: 8px;
}

.filter-bar label > span,
.query-form label > span {
  color: #475467;
  font-size: 11px;
  font-weight: 700;
}

.filter-bar .grow {
  flex: 1;
}

input,
select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #ccd6e0;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  outline: 0;
}

input:focus,
select:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(232, 117, 30, 0.1);
}

input::placeholder {
  color: #a0aab7;
}

.country-filter label:first-child {
  width: 230px;
}

.result-count {
  display: flex;
  min-width: 100px;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  padding: 0 12px 8px;
  color: var(--navy-900);
}

.result-count strong {
  font-family: Arial, sans-serif;
  font-size: 25px;
}

.result-count span {
  font-size: 11px;
}

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

.country-card {
  position: relative;
  overflow: hidden;
  min-height: 315px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 46, 76, 0.05);
  transition: 0.22s ease;
}

.country-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(var(--orange-500), var(--gold-400), var(--green-600));
  content: "";
  opacity: 0;
  transition: 0.22s ease;
}

.country-card:hover {
  border-color: rgba(10, 47, 90, 0.2);
  box-shadow: 0 18px 42px rgba(16, 46, 76, 0.1);
  transform: translateY(-4px);
}

.country-card:hover::before {
  opacity: 1;
}

.country-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.country-code {
  display: grid;
  width: 42px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  color: var(--navy-900);
  background: var(--blue-100);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.region-badge {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--green-700);
  background: var(--green-100);
  font-size: 10px;
  font-weight: 700;
}

.country-card h3 {
  margin: 20px 0 0;
  color: var(--navy-900);
  font-size: 21px;
}

.country-card h3 small {
  display: block;
  margin-top: 5px;
  color: #8b97a6;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.card-label {
  margin: 18px 0 9px;
  color: #7b8796;
  font-size: 10px;
  font-weight: 700;
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.focus-tags span {
  padding: 5px 8px;
  border: 1px solid #e1e7ed;
  border-radius: 7px;
  color: #46576c;
  background: #fafbfc;
  font-size: 10px;
}

.country-note {
  margin: 16px 0 0;
  color: #667487;
  font-size: 11px;
  line-height: 1.7;
}

.country-policy-line {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.country-policy-line span {
  position: relative;
  padding-left: 13px;
  color: var(--green-700);
  font-size: 10px;
  font-weight: 700;
}

.country-policy-line span::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-600);
  content: "";
}

.empty-state {
  padding: 55px 20px;
  border: 1px dashed #ccd7e1;
  border-radius: 18px;
  color: var(--muted);
  background: var(--blue-50);
  text-align: center;
}

.query-section {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(242, 193, 78, 0.08), transparent 24%),
    var(--navy-950);
}

.apr-section {
  padding-top: 0;
  background: var(--navy-950);
}

.query-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.query-heading > div {
  max-width: 760px;
}

.query-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3.5vw, 44px);
}

.query-heading > div > p:last-child {
  margin: 14px 0 0;
  color: #9fb2c3;
  font-size: 14px;
  line-height: 1.75;
}

.official-link {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #d8e4ee;
  font-size: 12px;
  white-space: nowrap;
}

.official-link:hover {
  border-color: var(--orange-500);
  color: #ffc17f;
}

.query-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.query-form {
  display: grid;
  align-items: end;
  gap: 16px;
  padding: 28px;
  background: #f8fafc;
  grid-template-columns: 0.8fr 1.15fr 1.2fr auto;
}

.form-actions {
  display: flex;
  min-width: 132px;
  align-items: center;
  gap: 12px;
}

.query-form .button {
  min-height: 48px;
  border-radius: 10px;
}

.text-button {
  padding: 8px 0;
  color: #738093;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.text-button:hover {
  color: var(--orange-600);
}

.query-disclaimer {
  padding: 14px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #617083;
  background: #fffaf5;
  font-size: 11px;
  line-height: 1.7;
}

.query-disclaimer strong {
  color: var(--orange-600);
}

.query-placeholder {
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 35px;
  color: #8a97a7;
}

.query-placeholder > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--blue-100);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.query-placeholder p,
.query-placeholder strong {
  display: block;
}

.query-placeholder p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.query-placeholder strong {
  margin-bottom: 4px;
  color: var(--navy-900);
  font-size: 14px;
}

.results-wrap {
  padding: 26px;
}

.results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.results-toolbar p {
  margin: 0;
  color: #506075;
  font-size: 13px;
}

.results-toolbar p strong {
  color: var(--navy-900);
  font-family: Arial, sans-serif;
  font-size: 20px;
}

.results-toolbar p small {
  margin-left: 5px;
  color: #8a97a7;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 13px;
}

table {
  width: 100%;
  min-width: 1420px;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: #4d5d70;
  background: #f2f6f9;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

td {
  max-width: 270px;
  color: #5e6c7f;
  font-size: 10px;
  line-height: 1.65;
}

tbody tr:hover {
  background: #fbfcfd;
}

tbody tr:last-child td {
  border-bottom: 0;
}

td strong {
  color: var(--navy-900);
  font-size: 11px;
}

.route-pill {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 6px;
  color: #2d5f86;
  background: var(--blue-100);
  font-size: 9px;
  font-weight: 700;
}

.route-pill.recommended {
  color: var(--orange-600);
  background: var(--orange-100);
}

.route-pill.access {
  color: var(--green-700);
  background: var(--green-100);
}

.verify-status {
  display: inline-block;
  padding-left: 12px;
  color: #677488;
  border-left: 2px solid var(--gold-400);
}

.table-en {
  display: block;
  margin-top: 2px;
  color: #98a3b0;
  font-family: Arial, sans-serif;
  font-size: 8px;
}

.registry-section {
  padding-top: 72px;
  padding-bottom: 58px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 0%, rgba(242, 193, 78, 0.09), transparent 26%),
    linear-gradient(135deg, #061d38, #0a3158 62%, #0d3d65);
}

.apr-registry-section {
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 8% 100%, rgba(33, 129, 95, 0.14), transparent 30%),
    linear-gradient(135deg, #082645, #0b385c 64%, #104766);
}

.registry-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}

.registry-title {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.registry-title > span {
  display: grid;
  min-width: 72px;
  height: 50px;
  place-items: center;
  margin-top: 2px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.registry-title h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(29px, 3.4vw, 42px);
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.registry-title .section-kicker {
  margin-bottom: 7px;
  color: #ffc170;
  letter-spacing: 0.08em;
}

.registry-title > div > p:last-child {
  margin: 10px 0 0;
  color: #adc0cf;
  font-size: 12px;
  line-height: 1.7;
}

.registry-meta {
  display: grid;
  min-width: 170px;
  justify-items: end;
}

.registry-meta strong {
  color: var(--gold-400);
  font-family: Arial, sans-serif;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.registry-meta span {
  margin-top: 2px;
  color: #98afbf;
  font-size: 10px;
}

.registry-meta a {
  margin-top: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: #e5edf3;
  font-size: 10px;
}

.registry-meta a:hover {
  border-color: var(--orange-500);
  color: #ffc17f;
}

.registry-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.17);
}

.official-filter-grid {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: #f7fafc;
}

.cifer-official-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.apr-official-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.official-filter-grid label {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.official-filter-grid label > span {
  overflow: hidden;
  color: #536276;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.official-filter-grid input,
.official-filter-grid select {
  height: 43px;
  border-radius: 8px;
  font-size: 11px;
}

.registry-actions {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  padding: 10px 20px;
  border-top: 1px solid var(--line);
  background: #edf5fa;
}

.registry-actions p {
  margin: 0 auto 0 0;
  color: var(--green-700);
  font-size: 10px;
  font-weight: 700;
}

.registry-actions p.pending {
  color: var(--orange-600);
}

.registry-actions .text-button {
  padding: 8px 0;
  text-decoration: none;
}

.registry-actions .query-button {
  min-width: 128px;
  min-height: 43px;
  border-radius: 9px;
}

.apr-actions .query-button {
  background: var(--green-700);
  box-shadow: 0 8px 20px rgba(23, 109, 80, 0.2);
}

.apr-actions .query-button:hover {
  background: #115b42;
}

.registry-placeholder,
.registry-results {
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.registry-placeholder {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 24px;
}

.registry-placeholder > span {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--blue-100);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.registry-placeholder p,
.registry-placeholder strong {
  display: block;
}

.registry-placeholder p {
  margin: 0;
  color: #8290a0;
  font-size: 11px;
  line-height: 1.7;
}

.registry-placeholder strong {
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: 13px;
}

.registry-results {
  padding: 18px;
}

.registry-results .results-toolbar {
  margin-bottom: 13px;
}

.registry-results .results-toolbar p strong {
  margin-right: 4px;
  font-size: 22px;
}

.registry-results .button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.official-table {
  max-height: 660px;
  border-radius: 11px;
}

.official-table table {
  table-layout: auto;
}

.official-table .cifer-table {
  min-width: 1650px;
}

.official-table .apr-table {
  min-width: 1900px;
}

.official-table th,
.official-table td {
  padding: 12px 11px;
}

.official-table th {
  background: #edf4f8;
  font-size: 9px;
}

.official-table td {
  max-width: 300px;
  font-size: 9px;
  line-height: 1.55;
}

.official-table th:first-child,
.official-table td:first-child {
  width: 58px;
  min-width: 58px;
  text-align: center;
}

.official-table th:nth-child(2),
.official-table td:nth-child(2) {
  min-width: 125px;
}

.code-cell {
  min-width: 180px;
  overflow-wrap: anywhere;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.enterprise-cell {
  min-width: 235px;
  overflow-wrap: anywhere;
}

.address-cell {
  min-width: 280px;
}

.product-cell {
  min-width: 210px;
}

.status-pill {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  color: #59697d;
  background: #eef2f5;
  font-size: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill.valid {
  color: var(--green-700);
  background: var(--green-100);
}

.status-pill.paused {
  color: #8f5e0e;
  background: #fff5d7;
}

.status-pill.invalid {
  color: #9c3e3e;
  background: #fff0f0;
}

.empty-result {
  padding: 42px 20px !important;
  color: #7f8c9a !important;
  text-align: center !important;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 13px;
  color: #667487;
  font-size: 10px;
}

.pagination label,
.pagination > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination select {
  width: 68px;
  height: 34px;
  padding: 0 8px;
  border-radius: 7px;
  font-size: 10px;
}

.pagination button {
  min-width: 62px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid #ccd8e2;
  border-radius: 7px;
  color: var(--navy-900);
  background: var(--white);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
}

.pagination button:hover:not(:disabled) {
  border-color: var(--orange-500);
  color: var(--orange-600);
}

.pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.registry-note {
  margin: 13px 0 0;
  padding-left: 13px;
  border-left: 2px solid rgba(242, 193, 78, 0.72);
  color: #9fb4c4;
  font-size: 9px;
  line-height: 1.7;
}

.service-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(242, 193, 78, 0.12), transparent 28%),
    linear-gradient(120deg, var(--navy-900), #0d426f);
}

.service-section::before {
  position: absolute;
  top: -110px;
  left: -90px;
  width: 340px;
  height: 340px;
  border: 48px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  content: "";
}

.service-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 75px;
  grid-template-columns: 0.82fr 1.18fr;
}

.service-copy h2 {
  color: var(--white);
}

.service-copy > p:not(.section-kicker) {
  margin: 22px 0 0;
  color: #c6d5e1;
  font-size: 14px;
  line-height: 1.85;
}

.service-proof {
  display: grid;
  gap: 18px;
  margin-top: 37px;
  grid-template-columns: repeat(3, 1fr);
}

.service-proof div {
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.service-proof div:last-child {
  border-right: 0;
}

.service-proof strong,
.service-proof span {
  display: block;
}

.service-proof strong {
  color: var(--gold-400);
  font-family: Arial, sans-serif;
  font-size: 28px;
}

.service-proof span {
  margin-top: 5px;
  color: #aabfce;
  font-size: 10px;
}

.service-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  grid-template-columns: repeat(3, 1fr);
}

.service-list > div {
  min-height: 118px;
  padding: 22px;
  background: rgba(8, 42, 75, 0.92);
}

.service-list span,
.service-list strong {
  display: block;
}

.service-list span {
  color: var(--orange-500);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.service-list strong {
  margin-top: 17px;
  color: #edf4f8;
  font-size: 13px;
  line-height: 1.6;
}

.faq-section {
  background: var(--blue-50);
}

.faq-list {
  display: grid;
  max-width: 900px;
  gap: 12px;
  margin: 0 auto;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid #dce5ed;
  border-radius: 15px;
  background: var(--white);
}

.faq-list summary {
  display: grid;
  min-height: 68px;
  align-items: center;
  gap: 15px;
  padding: 14px 20px;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  grid-template-columns: 42px 1fr 20px;
  list-style: none;
}

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

.faq-list summary > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: var(--orange-600);
  background: var(--orange-100);
  font-family: Arial, sans-serif;
  font-size: 10px;
}

.faq-list summary i {
  color: var(--orange-500);
  font-size: 20px;
  font-style: normal;
  transition: 0.2s ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 80px 24px 77px;
  color: #5e6c7f;
  font-size: 13px;
  line-height: 1.85;
}

.sources-section {
  padding-top: 54px;
  padding-bottom: 54px;
}

.source-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}

.source-grid a {
  display: grid;
  min-height: 70px;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  grid-template-columns: 30px 1fr 15px;
  transition: 0.2s ease;
}

.source-grid a:hover {
  border-color: rgba(232, 117, 30, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.source-grid span {
  color: var(--orange-500);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.source-grid strong {
  color: #425269;
  font-size: 11px;
  line-height: 1.6;
}

.source-grid i {
  color: #93a0af;
  font-style: normal;
}

.legal-note {
  margin: 18px 0 0;
  padding: 13px 17px;
  border-left: 3px solid var(--gold-400);
  color: #788596;
  background: #fafbfc;
  font-size: 11px;
  line-height: 1.7;
}

.contact-section {
  padding: 18px 0 62px;
}

.contact-card {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  gap: 45px;
  padding: 52px 56px;
  border-radius: 25px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% -15%, rgba(242, 193, 78, 0.22), transparent 38%),
    linear-gradient(118deg, #071f3b 0%, #0a3158 58%, #174e73 100%);
  box-shadow: 0 24px 60px rgba(6, 29, 56, 0.2);
  grid-template-columns: 1fr auto;
}

.contact-card::before {
  position: absolute;
  right: -85px;
  bottom: -145px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(242, 193, 78, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.025);
  content: "";
}

.contact-card > * {
  position: relative;
  z-index: 2;
}

.contact-card h2 {
  color: var(--white);
}

.contact-card > div > p:not(.section-kicker) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.75;
}

.contact-actions {
  display: flex;
  gap: 12px;
}

.button.white {
  color: var(--navy-900);
  background: var(--white);
}

.button.ghost-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}



@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
    font-size: 13px;
  }

  .hero-grid {
    gap: 42px;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  }

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

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

  .form-actions {
    justify-content: flex-end;
  }

  .service-layout {
    gap: 42px;
  }

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

@media (max-width: 900px) {
  html {
    scroll-padding-top: 78px;
  }

  .top-strip {
    display: none;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 65px;
    right: 0;
    left: 0;
    display: none;
    overflow: hidden;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
  }

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

  .main-nav > a:not(.nav-cta) {
    padding: 13px 15px;
    border-radius: 8px;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .main-nav > a:not(.nav-cta):hover {
    background: var(--blue-50);
  }

  .nav-cta {
    margin-top: 5px;
    border-radius: 9px;
    text-align: center;
  }

  .hero-grid {
    gap: 42px;
    grid-template-columns: 1fr;
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .truth-bar-inner {
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px 0;
  }

  .truth-bar strong,
  .truth-bar small {
    width: 100%;
    margin: 0;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .policy-card {
    min-height: 0;
  }

  .integrated-access {
    grid-template-columns: 1fr;
  }

  .registration-layout {
    grid-template-columns: 1fr;
  }

  .route-panel {
    position: static;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .contact-card {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .registry-heading {
    align-items: flex-start;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    max-width: 185px;
    font-size: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 55px;
  }

  .hero h1 {
    font-size: 39px;
    letter-spacing: -0.045em;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.85;
  }

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

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

  .hero-stat-grid article {
    min-height: 125px;
    padding: 22px 20px;
  }

  .hero-stat-grid strong {
    font-size: 32px;
  }

  .hero-panel-bottom {
    gap: 9px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-panel-bottom span:nth-child(3) {
    border-left: 0;
  }

  .truth-bar span {
    font-size: 12px;
  }

  .section {
    padding: 70px 0;
  }

  .registry-section,
  .apr-registry-section {
    padding: 52px 0 44px;
  }

  .registry-heading {
    align-items: stretch;
    gap: 18px;
    flex-direction: column;
  }

  .registry-title {
    gap: 12px;
  }

  .registry-title > span {
    min-width: 60px;
    height: 44px;
  }

  .registry-meta {
    display: flex;
    min-width: 0;
    align-items: baseline;
    justify-content: flex-start;
    gap: 8px;
  }

  .registry-meta a {
    margin: 0 0 0 auto;
  }

  .official-filter-grid {
    padding: 16px;
    grid-template-columns: 1fr;
  }

  .registry-actions {
    min-height: 0;
    align-items: stretch;
    gap: 10px;
    padding: 14px 16px;
    flex-direction: column;
  }

  .registry-actions p {
    margin: 0;
  }

  .registry-actions .text-button {
    align-self: flex-start;
  }

  .registry-actions .query-button {
    width: 100%;
  }

  .registry-results {
    padding: 13px;
  }

  .registry-placeholder {
    min-height: 0;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
  }

  .pagination {
    align-items: stretch;
    gap: 12px;
    flex-direction: column;
  }

  .pagination > div {
    justify-content: space-between;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .service-copy h2,
  .contact-card h2 {
    font-size: 31px;
  }

  .policy-card {
    padding: 25px;
  }

  .integrated-access,
  .category-panel {
    padding: 25px;
  }

  .product-policy-grid {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 19px;
  }

  .split-heading,
  .query-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .split-heading .button,
  .official-link {
    align-self: flex-start;
  }

  .filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .country-filter label:first-child {
    width: 100%;
  }

  .result-count {
    justify-content: flex-start;
    padding: 0 5px;
  }

  .country-grid {
    grid-template-columns: 1fr;
  }

  .country-card {
    min-height: 0;
  }

  .query-form {
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .form-actions {
    justify-content: flex-start;
  }

  .query-disclaimer {
    padding: 14px 20px;
  }

  .query-placeholder {
    align-items: flex-start;
    flex-direction: column;
  }

  .results-wrap {
    padding: 18px;
  }

  .results-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .results-toolbar .button {
    width: 100%;
  }

  .service-proof {
    gap: 12px;
  }

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

  .service-list > div {
    min-height: 105px;
    padding: 18px;
  }

  .faq-list summary {
    min-height: 74px;
    gap: 10px;
    padding: 13px;
    font-size: 12px;
    grid-template-columns: 36px 1fr 17px;
  }

  .faq-list summary > span {
    width: 34px;
    height: 34px;
  }

  .faq-list details p {
    padding: 0 18px 22px 60px;
    font-size: 12px;
  }

  .source-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding-bottom: 55px;
  }

  .contact-card {
    width: calc(100% - 28px);
    padding: 35px 25px;
  }

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


}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
