@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("plus-jakarta-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("dm-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("dm-mono-400-latin.woff2") format("woff2");
}

@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("dm-mono-500-latin.woff2") format("woff2");
}

:root {
  --red: #9b0000;
  --red-dark: #7f0000;
  --ink: #1b2434;
  --navy: #173d63;
  --navy-dark: #123657;
  --muted: #526982;
  --soft: #f8fafc;
  --line: #d9e2ec;
  --danger-bg: #fff1f2;
  --danger-line: #fecdd3;
  --danger-text: #8a1538;
  --success-bg: #eff6ff;
  --success-line: #bfdbfe;
  --shadow: 0 12px 26px rgba(16, 36, 64, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #fff;
  color: #67768e;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 600;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.site-header {
  position: relative;
  z-index: 100;
  background: var(--red);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-nav {
  width: min(1768px, calc(100% - 152px));
  min-height: 130px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 90px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 0.95vw, 20px);
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  transition: color 0.18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: #fff;
}

.home-hero,
.lookup-page,
.contact-section {
  scroll-margin-top: 130px;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #331a2b;
  color: #fff;
}

.home-hero::before,
.home-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.home-hero::before {
  background: url("peptide-hero.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.home-hero::after {
  background:
    linear-gradient(135deg, rgba(139, 26, 26, 0.95) 0%, rgba(30, 58, 95, 0.98) 100%),
    rgba(0, 0, 0, 0.1);
  opacity: 0.86;
}

.home-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 96px));
  margin-left: max(32px, calc((100vw - 1360px) / 2));
  padding: 24px 0 92px;
}

.home-content h1 {
  margin: 0 0 27px;
  color: #fff;
  font-family: "Plus Jakarta Sans", Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(40px, 2.82vw, 54px);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.58);
}

.home-content p {
  max-width: 760px;
  margin: 0 0 44px;
  color: #fff;
  font-size: clamp(17px, 0.95vw, 20px);
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
}

.home-content strong {
  font-weight: 700;
}

.home-location {
  margin: 0 0 36px;
  display: grid;
  gap: 5px;
  color: #fff;
  font-size: 19px;
  line-height: 1.3;
  font-style: normal;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
}

.home-location strong {
  margin-bottom: 8px;
}

.home-actions {
  width: min(714px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.hero-button {
  min-height: 60px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #a62626;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.home-actions .hero-button:nth-child(-n+2) {
  text-transform: uppercase;
}

.hero-button-light {
  background: #fff;
  color: #9b0000;
}

.hero-button-wide {
  grid-column: 1 / -1;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
}

.scroll-cue svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-cue strong {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.13em;
}

.hero-watermark {
  position: absolute;
  right: max(32px, calc((100vw - 1360px) / 2 + 18px));
  top: 300px;
  z-index: 2;
  width: min(460px, 31vw);
  min-width: 330px;
  opacity: 0.98;
  pointer-events: none;
}

.trust-overview,
.process-section,
.standards-section,
.home-highlights,
.verification-story,
.fdt-downstream-section,
.proof-section,
.partner-section,
.testimonial-section,
.site-disclaimer {
  scroll-margin-top: 130px;
}

.trust-overview {
  padding: 84px 0 46px;
  background: #fff;
  text-align: center;
}

.lookup-followup {
  padding-top: 138px;
}

.lookup-page .container,
.lookup-research-note .container,
.lookup-followup .container,
.process-section .container,
.standards-section .container {
  width: min(1770px, calc(100% - 126px));
}

.home-section-title {
  margin: 0;
  color: #1b2434;
  font-size: clamp(42px, 3.1vw, 58px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.lookup-followup .home-section-title {
  font-size: clamp(56px, 4.35vw, 84px);
}

.home-section-subtitle {
  margin: 18px auto 0;
  color: #667489;
  font-size: 20px;
  line-height: 1.5;
}

.trust-card-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.trust-card {
  min-height: 246px;
  padding: 38px 38px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.trust-card.is-featured {
  box-shadow: 0 18px 32px rgba(16, 36, 64, 0.1);
}

.trust-card:hover,
.trust-card:focus-within {
  border-color: #cdd8e3;
  box-shadow: 0 20px 34px rgba(16, 36, 64, 0.12);
  transform: translateY(-4px);
}

.trust-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f8ecee;
  color: #bd2d32;
}

.trust-icon svg,
.standard-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card h3 {
  margin: 0 0 12px;
  color: #101722;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 800;
}

.trust-card p {
  max-width: 330px;
  margin: 0;
  color: #63758b;
  font-size: 18px;
  line-height: 1.45;
}

.process-section {
  padding: 12px 0 36px;
  background: #fff;
}

.process-panel {
  padding: 56px 58px 68px;
  border-radius: 12px;
  background: #f7fafc;
  text-align: center;
}

.process-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.process-step {
  min-width: 0;
  text-align: center;
  transition: transform 0.2s ease;
}

.process-step:hover {
  transform: translateY(-3px);
}

.process-step span {
  width: 60px;
  height: 60px;
  margin: 0 auto 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #a91317;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 7px 14px rgba(95, 23, 34, 0.2);
}

.process-step h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 800;
}

.process-step p {
  max-width: 245px;
  margin: 0 auto;
  color: #64758b;
  font-size: 17px;
  line-height: 1.45;
}

.standards-section {
  padding: 0 0 74px;
  background: #fff;
}

.standards-strip {
  min-height: 120px;
  padding: 26px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 82px;
  border-radius: 10px;
  background: #1f4169;
  color: #fff;
}

.standard-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s ease;
}

.standard-item:hover {
  transform: translateY(-2px);
}

.standard-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.standard-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.standard-item h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.standard-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
}

@media (min-width: 1400px) {
  .trust-card-grid {
    gap: 44px;
  }

  .trust-card {
    min-height: 380px;
    padding: 58px 48px 54px;
  }

  .trust-icon {
    width: 94px;
    height: 94px;
    margin-bottom: 34px;
    border-radius: 14px;
  }

  .trust-icon svg {
    width: 44px;
    height: 44px;
  }

  .trust-card h3 {
    font-size: 32px;
  }

  .trust-card p {
    max-width: 470px;
    font-size: 29px;
  }
}

.home-highlights {
  padding: 88px 0 72px;
  background: #f7fafc;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 27px;
}

.home-highlights .highlight-grid {
  width: min(1100px, calc(100% - 64px));
  margin: 0 auto;
}

.highlight-card {
  min-height: 330px;
  padding: 36px 27px;
  display: block;
  border: 1px solid #dfe7f0;
  border-radius: 12px;
  background: #fff;
  text-align: center;
}

.highlight-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(166, 38, 38, 0.1) 0%, rgba(139, 26, 26, 0.05) 100%);
  color: #b12c30;
}

.highlight-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highlight-card h3 {
  max-width: none;
  margin: 0 0 9px;
  color: #1a1a1a;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.highlight-card p {
  max-width: 265px;
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.5;
}

.trust-ribbon {
  background: #fff;
}

.trust-ribbon-inner {
  width: min(1280px, calc(100% - 64px));
  min-height: 50px;
  margin: 0 auto;
  padding: 0 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  background: #113a66;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Courier New", monospace;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-ribbon-inner span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.trust-ribbon-inner span::before {
  width: 6px;
  height: 6px;
  content: "";
  display: inline-block;
  border-radius: 999px;
  background: #d43d3f;
}

.trust-ribbon-inner strong {
  color: #fff;
}

.verification-story {
  padding: 106px 0 51px;
  background: #fff;
  text-align: center;
}

.verification-story .container {
  width: min(1200px, calc(100% - 64px));
}

.section-kicker {
  width: fit-content;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #17416c;
  font-family: "Courier New", monospace;
  font-size: 13px;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-kicker::before,
.section-kicker::after {
  width: 38px;
  height: 1px;
  content: "";
  display: block;
  background: #cdd8e3;
}

.section-title {
  max-width: 680px;
  margin: 0 auto 22px;
  color: #0a1f3d;
  font-family: "Plus Jakarta Sans", Inter, "Segoe UI", Arial, sans-serif;
  font-size: 48px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0;
}

.section-title span {
  color: #b12c30;
}

.section-title-small {
  max-width: 760px;
  font-size: 44px;
  line-height: 1.16;
}

.section-lead {
  max-width: 780px;
  margin: 0 auto;
  color: #5a6a7a;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
}

.section-lead-left {
  max-width: 560px;
  margin: 0;
}

.data-showcase {
  width: min(520px, 100%);
  min-height: 316px;
  margin: 88px auto 0;
  padding: 50px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid #dce5ef;
  border-top: 3px solid #113a66;
  background: #f6f9fd;
  text-align: center;
}

.data-showcase p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #7487a0;
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.data-showcase i {
  width: 11px;
  height: 11px;
  display: inline-block;
  border-radius: 999px;
  background: #48b987;
  box-shadow: 0 0 0 4px rgba(72, 185, 135, 0.14);
}

.data-showcase strong {
  display: block;
  color: #06264b;
  font-size: clamp(63px, 10vw, 108px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.data-showcase strong span {
  color: #b12c30;
  font-size: 0.45em;
  vertical-align: top;
}

.data-showcase small {
  display: block;
  margin-top: 0;
  color: #7a8fa0;
  font-family: "Courier New", monospace;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.data-showcase em {
  display: block;
  margin-top: 0;
  color: #9aabb8;
  font-size: 12px;
  line-height: 1.45;
  font-style: italic;
}

.metric-grid {
  width: min(1028px, 100%);
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.metric-grid article {
  position: relative;
  min-height: 0;
  padding: 32px 18px;
  border: 1px solid #dfe7f0;
  border-radius: 0;
  background: #f8fbff;
  text-align: center;
  box-shadow: none;
}

.metric-grid b {
  position: absolute;
  top: -1px;
  right: -1px;
  padding: 8px 16px 9px;
  background: #06264b;
  color: #fff;
  font-family: "Courier New", monospace;
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-grid strong {
  display: block;
  color: #b12c30;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.metric-grid sup {
  color: #06264b;
  font-size: 0.62em;
  line-height: 0;
}

.metric-grid .metric-navy {
  color: #06264b;
}

.metric-grid .metric-red {
  margin-top: 9px;
  color: #b12c30;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.metric-grid span {
  display: block;
  margin-top: 9px;
  color: #526982;
  font-family: "Courier New", monospace;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fdt-downstream-section {
  padding: 0 0 48px;
  background: #fff;
}

.fdt-downstream-inner {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
}

.fdt-pillars {
  width: min(1028px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 27px;
}

.fdt-pillar {
  min-height: 252px;
  padding: 32px;
  border-left: 3px solid #dce6f0;
  transition: border-color 0.2s ease;
}

.fdt-pillar:hover {
  border-left-color: #0a2e5c;
}

.fdt-pillar-num {
  margin-bottom: 11px;
  color: #a62626;
  font-family: "Courier New", monospace;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.fdt-pillar-title {
  margin-bottom: 9px;
  color: #0a1f3d;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
}

.fdt-pillar-body {
  margin: 0 0 21px;
  max-width: none;
  color: #5a6a7a;
  font-size: 13px;
  line-height: 1.65;
}

.fdt-leaderboard {
  width: min(1028px, 100%);
  margin: 54px auto 0;
  padding: 45px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  border: 1px solid #dce6f0;
  background: #f9fbfd;
}

.fdt-leaderboard-header {
  text-align: center;
}

.fdt-leaderboard-eyebrow {
  margin: 0 0 9px;
  color: #9aabb8;
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.fdt-leaderboard-title {
  margin: 0 0 20px;
  color: #0a1f3d;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}

.fdt-leaderboard-sub {
  margin: 0;
  color: #7a8fa0;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 300;
}

.fdt-partners-grid {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.fdt-partner {
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  padding: 27px 18px;
  border: 1px solid #dce6f0;
  border-top: 3px solid #0a2e5c;
  background: #fff;
  text-align: center;
}

.fdt-partner-name {
  color: #0a1f3d;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.fdt-partner-label {
  margin-top: 6px;
  color: #9aabb8;
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fdt-leaderboard-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9aabb8;
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fdt-lb-live-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 999px;
  background: #2a9d5c;
  animation: fdt-pulse 2.2s ease-in-out infinite;
}

.fdt-footer-strip {
  width: 100%;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.fdt-seal {
  padding: 16px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  border: 1px solid #dce6f0;
  background: #f9fbfd;
}

.fdt-seal-top,
.fdt-seal-sub,
.fdt-footer-text {
  color: #9aabb8;
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fdt-seal-name {
  color: #0a1f3d;
  font-size: 13px;
  font-weight: 800;
}

.fdt-footer-div {
  width: 1px;
  height: 14px;
  background: #dce6f0;
}

.fd-reviews-section {
  padding: 36px 0 26px;
  background: #fff;
}

.fd-reviews-section h2 {
  max-width: 900px;
  margin: 0 auto 20px;
  color: #1e293b;
  font-size: 40.5px;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
}

.fd-reviews-subtitle {
  margin: 0 0 20px;
  color: #64748b;
  font-size: 21px;
  line-height: 1.5;
  text-align: center;
}

.fd-testimonials-grid {
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fd-testimonial {
  padding: 27px;
  position: relative;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fd-testimonial:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.fd-testimonial.featured {
  grid-column: span 2;
  border-color: rgba(166, 38, 38, 0.2);
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.fd-testimonial-text {
  margin: 0 0 22px;
  padding-top: 8px;
  color: #374151;
  font-size: 18px;
  line-height: 1.7;
}

.fd-testimonial-author {
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 600;
}

.fd-testimonial-date {
  color: #64748b;
  font-size: 15px;
}

.fd-cta-wrap {
  padding: 0 0 18px;
  background: #fff;
}

.fd-cta-section {
  margin: 27px 0;
  padding: 45px 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, #8b1a1a 0%, #a62626 50%, #c73e3e 100%);
  text-align: center;
}

.fd-cta-section h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 36px;
  line-height: 1.25;
  font-weight: 600;
}

.fd-cta-section p {
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.5;
}

.fd-cta-btn {
  min-height: 48px;
  padding: 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff;
  color: #a62626;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

.fd-disclaimer-wrap {
  padding: 36px 0 54px;
  background: #fff;
}

.fd-disclaimer {
  margin-top: 0;
  padding: 27px 36px;
  border-left: 4px solid #a62626;
  border-radius: 12px;
  background: #f8fafc;
}

.fd-disclaimer h4 {
  margin: 0 0 9px;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}

.fd-disclaimer p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

.fd-disclaimer a {
  color: #a62626;
  font-weight: 700;
}

.vendor-confidence-section {
  padding: 132px 0 108px;
  background: #f6f9fc;
}

.vendor-confidence-inner {
  width: min(1768px, calc(100% - 152px));
  margin: 0 auto;
}

.vendor-confidence-kicker {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #06264b;
  font-family: "Courier New", monospace;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.32em;
  text-align: center;
  text-transform: uppercase;
}

.vendor-confidence-kicker::before,
.vendor-confidence-kicker::after {
  content: "";
  width: 80px;
  height: 1px;
  background: #c8d7e8;
}

.vendor-confidence-section h2 {
  margin: 55px 0 0;
  color: #1c2637;
  font-size: 64px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.vendor-card-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.vendor-card {
  min-height: 260px;
  padding: 46px 42px 42px;
  border: 1px solid #dce6f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(10, 31, 61, 0.04);
}

.vendor-card h3 {
  margin: 0 0 24px;
  color: #061f40;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
}

.vendor-card p {
  margin: 0;
  color: #526982;
  font-size: 24px;
  line-height: 1.55;
}

@keyframes fdt-pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}

.proof-section {
  padding: 92px 0;
  background: #f7fafc;
}

.proof-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.proof-grid article,
.partner-panel article,
.testimonial-grid figure {
  border: 1px solid #dfe7f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(16, 36, 64, 0.07);
}

.proof-grid article {
  padding: 28px;
}

.proof-grid h3 {
  margin: 0 0 12px;
  color: #172234;
  font-size: 22px;
  line-height: 1.25;
}

.proof-grid p {
  margin: 0;
  color: #5f728b;
  font-size: 16px;
  line-height: 1.6;
}

.partner-section {
  padding: 92px 0;
  background: #fff;
}

.partner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 56px;
  align-items: center;
}

.partner-inner .section-kicker {
  margin-left: 0;
}

.partner-inner .section-kicker::before {
  display: none;
}

.partner-inner .section-title {
  margin-left: 0;
  text-align: left;
}

.partner-panel {
  display: grid;
  gap: 16px;
}

.partner-panel article {
  padding: 22px 24px;
}

.partner-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #b12c30;
  font-size: 20px;
}

.partner-panel span {
  color: #5f728b;
  font-size: 15px;
  line-height: 1.55;
}

.testimonial-section {
  padding: 92px 0;
  background: #f7fafc;
}

.testimonial-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-grid figure {
  margin: 0;
  padding: 30px;
}

.testimonial-grid blockquote {
  margin: 0;
  color: #1e2a3c;
  font-size: 19px;
  line-height: 1.55;
}

.testimonial-grid figcaption {
  margin-top: 22px;
  color: #6d7f95;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-disclaimer {
  padding: 42px 0;
  background: #f7fafc;
  border-top: 1px solid #dfe7f0;
}

.site-disclaimer h2 {
  margin: 0 0 10px;
  color: #172234;
  font-size: 20px;
  line-height: 1.25;
}

.site-disclaimer p {
  max-width: 980px;
  margin: 0;
  color: #667991;
  font-size: 14px;
  line-height: 1.6;
}

.lookup-research-note {
  padding: 44px 0 88px;
  background: #fff;
  color: #8a98b4;
  text-align: center;
}

.lookup-research-note .container {
  border-top: 2px solid #d3d8df;
}

.lookup-research-note p {
  margin: 62px 0 0;
  font-size: 18px;
  line-height: 1.5;
}

.lookup-research-note span {
  margin: 0 10px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #9b0000;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #7f0000;
  transform: translateY(-2px);
}

.lookup-page {
  min-height: calc(100vh - 174px);
  background: #fff;
}

.lookup-hero {
  padding: 66px 0 92px;
}

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

.page-kicker {
  margin: 0 0 128px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(48px, 4vw, 72px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
}

.lead {
  margin: 0 0 38px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.lookup-tabs {
  display: flex;
  align-items: flex-end;
  border-bottom: 2px solid var(--line);
  margin-bottom: 42px;
}

.tab-button {
  min-height: 36px;
  margin: 0;
  padding: 0 22px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0 0 28px 28px;
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  transform: translateY(2px);
  box-shadow: 0 8px 18px rgba(23, 61, 99, 0.06);
  transition: color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.tab-button:hover {
  color: var(--navy-dark);
  transform: translateY(0);
}

.tab-button.is-active {
  color: var(--navy-dark);
  border-color: var(--navy-dark);
  box-shadow: 0 7px 18px rgba(23, 61, 99, 0.12);
}

.instruction-panel {
  padding: 18px 16px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  margin-bottom: 40px;
}

.instruction-panel h2 {
  margin: 0 0 14px;
  color: var(--navy-dark);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #254463;
  font-size: 13px;
  line-height: 1.4;
}

.steps span {
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 14px;
  margin-bottom: 24px;
}

.search-input {
  width: 100%;
  height: 52px;
  padding: 0 20px;
  border: 2px solid var(--navy-dark);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  outline: none;
  box-shadow: 0 7px 18px rgba(23, 61, 99, 0.12);
}

.search-input::placeholder {
  color: #99a7b8;
}

.search-input:focus {
  border-color: #092d4d;
  box-shadow: 0 0 0 4px rgba(23, 61, 99, 0.13), 0 7px 18px rgba(23, 61, 99, 0.12);
}

.search-button,
.open-pdf,
.viewer-button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.search-button:hover,
.open-pdf:hover,
.viewer-button:hover {
  background: var(--navy-dark);
}

.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.search-button:disabled {
  cursor: progress;
  opacity: 0.95;
}

.button-spinner {
  width: 18px;
  height: 18px;
  display: inline-block;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 999px;
  animation: spin 0.75s linear infinite;
}

.steps code {
  padding: 2px 6px;
  border-radius: 3px;
  background: #e8edf5;
  color: var(--navy-dark);
  font-family: inherit;
  font-size: 12px;
}

.example-code {
  margin-top: 14px;
  padding: 14px 16px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.example-code[hidden] {
  display: none;
}

.example-code span {
  color: #9aa7bd;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.example-code strong {
  color: var(--navy-dark);
  font-size: 14px;
}

.example-code b {
  color: #b31318;
}

.example-code small {
  display: flex;
  align-items: center;
  gap: 8px 12px;
  flex-wrap: wrap;
  color: #58708b;
}

.example-code i {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 999px;
  background: #b31318;
}

.example-code i:last-of-type {
  background: var(--navy);
}

.search-button:active,
.open-pdf:active,
.company-open-pdf:active,
.certificate-open-pdf:active,
.viewer-button:active {
  transform: translateY(1px);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hint {
  min-height: 26px;
  margin: 0 0 24px;
  color: #8494ad;
  font-size: 17px;
}

.results {
  display: grid;
  gap: 16px;
}

.status-card {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--success-bg);
  color: var(--ink);
}

.status-card.is-error {
  border-color: var(--danger-line);
  background: var(--danger-bg);
  color: var(--danger-text);
}

.status-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
}

.status-card p {
  margin: 0;
  color: inherit;
  font-size: 16px;
  line-height: 1.55;
}

.status-card a {
  font-weight: 700;
}

.result-stack {
  display: grid;
  gap: 12px;
}

.company-result-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 36, 64, 0.08);
}

.company-result-header {
  min-height: 62px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy);
  color: #fff;
}

.company-result-header h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.company-result-count {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.company-result-list {
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.company-result-row {
  min-height: 56px;
  padding: 10px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #edf2f7;
}

.company-result-row:last-child {
  border-bottom: 0;
}

.company-result-code {
  color: #1f2b3a;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.company-open-pdf {
  min-height: 32px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #e4e9f0;
  border-radius: 6px;
  background: #fff;
  color: var(--navy-dark);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(16, 36, 64, 0.06);
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.company-open-pdf:hover,
.company-open-pdf:focus-visible {
  border-color: #cfd9e6;
  background: #f8fafc;
  box-shadow: 0 6px 14px rgba(16, 36, 64, 0.1);
}

.certificate-stack {
  display: grid;
  gap: 16px;
}

.certificate-result-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 36, 64, 0.08);
}

.certificate-result-header {
  min-height: 62px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy);
  color: #fff;
}

.certificate-result-header h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.certificate-result-header span {
  min-width: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.certificate-result-body {
  padding: 26px 22px 24px;
  display: grid;
  gap: 26px;
}

.certificate-table {
  margin: 0;
  display: grid;
}

.certificate-table > div {
  min-height: 46px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #edf2f7;
}

.certificate-table dt,
.certificate-table dd {
  margin: 0;
}

.certificate-table dt {
  color: #69788b;
  font-size: 16px;
  line-height: 1.35;
}

.certificate-table dd {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  text-align: right;
  overflow-wrap: anywhere;
}

.certificate-status {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: #2d7569;
}

.certificate-status span {
  font-weight: 900;
}

.certificate-open-pdf {
  min-height: 46px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  background: #ffcf54;
  color: #1b2434;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(210, 151, 23, 0.18);
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.certificate-open-pdf:hover,
.certificate-open-pdf:focus-visible {
  background: #f4bc2d;
  box-shadow: 0 10px 22px rgba(210, 151, 23, 0.24);
}

.result-card {
  padding: 18px 18px 18px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 36, 64, 0.08);
}

.result-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

.result-meta {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 10px 24px;
  color: #294c6f;
  font-size: 15px;
}

.result-meta div {
  min-width: 0;
}

.result-meta dt {
  margin: 0 0 3px;
  color: #77869a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-meta dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.open-pdf {
  min-width: 124px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #f8fafc;
  color: #53677f;
}

.contact-page-main {
  background: #fff;
}

.contact-page {
  min-height: calc(100vh - 130px);
  padding: 58px 0 94px;
}

.contact-page-content {
  width: min(768px, calc(100% - 40px));
  margin: 0 auto;
}

.contact-page h1 {
  margin: 0 0 28px;
  color: #172234;
  font-size: clamp(44px, 3.1vw, 58px);
  line-height: 1.05;
  font-weight: 800;
  text-align: center;
}

.contact-intro-title {
  margin: 0 0 38px;
  color: #738198;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
  text-align: center;
}

.contact-page p,
.contact-page li {
  color: #6a7b94;
  font-size: 21px;
  line-height: 1.52;
}

.contact-page p {
  margin: 0 0 34px;
}

.contact-page h2 {
  margin: 36px 0 18px;
  color: #172234;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
}

.contact-page ul {
  margin: 0 0 34px;
  padding-left: 24px;
}

.contact-page-note {
  text-align: center;
}

.contact-form {
  margin-top: 86px;
  display: grid;
  gap: 34px;
}

.contact-form[hidden],
.contact-response[hidden],
.is-contact-view-hidden {
  display: none !important;
}

.contact-field {
  display: grid;
  gap: 18px;
}

.contact-form label {
  color: #172234;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.contact-form label span {
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 0;
  border: 1px solid #dce3ed;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  outline: none;
}

.contact-form input {
  height: 66px;
  padding: 12px 24px;
}

.contact-form textarea {
  height: 486px;
  min-height: 486px;
  padding: 18px 24px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #9aaec4;
  box-shadow: 0 0 0 6px rgba(156, 180, 205, 0.35);
}

.contact-field.has-error input {
  border-color: #dc2626;
  box-shadow: none;
}

.field-error {
  margin-top: -4px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #b91c1c;
  font-size: 28px;
  line-height: 1.35;
}

.field-error[hidden],
.contact-form-error[hidden] {
  display: none;
}

.field-error svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: currentColor;
}

.contact-form-error {
  padding: 28px 26px 30px;
  background: #bd2e34;
  color: #fff;
  font-size: 29px;
  line-height: 1.35;
}

.contact-form-error p {
  margin: 0 0 8px;
  color: #fff;
  font-size: inherit;
  line-height: inherit;
  text-align: left;
}

.contact-form-error ul {
  margin: 0;
  padding-left: 28px;
}

.contact-form-error li {
  color: #fff;
  font-size: inherit;
  line-height: inherit;
}

.contact-form-error a {
  color: #fff;
  text-decoration: underline;
}

.contact-submit-wrap {
  display: flex;
  justify-content: center;
}

.contact-submit {
  width: 280px;
  min-height: 73px;
  margin-top: 15px;
  border: 0;
  border-radius: 999px;
  background: #ffcf5b;
  color: #172234;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.contact-submit:disabled {
  cursor: wait;
}

.contact-submit-spinner {
  width: 35px;
  height: 35px;
  display: none;
  border: 3px solid #172234;
  border-left-color: transparent;
  border-radius: 999px;
  animation: contact-submit-spin 0.85s linear infinite;
}

.contact-submit.is-loading .contact-submit-spinner {
  display: inline-block;
}

@keyframes contact-submit-spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #ffc740;
}

.contact-submit:active {
  transform: translateY(1px);
}

.contact-response {
  margin-top: 86px;
}

.contact-response-back {
  display: inline-flex;
  margin-bottom: 40px;
  color: #62738c;
  font-size: 27px;
  line-height: 1.3;
  text-decoration: none;
}

.contact-response-back:hover,
.contact-response-back:focus-visible {
  color: #172234;
  text-decoration: underline;
}

.contact-response h2 {
  margin: 0 0 72px;
  color: #172234;
  font-size: clamp(44px, 3vw, 53px);
  line-height: 1.12;
  font-weight: 500;
}

.contact-response-list {
  margin: 0;
}

.contact-response-item {
  padding: 38px 0 46px;
  border-top: 1px solid #d9e2ec;
}

.contact-response-item:last-child {
  border-bottom: 1px solid #d9e2ec;
}

.contact-response-item dt {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #9aa7ba;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 400;
}

.contact-response-item dt svg {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  fill: currentColor;
}

.contact-response-item dd {
  margin: 0 0 0 46px;
  color: #62738c;
  font-size: 29px;
  line-height: 1.35;
  font-weight: 600;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.contact-page-body .site-footer {
  background: #fff;
  border-top: 0;
  text-align: center;
}

.contact-page-body .footer-inner {
  justify-content: center;
  color: #53677f;
}

.action-page-body {
  background: #fff;
}

.action-page-main {
  background: #fff;
}

.action-page {
  min-height: calc(100vh - 130px);
  padding: 58px 0 94px;
}

.action-page-content {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
}

.action-page-content-narrow {
  width: min(640px, calc(100% - 40px));
}

.action-hero {
  padding: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, #081f34 0%, #1b6ca8 60%, #2db7d6 100%);
  color: #fff;
  box-shadow: 0 18px 38px rgba(16, 36, 64, 0.16);
}

.action-hero h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(36px, 3.1vw, 56px);
  line-height: 1.12;
  font-weight: 800;
}

.action-hero p {
  max-width: 860px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
}

.action-hero-actions,
.action-bottom-buttons,
.action-quick-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.action-hero-actions {
  margin-top: 26px;
}

.action-button,
.action-small-button,
.action-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.action-button {
  min-height: 54px;
  padding: 0 22px;
  background: #7ce0d3;
  color: #0b2942;
}

.action-button-light {
  background: #fff;
  color: #0b2942;
}

.action-small-button {
  min-height: 46px;
  padding: 0 18px;
  background: var(--navy);
  color: #fff;
}

.action-link-button {
  min-height: 42px;
  margin-top: 14px;
  padding: 0 16px;
  background: #e9f4fb;
  color: #0b2942;
}

.action-trust-grid {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.action-trust-grid span {
  min-height: 58px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e8f2;
  border-radius: 8px;
  background: #f4f9fc;
  color: #1b6ca8;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
  text-align: center;
}

.action-quick-start {
  padding: 30px;
  border: 1px solid #d8e8f2;
  border-radius: 12px;
  background: #f4f9fc;
  text-align: center;
}

.action-quick-start h2 {
  margin: 0 0 10px;
  color: #172234;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 800;
}

.action-quick-start p,
.action-quick-start strong {
  margin: 0;
  color: #58708b;
  font-size: 17px;
  line-height: 1.55;
}

.action-quick-start strong {
  display: block;
  margin-top: 8px;
  color: #172234;
}

.action-quick-buttons {
  justify-content: center;
  margin-top: 22px;
}

.action-step-grid {
  margin: 24px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.action-step-grid li {
  min-height: 132px;
  padding: 18px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #f3f9fc;
  text-align: center;
}

.action-step-grid span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1b6ca8;
  color: #fff;
  font-weight: 900;
}

.action-step-grid strong {
  color: #16324f;
  font-size: 16px;
  line-height: 1.35;
}

.action-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.action-card {
  padding: 24px;
  border: 1px solid #dbe8f1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(16, 36, 64, 0.06);
}

.action-card h2 {
  margin: 0 0 14px;
  color: #172234;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 800;
}

.action-card h3 {
  margin: 0 0 10px;
  color: #172234;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
}

.action-card p,
.action-card li {
  color: #5f7188;
  font-size: 16px;
  line-height: 1.6;
}

.action-card p {
  margin: 0 0 14px;
}

.action-card ul {
  margin: 0;
  padding-left: 21px;
}

.action-note,
.action-address,
.action-option {
  margin: 16px 0;
  padding: 14px;
  border-radius: 8px;
  background: #f7fbfd;
}

.action-note {
  border-left: 4px solid #f0b429;
  background: #fff8e8;
  color: #5f7188;
  line-height: 1.55;
}

.action-address p {
  margin-bottom: 0;
}

.action-bottom-buttons {
  margin-top: 16px;
}

.fd-submission-page-section {
  min-height: calc(100vh - 130px);
  padding: 58px 0 94px;
  background: #fff;
}

.fd-submission-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  color: #16324f;
  font-family: Arial, Helvetica, sans-serif;
}

.fd-page-title {
  margin: 0 0 72px;
  color: #172234;
  font-family: "Plus Jakarta Sans", Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(40px, 2.45vw, 46px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0;
}

.fd-hero {
  margin-bottom: 25px;
  padding: 40px;
  border-radius: 16px;
  background: linear-gradient(135deg, #081f34 0%, #1b6ca8 60%, #2db7d6 100%);
  color: #fff;
}

.fd-hero h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 36px;
  line-height: 1.25;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.fd-hero p {
  max-width: none;
  margin: 0;
  color: #f0f6fb;
  font-size: 17px;
  line-height: 1.65;
}

.fd-hero-buttons,
.fd-bottom-buttons,
.fd-quick-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fd-hero-buttons {
  margin-top: 20px;
}

.fd-btn {
  min-height: 50px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: underline;
  transition: filter 0.18s ease, transform 0.18s ease;
}

.fd-btn:hover,
.fd-btn:focus-visible,
.fd-quick-btn:hover,
.fd-quick-btn:focus-visible,
.fd-link-btn:hover,
.fd-link-btn:focus-visible {
  filter: brightness(0.96);
}

.fd-btn:active,
.fd-quick-btn:active,
.fd-link-btn:active {
  transform: translateY(1px);
}

.fd-btn-primary {
  background: #fff;
  color: #0b2942;
}

.fd-btn-secondary {
  background: #7ce0d3;
  color: #2638ff;
}

.fd-trust {
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  color: #1b6ca8;
  text-align: center;
  font-weight: 600;
}

.fd-trust div {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  color: #1b6ca8;
  font-size: 18px;
  line-height: 1.45;
}

.fd-trust span {
  color: #343a40;
  font-size: 28px;
  line-height: 1;
}

.fd-quick-start {
  margin-bottom: 30px;
  padding: 30px;
  border: 1px solid #d8e8f2;
  border-radius: 12px;
  background: #f4f9fc;
  text-align: center;
}

.fd-quick-start h2 {
  margin: 0 0 12px;
  color: #172234;
  font-family: "Plus Jakarta Sans", Inter, "Segoe UI", Arial, sans-serif;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 600;
}

.fd-quick-start p {
  margin: 0 0 6px;
  color: #58708b;
  font-size: 17px;
  line-height: 1.55;
}

.fd-quick-buttons {
  justify-content: center;
  margin-top: 20px;
  gap: 15px;
}

.fd-quick-btn {
  min-height: 48px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #1b6ca8;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.18s ease, transform 0.18s ease;
}

.fd-step-bar {
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.fd-step-item {
  padding: 16px;
  border-radius: 10px;
  background: #f3f9fc;
  text-align: center;
}

.fd-step-icon {
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 1;
}

.fd-step-item span {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1b6ca8;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

.fd-step-item p {
  margin: 0;
  color: #16324f;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}

.fd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fd-card {
  padding: 22px;
  border: 1px solid #dbe8f1;
  border-radius: 12px;
  background: #fff;
}

.fd-card h2 {
  margin: 0 0 12px;
  color: #172234;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
}

.fd-card h3 {
  margin: 0 0 8px;
  color: #172234;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.fd-card p,
.fd-card li {
  color: #5f7188;
  font-size: 16px;
  line-height: 1.6;
}

.fd-card p {
  margin: 0 0 14px;
}

.fd-card ul {
  margin: 0;
  padding-left: 21px;
}

.fd-link-btn {
  margin-top: 12px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #e9f4fb;
  color: #0b2942;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.18s ease, transform 0.18s ease;
}

.fd-note {
  margin: 15px 0;
  padding: 12px;
  border-left: 4px solid #f0b429;
  background: #fff8e8;
  color: #5f7188;
  font-size: 16px;
  line-height: 1.55;
}

.fd-option,
.fd-address {
  margin-top: 15px;
  padding: 14px;
  border-radius: 8px;
  background: #f7fbfd;
}

.fd-bottom-buttons {
  margin-top: 16px;
}

.payment-original-page {
  min-height: calc(100vh - 130px);
  padding: 58px 0 94px;
  background: #fff;
}

.payment-original-content {
  width: min(1620px, calc(100% - 280px));
  margin: 0 auto;
}

.payment-page-title {
  margin: 0 0 34px;
  color: #172234;
  font-size: clamp(40px, 2.45vw, 46px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0;
}

.payment-original-card {
  width: 100%;
  max-width: 560px;
  margin: 20px auto 0;
  padding: 18px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.payment-original-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.payment-original-header h2 {
  margin: 0;
  color: #172234;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.payment-encrypted {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #555;
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
}

.payment-original-intro {
  margin: 10px 0 14px;
  color: #444;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  overflow-wrap: break-word;
}

.fd-payment-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.fd-payment-field {
  display: grid;
  gap: 4px;
}

.fd-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.fd-payment-field label {
  display: block;
  margin: 0;
  color: #111827;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
}

.fd-payment-field input {
  width: 100%;
  min-height: 40px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #fff;
  color: #666;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  box-shadow: none;
  outline: none;
}

.fd-payment-field input::placeholder {
  color: #9ca3af;
}

.fd-payment-field input:focus {
  color: #111;
  border-color: #ccc;
  box-shadow: none;
}

.fd-card-note {
  display: flex;
  align-items: flex-end;
  color: #666;
  font-size: 12px;
  line-height: 1.3;
}

.fd-payment-submit {
  min-height: 58px;
  padding: 12px 16px;
  border: 0;
  border-radius: 12px;
  background: #ffcf54;
  color: #071423;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  cursor: pointer;
  box-shadow: none;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.fd-payment-submit:hover,
.fd-payment-submit:focus-visible {
  color: #071423;
  background: #f6bf36;
}

.fd-payment-submit:active {
  transform: translateY(1px);
}

.fd-payment-submit:disabled {
  background: #e6e6e6;
  color: #fff;
  cursor: default;
  opacity: 1;
}

.fd-payment-message {
  min-height: 18px;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.4;
}

.fd-payment-message.is-error {
  color: crimson;
}

.fd-payment-message.is-success {
  color: green;
}

.contact-section {
  padding: 76px 0;
  background: linear-gradient(135deg, #8b1a1a 0%, #1e3a5f 100%);
  color: #fff;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.contact-section h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 800;
}

.contact-section p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.55;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-button,
.contact-email {
  min-height: 56px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
}

.contact-button {
  background: #a62626;
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  text-transform: uppercase;
}

.contact-email {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 15px;
  text-align: center;
}

.footer-inner a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.viewer-page {
  height: 100vh;
  overflow: hidden;
  background: #142338;
}

.viewer-shell {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.viewer-bar {
  min-height: 64px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--red);
  color: #fff;
}

.viewer-title {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.viewer-title strong,
.viewer-title span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.viewer-title span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.viewer-button {
  min-height: 42px;
  padding: 0 18px;
  background: var(--navy);
  white-space: nowrap;
}

.viewer-body {
  flex: 1;
  min-height: 0;
  background: #d8dce3;
}

.viewer-body iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #fff;
}

.invalid-viewer {
  min-height: 100vh;
  padding: 24px;
  display: grid;
  place-items: center;
  background: #fff;
}

.invalid-viewer .status-card {
  width: min(480px, 100%);
}

@media (max-width: 1320px) {
  .trust-ribbon-inner {
    min-height: 64px;
    padding: 14px 28px;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .trust-ribbon-inner span {
    white-space: normal;
    min-width: 0;
  }
}

@media (max-width: 1100px) {
  .trust-card-grid {
    gap: 22px;
  }

  .highlight-grid,
  .proof-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 28px;
  }

  .standards-strip {
    flex-wrap: wrap;
    gap: 24px 52px;
  }

  .standard-item {
    flex: 1 1 330px;
    justify-content: center;
  }

  .trust-ribbon-inner {
    min-height: 72px;
    padding: 16px 28px;
    flex-wrap: wrap;
    gap: 14px 30px;
  }

  .partner-inner {
    grid-template-columns: 1fr;
  }

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

  .vendor-confidence-inner {
    width: min(calc(100% - 64px), 1200px);
  }

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

  .fdt-downstream-inner {
    width: min(calc(100% - 64px), 1200px);
  }

  .fdt-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

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

@media (max-width: 760px) {
  .site-nav {
    width: min(calc(100% - 32px), 1200px);
    min-height: 86px;
    gap: 20px;
  }

  .brand img {
    width: 88px;
  }

  .nav-links {
    gap: 14px;
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 32px), 1200px);
  }

  .lookup-page .container,
  .lookup-research-note .container,
  .lookup-followup .container,
  .process-section .container,
  .standards-section .container {
    width: min(calc(100% - 32px), 1200px);
  }

  .verification-story .container {
    width: min(calc(100% - 32px), 1200px);
  }

  .home-hero,
  .trust-overview,
  .process-section,
  .standards-section,
  .home-highlights,
  .verification-story,
  .fdt-downstream-section,
  .vendor-confidence-section,
  .proof-section,
  .partner-section,
  .testimonial-section,
  .lookup-page,
  .contact-section,
  .site-disclaimer {
    scroll-margin-top: 86px;
  }

  .home-hero {
    min-height: calc(100vh - 86px);
    align-items: flex-start;
  }

  .home-content {
    width: min(calc(100% - 32px), 520px);
    margin: 0 auto;
    padding: 74px 0 120px;
  }

  .home-content h1 {
    margin-bottom: 24px;
    font-size: 45px;
    line-height: 1.16;
  }

  .home-content p {
    font-size: 20px;
    line-height: 1.58;
  }

  .home-location {
    font-size: 18px;
  }

  .home-actions {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-button {
    width: 100%;
    font-size: 18px;
  }

  .scroll-cue {
    bottom: 30px;
  }

  .scroll-cue span {
    width: 58px;
    height: 58px;
    border-width: 3px;
  }

  .scroll-cue svg {
    width: 34px;
    height: 34px;
  }

  .scroll-cue strong {
    font-size: 15px;
  }

  .hero-watermark {
    display: none;
  }

  .home-highlights,
  .trust-overview,
  .process-section,
  .verification-story,
  .fdt-downstream-section,
  .proof-section,
  .partner-section,
  .testimonial-section {
    padding: 58px 0;
  }

  .highlight-grid,
  .trust-card-grid,
  .process-grid,
  .proof-grid,
  .testimonial-grid,
  .metric-grid,
  .fdt-pillars,
  .partner-panel {
    grid-template-columns: 1fr;
  }

  .lookup-followup {
    padding-top: 76px;
  }

  .home-section-title {
    font-size: 36px;
    line-height: 1.14;
  }

  .lookup-followup .home-section-title {
    font-size: 36px;
  }

  .home-section-subtitle {
    font-size: 17px;
  }

  .trust-card {
    min-height: auto;
    padding: 34px 24px;
  }

  .trust-card h3 {
    font-size: 22px;
  }

  .trust-card p {
    font-size: 17px;
  }

  .process-panel {
    padding: 42px 20px 46px;
  }

  .process-grid {
    margin-top: 42px;
    gap: 34px;
  }

  .process-step p {
    max-width: 290px;
  }

  .standards-section {
    padding-bottom: 58px;
  }

  .standards-strip {
    padding: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .standard-item {
    width: 100%;
    flex: none;
    justify-content: flex-start;
  }

  .standard-item h3 {
    font-size: 17px;
  }

  .lookup-research-note {
    padding: 28px 0 56px;
  }

  .lookup-research-note p {
    margin-top: 36px;
    font-size: 15px;
  }

  .highlight-card {
    min-height: auto;
    padding: 34px 24px;
  }

  .highlight-icon {
    margin-bottom: 24px;
  }

  .highlight-card h3 {
    font-size: 25px;
  }

  .highlight-card p {
    font-size: 18px;
  }

  .trust-ribbon-inner {
    width: min(calc(100% - 32px), 1200px);
    min-height: 0;
    padding: 18px 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .trust-ribbon-inner span {
    white-space: normal;
  }

  .section-kicker {
    width: auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
  }

  .section-kicker::before,
  .section-kicker::after {
    width: 28px;
  }

  .section-title {
    font-size: 38px;
    line-height: 1.16;
  }

  .section-title-small {
    font-size: 34px;
  }

  .section-lead,
  .section-lead-left {
    max-width: none;
    font-size: 16px;
  }

  .data-showcase {
    margin-top: 48px;
    padding: 36px 20px 32px;
  }

  .data-showcase p {
    align-items: flex-start;
    font-size: 11px;
  }

  .data-showcase strong {
    font-size: 64px;
  }

  .data-showcase strong span {
    font-size: 34px;
  }

  .fdt-downstream-inner {
    width: min(calc(100% - 32px), 1200px);
  }

  .fdt-pillars {
    gap: 22px;
  }

  .fdt-pillar {
    min-height: auto;
    padding: 30px 22px 28px;
  }

  .fdt-pillar-num {
    margin-bottom: 16px;
  }

  .fdt-pillar-title {
    font-size: 22px;
  }

  .fdt-pillar-body {
    max-width: none;
    font-size: 17px;
  }

  .fdt-leaderboard {
    margin-top: 38px;
    padding: 30px 18px;
  }

  .fdt-partners-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .fdt-partner {
    width: 100%;
    max-width: none;
  }

  .fdt-footer-strip {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .fdt-footer-div {
    display: none;
  }

  .vendor-confidence-section {
    padding: 72px 0 58px;
  }

  .vendor-confidence-inner {
    width: min(calc(100% - 32px), 1200px);
  }

  .vendor-confidence-kicker {
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.24em;
  }

  .vendor-confidence-kicker::before,
  .vendor-confidence-kicker::after {
    width: 38px;
  }

  .vendor-confidence-section h2 {
    margin-top: 34px;
    font-size: 40px;
    line-height: 1.12;
  }

  .vendor-card-grid {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vendor-card {
    min-height: auto;
    padding: 30px 24px 32px;
  }

  .vendor-card h3 {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .vendor-card p {
    font-size: 18px;
    line-height: 1.55;
  }

  .metric-grid article,
  .proof-grid article,
  .testimonial-grid figure {
    padding: 24px;
  }

  .partner-inner .section-title,
  .partner-inner .section-kicker {
    text-align: center;
    margin-left: auto;
  }

  .partner-inner .section-kicker::before {
    display: block;
  }

  .site-disclaimer {
    padding: 34px 0;
  }

  .action-page {
    min-height: calc(100vh - 86px);
    padding: 42px 0 72px;
  }

  .action-page-content,
  .action-page-content-narrow {
    width: min(calc(100% - 32px), 520px);
  }

  .action-hero {
    padding: 30px 22px;
    border-radius: 12px;
  }

  .action-hero h1 {
    font-size: 36px;
  }

  .action-hero p {
    font-size: 16px;
  }

  .action-hero-actions,
  .action-bottom-buttons,
  .action-quick-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .action-button,
  .action-small-button,
  .action-link-button {
    width: 100%;
  }

  .action-trust-grid,
  .action-step-grid,
  .action-card-grid {
    grid-template-columns: 1fr;
  }

  .action-quick-start {
    padding: 24px 18px;
  }

  .action-quick-start h2 {
    font-size: 26px;
  }

  .action-step-grid li {
    min-height: 112px;
  }

  .action-card {
    padding: 22px 18px;
  }

  .action-card h2 {
    font-size: 22px;
  }

  .fd-submission-page-section {
    min-height: calc(100vh - 86px);
    padding: 42px 0 72px;
  }

  .fd-submission-page {
    width: min(calc(100% - 32px), 560px);
    padding: 0;
  }

  .fd-page-title {
    margin-bottom: 42px;
    font-size: 38px;
    line-height: 1.22;
  }

  .fd-hero {
    padding: 30px 22px;
    border-radius: 12px;
  }

  .fd-hero h2 {
    font-size: 32px;
  }

  .fd-hero p {
    font-size: 16px;
  }

  .fd-hero-buttons,
  .fd-bottom-buttons,
  .fd-quick-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .fd-btn,
  .fd-quick-btn,
  .fd-link-btn {
    width: 100%;
  }

  .fd-trust,
  .fd-step-bar,
  .fd-grid {
    grid-template-columns: 1fr;
  }

  .fd-quick-start {
    padding: 24px 18px;
  }

  .fd-quick-start h2 {
    font-size: 32px;
  }

  .fd-card {
    padding: 22px 18px;
  }

  .fd-card h2 {
    font-size: 22px;
  }

  .payment-original-page {
    min-height: calc(100vh - 86px);
    padding: 42px 0 72px;
  }

  .payment-original-content {
    width: min(calc(100% - 32px), 560px);
  }

  .payment-page-title {
    margin-bottom: 28px;
    font-size: 38px;
    line-height: 1.22;
  }

  .payment-original-card {
    margin-top: 16px;
  }

  .payment-original-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .fd-payment-grid {
    grid-template-columns: 1fr;
  }

  .fd-payment-submit {
    width: 100%;
  }

  .contact-page {
    min-height: calc(100vh - 86px);
    padding: 72px 0 82px;
  }

  .contact-page-content {
    width: min(calc(100% - 32px), 520px);
  }

  .contact-page h1 {
    font-size: 42px;
  }

  .contact-intro-title {
    margin-bottom: 28px;
    font-size: 18px;
  }

  .contact-page p,
  .contact-page li {
    font-size: 17px;
  }

  .contact-page h2 {
    font-size: 22px;
  }

  .contact-form {
    margin-top: 48px;
    gap: 28px;
  }

  .contact-field {
    gap: 12px;
  }

  .contact-form label {
    font-size: 20px;
  }

  .contact-form input {
    height: 60px;
    padding: 10px 18px;
    font-size: 22px;
  }

  .contact-form textarea {
    height: 390px;
    min-height: 390px;
    padding: 14px 18px;
    font-size: 22px;
  }

  .field-error {
    font-size: 22px;
  }

  .contact-form-error {
    padding: 22px 24px;
    font-size: 22px;
  }

  .contact-submit {
    width: min(280px, 100%);
    min-height: 70px;
    gap: 22px;
  }

  .contact-response {
    margin-top: 56px;
  }

  .contact-response-back {
    margin-bottom: 30px;
    font-size: 22px;
  }

  .contact-response h2 {
    margin-bottom: 46px;
    font-size: 36px;
  }

  .contact-response-item {
    padding: 28px 0 34px;
  }

  .contact-response-item dt {
    margin-bottom: 20px;
    gap: 12px;
    font-size: 22px;
  }

  .contact-response-item dt svg {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .contact-response-item dd {
    margin-left: 36px;
    font-size: 23px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 38px;
    height: 38px;
    font-size: 23px;
  }

  .lookup-hero {
    padding: 42px 0 64px;
  }

  .page-kicker {
    margin-bottom: 78px;
    font-size: 24px;
  }

  h1 {
    font-size: 43px;
  }

  .lead {
    font-size: 17px;
  }

  .lookup-tabs {
    align-items: stretch;
  }

  .tab-button {
    flex: 1;
    min-height: 50px;
    padding: 0 14px;
    font-size: 15px;
  }

  .instruction-panel {
    padding: 18px;
  }

  .steps li {
    font-size: 15px;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .search-button {
    width: 100%;
  }

  .company-result-header {
    min-height: 0;
    padding: 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .company-result-count {
    font-size: 14px;
  }

  .company-result-row {
    min-height: 58px;
    padding: 12px 16px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .company-result-code {
    font-size: 15px;
  }

  .company-open-pdf {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  .certificate-result-header {
    min-height: 0;
    padding: 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .certificate-result-header span {
    font-size: 14px;
  }

  .certificate-result-body {
    padding: 18px;
    gap: 20px;
  }

  .certificate-table > div {
    min-height: 0;
    padding: 12px 0;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .certificate-table dd {
    text-align: left;
  }

  .certificate-status {
    justify-content: flex-start;
  }

  .certificate-open-pdf {
    width: 100%;
  }

  .result-card {
    grid-template-columns: 1fr;
  }

  .result-meta {
    grid-template-columns: 1fr;
  }

  .open-pdf {
    width: 100%;
  }

  .footer-inner,
  .viewer-bar,
  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions,
  .contact-button,
  .contact-email {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Live-site fidelity overrides (verified against freedomdiagnosticstesting.com)
   -------------------------------------------------------------------------- */

:root {
  --red: #960000;
}

.site-header {
  min-height: 130px;
  border-bottom: 0;
  background: var(--red);
}

.site-nav {
  width: min(1200px, calc(100% - 40px));
  min-height: 130px;
}

.brand img {
  width: 120px;
}

.nav-links {
  gap: 36px;
  font-size: 18px;
  font-weight: 400;
}

.home-page .site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.home-page .home-hero {
  min-height: calc(100vh + 120px);
  padding: 100px 80px;
  align-items: center;
}

.home-hero::before {
  transform: none;
}

.home-hero::after {
  opacity: 0.8;
}

.home-layout {
  position: relative;
  z-index: 2;
  width: min(1360px, 100%);
  margin: 0 auto;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 57% 43%;
  align-items: center;
}

.home-content {
  width: auto;
  margin: 0;
  padding: 0 8% 0 0;
}

.home-content h1 {
  margin: 0 0 27px;
  font-size: 54px;
  line-height: 1.4;
  font-weight: 600;
}

.home-content p {
  max-width: none;
  margin: 0 0 28.8px;
  font-size: 18px;
  line-height: 1.7;
}

.home-location {
  margin: 0 0 43px;
  display: block;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
}

.home-location strong,
.home-location span {
  display: block;
}

.home-location strong {
  margin: 0;
}

.home-actions {
  width: 100%;
  gap: 24px;
}

.hero-button {
  min-height: 60px;
  padding: 20px 40px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  box-shadow: none;
  transition: filter 0.2s linear;
}

.hero-button:hover,
.hero-button:focus-visible {
  filter: brightness(0.95);
}

.hero-watermark {
  position: static;
  width: 100%;
  min-width: 0;
  opacity: 1;
}

.fd-scroll-indicator-fixed {
  position: fixed;
  bottom: 32px;
  left: 50%;
  z-index: 100;
  text-align: center;
  opacity: 1;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
}

.fd-scroll-indicator-fixed.hidden {
  opacity: 0;
  pointer-events: none;
}

.fd-scroll-indicator-fixed a {
  text-decoration: none;
}

.fd-scroll-arrow {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  animation: fd-scroll-pulse 2s ease-in-out infinite;
  transition: border-color 0.2s;
}

.fd-scroll-arrow:hover,
.fd-scroll-arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.9);
}

.fd-scroll-arrow svg {
  display: none;
}

.fd-scroll-arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  content: "";
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  transform: translate(-50%, -60%) rotate(45deg);
}

.fd-scroll-text {
  margin-top: 8px;
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12.6px;
  line-height: 20.79px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes fd-scroll-pulse {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }

  50% {
    opacity: 0.6;
    transform: translateY(8px);
  }
}

.home-highlights {
  padding: 40px 0;
  background: #f8fafc;
}

.home-highlights .highlight-grid {
  width: min(1200px, calc(100% - 40px));
  gap: 24px;
}

.home-highlights .highlight-card {
  min-height: 315px;
  padding: 32px 24px;
}

@media (prefers-reduced-motion: reduce) {
  .fd-scroll-arrow {
    animation: none;
  }
}

@media (max-width: 900px) {
  .home-page .home-hero {
    min-height: 100vh;
    padding: 126px 24px 72px;
    align-items: flex-start;
  }

  .home-layout {
    width: min(100%, 600px);
    padding-bottom: 64px;
    grid-template-columns: 1fr;
  }

  .home-content {
    padding: 0;
  }

  .home-content h1 {
    font-size: clamp(40px, 8vw, 48px);
    line-height: 1.16;
  }

  .home-actions {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-button-wide {
    grid-column: auto;
  }

  .hero-watermark {
    width: min(460px, 90%);
    margin: 52px auto 0;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-nav {
    min-height: 86px;
  }

  .site-nav {
    width: min(calc(100% - 32px), 1200px);
  }

  .brand img {
    width: 88px;
  }

  .home-page .home-hero {
    padding-top: 132px;
  }

  .home-location {
    margin-bottom: 32px;
  }

  .hero-watermark {
    display: none;
  }

  .fd-scroll-indicator-fixed {
    bottom: 20px;
  }

  .home-highlights {
    padding: 58px 0;
  }

  .home-highlights .highlight-grid {
    width: min(calc(100% - 32px), 1200px);
  }
}

/* Certificate of Analysis lookup - live WordPress layout and controls. */

.lookup-page .container,
.lookup-followup .container,
.process-section .container,
.standards-section .container {
  width: min(1200px, calc(100% - 40px));
}

.lookup-hero {
  padding: 47px 0 0;
}

.lookup-hero .page-kicker {
  margin: 0 0 87.27px;
  color: #1e293b;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
}

.coa-wrap {
  max-width: 1200px;
  margin: 0;
  padding: 36px 18px;
  box-sizing: border-box;
  color: #475569;
  font-family: "DM Sans", sans-serif;
}

.coa-heading {
  margin: 0 0 20px;
  color: #1e293b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 64px;
  line-height: 1.4;
  font-weight: 600;
}

.coa-sub {
  margin: 0 0 22.4px;
  color: #64748b;
  font-size: 14px;
  line-height: 23.1px;
}

.coa-tabs {
  margin: 0 0 27px;
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e2e8f0;
}

.coa-tab {
  min-height: 36px;
  margin: 0 0 -2px;
  padding: 10px 20px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: #64748b;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.coa-tab:hover,
.coa-tab:focus-visible,
.coa-tabs.is-interacted .coa-tab.active {
  background: #ffcd57;
  color: #1a3a5c;
  border-radius: 999px;
  box-shadow: inset 0 -2px 0 #1a3a5c;
}

.coa-tabs.is-interacted .coa-tab.active {
  border-bottom-color: #1a3a5c;
}

.coa-tabs:not(.is-interacted) .coa-tab.active {
  border-bottom-color: transparent;
}

.coa-tab:focus-visible {
  outline: 2px solid rgba(26, 58, 92, 0.35);
  outline-offset: 2px;
}

.coa-panel {
  display: none;
}

.coa-panel.active {
  display: block;
}

.coa-panel[hidden] {
  display: none;
}

.coa-how {
  margin: 0 0 27px;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
}

.coa-how-title {
  margin: 0 0 10px;
  color: #1a3a5c;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  line-height: 19.8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.coa-how-row {
  margin: 0 0 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.coa-how-num {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  flex: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1a3a5c;
  color: #fff;
  font-size: 11px;
  line-height: 11px;
  font-weight: 600;
}

.coa-how-text {
  margin: 0;
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
}

.coa-how-text code {
  padding: 1px 5px;
  border-radius: 4px;
  background: #e2e8f0;
  color: #1a3a5c;
  font-family: "DM Mono", monospace;
  font-size: 12px;
}

.coa-sample {
  margin-top: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
}

.coa-sample-label {
  margin-bottom: 2px;
  color: #94a3b8;
  font-size: 11px;
  line-height: 18.15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.coa-sample-parts {
  display: flex;
  gap: 0;
}

.coa-part {
  font-family: "DM Mono", monospace;
  font-size: 14px;
  line-height: 23.1px;
  font-weight: 500;
}

.coa-part-client {
  color: #a62626;
}

.coa-part-accession {
  color: #1a3a5c;
}

.coa-part-legend {
  margin-top: 6px;
  display: flex;
  gap: 16px;
}

.coa-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #64748b;
  font-size: 11px;
  line-height: 18.15px;
}

.coa-legend-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  display: inline-block;
  border-radius: 50%;
}

.coa-legend-client {
  background: #a62626;
}

.coa-legend-accession {
  background: #1a3a5c;
}

.coa-input-row {
  margin: 0 0 18px;
  display: flex;
  gap: 10px;
}

.coa-wrap .coa-input,
.coa-wrap .coa-company-input {
  width: auto;
  height: auto;
  min-width: 0;
  padding: 12px 16px;
  flex: 1;
  border: 2px solid #1a3a5c;
  border-radius: 8px;
  outline: none;
  background: #fff;
  color: #1a1a1a;
  font-size: 15px;
  line-height: 24px;
  box-shadow: 0 2px 8px rgba(26, 58, 92, 0.15);
}

.coa-wrap .coa-input {
  font-family: "DM Mono", monospace;
  letter-spacing: 0.06em;
}

.coa-wrap .coa-company-input {
  font-family: "DM Sans", sans-serif;
}

.coa-wrap .coa-input:focus,
.coa-wrap .coa-company-input:focus {
  border-color: #1a3a5c;
  box-shadow: 0 2px 8px rgba(26, 58, 92, 0.15);
}

.coa-btn {
  padding: 10px 20px;
  align-self: stretch;
  border: 0;
  border-radius: 8px;
  background: #1a3a5c;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
}

.coa-btn:hover,
.coa-btn:focus-visible {
  background: #0f2740;
  color: #1e293b;
}

.coa-btn:active {
  background: #0b2035;
  color: #1e293b;
}

.coa-btn:disabled {
  cursor: wait;
  opacity: 0.82;
}

.coa-btn.is-loading {
  min-width: 130px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

#coa-search-btn.is-loading {
  width: 130px;
  flex: 0 0 130px;
}

#company-search-btn.is-loading {
  width: 136px;
  flex: 0 0 136px;
}

.coa-btn.is-loading:hover,
.coa-btn.is-loading:focus-visible,
.coa-btn.is-loading:active {
  color: #fff;
}

.coa-hint {
  margin: 0 0 36px;
  color: #94a3b8;
  font-size: 12px;
  line-height: 19.8px;
}

.coa-result-wrap.hidden,
.hidden {
  display: none;
}

.coa-result {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.coa-result-stack {
  display: grid;
  gap: 18px;
}

.coa-result-header,
.coa-file-list-header {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a3a5c;
}

.coa-result-title,
.coa-file-list-title {
  color: #e8f0f8;
  font-size: 13px;
  line-height: 21.45px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coa-result-code,
.coa-file-list-count {
  color: #a8c4e0;
  font-family: "DM Mono", monospace;
  font-size: 13px;
}

.coa-result-body {
  padding: 18px;
  background: #fff;
}

.coa-result-row {
  padding: 6px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13px;
}

.coa-result-row:last-child {
  border-bottom: 0;
}

.coa-result-label {
  color: #64748b;
}

.coa-result-val {
  color: #1a1a1a;
  font-weight: 500;
}

.coa-result-val.pass {
  color: #0f6e56;
}

.coa-open-btn {
  width: 100%;
  margin-top: 14px;
  padding: 11px;
  display: block;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  color: #1a3a5c;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}

.coa-open-btn:hover,
.coa-open-btn:focus-visible {
  background: #f1f5f9;
}

.coa-error {
  padding: 18px;
  border: 1px solid #fca5a5;
  border-radius: 12px;
  background: #fef2f2;
  color: #991b1b;
  font-size: 14px;
  line-height: 1.5;
}

.coa-error strong {
  margin-bottom: 4px;
  display: block;
}

.coa-error a {
  color: inherit;
}

.coa-file-list {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.coa-file-item {
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13px;
}

.coa-file-item:last-child {
  border-bottom: 0;
}

.coa-file-code {
  color: #1a1a1a;
  font-family: "DM Mono", monospace;
}

.coa-file-open {
  padding: 5px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #f8fafc;
  color: #1a3a5c;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.coa-file-open:hover,
.coa-file-open:focus-visible {
  background: #f1f5f9;
}

.coa-spinner {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  vertical-align: middle;
  animation: coa-spin 0.7s linear infinite;
}

@keyframes coa-spin {
  to {
    transform: rotate(360deg);
  }
}

.coa-divider {
  margin: 36px 0;
  border: 0;
  border-top: 1px solid #e2e8f0;
}

.coa-footer {
  margin: 0 0 17.6px;
  color: #94a3b8;
  font-size: 11px;
  line-height: 18.15px;
  text-align: center;
}

#coa-search-btn {
  width: 89.83px;
  flex: 0 0 89.83px;
}

.back-to-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: background-color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top.is-visible:hover,
.back-to-top.is-visible:focus-visible {
  transform: translateY(-2px);
}

/* Jetpack-style back-to-top control used by the source site. */
.back-to-top {
  right: 16px;
  bottom: 16px;
  width: 32px;
  height: 32px;
  border-radius: 2px;
  background: #a90000;
  color: transparent;
  font-size: 0;
  box-shadow: none;
}

.back-to-top::before {
  width: 9px;
  height: 9px;
  margin-top: 5px;
  display: block;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  transform: rotate(45deg);
}

.back-to-top.is-visible:hover,
.back-to-top.is-visible:focus-visible {
  background: #960000;
}

/* Keep the source site's navigation rule: only Home has a persistent bright state. */
.nav-links a[aria-current="page"] {
  color: #fff;
}

/* The source button turns its label dark only while hovered, focused, or pressed. */
.coa-wrap .coa-btn {
  color: #fff;
}

.coa-wrap .coa-btn:hover,
.coa-wrap .coa-btn:focus-visible,
.coa-wrap .coa-btn:active {
  color: #1e293b;
}

.lookup-followup {
  padding-top: 84px;
}

.lookup-followup .home-section-title {
  font-size: 48px;
}

.lookup-followup .trust-card-grid {
  margin-top: 36px;
  gap: 24px;
}

.lookup-followup .trust-card {
  min-height: 0;
  padding: 36px 27px;
}

.lookup-followup .trust-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
}

.lookup-followup .trust-icon svg {
  width: 28px;
  height: 28px;
}

.lookup-followup .trust-card h3 {
  font-size: 20px;
}

.lookup-followup .trust-card p {
  font-size: 16px;
}

.lookup-page + .lookup-followup {
  margin-top: 0;
}

@media (max-width: 760px) {
  .lookup-page .container,
  .lookup-followup .container,
  .process-section .container,
  .standards-section .container {
    width: min(calc(100% - 32px), 1200px);
  }

  .lookup-hero {
    padding-top: 32px;
  }

  .lookup-hero .page-kicker {
    margin-bottom: 56px;
    font-size: 24px;
    line-height: 1.25;
  }

  .coa-wrap {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding: 28px 16px;
  }

  .coa-heading {
    margin-bottom: 14px;
    font-size: 43px;
    line-height: 1.2;
  }

  .coa-tabs {
    overflow-x: auto;
  }

  .coa-tab {
    padding-right: 14px;
    padding-left: 14px;
  }

  .coa-how {
    padding: 14px;
  }

  .coa-part-legend {
    gap: 8px 14px;
    flex-wrap: wrap;
  }

  .coa-input-row {
    align-items: stretch;
  }

  .coa-btn {
    padding-right: 16px;
    padding-left: 16px;
  }

  .coa-result-header,
  .coa-file-list-header,
  .coa-file-item {
    gap: 10px;
  }

  .lookup-followup .home-section-title {
    font-size: 36px;
  }
}

/* Contact page - verified 480px WordPress/Jetpack content column. */

.contact-page {
  min-height: calc(100vh - 130px);
  padding: 100px 0 94px;
}

.contact-page-content {
  width: min(480px, calc(100% - 40px));
}

.contact-page h1 {
  margin: 0 0 18px;
  color: #1e293b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 48px;
  line-height: 1.3;
  font-weight: 600;
}

.contact-intro-title {
  margin: 0 0 28.8px;
  color: #67768e;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
}

.contact-page p,
.contact-page li {
  color: #67768e;
  font-size: 18px;
  line-height: 1.65;
}

.contact-page p {
  margin: 0 0 28.8px;
}

.contact-page h2 {
  margin: 36px 0 18px;
  color: #1e293b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.contact-page ul {
  margin: 0 0 28.8px;
  padding-left: 20px;
}

.contact-page-note {
  text-align: center;
}

.contact-form {
  margin-top: 132.2px;
  display: block;
}

.contact-field {
  margin-bottom: 24px;
  display: block;
}

.contact-form label {
  margin: 0 0 3.5px;
  display: block;
  color: #111827;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid #f2f5f7;
  border-radius: 5px;
  background: #fff;
  color: #475569;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
  box-shadow: none;
}

.contact-form input {
  height: 40px;
}

.contact-form textarea {
  height: 506px;
  min-height: 506px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #9aaec4;
  box-shadow: 0 0 0 3px rgba(156, 180, 205, 0.25);
}

.contact-field.has-error input {
  border-color: #dc2626;
}

.field-error {
  margin-top: 6px;
  gap: 6px;
  color: #b91c1c;
  font-size: 14px;
  line-height: 20px;
}

.field-error svg {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}

.contact-form-error {
  margin: 0 0 24px;
  padding: 14px 16px;
  border-radius: 4px;
  background: #bd2e34;
  font-size: 14px;
  line-height: 1.5;
}

.contact-form-error p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.contact-submit-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 0;
}

.contact-submit {
  width: auto;
  min-width: 129.56px;
  min-height: 44px;
  margin: 0;
  padding: 12px 40px;
  gap: 10px;
  border-radius: 50px;
  background: #ffcd57;
  color: #1e293b;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
}

.contact-submit-spinner {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

.contact-response {
  margin-top: 24px;
}

@media (max-width: 760px) {
  .contact-page {
    padding: 64px 0 72px;
  }

  .contact-page-content {
    width: min(calc(100% - 32px), 480px);
  }

  .contact-page h1 {
    font-size: 40px;
  }

  .contact-form {
    margin-top: 72px;
  }

  .contact-form textarea {
    height: 360px;
    min-height: 360px;
  }
}

/* Secure payment page - original 1200px article and 560px payment card. */

.payment-original-page {
  padding-top: 47px;
}

.payment-original-content {
  width: min(1200px, calc(100% - 40px));
}

.payment-page-title {
  margin: 0 0 40px;
  color: #1e293b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
}

/* Privacy Policy - source-page typography and long-form reading layout. */
.privacy-main {
  width: min(1200px, calc(100% - 40px));
  min-height: calc(100vh - 130px);
  margin: 0 auto;
  padding: 60px 0 72px;
}

.privacy-page-kicker {
  margin: 0 0 26.99px;
  color: #1e293b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
}

.privacy-document {
  padding: 36px 27px 0;
  color: #64748b;
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.8;
}

.privacy-document-head {
  margin: 0 0 40px;
  padding: 0 0 50px;
  border-bottom: 1px solid #eef2f5;
  text-align: center;
}

.privacy-document-head h1 {
  margin: 0 0 9px;
  color: #1a1a1a;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 45px;
  line-height: 1.4;
  font-weight: 600;
}

.privacy-document-head p {
  margin: 0 0 27.36px;
  font-size: 17.1px;
  line-height: 28.215px;
}

.privacy-document section {
  margin: 0 0 45px;
}

.privacy-document h2 {
  width: fit-content;
  margin: 0 0 18px;
  padding: 0 0 9px;
  border-bottom: 2px solid #bd2e34;
  color: #1a1a1a;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24.3px;
  line-height: 1.3;
  font-weight: 600;
}

.privacy-document p {
  margin: 0 0 18px;
}

.privacy-document .privacy-document-head p {
  margin: 0 0 27.36px;
}

.privacy-document ul {
  margin: 18px 0;
  padding-left: 27px;
}

.privacy-document li {
  margin: 0 0 9px;
  padding-left: 0;
}

.privacy-document a {
  color: #bd2e34;
  text-decoration: underline;
}

.privacy-contact {
  margin-top: 43.64px !important;
  padding: 20px 37px 14px;
  border-left: 3px solid #bd2e34;
  border-radius: 7px;
  background: #f5f7f9;
}

.privacy-contact h3 {
  margin: 0 0 9px;
  color: #1a1a1a;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 19.8px;
  line-height: 1.3;
  font-weight: 600;
}

.privacy-contact p {
  margin-bottom: 9px;
}

.privacy-page-body .site-footer {
  background: #f0f0f0;
}

@media (max-width: 760px) {
  .privacy-main {
    width: min(calc(100% - 32px), 1200px);
    padding-top: 42px;
  }

  .privacy-page-kicker {
    font-size: 26px;
  }

  .privacy-document {
    padding: 26px 0 0;
  }

  .privacy-document-head {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .privacy-document-head h1 {
    font-size: 36px;
  }

  .privacy-document h2 {
    font-size: 22px;
  }
}

@media (max-width: 760px) {
  .payment-original-page {
    padding-top: 32px;
  }

  .payment-original-content {
    width: min(calc(100% - 32px), 1200px);
  }

  .payment-page-title {
    margin-bottom: 28px;
    font-size: 28px;
  }
}

/* Shared responsive navigation. */

.nav-toggle {
  display: none;
}

@media (max-width: 760px) {
  .site-nav {
    position: relative;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    width: 24px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: currentColor;
    content: "";
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .nav-toggle span {
    position: relative;
  }

  .nav-toggle span::before,
  .nav-toggle span::after {
    position: absolute;
    left: 0;
  }

  .nav-toggle span::before {
    top: -7px;
  }

  .nav-toggle span::after {
    top: 7px;
  }

  .site-header.is-menu-open .nav-toggle span {
    background: transparent;
  }

  .site-header.is-menu-open .nav-toggle span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .nav-toggle span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: -16px;
    left: -16px;
    z-index: 110;
    padding: 10px 24px 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--red);
    font-size: 17px;
  }

  .site-header.is-menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
  }
}
