/* XectiQ Services Hub — UI Upgrade v2.0
   Presentation-only enhancement. Business logic and data attributes remain unchanged. */

:root {
  --xq-navy: #081426;
  --xq-ink: #10213a;
  --xq-muted: #607089;
  --xq-soft: #f5f7fb;
  --xq-soft-blue: color-mix(in srgb, var(--blue) 8%, white);
  --xq-line: #e5eaf1;
  --xq-line-strong: #d7deea;
  --xq-white: #fff;
  --xq-success: #0f8a63;
  --xq-warning: #b76e00;
  --xq-danger: #c43b50;
  --xq-radius-sm: 12px;
  --xq-radius: 18px;
  --xq-radius-lg: 24px;
  --xq-radius-xl: 32px;
  --xq-shadow-sm: 0 10px 28px rgba(10, 31, 63, 0.06);
  --xq-shadow: 0 18px 48px rgba(10, 31, 63, 0.09);
  --xq-shadow-lg: 0 30px 80px rgba(10, 31, 63, 0.13);
  --xq-ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

html {
  scroll-padding-top: 92px;
}
body {
  background: #fff;
  color: var(--xq-ink);
  font-family:
    "Inter",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  line-height: 1.65;
}
img {
  max-width: 100%;
}
.site-shell {
  overflow: clip;
}
.page-container {
  width: min(1240px, calc(100% - 32px));
}
.section-block {
  padding: 68px 0;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--xq-navy);
  color: white;
  font-weight: 800;
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}

/* Shared typography */
.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.section-kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}
.section-kicker.light {
  color: rgba(255, 255, 255, 0.78);
}
.section-heading-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.section-heading-row h2,
.compact-heading h2 {
  max-width: 760px;
  margin: 8px 0 7px;
  color: var(--xq-ink);
  font-size: clamp(28px, 8vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.section-heading-row p,
.compact-heading p {
  max-width: 660px;
  margin: 0;
  color: var(--xq-muted);
  font-size: 14px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 800;
}
.text-link:hover {
  gap: 10px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s var(--xq-ease),
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: linear-gradient(
    135deg,
    var(--blue),
    color-mix(in srgb, var(--blue) 70%, #385cff)
  );
  color: #fff;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--blue) 24%, transparent);
}
.button-primary:hover {
  box-shadow: 0 16px 34px color-mix(in srgb, var(--blue) 30%, transparent);
}
.button-secondary {
  border-color: var(--xq-line-strong);
  background: #fff;
  color: var(--xq-ink);
  box-shadow: var(--xq-shadow-sm);
}
.button-secondary:hover {
  border-color: color-mix(in srgb, var(--blue) 35%, var(--xq-line));
  color: var(--blue);
}
.button-light {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(10px);
}
.button-light:hover {
  background: #fff;
  color: var(--xq-navy);
}

input,
textarea,
select {
  color: var(--xq-ink);
}
input::placeholder,
textarea::placeholder {
  color: #9aa6b6;
}
:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 28%, transparent);
  outline-offset: 3px;
}

/* Utility strip + header */
.top-strip {
  border: 0;
  background: var(--xq-navy);
  color: #cad5e4;
}
.top-strip-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 650;
}
.top-strip-inner > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.top-strip-inner > span i {
  color: #6ee7b7;
}
.top-strip a {
  display: none;
  color: #fff;
  font-weight: 800;
}
.top-strip a i {
  color: #79a8ff;
}

.site-header {
  top: 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 8px 28px rgba(17, 35, 63, 0.045);
}
.header-inner {
  min-height: 68px;
  gap: 14px;
}
.brand {
  min-width: 0;
  gap: 10px;
}
.brand-mark,
.brand-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 13px;
}
.brand-mark {
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    var(--blue),
    color-mix(in srgb, var(--blue) 62%, #695cff)
  );
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.05em;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--blue) 24%, transparent);
}
.brand-logo {
  object-fit: contain;
  background: #fff;
}
.brand-copy {
  min-width: 0;
  line-height: 1.05;
}
.brand-copy strong {
  max-width: 185px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: -0.025em;
}
.brand-copy span {
  display: none;
  margin-top: 5px;
  color: #758399;
  font-size: 9px;
  font-weight: 650;
}

.main-nav {
  display: none;
}
.header-actions {
  margin-left: auto;
  gap: 7px;
}
.google-language-widget {
  display: none;
}
.header-search,
.menu-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--xq-line);
  border-radius: 13px;
  background: #fff;
  color: #4d5e75;
  box-shadow: 0 4px 14px rgba(10, 31, 63, 0.035);
}
.header-search:hover,
.menu-button:hover {
  border-color: color-mix(in srgb, var(--blue) 30%, var(--xq-line));
  color: var(--blue);
}
.menu-button {
  cursor: pointer;
  font-size: 17px;
}

.mobile-nav {
  padding: 10px 16px 16px;
  border-top: 1px solid var(--xq-line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 42px rgba(10, 31, 63, 0.09);
}
.mobile-nav:not([hidden]) {
  display: grid;
  gap: 5px;
  animation: nav-in 0.18s ease both;
}
.mobile-nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 14px;
  border-radius: 12px;
  color: #44556c;
  font-size: 13px;
  font-weight: 750;
}
.mobile-nav a i {
  width: 19px;
  color: #8290a2;
  text-align: center;
}
.mobile-nav a.active {
  background: var(--xq-soft-blue);
  color: var(--blue);
}
.mobile-nav a.active i {
  color: var(--blue);
}
.mobile-nav .mobile-support {
  margin-top: 5px;
  border: 1px solid var(--xq-line);
  background: #f8fafc;
  color: var(--xq-ink);
}
@keyframes nav-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Google Translate output */
.goog-te-gadget {
  font-family: inherit !important;
  font-size: 0 !important;
}
.goog-te-gadget .goog-te-combo {
  width: 120px;
  height: 40px;
  margin: 0 !important;
  padding: 0 30px 0 10px;
  border: 1px solid var(--xq-line);
  border-radius: 12px;
  background: #fff;
  color: #43536a;
  font:
    750 11px/1 "Inter",
    sans-serif;
  outline: 0;
}
.goog-te-gadget span,
.goog-logo-link {
  display: none !important;
}

/* Hero */
.hero-section {
  isolation: isolate;
  padding: 54px 0 58px;
  overflow: hidden;
  border-bottom: 1px solid #eaf0f7;
  background:
    radial-gradient(
      circle at 92% 8%,
      color-mix(in srgb, var(--blue) 12%, transparent),
      transparent 32%
    ),
    radial-gradient(
      circle at 5% 92%,
      color-mix(in srgb, var(--teal) 10%, transparent),
      transparent 30%
    ),
    linear-gradient(180deg, #fbfdff, #f5f8fc);
}
.hero-section::before {
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(29, 78, 216, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 78, 216, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-orb {
  opacity: 0.55;
  filter: blur(2px);
}
.hero-grid {
  grid-template-columns: 1fr;
  gap: 34px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.eyebrow {
  padding: 8px 10px;
  border: 1px solid color-mix(in srgb, var(--blue) 17%, #e6ebf3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(10, 31, 63, 0.04);
  letter-spacing: 0.04em;
  text-transform: none;
}
.eyebrow i {
  color: var(--xq-success);
}
.hero-copy h1 {
  max-width: 730px;
  margin: 18px 0 16px;
  color: var(--xq-ink);
  font-size: clamp(39px, 12vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.065em;
}
.hero-copy h1 span {
  display: block;
  color: var(--blue);
}
.hero-lead {
  max-width: 650px;
  margin: 0;
  color: var(--xq-muted);
  font-size: clamp(15px, 4.5vw, 19px);
  line-height: 1.65;
}
.home-search {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  max-width: 680px;
  margin-top: 26px;
  padding: 7px;
  border: 1px solid #dfe6ef;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(18, 50, 94, 0.11);
}
.home-search:focus-within {
  border-color: color-mix(in srgb, var(--blue) 45%, #dfe6ef);
  box-shadow: 0 18px 48px color-mix(in srgb, var(--blue) 13%, transparent);
}
.home-search-icon {
  display: grid;
  place-items: center;
  color: #7a899d;
  font-size: 15px;
}
.home-search input {
  min-width: 0;
  height: 44px;
  padding: 0 4px;
  border: 0;
  background: transparent;
  outline: 0;
  font-size: 13px;
}
.home-search button {
  grid-column: 1 / -1;
  min-height: 44px;
  margin-top: 5px;
  border: 0;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  overflow: hidden;
  border: 1px solid var(--xq-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--xq-shadow-lg);
}
.search-results a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  border-bottom: 1px solid #eff2f6;
  font-size: 12px;
  font-weight: 700;
}
.search-results a:hover {
  background: #f8faff;
  color: var(--blue);
}
.search-results a:last-child {
  border-bottom: 0;
}

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
  align-items: center;
}
.popular-searches > span {
  width: 100%;
  color: #7b889a;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.popular-searches a {
  padding: 6px 9px;
  border: 1px solid #e3e8f0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #536278;
  font-size: 10px;
  font-weight: 750;
}
.popular-searches a:hover {
  border-color: color-mix(in srgb, var(--blue) 28%, #e3e8f0);
  color: var(--blue);
}
.hero-assurances {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin-top: 20px;
  color: #506178;
  font-size: 10px;
  font-weight: 700;
}
.hero-assurances span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-assurances i {
  color: var(--xq-success);
}

.hero-panel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(216, 225, 237, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--xq-shadow-lg);
  backdrop-filter: blur(16px);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}
.hero-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid #eef2f7;
  color: #758398;
  font-size: 9px;
  font-weight: 750;
}
.hero-panel-top > div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #34465d;
  font-weight: 850;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.1);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: #edf1f6;
}
.stat-card {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  background: #fff;
}
.stat-card strong {
  color: var(--xq-ink);
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-card span {
  margin-top: 8px;
  color: #718096;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.4;
}
.stat-card-primary {
  background: linear-gradient(
    145deg,
    var(--blue),
    color-mix(in srgb, var(--blue) 76%, #4932e8)
  );
}
.stat-card-primary strong,
.stat-card-primary span {
  color: #fff;
}
.hero-feature {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 34px;
  gap: 11px;
  align-items: center;
  margin: 16px;
  padding: 13px;
  border: 1px solid #e7ecf3;
  border-radius: 15px;
  background: #f9fbfd;
}
.feature-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--xq-soft-blue);
  color: var(--blue);
}
.hero-feature > div:nth-child(2) span,
.hero-feature > div:nth-child(2) strong {
  display: block;
}
.hero-feature > div:nth-child(2) span {
  color: #8793a4;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-feature > div:nth-child(2) strong {
  margin-top: 3px;
  font-size: 11px;
}
.hero-feature > a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 4px 14px rgba(10, 31, 63, 0.06);
}
.hero-note {
  margin: -2px 18px 17px;
  color: #7b8898;
  font-size: 8px;
  text-align: center;
}

/* Category cards */
.category-section {
  background: #fff;
}
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.category-card {
  min-height: 82px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--xq-line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(10, 31, 63, 0.035);
  transition:
    transform 0.2s var(--xq-ease),
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.category-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--blue) 22%, var(--xq-line));
  box-shadow: var(--xq-shadow-sm);
}
.category-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eef4ff;
  color: var(--blue);
}
.category-mark {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.category-icon-green {
  background: #ebf8f2;
  color: #11805e;
}
.category-icon-purple {
  background: #f2efff;
  color: #7053d6;
}
.category-icon-orange {
  background: #fff3e7;
  color: #b76409;
}
.category-icon-cyan {
  background: #e9f8fb;
  color: #087d91;
}
.category-icon-rose {
  background: #fff0f4;
  color: #be4362;
}
.category-card h3 {
  margin: 0;
  font-size: 13px;
  letter-spacing: -0.015em;
}
.category-card div:nth-child(2) span {
  display: block;
  margin-top: 4px;
  color: #8895a6;
  font-size: 9px;
  font-weight: 700;
}
.category-arrow {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #f6f8fb;
  color: #8794a5;
  transition: 0.2s ease;
}
.category-card:hover .category-arrow {
  background: var(--blue);
  color: #fff;
}

/* Process */
.process-section {
  background: #f7f9fc;
  border-block: 1px solid #edf1f6;
}
.process-grid {
  display: grid;
  gap: 12px;
}
.process-grid article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--xq-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(10, 31, 63, 0.04);
}
.process-grid article > span:first-child {
  position: absolute;
  right: 16px;
  top: 12px;
  color: #edf1f6;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
}
.process-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 13px;
  background: var(--xq-soft-blue);
  color: var(--blue);
  font-size: 15px;
}
.process-grid h3 {
  margin: 0 0 7px;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.process-grid p {
  margin: 0;
  color: var(--xq-muted);
  font-size: 11px;
}
.forms-callout {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 15px;
  padding: 18px;
  border: 1px solid #dde6f2;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff, #f2f7ff);
}
.forms-callout-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
}
.forms-callout > div:nth-child(2) > span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.forms-callout h3 {
  margin: 4px 0;
  font-size: 13px;
}
.forms-callout p {
  margin: 0;
  color: var(--xq-muted);
  font-size: 10px;
}
.forms-callout .button {
  grid-column: 1 / -1;
  width: 100%;
}

/* Service cards */
.services-section {
  background: #fff;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-card {
  overflow: hidden;
  border: 1px solid var(--xq-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(10, 31, 63, 0.055);
  transition:
    transform 0.25s var(--xq-ease),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--blue) 20%, var(--xq-line));
  box-shadow: 0 24px 52px rgba(10, 31, 63, 0.105);
}
.service-card-visual {
  position: relative;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  background: #edf2f7;
}
.service-card-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(5, 18, 36, 0.35));
  pointer-events: none;
}
.service-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--xq-ease);
}
.service-card:hover .service-card-visual img {
  transform: scale(1.035);
}
.service-card-icon {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.status-badge {
  position: absolute;
  z-index: 2;
  right: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(7, 24, 47, 0.72);
  color: #fff;
  backdrop-filter: blur(10px);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.status-badge i {
  color: #7cf4be;
}
.service-card-body {
  padding: 19px;
}
.service-category {
  color: var(--blue);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.service-card h3 {
  margin: 6px 0 8px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.service-card h3 a:hover {
  color: var(--blue);
}
.service-summary {
  min-height: 0;
  margin: 0;
  color: var(--xq-muted);
  font-size: 11px;
  line-height: 1.65;
}
.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 15px;
}
.service-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 6px 8px;
  border-radius: 9px;
  background: #f6f8fb;
  color: #596b82;
  font-size: 8px;
  font-weight: 750;
}
.service-meta i {
  color: var(--blue);
}
.service-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #edf1f5;
  color: var(--xq-ink);
  font-size: 10px;
  font-weight: 850;
}
.service-card-link span:last-child {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--xq-soft-blue);
  color: var(--blue);
}
.service-card:hover .service-card-link {
  color: var(--blue);
}
.mobile-action {
  width: 100%;
  margin-top: 18px;
}
.desktop-action {
  display: none;
}

/* Quick links feature */
.quick-section {
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(71, 112, 255, 0.22),
      transparent 28%
    ),
    linear-gradient(135deg, #07182f, #0a2850);
  color: #fff;
}
.quick-layout {
  display: grid;
  gap: 28px;
}
.quick-copy h2 {
  margin: 9px 0;
  font-size: clamp(30px, 9vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: #fff;
}
.quick-copy p {
  max-width: 500px;
  margin: 0 0 20px;
  color: #aebfd5;
  font-size: 13px;
}
.quick-list {
  display: grid;
  gap: 8px;
}
.quick-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 11px;
  min-height: 66px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(10px);
  transition: 0.2s ease;
}
.quick-item:hover {
  transform: translateX(3px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}
.quick-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 900;
}
.quick-item strong,
.quick-item span {
  display: block;
}
.quick-item strong {
  font-size: 11px;
  color: #fff;
}
.quick-item div:nth-child(2) span {
  margin-top: 2px;
  color: #8fa5c0;
  font-size: 8px;
}
.quick-item > span:last-child {
  color: #9fbbdc;
}

/* Mission */
.mission-section {
  background: #fff;
}
.mission-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--xq-line);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff, #f7faff);
  box-shadow: var(--xq-shadow-sm);
}
.mission-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--xq-navy);
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.mission-copy h2 {
  margin: 6px 0;
  font-size: 20px;
  letter-spacing: -0.035em;
}
.mission-copy p {
  margin: 0;
  color: var(--xq-muted);
  font-size: 11px;
}
.mission-card .button {
  grid-column: 1 / -1;
  width: 100%;
}

/* Page hero */
.page-hero,
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 46px 0 44px;
  border-bottom: 1px solid #e8edf5;
  background:
    radial-gradient(
      circle at 90% 20%,
      color-mix(in srgb, var(--blue) 11%, transparent),
      transparent 30%
    ),
    linear-gradient(180deg, #fbfdff, #f5f8fc);
}
.page-hero::before,
.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(26, 99, 233, 0.1) 0.8px,
    transparent 0.8px
  );
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, #000, transparent 65%);
}
.page-hero .page-container,
.legal-hero .page-container {
  position: relative;
}
.page-hero h1,
.legal-hero h1 {
  max-width: 760px;
  margin: 9px 0 8px;
  color: var(--xq-ink);
  font-size: clamp(34px, 10vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.page-hero p,
.legal-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--xq-muted);
  font-size: 14px;
}

/* Directory/search filters */
.directory-section {
  background: #fff;
}
.directory-toolbar,
.download-search-panel {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.directory-toolbar > strong,
.download-search-panel > strong {
  justify-self: start;
  padding: 6px 9px;
  border-radius: 999px;
  background: #f3f6fa;
  color: #748197;
  font-size: 9px;
  font-weight: 800;
}
.directory-search,
.download-search-box {
  min-height: 52px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 36px;
  align-items: center;
  padding: 5px;
  border: 1px solid var(--xq-line-strong);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(10, 31, 63, 0.045);
}
.directory-search:focus-within,
.download-search-box:focus-within {
  border-color: color-mix(in srgb, var(--blue) 42%, var(--xq-line));
  box-shadow: 0 12px 30px color-mix(in srgb, var(--blue) 9%, transparent);
}
.directory-search > span,
.download-search-box > span {
  color: #7b8a9d;
  text-align: center;
}
.directory-search input,
.download-search-box input {
  min-width: 0;
  height: 40px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
}
.directory-search button,
.download-search-box button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: #f4f6f9;
  color: #778599;
  cursor: pointer;
}
.filter-row,
.download-category-chips {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 3px 1px 10px;
  margin-bottom: 12px;
  scrollbar-width: none;
}
.filter-row::-webkit-scrollbar,
.download-category-chips::-webkit-scrollbar {
  display: none;
}
.filter-row button,
.download-category-chips button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--xq-line);
  border-radius: 999px;
  background: #fff;
  color: #5a6a80;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}
.filter-row button.active,
.download-category-chips button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--blue) 20%, transparent);
}
.download-category-chips button span {
  opacity: 0.7;
}

.directory-empty,
.downloads-empty {
  padding: 42px 20px;
  border: 1px dashed #ccd6e4;
  border-radius: 20px;
  background: #fafbfd;
  text-align: center;
}
.directory-empty > span,
.downloads-empty > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: auto;
  border-radius: 15px;
  background: var(--xq-soft-blue);
  color: var(--blue);
  font-size: 20px;
}
.directory-empty h2,
.downloads-empty h2 {
  margin: 13px 0 4px;
  font-size: 18px;
}
.directory-empty p,
.downloads-empty p {
  margin: 0 0 16px;
  color: var(--xq-muted);
  font-size: 11px;
}
.service-request-cta {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid #dce6f3;
  border-radius: 20px;
  background: linear-gradient(135deg, #f9fbff, #eef5ff);
}
.request-cta-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 18px;
}
.service-request-cta div > span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.service-request-cta h2 {
  margin: 3px 0;
  font-size: 16px;
}
.service-request-cta p {
  margin: 0;
  color: var(--xq-muted);
  font-size: 10px;
}
.service-request-cta .button {
  grid-column: 1 / -1;
  width: 100%;
}

/* Downloads */
.download-notice {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  padding: 13px;
  border: 1px solid #cce7da;
  border-radius: 16px;
  background: #f3fbf7;
}
.download-notice > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #e2f5ea;
  color: #137453;
}
.download-notice strong {
  display: block;
  font-size: 11px;
}
.download-notice p {
  margin: 2px 0 0;
  color: #5c746a;
  font-size: 9px;
}
.download-groups {
  display: grid;
  gap: 28px;
}
.download-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.download-group-heading span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.download-group-heading h2 {
  margin: 3px 0 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.download-group-heading > strong {
  color: #8491a3;
  font-size: 9px;
}
.download-grid {
  display: grid;
  gap: 10px;
}
.download-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 38px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--xq-line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(10, 31, 63, 0.035);
  transition: 0.2s ease;
}
.download-card:hover {
  border-color: color-mix(in srgb, var(--blue) 22%, var(--xq-line));
  box-shadow: var(--xq-shadow-sm);
  transform: translateY(-2px);
}
.download-file-mark {
  width: 44px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #fff1f1;
  color: #c34c4c;
  font-size: 8px;
  font-weight: 900;
}
.download-card > div > span {
  color: var(--blue);
  font-size: 7px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.download-card h3 {
  margin: 3px 0 3px;
  font-size: 12px;
  line-height: 1.35;
}
.download-card p {
  display: none;
  margin: 0;
  color: var(--xq-muted);
  font-size: 9px;
}
.download-card small {
  display: block;
  margin-top: 4px;
  color: #93a0b0;
  font-size: 8px;
}
.download-card > a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--xq-soft-blue);
  color: var(--blue);
}
.download-card > a:hover {
  background: var(--blue);
  color: #fff;
}

/* Quick links directory */
.quick-link-search {
  margin-bottom: 28px;
}
.quick-group {
  margin-top: 34px;
}
.quick-group:first-of-type {
  margin-top: 0;
}
.quick-group .section-heading-row {
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 13px;
}
.quick-group .section-heading-row h2 {
  margin: 4px 0 0;
  font-size: 22px;
}
.quick-group .section-heading-row > span {
  color: #8b97a7;
  font-size: 9px;
  font-weight: 800;
}
.quick-link-grid {
  display: grid;
  gap: 10px;
}
.quick-link-card {
  min-height: 98px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--xq-line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(10, 31, 63, 0.035);
  transition: 0.2s ease;
}
.quick-link-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--blue) 22%, var(--xq-line));
  box-shadow: var(--xq-shadow-sm);
}
.quick-link-card .quick-mark {
  background: var(--xq-soft-blue);
  color: var(--blue);
}
.quick-link-card small {
  display: inline-flex;
  margin-bottom: 3px;
  padding: 3px 6px;
  border-radius: 999px;
  background: #f1f4f8;
  color: #6a7a8f;
  font-size: 7px;
  font-weight: 850;
  text-transform: uppercase;
}
.quick-link-card h3 {
  margin: 0;
  font-size: 12px;
}
.quick-link-card p {
  margin: 3px 0 0;
  color: var(--xq-muted);
  font-size: 9px;
  line-height: 1.45;
}
.quick-link-card > span:last-child {
  color: #8f9cad;
}

/* Service detail */
.detail-hero {
  padding: 30px 0 34px;
  border-bottom: 1px solid #e6ecf3;
  background:
    radial-gradient(
      circle at 90% 10%,
      color-mix(in srgb, var(--blue) 12%, transparent),
      transparent 30%
    ),
    linear-gradient(180deg, #fbfdff, #f4f8fc);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  margin-bottom: 14px;
  color: #8b98a9;
  font-size: 9px;
  white-space: nowrap;
}
.breadcrumbs a:hover {
  color: var(--blue);
}
.breadcrumbs strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #596b81;
  font-weight: 750;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}
.detail-heading-grid {
  display: grid;
  gap: 24px;
}
.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: 999px;
  background: #eaf8f1;
  color: #157451;
  font-size: 8px;
  font-weight: 850;
}
.detail-heading-grid h1 {
  max-width: 720px;
  margin: 11px 0 10px;
  font-size: clamp(34px, 10vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.detail-heading-grid > div:first-child > p {
  max-width: 700px;
  margin: 0;
  color: var(--xq-muted);
  font-size: 14px;
}
.detail-category {
  display: inline-flex;
  margin-top: 14px;
  padding: 6px 9px;
  border: 1px solid var(--xq-line);
  border-radius: 999px;
  background: #fff;
  color: #66758a;
  font-size: 8px;
  font-weight: 800;
}
.detail-side-stack {
  display: grid;
  gap: 10px;
}
.detail-thumbnail {
  overflow: hidden;
  border: 1px solid var(--xq-line);
  border-radius: 20px;
  background: #eef2f7;
  box-shadow: var(--xq-shadow);
}
.detail-thumbnail img {
  display: block;
  width: 100%;
  aspect-ratio: 16/8.6;
  object-fit: cover;
}
.detail-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.detail-facts > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid var(--xq-line);
  border-radius: 14px;
  background: #fff;
}
.detail-facts b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--xq-soft-blue);
  color: var(--blue);
}
.detail-facts span,
.detail-facts strong {
  display: block;
}
.detail-facts span {
  color: #8592a3;
  font-size: 8px;
  font-weight: 750;
}
.detail-facts strong {
  margin-top: 2px;
  color: var(--xq-ink);
  font-size: 10px;
}

.detail-jumpbar {
  position: sticky;
  z-index: 25;
  top: 68px;
  overflow: hidden;
  border-bottom: 1px solid #e5eaf1;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}
.detail-jumpbar .page-container {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-block: 9px;
  scrollbar-width: none;
}
.detail-jumpbar .page-container::-webkit-scrollbar {
  display: none;
}
.detail-jumpbar span,
.detail-jumpbar a {
  flex: 0 0 auto;
  padding: 7px 9px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
}
.detail-jumpbar span {
  color: #8b98a8;
}
.detail-jumpbar a {
  background: #f5f7fa;
  color: #5a6a80;
}
.detail-jumpbar a:hover {
  background: var(--xq-soft-blue);
  color: var(--blue);
}

.detail-content-section {
  background: #f7f9fc;
}
.detail-layout {
  display: grid;
  gap: 18px;
}
.detail-main {
  display: grid;
  gap: 14px;
}
.content-card,
.action-card {
  border: 1px solid var(--xq-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(10, 31, 63, 0.035);
}
.content-card {
  padding: 18px;
  scroll-margin-top: 130px;
}
.content-card-heading {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  margin-bottom: 16px;
}
.content-card-heading > b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--xq-soft-blue);
  color: var(--blue);
}
.content-card-heading span {
  color: #8794a5;
  font-size: 7px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.content-card-heading h2 {
  margin: 2px 0 0;
  font-size: 18px;
  letter-spacing: -0.025em;
}
.content-card-heading h2 small {
  color: #91a0b1;
  font-size: 9px;
}
.check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  padding: 10px;
  border-radius: 12px;
  background: #f8fafc;
  color: #42546b;
  font-size: 11px;
}
.check-list li > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e8f7f0;
  color: #137a56;
  font-size: 9px;
  font-weight: 900;
}
.document-grid {
  display: grid;
  gap: 8px;
}
.document-grid > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid #edf1f5;
  border-radius: 12px;
}
.document-grid > div > span {
  color: #a0aaba;
  font-size: 9px;
  font-weight: 850;
}
.document-grid strong {
  font-size: 10px;
}
.step-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.step-list li {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 16px;
}
.step-list li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 34px;
  bottom: 0;
  width: 2px;
  background: #e5eaf1;
}
.step-list li > span {
  position: relative;
  z-index: 1;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
}
.step-list strong {
  display: block;
  padding-top: 2px;
  color: var(--blue);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.step-list p {
  margin: 2px 0 0;
  color: #475970;
  font-size: 11px;
}
.form-library-intro {
  margin: -5px 0 14px;
  color: var(--xq-muted);
  font-size: 10px;
}
.service-form-grid {
  display: grid;
  gap: 8px;
}
.service-form-grid > a {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  padding: 11px;
  border: 1px solid var(--xq-line);
  border-radius: 14px;
  background: #fff;
}
.service-form-grid > a:hover {
  border-color: color-mix(in srgb, var(--blue) 28%, var(--xq-line));
  background: #fbfdff;
}
.service-form-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #f1f5fb;
  color: var(--blue);
}
.service-form-grid > a > div > span {
  color: #8d99aa;
  font-size: 7px;
  font-weight: 850;
}
.service-form-grid strong {
  display: block;
  margin-top: 2px;
  font-size: 10px;
}
.service-form-grid p {
  margin: 2px 0 0;
  color: var(--xq-muted);
  font-size: 8px;
}
.service-form-action {
  grid-column: 2;
  color: var(--blue);
  font-size: 8px;
  font-weight: 850;
}

.detail-sidebar {
  scroll-margin-top: 130px;
}
.action-card {
  padding: 18px;
}
.action-card h2 {
  margin: 7px 0 5px;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.action-card > p {
  margin: 0 0 13px;
  color: var(--xq-muted);
  font-size: 10px;
}
.action-list {
  display: grid;
  gap: 7px;
}
.action-list a {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid var(--xq-line);
  border-radius: 12px;
  background: #fff;
  color: #41546c;
  font-size: 9px;
  font-weight: 800;
}
.action-list a:hover {
  border-color: color-mix(in srgb, var(--blue) 30%, var(--xq-line));
  color: var(--blue);
}
.official-main-link {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 9px;
  font-weight: 850;
}
.safety-note {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  margin-top: 12px;
  padding: 10px;
  border-radius: 12px;
  background: #f0f9f5;
  color: #41655a;
  font-size: 8px;
}
.safety-note b {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #dff4e9;
  color: #147651;
}
.safety-note strong {
  display: block;
  color: #1c5e49;
}
.related-section {
  background: #fff;
}

/* Scam directory */
.scam-directory {
  background: #fff;
}
.scam-safety-banner {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
  padding: 15px;
  border: 1px solid #f0d4d8;
  border-radius: 18px;
  background: #fff6f7;
}
.scam-safety-banner > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #fee7ea;
  color: #bc3c51;
  font-weight: 900;
}
.scam-safety-banner strong,
.scam-safety-banner div > span {
  display: block;
}
.scam-safety-banner strong {
  color: #743340;
  font-size: 11px;
}
.scam-safety-banner div > span {
  margin-top: 2px;
  color: #8b5b64;
  font-size: 9px;
}
.scam-safety-banner > a {
  grid-column: 1 / -1;
  color: #a23649;
  font-size: 9px;
  font-weight: 850;
}
.scam-list-summary {
  margin-bottom: 14px;
}
.scam-list-summary > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.scam-list-summary p {
  margin: 3px 0 0;
  color: var(--xq-muted);
  font-size: 10px;
}
.scam-grid {
  display: grid;
  gap: 14px;
}
.scam-card {
  overflow: hidden;
  border: 1px solid var(--xq-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 9px 28px rgba(10, 31, 63, 0.045);
}
.scam-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/8.5;
  background: #eef2f7;
}
.scam-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s var(--xq-ease);
}
.scam-card:hover img {
  transform: scale(1.035);
}
.scam-card-copy {
  padding: 16px;
}
.scam-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.scam-card-meta > span {
  padding: 5px 7px;
  border-radius: 999px;
  background: #f3f5f8;
  color: #65758a;
  font-size: 7px;
  font-weight: 850;
  text-transform: uppercase;
}
.severity.high,
.severity.critical {
  background: #fff0f2;
  color: #b9364c;
}
.severity.medium {
  background: #fff6e8;
  color: #9a620c;
}
.severity.low {
  background: #edf8f3;
  color: #1e7557;
}
.scam-recency.latest {
  background: #eaf2ff;
  color: var(--blue);
}
.scam-recency.popular {
  background: #f4efff;
  color: #6f4bcc;
}
.scam-card h2 {
  margin: 10px 0 6px;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.scam-card h2 a:hover {
  color: var(--blue);
}
.scam-card-copy > p {
  margin: 0;
  color: var(--xq-muted);
  font-size: 10px;
}
.scam-card-copy > div:last-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: #8a97a7;
  font-size: 8px;
  font-weight: 750;
}
.scam-card-copy > div:last-child a {
  color: var(--blue);
  font-weight: 850;
}

.scam-detail-hero {
  padding: 28px 0 36px;
  border-bottom: 1px solid #e9edf3;
  background: linear-gradient(180deg, #fffafb, #f8f5f6);
}
.scam-detail-title {
  max-width: 820px;
}
.scam-detail-title h1 {
  margin: 11px 0 9px;
  font-size: clamp(34px, 10vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.scam-detail-title > p {
  margin: 0;
  color: var(--xq-muted);
  font-size: 14px;
}
.scam-publish-date {
  display: inline-block;
  margin-top: 14px;
  color: #8693a3;
  font-size: 9px;
  font-weight: 750;
}
.scam-detail-layout {
  display: grid;
  gap: 18px;
}
.scam-article {
  overflow: hidden;
  border: 1px solid var(--xq-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--xq-shadow-sm);
}
.scam-cover {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}
.rich-scam-content {
  padding: 20px;
  color: #33465e;
  font-size: 12px;
}
.rich-scam-content h2,
.rich-scam-content h3 {
  color: var(--xq-ink);
  letter-spacing: -0.025em;
}
.rich-scam-content h2 {
  margin: 28px 0 8px;
  font-size: 20px;
}
.rich-scam-content h3 {
  margin: 22px 0 6px;
  font-size: 16px;
}
.rich-scam-content p {
  margin: 0 0 12px;
}
.rich-scam-content ul,
.rich-scam-content ol {
  padding-left: 20px;
}
.rich-scam-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.scam-report-card {
  align-self: start;
  padding: 18px;
  border: 1px solid #efd1d6;
  border-radius: 20px;
  background: #fff8f9;
  box-shadow: var(--xq-shadow-sm);
}
.scam-report-card > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #fee7eb;
  color: #b6354b;
  font-weight: 900;
}
.scam-report-card h2 {
  margin: 12px 0 6px;
  font-size: 18px;
}
.scam-report-card p {
  margin: 0 0 12px;
  color: #75555c;
  font-size: 10px;
}
.scam-report-card a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 7px;
  border-radius: 11px;
  background: #aa3045;
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  text-align: center;
}
.scam-report-card a + a {
  border: 1px solid #edcbd1;
  background: #fff;
  color: #a23548;
}
.scam-report-card small {
  display: block;
  margin-top: 11px;
  color: #9b747c;
  font-size: 8px;
  line-height: 1.5;
}

/* Legal */
.legal-content {
  max-width: 900px;
}
.legal-card {
  overflow: hidden;
  border: 1px solid var(--xq-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--xq-shadow-sm);
}
.legal-card section {
  padding: 20px;
  border-bottom: 1px solid #edf1f5;
}
.legal-card h2 {
  margin: 0 0 7px;
  font-size: 17px;
  letter-spacing: -0.025em;
}
.legal-card p {
  margin: 0;
  color: var(--xq-muted);
  font-size: 11px;
}
.legal-card > p {
  padding: 15px 20px;
  background: #f9fafc;
  color: #758399;
  font-size: 9px;
}

/* Disclaimer + footer */
.page-disclaimer {
  border-block: 1px solid #e5eaf1;
  background: #fffdf5;
}
.page-disclaimer .page-container {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding-block: 14px;
}
.page-disclaimer .page-container > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff3c9;
  color: #8f6800;
}
.page-disclaimer p {
  margin: 0;
  color: #70684f;
  font-size: 9px;
}
.page-disclaimer a {
  grid-column: 2;
  color: #826300;
  font-size: 9px;
  font-weight: 850;
}

.site-footer {
  background: #071426;
  color: #9fb0c7;
}
.footer-main {
  display: grid;
  gap: 30px;
  padding-top: 46px;
  padding-bottom: 36px;
}
.footer-brand .brand-copy strong {
  color: #fff;
}
.footer-brand .brand-copy span {
  color: #7890ac;
  display: block;
}
.footer-brand p {
  max-width: 390px;
  margin: 16px 0 12px;
  color: #8da1ba;
  font-size: 10px;
}
.independent-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #a8bdd5;
  font-size: 8px;
  font-weight: 750;
}
.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}
.footer-column h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-column a,
.footer-column span {
  color: #8ea2bb;
  font-size: 10px;
}
.footer-column a:hover {
  color: #fff;
}
.footer-column a i,
.footer-column span i {
  width: 16px;
  color: #6689b4;
}
.footer-bottom {
  min-height: auto;
  display: grid;
  gap: 5px;
  padding-top: 15px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #6f849e;
  font-size: 8px;
}

.support-dock {
  position: fixed;
  z-index: 38;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  display: grid;
  gap: 8px;
}
.support-dock a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  box-shadow: 0 14px 30px rgba(7, 25, 50, 0.22);
  transition: transform 0.2s ease;
}
.support-dock a:hover {
  transform: translateY(-3px) scale(1.02);
}
.support-call {
  background: #162b47;
}
.support-whatsapp {
  background: #16a76a;
}

/* Flash */
.flash-message {
  position: relative;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: min(1240px, calc(100% - 32px));
  margin: 12px auto 0;
  padding: 11px 13px;
  border: 1px solid;
  border-radius: 13px;
  font-size: 10px;
  box-shadow: var(--xq-shadow-sm);
}
.flash-message.success {
  border-color: #bce4d2;
  background: #effaf5;
  color: #166948;
}
.flash-message.error {
  border-color: #edc5cb;
  background: #fff2f4;
  color: #96364a;
}
.flash-message.warning {
  border-color: #eadca8;
  background: #fff9e9;
  color: #805e00;
}
.flash-message button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 17px;
}

/* Modals */
.request-modal-backdrop,
.promotion-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: end center;
  padding: 12px;
  background: rgba(5, 17, 34, 0.62);
  backdrop-filter: blur(7px);
}
.request-modal-backdrop[hidden],
.promotion-backdrop[hidden] {
  display: none !important;
}
.request-modal,
.promotion-card {
  width: min(100%, 520px);
  max-height: calc(100vh - 24px);
  overflow: auto;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px 24px 18px 18px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
  animation: modal-up 0.22s var(--xq-ease) both;
}
@keyframes modal-up {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.request-modal {
  padding: 22px;
}
.request-modal-close,
.promotion-close {
  position: absolute;
  z-index: 3;
  right: 12px;
  top: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--xq-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: #607087;
  cursor: pointer;
}
.request-form-heading {
  padding-right: 38px;
}
.request-form-heading > span,
.promotion-copy > span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.request-form-heading h2,
.promotion-copy h2 {
  margin: 5px 0 6px;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.request-form-heading p,
.promotion-copy p {
  margin: 0;
  color: var(--xq-muted);
  font-size: 10px;
}
.request-modal form {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}
.request-modal label > span {
  display: block;
  margin-bottom: 5px;
  color: #5b6c82;
  font-size: 8px;
  font-weight: 800;
}
.request-modal input,
.request-modal textarea {
  width: 100%;
  border: 1px solid var(--xq-line-strong);
  border-radius: 12px;
  background: #fff;
  outline: none;
}
.request-modal input {
  height: 44px;
  padding: 0 12px;
}
.request-modal textarea {
  padding: 10px 12px;
  resize: vertical;
}
.request-modal input:focus,
.request-modal textarea:focus {
  border-color: color-mix(in srgb, var(--blue) 45%, var(--xq-line));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 8%, transparent);
}
.request-form-status {
  min-height: 0;
  color: #6c7b8d;
  font-size: 9px;
}
.request-form-status.success {
  color: #13724f;
}
.request-form-status.error {
  color: #b13b4e;
}
.request-modal form .button {
  width: 100%;
}
.promotion-card {
  overflow: hidden;
}
.promotion-card > img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
}
.promotion-copy {
  padding: 20px;
}
.promotion-copy .button {
  width: 100%;
  margin-top: 16px;
}

/* 600+ */
@media (min-width: 600px) {
  .page-container {
    width: min(1240px, calc(100% - 48px));
  }
  .top-strip-inner {
    justify-content: space-between;
  }
  .top-strip a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .brand-copy span {
    display: block;
  }
  .brand-copy strong {
    max-width: none;
    font-size: 15px;
  }
  .google-language-widget {
    display: block;
  }
  .home-search {
    grid-template-columns: 42px minmax(0, 1fr) auto;
  }
  .home-search button {
    grid-column: auto;
    min-width: 100px;
    margin: 0;
  }
  .popular-searches > span {
    width: auto;
  }
  .hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .process-grid article {
    padding: 20px;
  }
  .forms-callout {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    padding: 20px;
  }
  .forms-callout .button {
    grid-column: auto;
    width: auto;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mission-card {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    padding: 24px;
  }
  .mission-card .button {
    grid-column: auto;
    width: auto;
  }
  .directory-toolbar,
  .download-search-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
  .directory-toolbar > strong,
  .download-search-panel > strong {
    justify-self: end;
  }
  .service-request-cta {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    padding: 20px;
  }
  .service-request-cta .button {
    grid-column: auto;
    width: auto;
  }
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .download-card p {
    display: block;
  }
  .quick-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .detail-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-form-action {
    grid-column: 2;
  }
  .scam-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-main {
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .request-modal-backdrop,
  .promotion-backdrop {
    place-items: center;
    padding: 24px;
  }
  .request-modal,
  .promotion-card {
    border-radius: 24px;
  }
}

/* 900+ */
@media (min-width: 900px) {
  body {
    font-size: 16px;
  }
  .section-block {
    padding: 88px 0;
  }
  .header-inner {
    min-height: 74px;
    gap: 26px;
  }
  .brand-mark,
  .brand-logo {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .brand-copy strong {
    font-size: 16px;
  }
  .main-nav {
    display: flex;
    gap: 3px;
    margin-left: auto;
  }
  .main-nav a {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 11px;
    color: #56667c;
    font-size: 11px;
    font-weight: 750;
  }
  .main-nav a:hover {
    background: #f5f7fa;
    color: var(--blue);
  }
  .main-nav a.active {
    background: var(--xq-soft-blue);
    color: var(--blue);
  }
  .menu-button {
    display: none;
  }
  .mobile-nav:not([hidden]) {
    display: none;
  }
  .header-search {
    width: 40px;
    height: 40px;
  }
  .hero-section {
    padding: 80px 0 82px;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
    gap: clamp(38px, 6vw, 80px);
    align-items: center;
  }
  .hero-copy h1 {
    margin-top: 20px;
  }
  .hero-panel {
    border-radius: 28px;
  }
  .stat-card {
    min-height: 122px;
    padding: 20px;
  }
  .stat-card strong {
    font-size: 34px;
  }
  .section-heading-row {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
  }
  .section-heading-row h2,
  .compact-heading h2 {
    font-size: 42px;
  }
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .category-card {
    min-height: 88px;
  }
  .process-grid article {
    min-height: 230px;
    padding: 26px;
  }
  .process-grid h3 {
    font-size: 18px;
  }
  .process-grid p {
    font-size: 12px;
  }
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .service-card-body {
    padding: 20px;
  }
  .service-card h3 {
    font-size: 19px;
  }
  .desktop-action {
    display: inline-flex;
  }
  .mobile-action {
    display: none;
  }
  .quick-layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
    gap: 70px;
    align-items: center;
  }
  .quick-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quick-copy h2 {
    font-size: 48px;
  }
  .mission-card {
    padding: 30px;
  }
  .mission-copy h2 {
    font-size: 26px;
  }
  .mission-copy p {
    font-size: 12px;
  }
  .page-hero,
  .legal-hero {
    padding: 66px 0 64px;
  }
  .page-hero h1,
  .legal-hero h1 {
    font-size: 54px;
  }
  .directory-search,
  .download-search-box {
    max-width: 700px;
  }
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quick-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .detail-hero {
    padding: 38px 0 46px;
  }
  .detail-heading-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
    gap: 60px;
    align-items: end;
  }
  .detail-heading-grid h1 {
    font-size: 58px;
  }
  .detail-jumpbar {
    top: 74px;
  }
  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
  }
  .content-card {
    padding: 24px;
    border-radius: 22px;
  }
  .action-card {
    position: sticky;
    top: 132px;
    padding: 22px;
  }
  .scam-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .scam-detail-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 26px;
    align-items: start;
  }
  .scam-report-card {
    position: sticky;
    top: 100px;
  }
  .rich-scam-content {
    padding: 30px;
    font-size: 13px;
  }
  .page-disclaimer .page-container {
    grid-template-columns: 38px minmax(0, 1fr) auto;
  }
  .page-disclaimer a {
    grid-column: auto;
  }
  .footer-main {
    padding-top: 58px;
    padding-bottom: 45px;
  }
  .support-dock {
    right: 22px;
    bottom: 22px;
  }
}

/* 1180+ */
@media (min-width: 1180px) {
  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .service-grid {
    gap: 22px;
  }
  .download-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .quick-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   XectiQ Services Hub — V3.0 Product Design System
   Mobile-first, 100%-zoom legibility, richer interactions and content scale.
   This layer intentionally overrides the v1/v2 compatibility styles above.
   ========================================================================== */
:root {
  --xq-navy: #07172b;
  --xq-navy-2: #0a2645;
  --xq-ink: #10233f;
  --xq-ink-2: #2c405c;
  --xq-muted: #64768d;
  --xq-subtle: #8997a9;
  --xq-soft: #f5f8fc;
  --xq-soft-2: #f9fbfe;
  --xq-soft-blue: color-mix(in srgb, var(--blue) 8%, white);
  --xq-line: #e0e7f0;
  --xq-line-strong: #cfd9e6;
  --xq-white: #fff;
  --xq-success: #11805f;
  --xq-warning: #ad6a0c;
  --xq-danger: #ba3c51;
  --xq-radius-sm: 13px;
  --xq-radius: 17px;
  --xq-radius-lg: 23px;
  --xq-radius-xl: 30px;
  --xq-shadow-xs: 0 3px 14px rgba(15, 38, 70, 0.045);
  --xq-shadow-sm: 0 10px 30px rgba(15, 38, 70, 0.065);
  --xq-shadow: 0 20px 54px rgba(15, 38, 70, 0.1);
  --xq-shadow-lg: 0 34px 90px rgba(15, 38, 70, 0.15);
  --xq-ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

html {
  font-size: 16px;
  scroll-padding-top: 106px;
}
body {
  min-width: 320px;
  color: var(--xq-ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.site-shell {
  overflow: clip;
}
.page-container {
  width: min(1360px, calc(100% - 32px));
}
.section-block {
  padding: 76px 0;
}
body a,
body button,
body input,
body select,
body textarea {
  transition:
    color 0.2s var(--xq-ease),
    background-color 0.2s var(--xq-ease),
    border-color 0.2s var(--xq-ease),
    box-shadow 0.2s var(--xq-ease),
    transform 0.2s var(--xq-ease),
    opacity 0.2s var(--xq-ease);
}
body ::selection {
  background: color-mix(in srgb, var(--blue) 18%, transparent);
}
body :focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 24%, transparent);
  outline-offset: 3px;
}

/* Typography and shared components */
.section-kicker,
.eyebrow {
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.095em;
}
.section-kicker::before {
  width: 21px;
  height: 2px;
}
.section-heading-row {
  gap: 20px;
  margin-bottom: 34px;
}
.section-heading-row h2,
.compact-heading h2 {
  max-width: 830px;
  margin: 9px 0 8px;
  font-size: clamp(34px, 7.2vw, 49px);
  line-height: 1.08;
  letter-spacing: -0.048em;
}
.section-heading-row p,
.compact-heading p {
  max-width: 720px;
  color: var(--xq-muted);
  font-size: 16px;
  line-height: 1.65;
}
.text-link {
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}
.text-link:hover {
  gap: 12px;
}
.button {
  min-height: 50px;
  gap: 9px;
  padding: 0 19px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 38, 70, 0.1);
}
.button:active {
  transform: translateY(0) scale(0.985);
}
.button-primary {
  background: linear-gradient(
    135deg,
    var(--blue),
    color-mix(in srgb, var(--blue) 72%, #355cff)
  );
  box-shadow: 0 13px 30px color-mix(in srgb, var(--blue) 22%, transparent);
}
.button-secondary {
  border-color: var(--xq-line-strong);
  box-shadow: var(--xq-shadow-xs);
}

/* Top utility strip */
.top-strip {
  background: linear-gradient(90deg, #061526, #092642);
}
.top-strip-inner {
  min-height: 40px;
  gap: 16px;
  font-size: 12px;
  font-weight: 650;
}
.top-strip a {
  font-size: 12px;
}

/* Header and navigation */
.site-header {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(12, 34, 65, 0.055);
}
.header-inner {
  min-height: 76px;
  gap: 18px;
}
.brand {
  gap: 12px;
}
.brand-mark,
.brand-logo {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
  border-radius: 14px;
}
.brand-mark {
  font-size: 15px;
}
.brand-copy strong {
  max-width: 220px;
  font-size: 16px;
  font-weight: 850;
}
.brand-copy span {
  margin-top: 5px;
  font-size: 11px;
}
.header-actions {
  gap: 8px;
}
.header-search,
.menu-button {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 16px;
}
.header-search:hover,
.menu-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 22px rgba(15, 38, 70, 0.08);
}
.mobile-nav {
  padding: 12px 16px 18px;
  box-shadow: 0 24px 55px rgba(10, 31, 63, 0.13);
}
.mobile-nav:not([hidden]) {
  gap: 6px;
}
.mobile-nav a {
  min-height: 50px;
  gap: 12px;
  padding: 0 15px;
  border-radius: 13px;
  font-size: 14px;
}
.mobile-nav a i {
  width: 20px;
}
.goog-te-gadget .goog-te-combo {
  width: 132px;
  height: 44px;
  padding-left: 12px;
  border-radius: 13px;
  font-size: 12px;
}

/* Hero */
.hero-section {
  padding: 76px 0 78px;
  background:
    radial-gradient(
      circle at 91% 10%,
      color-mix(in srgb, var(--blue) 12%, transparent),
      transparent 31%
    ),
    radial-gradient(
      circle at 4% 95%,
      color-mix(in srgb, var(--teal) 11%, transparent),
      transparent 30%
    ),
    linear-gradient(180deg, #fcfdff 0%, #f5f8fc 100%);
}
.hero-section::before {
  background-size: 32px 32px;
  opacity: 0.5;
}
.hero-grid {
  gap: 42px;
}
.eyebrow {
  padding: 9px 12px;
  font-size: 12px;
}
.hero-copy h1 {
  max-width: 790px;
  margin: 20px 0 18px;
  font-size: clamp(45px, 12vw, 78px);
  line-height: 0.99;
  letter-spacing: -0.067em;
}
.hero-lead {
  max-width: 690px;
  font-size: clamp(17px, 4.5vw, 21px);
  line-height: 1.62;
}
.home-search {
  max-width: 760px;
  grid-template-columns: 50px minmax(0, 1fr);
  margin-top: 30px;
  padding: 8px;
  border-radius: 19px;
  box-shadow: 0 20px 50px rgba(18, 50, 94, 0.13);
}
.home-search-icon {
  font-size: 17px;
}
.home-search input {
  height: 48px;
  font-size: 15px;
}
.home-search button {
  min-height: 48px;
  border-radius: 13px;
  font-size: 14px;
}
.search-results {
  top: calc(100% + 10px);
  border-radius: 17px;
}
.search-results a,
.search-result {
  min-height: 62px;
  padding: 11px 14px;
  font-size: 13px;
}
.search-results strong {
  font-size: 14px;
}
.search-results small {
  font-size: 11px;
}
.popular-searches {
  gap: 8px;
  margin-top: 17px;
}
.popular-searches > span {
  font-size: 11px;
}
.popular-searches a {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
}
.hero-assurances {
  gap: 12px;
  margin-top: 22px;
  font-size: 12px;
}
.hero-panel {
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(16, 43, 80, 0.13);
}
.hero-panel-top {
  padding: 20px 21px 17px;
  font-size: 11px;
}
.stat-grid {
  gap: 12px;
  padding: 18px 20px;
}
.stat-card {
  min-height: 111px;
  padding: 18px;
  border-radius: 17px;
}
.stat-card strong {
  font-size: 34px;
}
.stat-card span {
  margin-top: 9px;
  font-size: 12px;
  line-height: 1.45;
}
.hero-feature {
  min-height: 72px;
  margin: 0 20px 18px;
  padding: 12px 13px;
  border-radius: 16px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  font-size: 17px;
}
.hero-feature > div:nth-child(2) span {
  font-size: 10px;
}
.hero-feature > div:nth-child(2) strong {
  font-size: 13px;
}
.hero-note {
  margin: -3px 20px 19px;
  font-size: 10px;
}

/* Categories */
.category-grid {
  gap: 13px;
}
.category-card {
  min-height: 92px;
  gap: 13px;
  padding: 15px;
  border-radius: 18px;
  box-shadow: var(--xq-shadow-xs);
}
.category-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--blue) 25%, var(--xq-line));
  box-shadow: var(--xq-shadow-sm);
}
.category-icon {
  width: 51px;
  height: 51px;
  border-radius: 14px;
}
.category-mark {
  font-size: 12px;
}
.category-card h3 {
  font-size: 15px;
}
.category-card div:nth-child(2) span {
  margin-top: 5px;
  font-size: 11px;
}
.category-arrow {
  font-size: 18px;
}

/* Process */
.process-grid {
  gap: 15px;
}
.process-grid article {
  min-height: 220px;
  padding: 22px;
  border-radius: 21px;
  box-shadow: var(--xq-shadow-xs);
}
.process-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--xq-shadow);
}
.process-grid article > span {
  font-size: 48px;
}
.process-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 17px;
}
.process-grid h3 {
  margin-bottom: 8px;
  font-size: 18px;
}
.process-grid p {
  font-size: 13px;
  line-height: 1.6;
}
.forms-callout {
  margin-top: 20px;
  padding: 22px;
  border-radius: 22px;
}
.forms-callout-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  font-size: 19px;
}
.forms-callout > div:nth-child(2) > span {
  font-size: 10px;
}
.forms-callout h3 {
  font-size: 16px;
}
.forms-callout p {
  font-size: 13px;
}

/* Service cards */
.service-grid {
  gap: 18px;
}
.service-card {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--xq-shadow-sm);
  transition:
    transform 0.26s var(--xq-ease),
    box-shadow 0.26s var(--xq-ease),
    border-color 0.26s var(--xq-ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--blue) 22%, var(--xq-line));
  box-shadow: 0 26px 58px rgba(15, 38, 70, 0.13);
}
.service-card-visual {
  min-height: 190px;
  aspect-ratio: 16 / 9;
}
.service-card-visual img {
  transition:
    transform 0.45s var(--xq-ease),
    filter 0.3s ease;
}
.service-card:hover .service-card-visual img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.01);
}
.service-card-icon {
  width: 48px;
  height: 48px;
  left: 16px;
  bottom: -23px;
  border-radius: 14px;
}
.status-badge {
  right: 13px;
  top: 13px;
  min-height: 29px;
  padding: 0 10px;
  font-size: 10px;
}
.service-card-body {
  padding: 27px 19px 18px;
}
.service-category {
  font-size: 10px;
}
.service-card h3 {
  margin: 7px 0 9px;
  font-size: 21px;
  line-height: 1.25;
}
.service-summary {
  font-size: 13px;
  line-height: 1.65;
}
.service-meta {
  gap: 7px;
  margin-top: 14px;
}
.service-meta span {
  min-height: 31px;
  gap: 6px;
  padding: 0 9px;
  border-radius: 10px;
  font-size: 10px;
}
.service-card-link {
  min-height: 48px;
  margin: 16px -19px -18px;
  padding: 0 19px;
  font-size: 13px;
}
.service-card:hover .service-card-link span:last-child {
  transform: translateX(3px);
}
.service-card-link span:last-child {
  transition: transform 0.2s var(--xq-ease);
}

/* Quick toolkit and mission */
.quick-section {
  padding-block: 82px;
}
.quick-layout {
  gap: 38px;
}
.quick-copy h2 {
  margin: 10px 0;
  font-size: clamp(38px, 9vw, 52px);
}
.quick-copy p {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.65;
}
.quick-list {
  gap: 10px;
}
.quick-item {
  min-height: 74px;
  padding: 12px 13px;
  border-radius: 15px;
}
.quick-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}
.quick-item .quick-mark,
.quick-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  font-size: 13px;
}
.quick-item strong {
  font-size: 13px;
}
.quick-item div:nth-child(2) span {
  font-size: 10px;
}
.mission-card {
  gap: 18px;
  padding: 26px;
  border-radius: 24px;
}
.mission-badge {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  font-size: 18px;
}
.mission-copy h2 {
  margin: 7px 0;
  font-size: 27px;
}
.mission-copy p {
  font-size: 14px;
  line-height: 1.65;
}

/* Generic page heroes */
.page-hero,
.legal-hero {
  padding: 72px 0 68px;
}
.page-hero h1,
.legal-hero h1 {
  margin: 10px 0 10px;
  font-size: clamp(42px, 10vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.058em;
}
.page-hero p,
.legal-hero p {
  max-width: 790px;
  font-size: 16px;
  line-height: 1.65;
}
.breadcrumbs {
  gap: 7px;
  font-size: 11px;
}

/* Directory toolbars and filters */
.directory-toolbar,
.download-search-panel {
  gap: 15px;
  margin-bottom: 16px;
}
.directory-search,
.download-search-box {
  min-height: 56px;
  gap: 11px;
  padding: 0 13px 0 16px;
  border-radius: 16px;
  box-shadow: var(--xq-shadow-xs);
}
.directory-search:focus-within,
.download-search-box:focus-within {
  border-color: color-mix(in srgb, var(--blue) 45%, var(--xq-line));
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--blue) 8%, transparent),
    var(--xq-shadow-xs);
}
.directory-search > span,
.download-search-box > span {
  font-size: 18px;
}
.directory-search input,
.download-search-box input {
  height: 52px;
  font-size: 14px;
}
.directory-search button,
.download-search-box button {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  font-size: 17px;
}
.directory-toolbar > strong,
.download-search-panel > strong {
  font-size: 12px;
}
.filter-row,
.download-category-chips {
  gap: 8px;
  margin-bottom: 30px;
  padding-bottom: 4px;
}
.filter-row button,
.download-category-chips button {
  min-height: 39px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 12px;
}
.filter-row button:hover,
.download-category-chips button:hover {
  transform: translateY(-1px);
}
.directory-empty,
.downloads-empty {
  padding: 58px 22px;
  border-radius: 22px;
}
.directory-empty > span,
.downloads-empty > span {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  font-size: 23px;
}
.directory-empty h2,
.downloads-empty h2 {
  margin: 16px 0 6px;
  font-size: 22px;
}
.directory-empty p,
.downloads-empty p {
  font-size: 13px;
}
.service-request-cta {
  gap: 15px;
  margin-top: 28px;
  padding: 22px;
  border-radius: 22px;
}
.request-cta-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  font-size: 19px;
}
.service-request-cta div > span {
  font-size: 10px;
}
.service-request-cta h2 {
  margin: 4px 0;
  font-size: 19px;
}
.service-request-cta p {
  font-size: 13px;
}

/* Downloads */
.download-notice {
  gap: 13px;
  margin-bottom: 18px;
  padding: 15px 17px;
  border-radius: 16px;
}
.download-notice > span {
  width: 36px;
  height: 36px;
  border-radius: 11px;
}
.download-notice strong {
  font-size: 13px;
}
.download-notice p {
  font-size: 11px;
}
.download-groups {
  gap: 36px;
}
.download-group-heading {
  margin-bottom: 14px;
}
.download-group-heading span {
  font-size: 10px;
}
.download-group-heading h2 {
  font-size: 25px;
}
.download-group-heading > strong {
  font-size: 11px;
}
.download-grid {
  gap: 13px;
}
.download-card {
  min-height: 118px;
  gap: 13px;
  padding: 15px;
  border-radius: 18px;
  box-shadow: var(--xq-shadow-xs);
}
.download-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--blue) 24%, var(--xq-line));
  box-shadow: var(--xq-shadow-sm);
}
.download-file-mark {
  min-width: 51px;
  height: 51px;
  border-radius: 14px;
  font-size: 10px;
}
.download-card > div > span {
  font-size: 9px;
}
.download-card h3 {
  margin: 4px 0;
  font-size: 14px;
}
.download-card p {
  font-size: 11px;
  line-height: 1.5;
}
.download-card small {
  font-size: 10px;
}
.download-card > a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 17px;
}
.download-card > a:hover {
  transform: translateY(-2px);
}

/* Quick links directory */
.quick-group {
  margin-top: 38px;
}
.quick-group .section-heading-row {
  margin-bottom: 15px;
}
.quick-group .section-heading-row h2 {
  font-size: 27px;
}
.quick-group .section-heading-row > span {
  font-size: 11px;
}
.quick-link-grid {
  gap: 12px;
}
.quick-link-card {
  min-height: 104px;
  gap: 13px;
  padding: 15px;
  border-radius: 18px;
  box-shadow: var(--xq-shadow-xs);
}
.quick-link-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--blue) 23%, var(--xq-line));
  box-shadow: var(--xq-shadow-sm);
}
.quick-link-card small {
  font-size: 9px;
  padding: 4px 7px;
}
.quick-link-card h3 {
  font-size: 14px;
}
.quick-link-card p {
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.5;
}

/* Service detail */
.detail-hero {
  padding: 44px 0 52px;
}
.back-link {
  gap: 7px;
  margin-bottom: 23px;
  font-size: 13px;
}
.verified-pill {
  min-height: 29px;
  padding: 0 10px;
  font-size: 10px;
}
.detail-heading-grid > div:first-child h1,
.detail-heading-grid h1 {
  max-width: 820px;
  margin: 13px 0 11px;
  font-size: clamp(42px, 10vw, 64px);
}
.detail-heading-grid > div:first-child > p {
  max-width: 780px;
  font-size: 16px;
  line-height: 1.65;
}
.detail-category {
  min-height: 31px;
  padding: 0 10px;
  font-size: 10px;
}
.detail-thumbnail {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--xq-shadow);
}
.detail-thumbnail img {
  min-height: 230px;
  object-fit: cover;
  transition: transform 0.45s var(--xq-ease);
}
.detail-thumbnail:hover img {
  transform: scale(1.025);
}
.detail-facts {
  gap: 9px;
}
.detail-facts > div {
  min-height: 73px;
  gap: 10px;
  padding: 12px;
  border-radius: 15px;
}
.detail-facts b {
  font-size: 16px;
}
.detail-facts span {
  font-size: 10px;
}
.detail-facts strong {
  margin-top: 3px;
  font-size: 12px;
}
.detail-jumpbar {
  box-shadow: 0 7px 22px rgba(15, 38, 70, 0.06);
}
.detail-jumpbar .page-container {
  min-height: 57px;
  gap: 8px;
}
.detail-jumpbar .page-container > span {
  font-size: 11px;
}
.detail-jumpbar a {
  padding: 8px 11px;
  font-size: 10px;
}
.detail-layout {
  gap: 20px;
}
.detail-main {
  gap: 18px;
}
.content-card {
  padding: 22px;
  border-radius: 22px;
  box-shadow: var(--xq-shadow-xs);
}
.content-card:hover {
  border-color: #d4dfeb;
}
.content-card-heading {
  gap: 12px;
  margin-bottom: 17px;
}
.content-card-heading > b {
  width: 43px;
  height: 43px;
  border-radius: 13px;
  font-size: 14px;
}
.content-card-heading span {
  font-size: 9px;
}
.content-card-heading h2 {
  font-size: 22px;
}
.content-card-heading h2 small {
  font-size: 11px;
}
.check-list {
  gap: 9px;
}
.check-list li {
  min-height: 48px;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 13px;
  font-size: 13px;
}
.check-list li > span {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 10px;
}
.document-grid {
  gap: 9px;
}
.document-grid > div {
  min-height: 57px;
  gap: 12px;
  padding: 12px;
  border-radius: 13px;
}
.document-grid > div > span {
  font-size: 10px;
}
.document-grid strong {
  font-size: 13px;
}
.step-list {
  gap: 0;
}
.step-list li {
  gap: 12px;
  padding-bottom: 18px;
}
.step-list li > span {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 11px;
}
.step-list strong {
  font-size: 10px;
}
.step-list p {
  margin-top: 3px;
  font-size: 13px;
}
.form-library-intro {
  margin-bottom: 16px;
  font-size: 12px;
}
.service-form-grid {
  gap: 10px;
}
.service-form-grid > a {
  min-height: 100px;
  padding: 13px;
  border-radius: 15px;
}
.service-form-grid > a:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--blue) 25%, var(--xq-line));
}
.service-form-icon {
  width: 43px;
  height: 43px;
  border-radius: 12px;
  font-size: 16px;
}
.service-form-grid > a > div > span {
  font-size: 9px;
}
.service-form-grid strong {
  font-size: 12px;
}
.service-form-grid p {
  font-size: 10px;
}
.service-form-action {
  font-size: 10px;
}
.action-card {
  padding: 21px;
  border-radius: 22px;
  box-shadow: var(--xq-shadow-sm);
}
.action-card h2 {
  font-size: 24px;
}
.action-card > p {
  font-size: 12px;
}
.action-list {
  gap: 8px;
}
.action-list a {
  min-height: 46px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 12px;
}
.action-list a:hover {
  transform: translateX(2px);
}
.official-main-link {
  min-height: 48px;
  border-radius: 13px;
  font-size: 12px;
}
.safety-note {
  padding: 12px;
  border-radius: 13px;
  font-size: 10px;
}

/* Scam directory and article */
.scam-safety-banner {
  gap: 13px;
  padding: 16px;
  border-radius: 18px;
}
.scam-safety-banner strong {
  font-size: 13px;
}
.scam-safety-banner div > span {
  font-size: 11px;
}
.scam-safety-banner > a {
  font-size: 11px;
}
.scam-list-summary > span {
  font-size: 10px;
}
.scam-list-summary p {
  font-size: 12px;
}
.scam-grid {
  gap: 16px;
}
.scam-card {
  border-radius: 21px;
  box-shadow: var(--xq-shadow-xs);
}
.scam-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--xq-shadow);
}
.scam-card-image {
  min-height: 190px;
}
.scam-card-image img {
  transition: transform 0.4s var(--xq-ease);
}
.scam-card:hover .scam-card-image img {
  transform: scale(1.035);
}
.scam-card-copy {
  padding: 18px;
}
.scam-card-meta span {
  font-size: 9px;
}
.scam-card h2 {
  font-size: 20px;
}
.scam-card-copy > p {
  font-size: 12px;
}
.scam-card-copy > div:last-child {
  font-size: 10px;
}
.scam-detail-title h1 {
  font-size: clamp(42px, 10vw, 64px);
}
.scam-detail-title > p {
  font-size: 16px;
}
.scam-publish-date {
  font-size: 11px;
}
.scam-article {
  border-radius: 24px;
}
.rich-scam-content {
  padding: 24px;
  font-size: 14px;
  line-height: 1.75;
}
.rich-scam-content h2 {
  font-size: 25px;
}
.rich-scam-content h3 {
  font-size: 20px;
}
.scam-report-card {
  padding: 20px;
  border-radius: 22px;
}
.scam-report-card > span {
  width: 50px;
  height: 50px;
  border-radius: 15px;
}
.scam-report-card h2 {
  font-size: 21px;
}
.scam-report-card p {
  font-size: 12px;
}
.scam-report-card a {
  min-height: 46px;
  border-radius: 13px;
  font-size: 12px;
}
.scam-report-card small {
  font-size: 10px;
}

/* Legal */
.legal-content {
  max-width: 980px;
}
.legal-card {
  border-radius: 24px;
}
.legal-card section {
  padding: 25px;
}
.legal-card h2 {
  margin-bottom: 8px;
  font-size: 22px;
}
.legal-card p {
  font-size: 14px;
  line-height: 1.75;
}
.legal-card > p {
  padding: 17px 25px;
  font-size: 11px;
}

/* Disclaimer and footer */
.page-disclaimer .page-container {
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  padding-block: 16px;
}
.page-disclaimer .page-container > span {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}
.page-disclaimer p {
  font-size: 11px;
  line-height: 1.55;
}
.page-disclaimer a {
  font-size: 11px;
}
.site-footer {
  background: linear-gradient(180deg, #071526, #061222);
}
.footer-main {
  gap: 34px;
  padding-top: 55px;
  padding-bottom: 42px;
}
.footer-brand p {
  margin: 18px 0 14px;
  font-size: 12px;
  line-height: 1.65;
}
.independent-note {
  min-height: 32px;
  padding: 0 10px;
  font-size: 10px;
}
.footer-column {
  gap: 10px;
}
.footer-column h3 {
  margin-bottom: 5px;
  font-size: 12px;
}
.footer-column a,
.footer-column span {
  font-size: 12px;
  line-height: 1.5;
}
.footer-column a:hover {
  transform: translateX(2px);
}
.footer-bottom {
  gap: 6px;
  padding-top: 18px;
  padding-bottom: 22px;
  font-size: 10px;
}
.support-dock {
  right: 16px;
  gap: 9px;
}
.support-dock a {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  font-size: 17px;
}

/* Flash messages */
.flash-message {
  width: min(1360px, calc(100% - 32px));
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 14px;
  font-size: 12px;
}

/* Modals */
.request-modal-backdrop,
.promotion-backdrop {
  padding: 16px;
}
.request-modal,
.promotion-card {
  width: min(100%, 580px);
  border-radius: 26px;
}
.request-modal {
  padding: 26px;
}
.request-modal-close,
.promotion-close {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  font-size: 16px;
}
.request-form-heading > span,
.promotion-copy > span {
  font-size: 10px;
}
.request-form-heading h2,
.promotion-copy h2 {
  margin: 7px 0 7px;
  font-size: 28px;
}
.request-form-heading p,
.promotion-copy p {
  font-size: 13px;
  line-height: 1.6;
}
.request-modal form {
  gap: 14px;
  margin-top: 21px;
}
.request-modal label > span {
  margin-bottom: 6px;
  font-size: 12px;
}
.request-modal input {
  height: 49px;
  padding: 0 13px;
  font-size: 14px;
}
.request-modal textarea {
  padding: 12px 13px;
  font-size: 14px;
}
.request-form-status {
  font-size: 12px;
}
.promotion-card > img {
  max-height: 300px;
}
.promotion-copy {
  padding: 25px;
}

/* Loading and reveal motion */
[data-services-grid][aria-busy="true"],
[data-download-results][aria-busy="true"] {
  opacity: 0.55;
  transform: translateY(3px);
}
[data-services-grid],
[data-download-results] {
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.ui-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s var(--xq-ease),
    transform 0.55s var(--xq-ease);
}
.ui-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.hero-copy,
.hero-panel {
  animation: xq-hero-in 0.55s var(--xq-ease) both;
}
.hero-panel {
  animation-delay: 0.08s;
}
@keyframes xq-hero-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Tablet and up */
@media (min-width: 600px) {
  .page-container {
    width: min(1360px, calc(100% - 48px));
  }
  .brand-copy span {
    display: block;
  }
  .home-search {
    grid-template-columns: 50px minmax(0, 1fr) auto;
  }
  .home-search button {
    grid-column: auto;
    min-width: 112px;
    margin: 0;
  }
  .hero-assurances {
    gap: 17px;
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quick-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  .top-strip-inner {
    justify-content: space-between;
  }
  .top-strip a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }
  .header-inner {
    min-height: 80px;
  }
  .main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
  }
  .main-nav a {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 12px;
    color: #4b5d74;
    font-size: 14px;
    font-weight: 750;
  }
  .main-nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 5px;
    height: 2px;
    border-radius: 99px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s var(--xq-ease);
  }
  .main-nav a:hover {
    color: var(--blue);
    background: var(--xq-soft-blue);
  }
  .main-nav a:hover::after,
  .main-nav a.active::after {
    transform: scaleX(1);
  }
  .main-nav a.active {
    color: var(--blue);
    background: var(--xq-soft-blue);
  }
  .menu-button {
    display: none;
  }
  .google-language-widget {
    display: block;
  }
  .hero-section {
    padding: 88px 0 90px;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.78fr);
    gap: 66px;
    align-items: center;
  }
  .hero-copy h1 {
    font-size: clamp(62px, 5.4vw, 80px);
  }
  .hero-panel {
    max-width: 520px;
    justify-self: end;
  }
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-block {
    padding: 88px 0;
  }
  .section-heading-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .section-heading-row h2,
  .compact-heading h2 {
    font-size: 45px;
  }
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .process-grid article {
    min-height: 245px;
    padding: 27px;
  }
  .forms-callout {
    grid-template-columns: 50px minmax(0, 1fr) auto;
    align-items: center;
    padding: 23px;
  }
  .forms-callout .button {
    grid-column: auto;
  }
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .quick-layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(440px, 1fr);
    gap: 76px;
    align-items: center;
  }
  .quick-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quick-copy h2 {
    font-size: 52px;
  }
  .mission-card {
    grid-template-columns: 62px minmax(0, 1fr) auto;
    align-items: center;
    padding: 30px;
  }
  .mission-card .button {
    grid-column: auto;
  }
  .page-hero,
  .legal-hero {
    padding: 78px 0 74px;
  }
  .page-hero h1,
  .legal-hero h1 {
    font-size: 60px;
  }
  .directory-toolbar,
  .download-search-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
  .directory-search,
  .download-search-box {
    max-width: 780px;
  }
  .service-request-cta {
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
  }
  .service-request-cta .button {
    grid-column: auto;
  }
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quick-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .detail-heading-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.7fr);
    gap: 60px;
    align-items: end;
  }
  .detail-heading-grid h1 {
    font-size: 62px;
  }
  .detail-jumpbar {
    top: 80px;
  }
  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 26px;
    align-items: start;
  }
  .content-card {
    padding: 27px;
  }
  .action-card {
    position: sticky;
    top: 145px;
    padding: 23px;
  }
  .scam-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .scam-detail-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
  }
  .scam-report-card {
    position: sticky;
    top: 110px;
  }
  .rich-scam-content {
    padding: 34px;
    font-size: 15px;
  }
  .page-disclaimer .page-container {
    grid-template-columns: 40px minmax(0, 1fr) auto;
  }
  .page-disclaimer a {
    grid-column: auto;
  }
  .footer-main {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    padding-top: 62px;
    padding-bottom: 48px;
  }
  .support-dock {
    right: 22px;
    bottom: 22px;
  }
}

@media (min-width: 1180px) {
  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .service-grid {
    gap: 22px;
  }
  .download-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .quick-link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1500px) {
  .page-container {
    width: min(1400px, calc(100% - 64px));
  }
  .hero-grid {
    gap: 82px;
  }
  .hero-panel {
    max-width: 540px;
  }
  .service-card-visual {
    min-height: 205px;
  }
}

/* Mobile refinement */
@media (max-width: 599px) {
  .section-block {
    padding: 64px 0;
  }
  .section-heading-row h2,
  .compact-heading h2 {
    font-size: 35px;
  }
  .hero-section {
    padding: 62px 0 64px;
  }
  .hero-copy h1 {
    font-size: clamp(45px, 13vw, 59px);
  }
  .hero-lead {
    font-size: 17px;
  }
  .home-search {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 7px;
  }
  .home-search input {
    height: 46px;
    font-size: 14px;
  }
  .popular-searches {
    gap: 7px;
  }
  .hero-panel-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stat-card {
    min-height: 101px;
    padding: 15px;
  }
  .stat-card strong {
    font-size: 30px;
  }
  .category-card {
    min-height: 86px;
  }
  .process-grid article {
    min-height: auto;
  }
  .service-card-visual {
    min-height: 190px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .quick-section {
    padding-block: 70px;
  }
  .mission-card {
    padding: 21px;
  }
  .page-hero,
  .legal-hero {
    padding: 60px 0 56px;
  }
  .page-hero h1,
  .legal-hero h1 {
    font-size: 44px;
  }
  .page-hero p,
  .legal-hero p {
    font-size: 15px;
  }
  .filter-row,
  .download-category-chips {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .filter-row::-webkit-scrollbar,
  .download-category-chips::-webkit-scrollbar {
    display: none;
  }
  .filter-row button,
  .download-category-chips button {
    flex: 0 0 auto;
  }
  .detail-heading-grid h1 {
    font-size: 44px;
  }
  .detail-heading-grid > div:first-child > p {
    font-size: 15px;
  }
  .detail-thumbnail img {
    min-height: 200px;
  }
  .detail-facts {
    grid-template-columns: 1fr;
  }
  .detail-jumpbar .page-container {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .content-card {
    padding: 18px;
  }
  .scam-detail-title h1 {
    font-size: 44px;
  }
  .legal-card section {
    padding: 20px;
  }
  .request-modal-backdrop,
  .promotion-backdrop {
    place-items: end center;
    padding: 10px;
  }
  .request-modal,
  .promotion-card {
    border-radius: 24px 24px 18px 18px;
  }
  .request-modal {
    padding: 21px 18px;
  }
  .request-form-heading h2,
  .promotion-copy h2 {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ui-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   FOOTER — MANAGED BY LINK
   ========================================================= */

.footer-managed-by {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-managed-by a {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  color: inherit;
  font-weight: 600;
  text-decoration: none;

  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.footer-managed-by a i {
  font-size: 10px;

  transition: transform 180ms ease;
}

.footer-managed-by a:hover {
  color: var(--primary-color, #2563eb);
}

.footer-managed-by a:hover i {
  transform: translate(2px, -2px);
}

.footer-managed-by a:focus-visible {
  outline: 2px solid var(--primary-color, #2563eb);
  outline-offset: 3px;
  border-radius: 4px;
}
