:root {
  --page: #fbfdfc;
  --hero: #e9fbf1;
  --hero-soft: #f4fffa;
  --section: #f5f6fb;
  --card: #ffffff;
  --text: #33414b;
  --heading: #2f3d48;
  --muted: #5f6874;
  --soft: #8a949f;
  --green: #29ad68;
  --green-dark: #167a4b;
  --green-soft: #e6f8ee;
  --blue: #0b73d9;
  --border: #dce3e8;
  --shadow: 0 14px 34px rgba(32, 44, 54, 0.1);
  --radius: 8px;
}

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

@keyframes softFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: var(--shadow);
  }
  50% {
    box-shadow: 0 20px 46px rgba(41, 173, 104, 0.22), 0 10px 24px rgba(32, 44, 54, 0.09);
  }
}

@keyframes scanLens {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  45% {
    transform: translate3d(-14px, -8px, 0) rotate(-4deg);
  }
  70% {
    transform: translate3d(8px, 6px, 0) rotate(3deg);
  }
}

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

@keyframes dropdownIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes activityMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes mapPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(41, 173, 104, 0.2);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 0 0 12px rgba(41, 173, 104, 0);
  }
}

@keyframes reportScan {
  from {
    transform: translateX(-40%);
  }
  to {
    transform: translateX(140%);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--page);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.has-scrolled .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(195, 204, 211, 0.9);
  box-shadow: 0 14px 32px rgba(32, 44, 54, 0.08);
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #edf0f2;
  backdrop-filter: blur(16px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #242b31;
  text-decoration: none;
  font-size: 1.55rem;
  font-weight: 900;
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
}

.nav-links,
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.nav-links a,
.login-button,
.language-picker,
.country-trigger,
.country-menu button,
.search-button,
.metrics-grid article,
.coverage-grid article,
.reason-grid article,
.signals-list article,
.faq-grid details {
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease,
    color 180ms ease,
    transform 220ms ease;
}

.language-picker {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 10px;
  background: #f7f8fa;
}

.language-picker svg {
  width: 16px;
  height: 16px;
}

.language-picker select,
.footer-language select {
  color: var(--heading);
  border: 0;
  outline: 0;
  background: transparent;
  font-weight: 800;
}

.login-button {
  min-width: 98px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f1317;
  background: #f0f1f4;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
}

.login-button:hover,
.account-chip:not(.is-disabled):hover {
  color: var(--green-dark);
  border-color: rgba(9, 122, 83, 0.28);
  background: #eefaf4;
}

.account-chip {
  max-width: min(280px, 32vw);
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--heading);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 14px;
  background: #f7f8fa;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 850;
}

.account-chip.is-disabled {
  cursor: default;
  color: var(--heading);
}

.account-chip svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--green-dark);
}

.account-chip span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-section {
  min-height: clamp(580px, calc(100vh - 150px), 650px);
  display: flex;
  align-items: center;
  padding: 42px 0 46px;
  background:
    radial-gradient(circle at 73% 38%, rgba(41, 173, 104, 0.22), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--hero) 46%, #ffffff 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  align-items: center;
  gap: 58px;
}

.hero-copy h1 {
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--heading);
  font-size: clamp(2.72rem, 4.55vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 900;
  opacity: 0;
  animation: heroFadeUp 700ms ease forwards;
}

.hero-copy h1 span,
.section-center h2 span {
  color: var(--green);
}

.hero-copy p {
  max-width: 640px;
  margin: 0;
  color: var(--text);
  font-size: 1.34rem;
  line-height: 1.55;
  opacity: 0;
  animation: heroFadeUp 700ms ease 110ms forwards;
}

.lookup-form {
  max-width: 700px;
  min-height: 70px;
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr) 132px;
  align-items: stretch;
  margin-top: 34px;
  overflow: visible;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f7f7f8;
  box-shadow: 0 10px 24px rgba(43, 60, 72, 0.08);
  opacity: 0;
  transition: border-color 220ms ease, box-shadow 240ms ease, transform 220ms ease;
  animation: heroFadeUp 720ms ease 220ms forwards;
}

.lookup-form:focus-within {
  border-color: rgba(41, 173, 104, 0.42);
  box-shadow: 0 16px 34px rgba(41, 173, 104, 0.14), 0 10px 24px rgba(43, 60, 72, 0.08);
  transform: translateY(-1px);
}

.country-field,
.phone-field {
  min-width: 0;
  display: flex;
  align-items: center;
  position: relative;
}

.country-field {
  z-index: 30;
  border-right: 1px solid #e4e8ec;
}

.country-trigger {
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 10px;
  color: var(--heading);
  border: 0;
  background: transparent;
  padding: 0 16px;
  font-weight: 800;
  cursor: pointer;
}

.country-trigger:hover {
  background: rgba(41, 173, 104, 0.07);
}

.country-trigger img,
.country-menu img {
  width: 26px;
  height: 18px;
  display: block;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(20, 30, 40, 0.08);
}

.country-trigger span,
.country-menu span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-trigger strong,
.country-menu strong {
  color: var(--muted);
  font-size: 0.96rem;
}

.country-trigger svg {
  width: 18px;
  height: 18px;
  color: var(--soft);
}

.country-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 80;
  width: 100%;
  max-height: 320px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 18px 38px rgba(32, 44, 54, 0.16);
  transform-origin: top left;
}

.country-menu:not([hidden]) {
  animation: dropdownIn 180ms ease both;
}

.country-search {
  min-height: 44px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  border: 1px solid #dfe7ec;
  border-radius: 9px;
  background: #f8fafb;
  padding: 0 10px;
}

.country-search svg {
  width: 17px;
  height: 17px;
  color: var(--soft);
}

.country-search input {
  width: 100%;
  min-width: 0;
  color: var(--heading);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 0.94rem;
  font-weight: 700;
}

.country-search input::placeholder {
  color: #929ca7;
}

.country-options {
  max-height: 258px;
  overflow-y: auto;
}

.country-menu button {
  width: 100%;
  min-height: 44px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  padding: 0 10px;
  color: var(--heading);
  text-align: left;
  font-weight: 750;
  cursor: pointer;
}

.country-menu button:hover,
.country-menu button.is-active {
  background: var(--green-soft);
}

.phone-field {
  display: grid;
  gap: 2px;
  padding: 9px 16px 8px;
}

.phone-field span {
  color: #555d67;
  font-size: 0.86rem;
  font-weight: 700;
}

.phone-field input {
  width: 100%;
  color: var(--heading);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 600;
}

.phone-field input::placeholder {
  transition: color 180ms ease;
}

.phone-field:focus-within span {
  color: var(--green-dark);
}

.phone-field:focus-within input::placeholder {
  color: #aab3bd;
}

.search-button,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  color: #ffffff;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  padding: 0 26px;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
}

.lookup-form .search-button {
  align-self: center;
  margin-right: 6px;
}

.search-button:hover,
.primary-link:hover {
  background: var(--green-dark);
  box-shadow: 0 12px 24px rgba(41, 173, 104, 0.24);
  transform: translateY(-1px);
}

.search-button:active,
.primary-link:active {
  transform: translateY(0) scale(0.98);
}

.form-error {
  min-height: 24px;
  margin: 10px 0 0;
  color: #b91c1c;
  font-weight: 800;
}

.trust-row {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  opacity: 0;
  animation: heroFadeUp 700ms ease 340ms forwards;
}

.trust-faces {
  display: flex;
}

.trust-faces span {
  width: 42px;
  height: 42px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  color: #ffffff;
  background: linear-gradient(135deg, #1f8f62, #35c47b);
  border: 3px solid #ffffff;
  border-radius: 50%;
  font-weight: 900;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(28, 48, 40, 0.16);
}

.trust-faces span::before {
  content: attr(data-initial);
  position: absolute;
  opacity: 0;
}

.trust-faces img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.trust-faces span.photo-fallback::before {
  position: static;
  opacity: 1;
}

.trust-faces span.photo-fallback img {
  display: none;
}

.trust-faces span:nth-child(2) {
  animation-delay: 420ms;
}

.trust-faces span:nth-child(3) {
  animation-delay: 480ms;
}

.trust-faces span:nth-child(4) {
  animation-delay: 540ms;
}

.trust-faces span:nth-child(5) {
  animation-delay: 600ms;
}

.trust-faces span:nth-child(6) {
  animation-delay: 660ms;
}

.trust-faces span:first-child {
  margin-left: 0;
}

.trust-row p {
  margin: 0;
  color: var(--heading);
  font-size: 1.15rem;
  font-weight: 600;
}

.hero-visual {
  min-height: 560px;
  position: relative;
  opacity: 0;
  animation: heroFadeUp 760ms ease 260ms forwards;
}

.profile-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 22px;
  width: 322px;
  min-height: 86px;
  padding: 18px 24px;
  border: 1.5px solid #5b727c;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(3px);
  animation: softFloat 6.4s ease-in-out infinite;
  will-change: transform;
}

.profile-card.card-main {
  width: 475px;
  min-height: 126px;
  left: 210px;
  top: 170px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  animation: softFloat 6.2s ease-in-out infinite, pulseGlow 5.4s ease-in-out infinite;
}

.card-top {
  left: 280px;
  top: 72px;
  animation-delay: 0.2s;
}

.card-mid {
  left: 280px;
  top: 316px;
  animation-delay: 0.7s;
}

.card-low {
  left: 280px;
  top: 422px;
  animation-delay: 1.05s;
}

.card-bottom {
  left: 280px;
  top: 532px;
  animation-delay: 1.38s;
}

.avatar {
  width: 46px;
  height: 46px;
  position: relative;
  flex: 0 0 auto;
  border: 2px solid #506a76;
  border-radius: 50%;
}

.avatar::before,
.avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #415965;
  border-radius: 50%;
}

.avatar::before {
  top: 7px;
  width: 18px;
  height: 18px;
}

.avatar::after {
  bottom: 7px;
  width: 31px;
  height: 18px;
  border-radius: 18px 18px 8px 8px;
}

.avatar.active {
  width: 72px;
  height: 72px;
  border-color: #4a6570;
}

.avatar.active::before,
.avatar.active::after {
  background: var(--green);
}

.avatar.active::before {
  top: 12px;
  width: 30px;
  height: 30px;
}

.avatar.active::after {
  bottom: 9px;
  width: 48px;
  height: 28px;
}

.profile-card div {
  flex: 1;
  display: grid;
  gap: 10px;
}

.profile-card i {
  display: block;
  height: 6px;
  background: #415965;
}

.profile-card i:nth-child(1) {
  width: 42%;
}

.profile-card i:nth-child(2) {
  width: 92%;
}

.profile-card i:nth-child(3) {
  width: 68%;
}

.profile-card i.green-line {
  width: 44%;
  background: var(--green);
}

.profile-card i.short {
  width: 76%;
}

.check-mark {
  position: absolute;
  top: -18px;
  right: -20px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 12px 22px rgba(41, 173, 104, 0.24);
}

.check-mark svg {
  width: 28px;
  height: 28px;
  stroke-width: 4;
}

.magnifier {
  position: absolute;
  right: 64px;
  bottom: 54px;
  width: 108px;
  height: 108px;
  border: 10px solid #3daf74;
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.9), 8px 10px 0 rgba(31, 86, 58, 0.13);
  animation: scanLens 6.8s ease-in-out infinite;
  will-change: transform;
}

.magnifier span {
  position: absolute;
  width: 84px;
  height: 14px;
  left: -64px;
  bottom: -30px;
  background: linear-gradient(90deg, #128254, #29ad68);
  border-radius: 10px;
  transform: rotate(-32deg);
  transform-origin: right center;
  box-shadow: 0 7px 0 rgba(31, 86, 58, 0.16);
}

.metrics-strip {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 18px 0;
  border-top: 1px solid rgba(220, 227, 232, 0.75);
}

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

.metrics-grid article {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(220, 227, 232, 0.95);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
  padding: 16px 18px;
  box-shadow: 0 10px 24px rgba(34, 50, 64, 0.06);
}

.metrics-grid span {
  color: var(--heading);
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.metrics-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.activity-band {
  overflow: hidden;
  border-bottom: 1px solid rgba(220, 227, 232, 0.75);
  background: #ffffff;
  padding: 14px 0;
}

.activity-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: activityMarquee 28s linear infinite;
}

.activity-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  border: 1px solid #dce6e2;
  border-radius: 999px;
  background: #fbfdfc;
  padding: 8px 16px;
  color: #46525d;
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(34, 50, 64, 0.06);
}

.activity-track em {
  font-style: normal;
}

.activity-track svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.trust-strip {
  background: #fbfdfc;
  padding: 44px 0 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-grid article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 18px;
  row-gap: 6px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  min-height: 168px;
  padding: 26px 28px;
  box-shadow: 0 12px 28px rgba(34, 50, 64, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.trust-grid svg {
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 13px;
}

.trust-grid strong {
  display: block;
  color: var(--heading);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.25;
}

.trust-grid article > span {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.48;
}

.logos-band {
  padding: 66px 0 58px;
  background: #ffffff;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  color: #9aa2aa;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 900;
  opacity: 0.86;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

[data-reveal].is-visible {
  animation: revealUp 680ms ease forwards;
}

.coverage-grid article:hover,
.metrics-grid article:hover,
.trust-grid article:hover,
.process-grid article:hover,
.reason-grid article:hover,
.signals-list article:hover,
.report-preview:hover,
.faq-grid details:hover {
  border-color: rgba(41, 173, 104, 0.28);
  box-shadow: 0 16px 34px rgba(34, 50, 64, 0.1);
  transform: translateY(-3px);
}

.coverage-section,
.report-preview-section,
.process-section,
.signals-section {
  background: #ffffff;
  padding: 92px 0;
}

.why-section,
.faq-section {
  background: var(--section);
  padding: 92px 0;
}

.section-center {
  text-align: center;
}

.section-center h2,
.signals-layout h2,
.faq-layout h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.12;
  font-weight: 900;
}

.section-center p,
.signals-layout p,
.faq-layout p {
  max-width: 760px;
  margin: 28px auto 0;
  color: #565d68;
  font-size: 1.45rem;
  line-height: 1.55;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 44px;
}

.coverage-grid article,
.reason-grid article,
.faq-grid details {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 12px 30px rgba(34, 50, 64, 0.08);
}

.coverage-grid article {
  padding: 36px 22px;
}

.coverage-grid strong {
  display: block;
  color: var(--green);
  font-size: 2.8rem;
  font-weight: 900;
}

.coverage-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.coverage-map {
  position: relative;
  min-height: 280px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(41, 173, 104, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(41, 173, 104, 0.06) 1px, transparent 1px),
    #fbfdfc;
  background-size: 64px 64px;
  box-shadow: 0 16px 34px rgba(34, 50, 64, 0.08);
}

.coverage-map::before {
  content: "";
  position: absolute;
  inset: 54px 70px;
  border: 1px dashed rgba(47, 61, 72, 0.16);
  border-radius: 50%;
}

.coverage-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(41, 173, 104, 0.09) 46%, transparent 62%);
  animation: reportScan 7s ease-in-out infinite;
}

.coverage-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 38px;
  border: 1px solid rgba(41, 173, 104, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: var(--green-dark);
  font-size: 0.96rem;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(34, 50, 64, 0.11);
  transform: translate(-50%, -50%);
  animation: mapPulse 4.8s ease-in-out infinite;
}

.coverage-map span:nth-child(2n) {
  animation-delay: 0.8s;
}

.coverage-map span:nth-child(3n) {
  animation-delay: 1.4s;
}

.report-preview-section {
  background: var(--section);
}

.report-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: center;
}

.report-copy h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  line-height: 1.12;
  font-weight: 900;
}

.report-copy h2 span,
.process-section h2 span {
  color: var(--green);
}

.report-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.26rem;
  line-height: 1.62;
}

.report-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(34, 50, 64, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.report-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(41, 173, 104, 0.08) 42%, transparent 60%);
  animation: reportScan 5.8s ease-in-out infinite;
  pointer-events: none;
}

.preview-header,
.preview-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
}

.preview-header {
  padding: 22px 24px;
  border-bottom: 1px solid #e5eaee;
  color: var(--heading);
}

.preview-header span {
  font-weight: 900;
}

.preview-header strong {
  font-size: 1.08rem;
}

.preview-row {
  min-height: 62px;
  padding: 16px 24px;
  border-bottom: 1px solid #eef1f3;
}

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

.preview-row:nth-child(even) {
  background: #f8faf9;
}

.preview-row span {
  color: var(--heading);
  font-weight: 850;
}

.preview-row b {
  color: #2f3d48;
  font-size: 0.98rem;
}

.preview-row svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.locked {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(41, 173, 104, 0.22);
  border-radius: 999px;
  background: rgba(230, 248, 238, 0.9);
  padding: 6px 12px;
  color: var(--green-dark) !important;
  filter: blur(0.2px);
}

.process-section {
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
  text-align: left;
}

.process-grid article {
  position: relative;
  min-height: 250px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(34, 50, 64, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.process-grid article > span {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(47, 61, 72, 0.16);
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1;
}

.process-grid svg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 12px;
}

.process-grid strong {
  display: block;
  margin-top: 24px;
  color: var(--heading);
  font-size: 1.22rem;
  font-weight: 900;
}

.process-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  margin-top: 46px;
  text-align: left;
}

.reason-grid article {
  min-height: 260px;
  padding: 34px;
}

.reason-grid span {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  border: 3px solid #dc6d00;
  border-left-color: #4b1f52;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 900;
}

.reason-grid p {
  margin: 26px 0 0;
  color: var(--heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.55;
}

.signals-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.signals-layout p,
.faq-layout p {
  margin-left: 0;
}

.signals-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.signals-list article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(34, 50, 64, 0.07);
}

.signals-list svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.signals-list span {
  color: var(--heading);
  font-size: 1.02rem;
  font-weight: 800;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-grid details {
  padding: 22px 24px;
}

.faq-grid summary {
  color: var(--heading);
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 900;
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.site-footer {
  background: #f7f7f8;
  padding: 50px 0 42px;
}

.footer-topline {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding-bottom: 28px;
  border-bottom: 1px solid #d8dde2;
  color: #585f69;
  font-weight: 700;
}

.footer-topline a {
  text-decoration: none;
}

.footer-topline span {
  width: 1px;
  background: #c9ced4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1.28fr 0.9fr 0.9fr;
  gap: 54px;
  padding: 26px 0 42px;
  border-bottom: 1px solid #d8dde2;
}

.footer-grid h3 {
  margin: 0 0 24px;
  color: #4c525c;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 18px;
  color: #565d68;
  text-decoration: none;
  font-size: 1.05rem;
}

.footer-brand p {
  margin: 30px 0 0;
  color: #5d646e;
  line-height: 1.55;
}

.support-pill {
  width: max-content;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  padding: 10px 16px;
  box-shadow: 0 7px 20px rgba(34, 50, 64, 0.08);
}

.support-pill svg {
  width: 18px;
  height: 18px;
}

.legal-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 46px;
  align-items: end;
  padding-top: 38px;
}

.legal-note p {
  margin: 0;
  color: #565d68;
  font-size: 0.98rem;
  line-height: 1.55;
}

.footer-language {
  display: grid;
  gap: 6px;
  border-radius: var(--radius);
  background: #f0f1f3;
  padding: 14px 16px;
}

.footer-language span {
  color: #666d76;
  font-size: 0.9rem;
}

[hidden] {
  display: none !important;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .signals-layout,
html[dir="rtl"] .faq-layout,
html[dir="rtl"] .reason-grid,
html[dir="rtl"] .footer-grid,
html[dir="rtl"] .legal-note {
  text-align: right;
}

@media (max-width: 1180px) {
  .shell {
    width: min(100% - 40px, 1040px);
  }

  .hero-grid,
  .signals-layout,
  .faq-layout,
  .report-preview-layout,
  .legal-note {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .profile-card.card-main {
    left: 120px;
  }

  .card-top,
  .card-mid,
  .card-low,
  .card-bottom {
    left: 180px;
  }

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

  .report-preview-layout {
    gap: 34px;
  }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 46px 0 62px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero-copy p,
  .section-center p,
  .signals-layout p,
  .faq-layout p {
    font-size: 1.08rem;
  }

  .lookup-form,
  .metrics-grid,
  .coverage-grid,
  .trust-grid,
  .process-grid,
  .reason-grid,
  .signals-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .lookup-form {
    grid-template-columns: 124px minmax(0, 1fr);
    padding: 8px;
    overflow: visible;
  }

  .country-field {
    min-height: 58px;
    position: static;
    border-right: 1px solid #e4e8ec;
    border-bottom: 1px solid #e4e8ec;
  }

  .phone-field {
    min-height: 58px;
    border-bottom: 1px solid #e4e8ec;
    padding: 7px 12px 6px;
  }

  .country-trigger {
    min-height: 58px;
    grid-template-columns: 26px auto 16px;
    gap: 7px;
    padding: 0 10px;
  }

  .country-trigger span {
    display: none;
  }

  .country-trigger strong {
    font-size: 0.9rem;
  }

  .phone-field span {
    font-size: 0.78rem;
  }

  .phone-field input {
    font-size: 1rem;
  }

  .country-menu {
    top: 70px;
    left: 8px;
    right: 8px;
    width: auto;
  }

  .lookup-form .search-button {
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    display: none;
  }

  .logos-row,
  .footer-topline {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .reason-grid {
    gap: 18px;
  }

  .reason-grid article {
    min-height: 0;
  }

  .activity-track {
    animation-duration: 22s;
  }

  .metrics-strip {
    padding: 14px 0;
  }

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

  .coverage-map {
    min-height: 220px;
  }

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

  .report-preview {
    width: 100%;
  }

  .preview-header,
  .preview-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .process-grid article {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 1040px);
  }

  .brand span {
    font-size: 1.25rem;
  }

  .language-picker {
    display: none;
  }

  .login-button {
    min-width: 76px;
    min-height: 42px;
  }

  .account-chip {
    max-width: 46vw;
    min-height: 42px;
    padding: 0 10px;
  }

  .section-center h2,
  .signals-layout h2,
  .faq-layout h2,
  .report-copy h2 {
    font-size: 2rem;
  }

  .coverage-section,
  .report-preview-section,
  .process-section,
  .why-section,
  .signals-section,
  .faq-section {
    padding: 62px 0;
  }

  .trust-strip {
    padding-top: 28px;
  }

  .trust-grid article {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 0;
    column-gap: 14px;
    padding: 18px;
  }

  .trust-grid svg {
    width: 40px;
    height: 40px;
  }

  .activity-track span {
    min-height: 36px;
    padding: 7px 12px;
    font-size: 0.84rem;
  }

  .metrics-grid {
    gap: 8px;
  }

  .metrics-grid article {
    min-height: 78px;
    padding: 13px 12px;
  }

  .metrics-grid span {
    font-size: 1.36rem;
  }

  .metrics-grid p {
    font-size: 0.8rem;
  }

  .lookup-form {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .country-trigger {
    grid-template-columns: 26px auto 16px;
    gap: 6px;
    padding: 0 8px;
  }

  .country-trigger strong {
    font-size: 0.96rem;
  }

  .phone-field {
    padding-left: 10px;
    padding-right: 10px;
  }

  .coverage-map {
    margin-top: 26px;
    min-height: 190px;
  }

  .coverage-map::before {
    inset: 44px 30px;
  }

  .coverage-map span {
    min-width: 48px;
    height: 32px;
    font-size: 0.84rem;
  }

  .report-copy p {
    font-size: 1rem;
  }

  .preview-header,
  .preview-row {
    gap: 9px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .preview-row {
    min-height: 58px;
  }

  .preview-row b {
    max-width: 128px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

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

  .hero-copy h1,
  .hero-copy p,
  .lookup-form,
  .trust-row,
  .hero-visual,
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .profile-card,
  .profile-card.card-main,
  .magnifier,
  .activity-track,
  .coverage-map::after,
  .coverage-map span,
  .report-preview::before {
    animation: none !important;
  }
}
