@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap");

:root {
  --navy-950: #06172c;
  --navy-900: #081b33;
  --navy-800: #0d2748;
  --navy-700: #163a66;
  --blue: #155eef;
  --blue-soft: #eaf1ff;
  --teal: #0e9f87;
  --lime: #b9f56a;
  --lime-soft: #efffd9;
  --ink: #14212b;
  --muted: #667784;
  --line: #d9e1e8;
  --surface: #ffffff;
  --surface-alt: #e8edf2;
  --surface-page: #f0f3f6;
  --warm: #f7f6f1;
  --warning: #9a6300;
  --warning-bg: #fff5d6;
  --danger: #a33a3a;
  --danger-bg: #ffeded;
  --shadow-sm: 0 8px 24px rgba(9, 36, 65, 0.06);
  --shadow-md: 0 20px 60px rgba(9, 36, 65, 0.12);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1296px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body[data-page="home"] #main {
  background: var(--surface-alt);
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(185, 245, 106, 0.72);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 10px;
  color: var(--navy-900);
  background: var(--lime);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 225, 232, 0.8);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  font-family: "Manrope", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand-title,
.brand-subtitle {
  display: block;
}

.brand-subtitle {
  color: var(--muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  white-space: normal;
}

.brand-shield {
  position: relative;
  width: 38px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: var(--lime);
  clip-path: polygon(50% 0, 94% 17%, 90% 69%, 50% 100%, 10% 69%, 6% 17%);
}

.brand-shield::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--surface);
  clip-path: inherit;
}

.brand-shield span {
  position: relative;
  z-index: 1;
  color: var(--teal);
  font-size: 19px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.site-nav a {
  position: relative;
  color: #26394a;
  font-size: 15px;
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav a:not(.nav-submit)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--teal);
  transition: right 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--teal);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  right: 0;
}

.site-nav .nav-submit {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--navy-900);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.site-nav .nav-submit:hover {
  border-color: var(--teal);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--surface-alt);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-900);
  transition: 180ms ease;
}

.hero-shell {
  padding: clamp(14px, 2vh, 20px) 0 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(500px, calc(100vh - 210px), 570px);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  padding: clamp(34px, 4.5vw, 58px) clamp(42px, 5vw, 72px) clamp(74px, 6vw, 92px);
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 76% 34%, rgba(28, 94, 161, 0.5), transparent 26%),
    radial-gradient(circle at 52% 92%, rgba(14, 159, 135, 0.14), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 52%, #09284c);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(137, 179, 219, 0.11);
  border-radius: 50%;
}

.hero::before {
  width: 740px;
  height: 740px;
  right: -160px;
  top: -270px;
}

.hero::after {
  width: 520px;
  height: 520px;
  right: -50px;
  top: -135px;
}

.hero-content,
.verification-card {
  position: relative;
  z-index: 1;
}

.hero-content {
  min-width: 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--navy-900);
  font-family: "Manrope", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 800;
  line-height: 1.08;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 24px;
  color: #aebdd0;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.48;
}

.hero-search {
  max-width: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrap::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 18px;
  border: 2px solid #8796a7;
  border-radius: 50%;
}

.search-input-wrap::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 54%;
  width: 8px;
  height: 2px;
  background: #8796a7;
  transform: rotate(45deg);
}

.hero-search input {
  width: 100%;
  min-width: 0;
  padding: 14px 16px 14px 14px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.btn,
.hero-search button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border: 0;
  border-radius: 12px;
  color: var(--navy-900);
  background: var(--lime);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(185, 245, 106, 0.15);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.hero-search button:hover {
  transform: translateY(-2px);
  background: #c8ff83;
  box-shadow: 0 13px 30px rgba(185, 245, 106, 0.24);
}

.btn-secondary {
  color: var(--navy-900);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--surface-alt);
}

.btn-dark {
  color: #fff;
  background: var(--navy-900);
  box-shadow: none;
}

.btn-dark:hover {
  color: var(--lime);
  background: var(--navy-800);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 18px;
  color: #c6d1de;
  font-size: 13px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.trust-row span::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 245, 106, 0.6);
  border-radius: 50%;
  color: var(--lime);
  font-weight: 700;
}

.verification-card {
  max-width: 410px;
  justify-self: end;
  padding: clamp(14px, 1.5vw, 20px) clamp(22px, 2.5vw, 32px) clamp(22px, 2.5vw, 32px);
  border: 1px solid rgba(136, 172, 207, 0.42);
  border-radius: 20px;
  background: rgba(8, 32, 61, 0.78);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.23);
  backdrop-filter: blur(12px);
  transition: transform 220ms ease;
}

.verification-card:hover {
  transform: translateY(-4px);
}

.verification-label {
  margin: 0 0 8px;
  color: #8fa4bd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.verified-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(156, 186, 217, 0.3);
}

.verified-check {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(185, 245, 106, 0.1);
  font-size: 22px;
  font-weight: 800;
}

.verified-heading strong {
  display: block;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(20px, 1.7vw, 24px);
}

.verified-heading span {
  color: #9fb0c4;
  font-size: 14px;
}

.verified-domain {
  padding: 22px 0 16px;
}

.verified-domain a {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
}

.verified-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
}

.tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  color: #d8e5f4;
  background: rgba(40, 82, 127, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.tag-lime {
  color: var(--navy-900);
  background: var(--lime);
}

.checked-date {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(156, 186, 217, 0.3);
  color: #c8d4e1;
  font-size: 14px;
}

.checked-date::before {
  content: "◷";
  color: var(--lime);
  font-size: 22px;
}

.stats-strip {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 144px), 1030px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -56px auto 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.stat {
  padding: 13px 22px 12px;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: var(--navy-900);
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  line-height: 1.2;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-tight {
  padding: 72px 0;
}

.section-alt {
  background: var(--surface-alt);
}

body[data-page="catalog"] #main,
body[data-page="categories"] #main,
body[data-page="countries"] #main,
body[data-page="catalog"] .section,
body[data-page="categories"] .section,
body[data-page="countries"] .section,
body[data-page="categories"] .section-tight,
body[data-page="countries"] .section-alt {
  background: var(--surface-page);
}

body[data-page="404"] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--navy-950);
}

body[data-page="404"] #main {
  flex: 1 0 auto;
  display: flex;
}

body[data-page="404"] [data-footer] {
  margin-top: 0;
  background: var(--navy-950);
}

.error-404 {
  position: relative;
  flex: 1 0 auto;
  width: 100%;
  min-height: clamp(430px, calc(100vh - 190px), 650px);
  display: grid;
  place-items: center;
  padding: clamp(24px, 3vw, 38px) 0;
  overflow: hidden;
  color: #fff;
  background-color: var(--navy-950);
}

.error-404::before {
  content: "";
  position: absolute;
  inset: 88px 0 0 0;
  background: url("images/official-source-404.webp") left center / auto 100% no-repeat;
  opacity: 0.9;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 18%, rgba(0, 0, 0, 0.76) 29%, rgba(0, 0, 0, 0.22) 42%, transparent 54%);
  mask-image: linear-gradient(90deg, #000 0%, #000 18%, rgba(0, 0, 0, 0.76) 29%, rgba(0, 0, 0, 0.22) 42%, transparent 54%);
}

.error-404::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(6, 23, 44, 0.12), rgba(6, 23, 44, 0.12)),
    linear-gradient(90deg, rgba(6, 23, 44, 0.18) 0%, rgba(6, 23, 44, 0.38) 30%, rgba(6, 23, 44, 0.82) 52%, var(--navy-950) 78%);
}

.error-404 .container {
  position: relative;
  z-index: 2;
}

.error-404 h1 {
  color: #fff;
  font-size: clamp(35px, 6vw, 62px) !important;
}

.error-404 .eyebrow {
  color: var(--lime);
}

.error-404 p {
  color: rgba(255, 255, 255, 0.82) !important;
}

.error-404 .btn-dark {
  color: var(--navy-900);
  background: var(--lime);
}

.error-404 .btn-dark:hover {
  color: var(--navy-900);
  background: #c8ff83;
}

body[data-page="404"] .site-header {
  position: absolute;
  inset: 0 0 auto;
  background: rgba(255, 255, 255, 0.72);
  border-bottom-color: rgba(217, 225, 232, 0.45);
  box-shadow: none;
}

body[data-page="404"] .site-footer {
  padding: 12px 0 6px;
}

body[data-page="404"] .site-footer .brand {
  gap: 9px;
  font-size: 18px;
}

body[data-page="404"] .site-footer .brand-shield {
  width: 28px;
  height: 32px;
}

body[data-page="404"] .site-footer .brand-shield span {
  font-size: 15px;
}

body[data-page="404"] .footer-grid {
  align-items: start;
  gap: 16px;
}

body[data-page="404"] .footer-about {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.35;
}

body[data-page="404"] .footer-grid h2 {
  margin-bottom: 5px;
  font-size: 13px;
}

body[data-page="404"] .footer-grid a {
  margin: 2px 0;
  font-size: 12px;
  line-height: 1.35;
}

body[data-page="404"] .footer-bottom {
  margin-top: 8px;
  padding-top: 6px;
  font-size: 11px;
}

.home-surface {
  background: var(--surface-alt);
}

.home-surface > section {
  position: relative;
}

.home-surface > .section:not(.section-dark),
.home-surface > .section-tight {
  background: var(--surface-alt);
}

.home-surface > section + section::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: min(calc(100% - 48px), var(--container));
  height: 2px;
  background: var(--lime);
  transform: translateX(-50%);
}

.section-dark {
  color: #fff;
  background: var(--navy-900);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.section-head > div {
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-head h2,
.page-intro h1 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 52px);
}

.section-head p,
.page-intro p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-link {
  flex: 0 0 auto;
  color: var(--teal);
  font-weight: 700;
}

.section-link:hover {
  color: var(--navy-900);
}

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

.brand-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(9, 36, 65, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  border-color: #b8c9d8;
  box-shadow: var(--shadow-sm);
}

.brand-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.brand-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: var(--navy-900);
  background: linear-gradient(145deg, var(--blue-soft), #f5f9ff);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.status-badge.verified {
  color: #08715f;
  background: #e4f8f3;
}

.status-badge.review {
  color: var(--warning);
  background: var(--warning-bg);
}

.status-badge.unconfirmed {
  color: var(--danger);
  background: var(--danger-bg);
}

.brand-card h3 {
  margin: 0 0 4px;
  font-size: 23px;
}

.brand-card h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.brand-card {
  position: relative;
}

.brand-domain {
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-meta {
  display: grid;
  gap: 7px;
  color: #465867;
  font-size: 13px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.card-footer a {
  position: relative;
  z-index: 1;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}

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

.category-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: left;
  transition: 180ms ease;
}

button.category-card {
  width: 100%;
  color: inherit;
}

.category-card:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
}

.category-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--teal);
  background: #e9f8f5;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.category-card h3 {
  margin: 0 0 3px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.category-arrow {
  color: var(--teal);
  font-size: 24px;
}

.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.step {
  counter-increment: steps;
  position: relative;
  padding-top: 72px;
}

.step::before {
  content: "0" counter(steps);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: 44px;
  font-weight: 800;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 80px;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.step h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 20px;
}

.step p {
  margin: 0;
  color: #aebdd0;
  font-size: 14px;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.guide-feature,
.guide-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.guide-feature {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(28px, 5vw, 56px);
  color: #fff;
  background:
    radial-gradient(circle at 85% 5%, rgba(185, 245, 106, 0.2), transparent 28%),
    linear-gradient(145deg, var(--navy-900), var(--navy-800));
}

.guide-feature .eyebrow {
  color: var(--lime);
}

.guide-feature h3 {
  max-width: 600px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(27px, 3vw, 40px);
}

.guide-feature p {
  max-width: 620px;
  color: #b9c6d3;
}

.guide-feature a {
  align-self: flex-start;
  margin-top: 20px;
  color: var(--lime);
  font-weight: 700;
}

.guide-list {
  display: grid;
  gap: 16px;
}

.guide-list article {
  padding: 24px;
}

.guide-list h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.guide-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  padding: clamp(32px, 5vw, 58px);
  border-radius: var(--radius-lg);
  background: var(--lime-soft);
}

.cta-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 42px);
}

.cta-panel p {
  max-width: 720px;
  margin: 0;
  color: #496036;
}

.site-footer {
  padding: 68px 0 22px;
  color: #b3c1d0;
  background: var(--navy-950);
}

.brand-light {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
  gap: 44px;
}

.footer-about {
  max-width: 420px;
  margin: 20px 0 0;
  font-size: 14px;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0;
}

.footer-grid a {
  display: block;
  margin: 9px 0;
  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--lime);
}

.footer-grid p {
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.page-hero {
  padding: clamp(30px, 3vw, 38px) 0 clamp(28px, 3vw, 34px);
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(8, 27, 51, 0.045) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 14px),
    var(--surface-alt);
  background-size: 8px 8px, 10px 10px, 18px 18px, auto;
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a:hover {
  color: var(--teal);
}

.page-intro {
  max-width: 850px;
}

.page-intro h1 {
  margin-bottom: 10px;
  font-size: clamp(32px, 3.4vw, 46px);
}

.page-intro .eyebrow {
  margin-bottom: 6px;
}

.page-intro p {
  font-size: 16px;
  line-height: 1.5;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
}

.filters {
  position: sticky;
  top: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.filters h2 {
  margin-bottom: 20px;
  font-size: 20px;
}

.filter-group {
  margin-bottom: 17px;
}

.filter-group label {
  display: block;
  margin-bottom: 7px;
  color: #364957;
  font-size: 12px;
  font-weight: 700;
}

.filter-group input,
.filter-group select,
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--surface);
  outline: 0;
}

.filter-group input:focus,
.filter-group select:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 159, 135, 0.12);
}

.clear-filters {
  width: 100%;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy-900);
  background: var(--surface-alt);
  font-weight: 700;
}

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

.catalog-toolbar strong {
  font-family: "Manrope", sans-serif;
  font-size: 21px;
}

.catalog-toolbar select {
  padding: 9px 32px 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

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

.empty-state {
  padding: 52px 24px;
  border: 1px dashed #b8c6d3;
  border-radius: var(--radius);
  text-align: center;
}

.empty-state h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
}

.hidden {
  display: none !important;
}

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

.country-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: left;
  transition: 180ms ease;
}

button.country-card {
  width: 100%;
  color: inherit;
}

.country-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.country-code {
  width: 50px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--navy-900);
  background: var(--blue-soft);
  font-weight: 800;
}

.country-card h2 {
  margin-bottom: 5px;
  font-size: 20px;
}

.country-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.content-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 48px;
}

.article-content {
  max-width: 850px;
}

.article-content h2 {
  margin: 48px 0 18px;
  font-size: clamp(26px, 3vw, 36px);
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  margin: 28px 0 10px;
  font-size: 21px;
}

.article-content p,
.article-content li {
  color: #405464;
}

.article-content li + li {
  margin-top: 8px;
}

.callout {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--teal);
  border-radius: 0 12px 12px 0;
  background: #edf9f6;
}

.callout strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-900);
}

.side-nav {
  position: sticky;
  top: 112px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-alt);
}

.side-nav h2 {
  font-size: 18px;
}

.side-nav a {
  display: block;
  padding: 8px 0;
  color: #456072;
  font-size: 14px;
}

.side-nav a:hover {
  color: var(--teal);
}

.brand-profile-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-profile-logo {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--navy-900);
  background: var(--surface);
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.brand-profile-head h1 {
  margin-bottom: 8px;
}

.brand-profile-head p {
  margin: 0;
}

.brand-status-panel {
  padding: 16px 20px;
  border: 1px solid #b6e4da;
  border-radius: 14px;
  color: #08715f;
  background: #e9f8f5;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.brand-status-panel strong {
  display: block;
  font-size: 15px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

.fact-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface-alt);
}

.fact-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.fact-card strong {
  color: var(--navy-900);
}

.source-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 26px;
  border: 1px solid #bdd5f3;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #f5f9ff, #fff);
}

.source-check {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--lime);
  font-size: 22px;
  font-weight: 800;
}

.source-card h3 {
  margin: 0 0 3px;
  font-size: 21px;
}

.source-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.data-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
}

.data-table th,
.data-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 13px;
}

.data-table th {
  color: #486071;
  background: var(--surface-alt);
  font-weight: 700;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table a {
  color: var(--teal);
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 20px 1fr;
  gap: 14px;
  min-height: 76px;
  color: #405464;
  font-size: 14px;
}

.timeline-dot {
  position: relative;
}

.timeline-dot::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 6px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.timeline-dot::after {
  content: "";
  position: absolute;
  top: 15px;
  bottom: -6px;
  left: 9px;
  width: 2px;
  background: var(--line);
}

.timeline-item:last-child .timeline-dot::after {
  display: none;
}

.form-shell {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

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

.form-field {
  margin-bottom: 20px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: #364957;
  font-size: 13px;
  font-weight: 700;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-hint {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
}

.form-actions p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.success-panel {
  padding: 50px 30px;
  text-align: center;
}

.success-panel .source-check {
  margin: 0 auto 20px;
}

.success-panel h2 {
  margin-bottom: 10px;
}

.success-panel p {
  color: var(--muted);
}

.telegram-preview {
  width: 100%;
  min-height: 168px;
  margin: 18px 0 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--surface-alt);
  resize: vertical;
}

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

.value-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 800;
}

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

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.back-top {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  opacity: 0;
  color: var(--navy-900);
  background: var(--lime);
  box-shadow: var(--shadow-md);
  pointer-events: none;
  transform: translateY(10px);
  transition: 180ms ease;
}

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

@media (max-width: 1100px) {
  .site-nav {
    gap: 18px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr 0.72fr;
    gap: 36px;
    padding: 48px;
  }

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

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

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

  .step:nth-child(2)::after {
    display: none;
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .header-inner {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    max-height: calc(100vh - 74px);
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 30px;
    overflow-y: auto;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-submit {
    margin-top: 14px;
    text-align: center;
  }

  .hero-shell {
    padding-top: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 46px 30px;
  }

  .hero-content,
  .hero-search {
    width: 100%;
    max-width: 100%;
  }

  .verification-card {
    width: min(100%, 560px);
    max-width: 100%;
    justify-self: start;
  }

  .verified-heading > div,
  .verified-heading strong,
  .verified-heading span {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .stats-strip {
    width: calc(100% - 64px);
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(3) {
    border-left: 0;
  }

  .stat:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .guide-grid,
  .content-two-col {
    grid-template-columns: 1fr;
  }

  .side-nav {
    position: static;
    order: -1;
  }

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

  .filters {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .filters h2,
  .clear-filters {
    grid-column: 1 / -1;
  }

  .filter-group {
    margin: 0;
  }

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

  .brand-profile-head {
    grid-template-columns: auto 1fr;
  }

  .brand-status-panel {
    grid-column: 1 / -1;
    text-align: left;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .brand {
    gap: 10px;
    font-size: 18px;
    white-space: normal;
  }

  .brand-subtitle {
    max-width: 180px;
    font-size: 10.5px;
  }

  .header-inner {
    gap: 14px;
  }

  .brand-shield {
    width: 31px;
    height: 36px;
  }

  .hero {
    padding: 38px 20px;
    border-radius: 20px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.5vw, 44px);
    overflow-wrap: break-word;
  }

  .hero-lead {
    font-size: 16px;
  }

  .verification-card {
    max-width: 100%;
  }

  .hero-search {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-bottom: 14px;
    transform: translateY(-10px);
  }

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

  .trust-row {
    display: grid;
  }

  .verification-card {
    padding: 25px 20px;
  }

  .stats-strip {
    width: calc(100% - 32px);
    margin-top: -25px;
  }

  .stat {
    padding: 18px 10px;
  }

  .stat strong {
    font-size: 23px;
  }

  .section {
    padding: 70px 0;
  }

  .section-head {
    display: block;
  }

  .section-link {
    display: inline-block;
    margin-top: 16px;
  }

  .brand-grid,
  .catalog-grid,
  .category-grid,
  .steps,
  .country-grid,
  .about-values {
    grid-template-columns: 1fr;
  }

  .step::after {
    display: none;
  }

  .guide-feature {
    min-height: 360px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero {
    padding: 32px 0 30px;
  }

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

  .filters h2,
  .clear-filters {
    grid-column: auto;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .brand-profile-head {
    grid-template-columns: 1fr;
  }

  .brand-profile-logo {
    width: 76px;
    height: 76px;
  }

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

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

  .form-actions .btn {
    width: 100%;
  }

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

  .source-card .btn {
    grid-column: 1 / -1;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }

  .timeline-item {
    grid-template-columns: 90px 20px 1fr;
  }

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

  .form-actions .btn {
    width: 100%;
  }
}

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






@media (max-width: 620px) {
  .error-404::after {
    background: rgba(6, 23, 44, 0.18);
  }
}
