:root {
  --navy: #06172f;
  --navy-soft: #10294f;
  --ink: #18243a;
  --muted: #6f7890;
  --gold: #c9a24b;
  --gold-light: #f0d68d;
  --white: #ffffff;
  --mist: #f4f7fb;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(3, 13, 31, 0.26);
  --page-pad: clamp(20px, 5vw, 70px);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #ffffff;
  background: linear-gradient(
    180deg,
    #4f46e5 0%,
    #4f46e5 25%,
    #3730a3 25%,
    #3730a3 50%,
    #1e1b4b 50%,
    #1e1b4b 75%,
    #020617 75%,
    #020617 100%
  );
  text-rendering: optimizeLegibility;
}

body,
body h1,
body h2,
body h3,
body h4,
body p,
body span,
body a,
body label,
body strong,
body button,
body input {
  color: #ffffff;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--page-pad);
  color: var(--white);
  background: linear-gradient(180deg, rgba(3, 13, 31, 0.82), rgba(3, 13, 31, 0));
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  transition: color 180ms ease, opacity 180ms ease;
}

.brand-mark:hover {
  color: #ffffff;
}

.logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-seal {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(240, 214, 141, 0.6);
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.header-nav {
  display: flex;
  gap: 24px;
  color: #ffffff;
  font-size: 0.94rem;
}

.header-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.header-nav a:hover {
  color: var(--white);
}

.header-nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  min-height: 92vh;
  padding: 130px var(--page-pad) 74px;
  overflow: hidden;
  color: var(--white);
  background: transparent;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.85));
}

.hero-content,
.credential-panel {
  position: relative;
  z-index: 1;
}

.eyebrow,
.panel-kicker,
.result-label,
.info-band span {
  margin: 0;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7.2vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.subtitle {
  max-width: 760px;
  margin-bottom: 34px;
  color: #ffffff;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.55;
}

.verification-form {
  max-width: 760px;
  padding: clamp(16px, 2vw, 20px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.verification-form label {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

input,
button {
  min-height: 58px;
  border-radius: 8px;
  font: inherit;
}

input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 18px;
  color: var(--white);
  background: rgba(4, 16, 34, 0.5);
  outline: none;
}

input::placeholder {
  color: #ffffff;
}

input:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.18);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(240, 214, 141, 0.55);
  outline-offset: 4px;
}

button {
  border: 0;
  min-width: 128px;
  padding: 0 28px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(201, 162, 75, 0.28);
  filter: saturate(1.05);
}

button:active {
  transform: translateY(0);
}

.form-hint {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 0.92rem;
}

.result-card {
  max-width: 760px;
  margin-top: 18px;
  padding: 0;
  border: 1px solid rgba(201, 162, 75, 0.26);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.5);
  color: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: riseIn 260ms ease both;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(10, 28, 55, 0.09);
  background:
    linear-gradient(135deg, rgba(6, 23, 47, 0.98), rgba(16, 41, 79, 0.94)),
    linear-gradient(90deg, rgba(201, 162, 75, 0.15), transparent);
  color: var(--white);
}

.result-header > div {
  min-width: 0;
  flex: 1 1 auto;
}

.result-header h2 {
  margin: 4px 0 0;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
}

.result-header .result-label {
  color: rgba(255, 255, 255, 0.8);
}

.result-header h2 {
  color: #ffffff;
}

.result-details,
.result-details * {
  color: #1a1a1a;
}

.result-details .detail-item span {
  color: #18243a;
}

.result-details .detail-item strong {
  color: #111827;
}

.status-dot {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(201, 162, 75, 0.18);
}

.status-dot.active {
  background: #2e9f63;
  box-shadow: 0 0 0 7px rgba(46, 159, 99, 0.16);
}

.status-dot.warning {
  background: var(--gold);
}

.status-dot.missing {
  background: #a93838;
  box-shadow: 0 0 0 7px rgba(169, 56, 56, 0.14);
}

.status-dot.invalid {
  background: #404653;
  box-shadow: 0 0 0 7px rgba(64, 70, 83, 0.18);
}

.status-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-badge.active {
  border-color: rgba(85, 201, 133, 0.42);
  background: #267a4f;
}

.status-badge.warning {
  border-color: rgba(240, 214, 141, 0.58);
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.status-badge.missing {
  border-color: rgba(169, 56, 56, 0.42);
  background: #a93838;
}

.status-badge.invalid {
  border-color: rgba(93, 100, 115, 0.5);
  background: #404653;
}

.result-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.98)),
    repeating-linear-gradient(135deg, rgba(201, 162, 75, 0.04) 0 1px, transparent 1px 12px);
}

.detail-item {
  padding: 15px;
  border: 1px solid rgba(10, 28, 55, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.detail-item:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 162, 75, 0.24);
  box-shadow: 0 10px 24px rgba(12, 31, 61, 0.07);
}

.detail-item.full {
  grid-column: 1 / -1;
}

.detail-item span {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-item strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.38;
}

.credential-panel {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.credential-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 214, 141, 0.3);
}

.panel-topline {
  width: 88px;
  height: 3px;
  margin-bottom: 26px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.credential-panel h2 {
  margin: 12px 0 28px;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.08;
}

.panel-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.panel-grid div,
.certificate-preview {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 18px;
  background: rgba(5, 18, 38, 0.32);
}

.metric {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 850;
}

.metric-label,
.certificate-preview span {
  color: #ffffff;
}

.certificate-preview {
  margin-top: 18px;
}

.certificate-preview p {
  margin-bottom: 8px;
  color: #ffffff;
}

.certificate-preview strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.18rem;
}

.info-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: transparent;
}

.info-band article {
  min-height: 230px;
  padding: clamp(26px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, transform 180ms ease;
}

.info-band article:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.info-band h3 {
  max-width: 420px;
  margin: 16px 0 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.28;
}

.locations-carousel-section {
  padding: clamp(58px, 8vw, 104px) var(--page-pad);
  background: rgba(2, 6, 23, 0.18);
}

.locations-heading {
  max-width: 920px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.locations-eyebrow {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.locations-heading h2 {
  max-width: 860px;
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.locations-heading p:not(.locations-eyebrow) {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: 1.06rem;
  line-height: 1.7;
}

.locations-carousel-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.locations-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 32%);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  padding: 4px 2px 18px;
  scrollbar-width: thin;
}

.locations-carousel::-webkit-scrollbar {
  height: 8px;
}

.locations-carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.locations-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}

.location-card {
  scroll-snap-align: start;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.location-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 75, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.location-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.location-card div {
  padding: 20px;
}

.location-card span {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.2;
}

.locations-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  min-width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 2rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.locations-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 162, 75, 0.45);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  filter: none;
}

.certifications {
  padding: clamp(62px, 8vw, 112px) var(--page-pad);
  background: transparent;
}

.section-heading {
  max-width: 940px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.section-heading h2 {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1.05;
}

.certification-groups {
  display: grid;
  gap: 28px;
}

.certification-group {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(16, 41, 79, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 60px rgba(12, 31, 61, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.certification-group:hover {
  border-color: rgba(201, 162, 75, 0.22);
  box-shadow: 0 22px 70px rgba(12, 31, 61, 0.1);
}

.group-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.group-heading span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 162, 75, 0.5);
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 850;
}

.group-heading h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.12;
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.certification-card {
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(16, 41, 79, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(12, 31, 61, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.certification-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 75, 0.44);
  box-shadow: 0 18px 42px rgba(12, 31, 61, 0.11);
}

.certification-card h4 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.25;
}

.certification-card h4::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 75, 0));
}

.certification-card p {
  margin: 0;
  color: #ffffff;
  font-size: 0.96rem;
  line-height: 1.62;
}

.standards {
  padding: clamp(62px, 9vw, 120px) var(--page-pad);
  background: transparent;
}

.standards h2 {
  max-width: 860px;
  margin: 12px 0 18px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.standards p:not(.eyebrow) {
  max-width: 760px;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.75;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px var(--page-pad);
  color: #ffffff;
  background: rgba(2, 6, 23, 0.45);
}

.closing-accreditation {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  padding: clamp(64px, 9vw, 118px) var(--page-pad);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 162, 75, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(6, 23, 47, 0.96), rgba(2, 6, 23, 0.98));
}

.closing-logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.closing-logo-panel img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.32));
}

.closing-copy {
  max-width: 760px;
}

.closing-eyebrow {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.closing-copy h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 1.02;
}

.closing-subtitle {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  line-height: 1.4;
  font-weight: 700;
}

.closing-paragraph {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 1.06rem;
  line-height: 1.75;
}

.closing-support {
  margin: 0 0 28px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.closing-statement {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.18;
  font-weight: 850;
}

.footer-brand {
  display: grid;
  gap: 5px;
}

.footer-brand span:first-child {
  color: var(--white);
  font-weight: 800;
}

.footer-brand span:last-child,
.footer-year {
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-links a {
  padding: 8px 0;
  color: #ffffff;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .site-header {
    position: absolute;
  }

  .header-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 52px;
  }

  h1 {
    max-width: 780px;
    font-size: clamp(3rem, 10vw, 5.4rem);
  }

  .subtitle {
    max-width: 720px;
  }

  .credential-panel {
    max-width: 760px;
  }

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

  .info-band {
    grid-template-columns: 1fr;
  }

  .info-band article {
    min-height: auto;
  }

  .locations-carousel {
    grid-auto-columns: minmax(240px, 46%);
  }

  .certification-group {
    grid-template-columns: 1fr;
  }

  .group-heading {
    position: static;
  }

  .site-footer {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .closing-accreditation {
    grid-template-columns: 1fr;
  }

  .closing-logo-panel {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --page-pad: 18px;
  }

  .site-header {
    padding-top: 18px;
  }

  .brand-text {
    max-width: 190px;
    line-height: 1.2;
  }

  .logo {
    height: 38px;
    width: auto;
  }

  .brand-seal {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 106px;
    padding-bottom: 42px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.55rem, 13vw, 4rem);
    line-height: 1;
  }

  .eyebrow,
  .panel-kicker,
  .result-label,
  .info-band span {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .subtitle {
    margin-bottom: 26px;
    font-size: 1.05rem;
    line-height: 1.58;
  }

  .verification-form {
    padding: 14px;
  }

  .search-row,
  .result-details {
    grid-template-columns: 1fr;
  }

  input,
  button {
    min-height: 54px;
  }

  input {
    padding: 0 14px;
    font-size: 0.95rem;
  }

  .result-header {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px;
    gap: 12px;
  }

  .result-details {
    padding: 18px;
  }

  .status-badge {
    margin-left: 29px;
    min-height: 34px;
    max-width: calc(100% - 29px);
    white-space: normal;
    text-align: center;
  }

  button {
    width: 100%;
  }

  .credential-panel {
    padding: 22px;
  }

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

  .metric {
    font-size: 1.7rem;
  }

  .info-band article,
  .certification-group,
  .certification-card {
    padding: 22px;
  }

  .section-heading h2,
  .standards h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 1.12;
  }

  .locations-heading h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 1.12;
  }

  .locations-carousel-shell {
    grid-template-columns: 1fr;
  }

  .locations-carousel {
    grid-auto-columns: minmax(240px, 82%);
    padding-bottom: 14px;
  }

  .locations-arrow {
    display: none;
  }

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

  .certification-card {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .closing-accreditation {
    text-align: center;
  }

  .closing-logo-panel {
    justify-content: center;
  }

  .closing-logo-panel img {
    max-width: 220px;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }
}

@media (max-width: 380px) {
  .brand-text {
    max-width: 150px;
    font-size: 0.92rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  .result-header {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .status-badge {
    grid-column: 1 / -1;
    margin-left: 0;
    max-width: 100%;
  }
}

@media (hover: none) {
  .credential-panel:hover,
  .info-band article:hover,
  .location-card:hover,
  .certification-card:hover,
  .detail-item:hover {
    transform: none;
  }
}
