:root {
  --ink: #17201e;
  --muted: #66706b;
  --soft: #8a8272;
  --line: #d5d0c7;
  --line-soft: #e4ded2;
  --line-strong: #c8c0b2;
  --paper: #fbfaf7;
  --page: #e1e6e2;
  --white: #ffffff;
  --accent: #103b72;
  --accent-hover: #082a54;
  --accent-soft: #eaeff5;
  --bulgaria-green: #2f6049;
  --green-soft: #e8f0eb;
  --danger: #9d3b32;
  --warm: #b99054;
  --dark-panel: #13231f;
  --forest: #13231f;
}

.analytics-consent {
  position: fixed;
  z-index: 80;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  overflow: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 4px 24px rgb(23 32 30 / 12%);
  font-family: "Commissioner", sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.analytics-consent[hidden],
.analytics-settings-link[hidden] {
  display: none;
}

.analytics-consent-copy {
  flex: 1;
  min-width: 0;
}

.analytics-consent-copy p {
  margin: 4px 0 0;
  font-size: inherit;
  line-height: inherit;
}

.analytics-consent-copy a {
  color: var(--accent);
  text-decoration: underline;
}

.analytics-consent-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex-shrink: 0;
  gap: 8px;
}

.analytics-consent-actions button {
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--accent);
  border-radius: 3px;
  background: var(--white);
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}

.analytics-consent-actions button:hover {
  background: var(--accent-soft);
}

.analytics-settings-link {
  width: fit-content;
  border: 0;
  padding: 0;
  background: none;
  color: #deece6;
  text-align: left;
  text-decoration: underline;
  font: inherit;
  cursor: pointer;
}

.analytics-consent-actions button:focus-visible,
.analytics-settings-link:focus-visible {
  outline: 2px solid var(--bulgaria-green);
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .analytics-consent {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 14px 16px;
  }
}

/* Editorial article system */
.article-index-hero {
  background: #f5f7f5;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) 390px;
  padding: 58px 56px;
}

.article-index-hero > div:first-child {
  align-self: center;
}

.article-index-hero h1 {
  max-width: 900px;
}

.article-index-summary {
  align-self: start;
  background: var(--dark-panel);
  color: var(--white);
  display: grid;
  padding: 24px;
}

.article-index-summary > span,
.article-cluster-head span,
.editorial-article-card span,
.article-toc > span,
.article-section-number,
.article-inline-cta > span,
.article-sources > span,
.article-service-panel > span,
.article-related-band header > span,
.article-final-cta span {
  color: var(--soft);
  font-family: "Commissioner", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.article-index-summary > span {
  color: #a9c1b7;
  margin-bottom: 14px;
}

.article-index-summary a {
  border-top: 1px solid rgb(255 255 255 / 16%);
  color: var(--white);
  display: grid;
  gap: 4px;
  padding: 15px 0;
}

.article-index-summary a:hover {
  color: #dfece6;
  text-decoration: none;
}

.article-index-summary strong {
  font-family: "Literata", serif;
  font-size: 18px;
}

.article-index-summary small {
  color: #a9c1b7;
}

.article-cluster {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 60px 56px 68px;
  scroll-margin-top: 90px;
}

.article-cluster.is-tinted {
  background: #f7f5f0;
}

.article-cluster-head {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.article-cluster-head span {
  color: var(--bulgaria-green);
}

.article-cluster-head h2 {
  margin: 8px 0 0;
}

.article-cluster-head > a {
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  padding-bottom: 4px;
}

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

.editorial-article-card {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 250px;
  overflow: hidden;
}

.editorial-article-card.is-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(320px, 46%) minmax(0, 1fr);
  min-height: 390px;
}

.editorial-article-card:hover {
  border-color: var(--bulgaria-green);
  text-decoration: none;
}

.editorial-article-card figure {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
}

.editorial-article-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
  width: 100%;
}

.editorial-article-card:hover img {
  transform: scale(1.015);
}

.editorial-article-card > div {
  align-content: center;
  display: grid;
  padding: 24px;
}

.editorial-article-card h3 {
  font-size: 24px;
  line-height: 1.25;
  margin: 10px 0;
}

.editorial-article-card.is-featured h3 {
  font-size: 34px;
}

.editorial-article-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 22px;
}

.editorial-article-card > div > strong {
  color: var(--accent);
  font-size: 13px;
}

.editorial-hero {
  background: #f5f7f5;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  padding: 56px;
}

.editorial-hero > div {
  align-self: center;
}

.editorial-hero h1 {
  max-width: 920px;
}

.article-hero-visual {
  background: var(--white);
  border: 1px solid var(--line);
  margin: 0;
}

.article-hero-visual img {
  aspect-ratio: 4 / 3;
  border: 0;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.article-hero-visual figcaption {
  color: var(--soft);
  font-size: 11px;
  padding: 12px 14px;
  text-transform: uppercase;
}

.article-reading-layout {
  background: var(--white);
  display: grid;
  gap: 54px;
  grid-template-columns: 250px minmax(0, 820px);
  justify-content: center;
  padding: 64px 56px;
}

.article-toc {
  align-self: start;
  border-top: 3px solid var(--bulgaria-green);
  display: grid;
  position: sticky;
  top: 98px;
}

.article-toc > span {
  color: var(--bulgaria-green);
  padding: 16px 0 10px;
}

.article-toc a {
  border-top: 1px solid var(--line-soft);
  color: var(--ink);
  display: grid;
  font-family: "Literata", serif;
  font-size: 15px;
  gap: 10px;
  grid-template-columns: 28px 1fr;
  line-height: 1.35;
  padding: 14px 0;
}

.article-toc a:hover {
  color: var(--accent);
  text-decoration: none;
}

.article-toc small {
  color: var(--bulgaria-green);
  font-family: "Commissioner", sans-serif;
  font-size: 10px;
  padding-top: 3px;
}

.article-copy {
  display: grid;
  gap: 0;
}

.article-copy > section {
  border-top: 1px solid var(--line);
  padding: 44px 0 36px;
}

.article-copy > section:first-child {
  border-top: 0;
  padding-top: 0;
}

.article-section-number {
  color: var(--bulgaria-green);
  display: block;
  margin-bottom: 10px;
}

.article-copy h2 {
  font-size: 34px;
  margin: 0 0 24px;
}

.article-copy p {
  color: #333b39;
  font-size: 18px;
  line-height: 1.78;
  margin: 0 0 20px;
  max-width: none;
}

.article-inline-cta {
  background: #eef3f0;
  border-left: 4px solid var(--bulgaria-green);
  margin: 14px 0 44px;
  padding: 30px;
}

.article-inline-cta > span {
  color: var(--bulgaria-green);
}

.article-inline-cta h2 {
  font-size: 28px;
  margin: 10px 0 12px;
}

.article-inline-cta p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-proof-layout {
  background: #f7f5f0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  padding: 58px 56px;
}

.article-sources,
.article-service-panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
}

.article-sources > span,
.article-service-panel > span,
.article-related-band header > span {
  color: var(--bulgaria-green);
}

.article-sources h2,
.article-service-panel h2 {
  margin: 9px 0 20px;
}

.article-sources a,
.article-service-panel a {
  border-top: 1px solid var(--line-soft);
  color: var(--ink);
  display: grid;
  gap: 6px;
  padding: 16px 0;
}

.article-sources a:hover,
.article-service-panel a:hover {
  color: var(--accent);
  text-decoration: none;
}

.article-sources small,
.article-service-panel small {
  color: var(--muted);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.article-related-band {
  background: var(--white);
  padding: 58px 56px;
}

.article-related-band header {
  margin-bottom: 26px;
}

.article-related-band h2 {
  margin: 8px 0 0;
}

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

.article-related-grid > a {
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 220px;
  overflow: hidden;
}

.article-related-grid > a:hover {
  border-color: var(--bulgaria-green);
  text-decoration: none;
}

.article-related-grid img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.article-related-grid > a > div {
  align-content: center;
  display: grid;
  padding: 22px;
}

.article-related-grid span {
  color: var(--soft);
  font-size: 10px;
  text-transform: uppercase;
}

.article-related-grid h3 {
  font-size: 21px;
  margin: 8px 0;
}

.article-related-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.article-final-cta {
  align-items: center;
  background: var(--forest);
  color: var(--white);
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 48px 56px;
}

.article-final-cta span {
  color: #a9c1b7;
}

.article-final-cta h2 {
  color: var(--white);
  margin: 8px 0 10px;
}

.article-final-cta p {
  color: #d7e2dd;
  line-height: 1.55;
  margin: 0;
  max-width: 760px;
}

.article-final-cta .button.light {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark-panel);
}

.article-final-cta .button.light:hover {
  background: var(--green-soft);
  color: var(--dark-panel);
  text-decoration: none;
}

@media (max-width: 980px) {
  .article-index-hero,
  .editorial-hero,
  .article-proof-layout {
    grid-template-columns: 1fr;
  }

  .article-reading-layout {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .editorial-article-card,
  .editorial-article-card.is-featured,
  .article-related-grid > a {
    grid-template-columns: 1fr;
  }

  .editorial-article-card figure,
  .article-related-grid img {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .article-index-hero,
  .editorial-hero,
  .article-cluster,
  .article-reading-layout,
  .article-proof-layout,
  .article-related-band,
  .article-final-cta {
    padding: 30px 18px;
  }

  .article-index-hero,
  .editorial-hero,
  .article-reading-layout,
  .article-proof-layout,
  .article-final-cta {
    gap: 26px;
    grid-template-columns: 1fr;
  }

  .article-cluster-head {
    align-items: start;
    gap: 14px;
  }

  .editorial-article-grid,
  .article-related-grid {
    grid-template-columns: 1fr;
  }

  .editorial-article-card,
  .editorial-article-card.is-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .editorial-article-card figure {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .editorial-article-card h3,
  .editorial-article-card.is-featured h3 {
    font-size: 23px;
  }

  .article-toc {
    position: static;
    top: auto;
  }

  .article-copy h2 {
    font-size: 28px;
  }

  .article-copy p {
    font-size: 17px;
    line-height: 1.7;
  }

  .article-related-grid > a {
    grid-template-columns: 1fr;
  }

  .article-final-cta .button {
    width: 100%;
  }
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
  color: var(--ink);
  font-family: "Commissioner", sans-serif;
  font-size: 16px;
}

body {
  background: var(--page);
  color: var(--ink);
  margin: 0;
  padding: 14px 32px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.site-header,
main,
.site-footer {
  margin: 0 auto;
  max-width: 1440px;
}

.site-header {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 0;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(280px, 380px) 1fr auto;
  min-height: 78px;
  padding: 0 56px;
  position: sticky;
  top: 0;
  z-index: 20;
}

main {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(20, 24, 29, 0.06);
  overflow: hidden;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 10px;
  height: auto;
  justify-content: flex-start;
  letter-spacing: 0;
  line-height: 1;
  padding: 0;
  width: auto;
}

.brand:hover {
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  flex: 0 0 auto;
  height: 42px;
  object-fit: contain;
  width: 54px;
}

.brand-name {
  display: inline-block;
  font-family: "Literata", serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.brand-text {
  display: grid;
  gap: 3px;
}

.brand-descriptor {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.15;
}

.footer-brand {
  margin-bottom: 16px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: flex-start;
}

.main-nav a {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.2;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.header-cta,
.header-whatsapp,
.button {
  align-items: center;
  border: 1px solid var(--accent);
  border-radius: 3px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 500;
  justify-content: center;
  min-height: 43px;
  padding: 11px 18px;
}

.header-cta,
.button.primary {
  background: var(--accent);
  color: var(--white);
}

.header-whatsapp {
  background: var(--white);
  border-color: var(--bulgaria-green);
  color: var(--bulgaria-green);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  text-decoration: none;
}

.header-whatsapp:hover {
  background: var(--green-soft);
  color: var(--bulgaria-green);
  text-decoration: none;
}

.nav-action-whatsapp {
  display: none;
}

.button.secondary {
  background: var(--white);
  color: var(--accent);
}

.button.small {
  font-size: 14.5px;
  min-height: 38px;
  padding: 9px 12px;
}

.button.full {
  width: 100%;
}

.menu-button {
  background: transparent;
  border: 0;
  display: none;
  height: 38px;
  padding: 8px;
  width: 42px;
}

.menu-button span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 100%;
}

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

h1 {
  font-family: "Literata", serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 900px;
}

h2 {
  font-family: "Literata", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-family: "Literata", serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
}

.lead {
  color: var(--muted);
  font-size: 17.5px;
  line-height: 1.5;
  max-width: 720px;
}

.meta-row {
  color: #7a6f58;
  display: flex;
  flex-wrap: wrap;
  font-family: "Commissioner", sans-serif;
  font-size: 12px;
  gap: 8px 14px;
  letter-spacing: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.home-hero,
.service-landing,
.diagnostic-hero {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) 420px;
  padding: 58px 56px;
}

.home-hero {
  background:
    linear-gradient(90deg, rgba(47, 96, 73, 0.08), transparent 46%),
    var(--paper);
}

.home-hero-copy {
  align-self: start;
  padding-top: 16px;
}

.intake-snapshot,
.consult-panel,
.diagnostic-summary {
  align-self: start;
  background: var(--dark-panel);
  border: 1px solid #203a34;
  color: #f7f4ea;
  padding: 30px;
}

.intake-snapshot h2,
.consult-panel h2,
.diagnostic-summary p {
  color: #fffdf7;
}

.intake-snapshot h2,
.consult-panel h2 {
  font-size: 25px;
  margin: 8px 0 18px;
}

.intake-snapshot ul {
  color: #dfe7e2;
  display: grid;
  gap: 12px;
  line-height: 1.55;
  margin: 0;
  padding-left: 18px;
}

.snapshot-note,
.privacy-note {
  background: var(--green-soft);
  border-left: 4px solid var(--bulgaria-green);
  color: var(--ink);
  line-height: 1.5;
  margin-top: 22px;
  padding: 14px 16px;
}

.home-hero-slider {
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  height: 520px;
  overflow: hidden;
  position: relative;
}

.home-hero-viewport {
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-hero-viewport::-webkit-scrollbar {
  display: none;
}

.home-hero-track {
  display: flex;
  height: 100%;
}

.home-hero-slide {
  flex: 0 0 100%;
  height: 100%;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.home-hero-image,
.home-hero-shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.home-hero-image {
  object-fit: cover;
  object-position: center center;
  z-index: -2;
}

.home-hero-shade {
  background: linear-gradient(
    90deg,
    rgb(251 250 247 / 98%) 0%,
    rgb(251 250 247 / 95%) 39%,
    rgb(251 250 247 / 72%) 52%,
    rgb(251 250 247 / 8%) 72%,
    transparent 100%
  );
  z-index: -1;
}

.home-hero-content {
  align-content: center;
  display: grid;
  height: 100%;
  max-width: 700px;
  padding: 44px 56px 82px;
  width: 54%;
}

.home-hero-content h1,
.home-hero-content h2 {
  font-size: 46px;
  line-height: 1.12;
  margin: 0;
  max-width: 680px;
}

.home-hero-content .lead {
  color: #4f5955;
  margin: 20px 0 0;
  max-width: 650px;
}

.home-hero-meta {
  margin-bottom: 18px;
}

.home-hero-controls {
  align-items: center;
  bottom: 28px;
  display: flex;
  gap: 5px;
  left: 56px;
  position: absolute;
  z-index: 3;
}

.home-hero-controls > button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 23px;
  height: 32px;
  justify-content: center;
  opacity: 0.48;
  padding: 0;
  transition: color 160ms ease, opacity 160ms ease;
  width: 28px;
}

.home-hero-controls > button:hover,
.home-hero-controls > button:focus-visible {
  color: var(--bulgaria-green);
  opacity: 1;
}

.home-hero-controls > button:focus-visible {
  outline: 1px solid var(--bulgaria-green);
  outline-offset: 2px;
}

.home-hero-controls > button span {
  line-height: 1;
}

.home-hero-controls > [data-hero-autoplay] {
  font-size: 12px;
  margin-left: 2px;
  width: 24px;
}

.home-hero-dots {
  align-items: center;
  background: transparent;
  border: 0;
  display: flex;
  gap: 7px;
  min-height: 32px;
  padding: 0 7px;
}

.home-hero-dots button {
  background: #b5bbb7;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 6px;
  opacity: 0.75;
  padding: 0;
  width: 6px;
}

.home-hero-dots button[aria-selected="true"] {
  background: var(--bulgaria-green);
  height: 8px;
  opacity: 1;
  width: 8px;
}

.home-hero-dots button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.route-board,
.route-switcher,
.service-body,
.diagnostic-layout,
.case-strip,
.diagnostic-cta-band {
  padding: 52px 56px;
}

.route-board,
.route-switcher {
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
}

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

.route-card {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  gap: 14px;
  grid-template-rows: auto auto 1fr auto;
  min-height: 360px;
  padding: 26px;
  position: relative;
}

.route-card::before {
  background: linear-gradient(90deg, var(--bulgaria-green), var(--warm));
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.route-card:hover {
  border-color: var(--accent);
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-2px);
}

.route-card-number,
.diagnostic-summary span,
.guide-list span {
  color: var(--soft);
  font-family: "Commissioner", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

.route-card-head {
  align-items: start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.route-card-duration {
  border-left: 2px solid var(--bulgaria-green);
  display: grid;
  gap: 3px;
  padding-left: 12px;
  text-align: right;
}

.route-card-duration small {
  color: var(--soft);
  font-family: "Commissioner", sans-serif;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
}

.route-card-duration b {
  color: var(--ink);
  font-family: "Commissioner", sans-serif;
  font-size: 15px;
  font-weight: 650;
}

.route-card h3 {
  font-size: 25px;
  margin: 0;
}

.route-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.route-card-footer {
  align-self: end;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 10px;
  padding-top: 14px;
}

.route-card-footer strong {
  color: var(--accent);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
}

.route-card-footer small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.route-disclaimer {
  border-left: 3px solid var(--warm);
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
  margin: 20px 0 0;
  max-width: 940px;
  padding-left: 14px;
}

.article-service-route {
  margin-top: 8px;
}

.case-strip {
  align-items: stretch;
  display: grid;
  gap: 34px;
  grid-template-columns: 360px minmax(0, 1fr);
}

.case-image {
  border: 1px solid var(--line);
  min-height: 360px;
  overflow: hidden;
}

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

.case-copy {
  align-self: center;
}

.strong-timeline div {
  grid-template-columns: 72px 1fr;
  padding: 20px 0;
}

.strong-timeline span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.diagnostic-cta-band {
  align-items: center;
  background: var(--accent);
  color: var(--white);
  display: flex;
  gap: 28px;
  justify-content: space-between;
}

.diagnostic-cta-band span {
  color: #cad7e6;
  font-size: 11px;
  text-transform: uppercase;
}

.diagnostic-cta-band h2 {
  color: var(--white);
  margin: 6px 0 0;
  max-width: 780px;
}

.diagnostic-cta-band p {
  color: #dce6f3;
  line-height: 1.55;
  margin: 12px 0 0;
  max-width: 760px;
}

.diagnostic-cta-band .button.primary {
  background: var(--white);
  color: var(--accent);
}

.service-landing {
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  grid-template-columns: minmax(0, 1fr) 380px;
}

.service-visual-hero {
  isolation: isolate;
  min-height: 650px;
  overflow: hidden;
  position: relative;
}

.service-visual-hero--open {
  grid-template-columns: minmax(0, 760px);
}

.service-hero-background,
.service-hero-scrim {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.service-hero-background {
  filter: brightness(1.03) contrast(0.96) saturate(0.94);
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.service-hero-scrim {
  backdrop-filter: blur(1px);
  background:
    linear-gradient(
      90deg,
      rgb(249 250 248 / 97%) 0%,
      rgb(249 250 248 / 91%) 47%,
      rgb(249 250 248 / 34%) 73%,
      rgb(249 250 248 / 7%) 100%
    ),
    linear-gradient(180deg, rgb(255 255 255 / 18%), rgb(238 243 240 / 9%));
  -webkit-backdrop-filter: blur(1px);
  z-index: 1;
}

.service-visual-hero > :not(.service-hero-background, .service-hero-scrim) {
  position: relative;
  z-index: 2;
}

.service-visual-hero .service-copy {
  align-self: center;
}

.service-visual-hero .breadcrumbs a,
.service-visual-hero .meta-row span {
  color: #52645e;
}

.service-visual-hero .service-signals div {
  backdrop-filter: blur(4px);
  background: rgb(255 255 255 / 78%);
  -webkit-backdrop-filter: blur(4px);
}

.service-visual-hero .consult-panel {
  backdrop-filter: blur(6px);
  background: rgb(9 34 29 / 76%);
  border-color: rgb(255 255 255 / 15%);
  box-shadow: 0 20px 48px rgb(17 32 27 / 14%);
  -webkit-backdrop-filter: blur(6px);
}

.service-copy {
  min-width: 0;
}

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

.service-signals div {
  background: var(--white);
  border: 1px solid var(--line-soft);
  font-weight: 600;
  line-height: 1.45;
  min-height: 104px;
  padding: 18px;
}

.consult-panel p,
.consult-panel dd {
  color: #dfe7e2;
  line-height: 1.5;
}

.consult-panel-image {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: block;
  margin: -8px 0 22px;
  object-fit: cover;
  width: 100%;
}

.service-visual-hero .consult-panel-image {
  aspect-ratio: auto;
  background: rgb(255 255 255 / 92%);
  box-sizing: border-box;
  height: 205px;
  object-fit: contain;
  object-position: center;
  padding: 10px;
}

.service-visual-hero--grazhdanstvo-bolgarii .consult-panel-image {
  aspect-ratio: 3 / 4;
  height: 360px;
}

.consult-panel dl {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding-top: 18px;
}

.consult-panel dt {
  color: #b7c6be;
}

.service-decision-band {
  background: #f5f7f4;
  border-bottom: 1px solid var(--line-soft);
  padding: 52px 56px;
}

.root-search-timeline,
.pmzh-legal-basis {
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
  padding: 56px;
}

.root-search-timeline .section-head p,
.pmzh-legal-basis .section-head p {
  color: var(--muted);
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 840px;
}

.root-timeline-list {
  display: grid;
  gap: 22px;
  margin-top: 34px;
  position: relative;
}

.root-timeline-list::before {
  background: linear-gradient(180deg, var(--bulgaria-green), var(--warm));
  bottom: 36px;
  content: "";
  left: 31px;
  position: absolute;
  top: 36px;
  width: 2px;
}

.root-timeline-item {
  background: #f8f6f1;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 0.55fr);
  min-height: 330px;
  overflow: hidden;
  position: relative;
}

.root-timeline-item figure {
  background: #e9ece8;
  margin: 0;
  min-height: 330px;
  overflow: hidden;
}

.root-timeline-item img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.root-timeline-copy {
  align-content: center;
  display: grid;
  gap: 16px;
  padding: 34px 38px;
}

.root-timeline-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.root-timeline-meta span {
  align-items: center;
  background: var(--bulgaria-green);
  color: var(--white);
  display: inline-flex;
  flex: 0 0 48px;
  font-weight: 700;
  height: 48px;
  justify-content: center;
}

.root-timeline-meta b,
.root-timeline-meta small,
.pmzh-legal-grid strong {
  font-family: "Commissioner", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.root-timeline-meta b {
  color: var(--accent);
}

.root-timeline-meta small {
  color: var(--soft);
}

.root-timeline-copy h3,
.pmzh-legal-grid h3 {
  font-size: 27px;
  margin: 0;
}

.root-timeline-copy p,
.pmzh-legal-grid p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.root-timeline-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 8px;
}

.root-timeline-actions .button {
  min-height: 44px;
  padding: 13px 19px;
}

.pmzh-legal-basis {
  background: #f8f6f1;
}

.pmzh-legal-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.pmzh-legal-grid article {
  background: rgb(255 255 255 / 86%);
  border: 1px solid var(--line);
  display: grid;
  gap: 16px;
  min-height: 300px;
  padding: 26px;
}

.pmzh-legal-grid strong {
  align-self: end;
  border-top: 1px solid var(--line-soft);
  color: var(--accent);
  line-height: 1.45;
  padding-top: 14px;
}

.pmzh-source-strip {
  margin-top: 26px;
}

.root-source-strip {
  margin-top: 26px;
}

.seo-content-sections {
  background: var(--white);
}

.seo-content-section {
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  padding: 58px 56px;
}

.seo-content-section:nth-child(even) {
  background: #f5f7f4;
}

.seo-content-section > header span,
.seo-source-links > span {
  color: var(--soft);
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.seo-content-section > header h2 {
  margin: 10px 0 16px;
  max-width: 540px;
}

.seo-content-section > header p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

.seo-content-copy {
  min-width: 0;
}

.seo-content-copy > p {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.72;
  margin: 0 0 18px;
  max-width: 760px;
}

.seo-answer-list {
  border-bottom: 1px solid var(--line);
  margin-top: 30px;
}

.seo-answer-list > div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 170px minmax(0, 1fr);
  padding: 18px 0;
}

.seo-answer-list dt {
  color: var(--bulgaria-green);
  font-size: 12px;
  font-weight: 700;
}

.seo-answer-list dd {
  color: var(--muted);
  line-height: 1.55;
}

.seo-source-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.seo-source-links > span {
  flex-basis: 100%;
}

.seo-source-links a {
  border-bottom: 1px solid var(--accent);
  font-size: 14px;
  font-weight: 600;
  padding: 4px 0;
}

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

.service-timing-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 190px;
  padding: 24px;
}

.service-timing-grid span,
.service-source-strip span,
.service-stats-teaser span,
.service-conversion-band span {
  color: var(--soft);
  font-family: "Commissioner", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

.service-timing-grid strong {
  color: var(--accent);
  display: block;
  font-family: "Literata", serif;
  font-size: 30px;
  line-height: 1.05;
  margin: 18px 0 12px;
}

.service-timing-grid p,
.service-decision-grid p,
.service-source-strip,
.service-stats-teaser p,
.service-conversion-band p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

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

.service-decision-grid article {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  min-height: 178px;
  padding: 22px;
}

.service-decision-grid h3 {
  font-size: 21px;
  margin: 0 0 12px;
}

.service-source-strip {
  align-items: center;
  background: var(--white);
  border-left: 4px solid var(--bulgaria-green);
  display: grid;
  gap: 20px;
  grid-template-columns: 190px minmax(0, 1fr);
  margin-top: 18px;
  padding: 18px 22px;
}

.service-source-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-source-strip a {
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 11px;
}

.service-source-strip a:hover {
  border-color: var(--accent);
  text-decoration: none;
}

.service-stats-teaser {
  align-items: center;
  background: #173b72;
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 430px 190px;
  padding: 42px 56px;
}

.service-stats-teaser h2 {
  color: var(--white);
  margin: 8px 0 12px;
}

.service-stats-teaser p {
  color: #dce6f3;
}

.service-stats-teaser dl {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-stats-teaser dl div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 126px;
  padding: 18px;
}

.service-stats-teaser dt {
  color: #b9cce4;
}

.service-stats-teaser dd {
  color: var(--white);
  font-family: "Literata", serif;
  font-size: 31px;
  line-height: 1.05;
  margin: 10px 0 8px;
}

.service-stats-teaser .button.secondary {
  justify-content: center;
}

.service-body {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

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

.process-columns article {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 180px;
  padding: 20px;
}

.process-columns span {
  color: var(--accent);
  display: block;
  font-weight: 700;
  margin-bottom: 18px;
}

.process-columns p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.calm-grid div {
  background: var(--white);
}

.evidence-aside {
  align-self: start;
  background: var(--white);
  border: 1px solid var(--line);
}

.evidence-aside img {
  aspect-ratio: 16 / 10;
  background: #f4f6f4;
  box-sizing: border-box;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 18px;
  width: 100%;
}

.service-body--grazhdanstvo-bolgarii .evidence-aside img {
  aspect-ratio: 3 / 4;
}

.service-document-preview {
  background: #f7f9f7;
  border: 0;
  cursor: zoom-in;
  display: block;
  padding: 0;
  width: 100%;
}

.service-document-preview:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.consult-document-preview {
  margin-bottom: 20px;
}

.consult-document-preview .consult-panel-image {
  display: block;
  margin: 0;
}

.service-document-examples {
  background: var(--white);
  border-top: 1px solid var(--line-soft);
  padding: 42px 56px;
}

.service-document-examples .section-head p {
  color: var(--muted);
  margin: 16px 0 0;
  max-width: 760px;
}

.service-document-examples .section-head .document-heading-accent {
  color: var(--bulgaria-green);
  display: inline;
  font: inherit;
  text-transform: none;
}

.citizenship-document-flow {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  margin: 32px 0;
}

.citizenship-document-flow--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.document-stage {
  min-width: 0;
}

.document-stage-heading {
  align-items: center;
  border-bottom: 2px solid #d6e2da;
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  min-height: 72px;
  padding-bottom: 16px;
  position: relative;
}

.document-stage--decision .document-stage-heading::after,
.document-stage--identity .document-stage-heading::after {
  background: #d6e2da;
  bottom: -2px;
  content: "";
  height: 2px;
  position: absolute;
  right: -36px;
  width: 36px;
}

.document-stage-number {
  align-items: center;
  background: var(--bulgaria-green);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  flex: 0 0 44px;
  font-size: 15px;
  font-weight: 600;
  height: 44px;
  justify-content: center;
}

.document-stage-heading h3 {
  font-size: 23px;
  margin: 0;
}

.service-document-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.citizenship-document {
  margin: 0;
  min-width: 0;
}

.citizenship-document > .service-document-preview img {
  box-sizing: border-box;
  display: block;
  height: 330px;
  object-fit: contain;
  object-position: center;
  padding: 16px;
  width: 100%;
}

.citizenship-document figcaption {
  padding-top: 20px;
}

.citizenship-document h4 {
  font-family: "Literata", serif;
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 10px;
}

.citizenship-document p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.document-spread-link {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--accent);
  cursor: zoom-in;
  display: flex;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  gap: 10px;
  margin-top: 16px;
  padding: 0;
  text-align: left;
}

.document-spread-link img {
  flex: 0 0 64px;
  height: 44px;
  object-fit: contain;
  width: 64px;
}

.document-spread-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.document-flow-note {
  border-left: 3px solid var(--bulgaria-green);
  padding-left: 20px;
}

.document-flow-note p {
  color: var(--muted);
  margin: 0 0 10px;
  max-width: 880px;
}

.document-flow-sources {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 12px 20px;
  margin-top: 24px;
}

.document-flow-sources > span {
  color: var(--muted);
}

@media (max-width: 980px) {
  .citizenship-document-flow {
    gap: 32px;
    grid-template-columns: minmax(0, 1fr);
  }

  .document-stage--decision .document-stage-heading::after {
    display: none;
  }

  .document-stage--identity .document-stage-heading::after {
    display: none;
  }

  .document-stage--decision .citizenship-document,
  .document-stage--identity .citizenship-document,
  .document-stage--passport .citizenship-document {
    align-items: center;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 700px) {
  .service-document-examples {
    padding: 32px 18px;
  }

  .service-document-grid,
  .document-stage--decision .citizenship-document {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr);
  }

  .document-stage--decision .citizenship-document,
  .document-stage--identity .citizenship-document,
  .document-stage--passport .citizenship-document {
    gap: 0;
  }

  .citizenship-document > .service-document-preview img {
    height: auto;
    max-height: 480px;
    padding: 12px;
  }
}

.evidence-aside div {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.evidence-aside span {
  color: var(--soft);
  font-size: 11px;
  text-transform: uppercase;
}

.evidence-aside p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.service-conversion-band {
  align-items: center;
  background: #f8f6f1;
  border-bottom: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 320px 250px;
  padding: 42px 56px;
}

.service-conversion-band h2 {
  margin: 8px 0 12px;
}

.service-conversion-band ul {
  border-left: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0 0 0 24px;
}

.service-conversion-band li {
  color: var(--ink);
  line-height: 1.45;
  padding: 8px 0;
}

.service-conversion-actions {
  display: grid;
  gap: 10px;
}

.diagnostic-hero {
  align-items: end;
  border-bottom: 1px solid var(--line-soft);
  grid-template-columns: minmax(0, 1fr) 360px;
  padding-bottom: 42px;
}

.diagnostic-summary {
  background: var(--accent);
  border-color: var(--accent);
}

.diagnostic-summary span {
  color: #cad7e6;
}

.diagnostic-layout {
  background: var(--white);
  display: grid;
  gap: 34px;
  grid-template-columns: 380px minmax(0, 1fr);
}

.diagnostic-guide {
  align-self: start;
  position: sticky;
  top: 102px;
}

.guide-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.guide-list div {
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 12px;
  grid-template-columns: 44px 1fr;
  padding-top: 14px;
}

.guide-list p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.diagnostic-layout .request-card {
  box-shadow: 0 18px 50px rgba(19, 35, 31, 0.09);
  padding: 28px;
}

.diagnostic-form {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.span-2 {
  grid-column: 1 / -1;
}

.hero,
.service-hero,
.page-hero,
.request-layout,
.article-hero {
  padding: 40px 56px;
}

.prototype-hero,
.service-hero,
.request-layout,
.article-hero {
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) 430px;
}

.hero-copy,
.service-hero-main {
  min-width: 0;
}

.argument-strip {
  border-bottom: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.search-aliases {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  max-width: 760px;
}

.search-aliases span {
  color: var(--soft);
  font-family: "Commissioner", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

.search-aliases b {
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  padding: 7px 9px;
}

.argument-strip div {
  border-right: 1px solid var(--line-soft);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  min-height: 78px;
  padding: 16px 20px 16px 0;
}

.argument-strip div + div {
  padding-left: 20px;
}

.argument-strip div:last-child {
  border-right: 0;
}

.origin-box {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: 230px 1fr;
  margin-top: 28px;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-grid a,
.chip-grid label {
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 14.5px;
  gap: 8px;
  padding: 12px 16px;
}

.chip-grid a:hover,
.chip-grid label:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.chip-grid input {
  height: 14px;
  min-height: auto;
  width: 14px;
}

.hero-actions,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.document-preview,
.price-panel,
.side-box,
.request-card,
.contact-box,
.document-card,
.service-card,
.article-link-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.document-preview {
  align-self: start;
  display: grid;
}

.document-preview img,
.visual-evidence img,
.article-link-card img,
.article-hero img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.document-preview img {
  aspect-ratio: 4 / 3;
}

.document-caption,
.price-panel,
.side-box,
.request-card,
.contact-box {
  padding: 22px;
}

.document-caption span,
.panel-label,
.card-num,
.section-head span,
.timeline-list span,
.document-grid span,
.doc-top,
.article-link-card span,
.form-chip-block > span {
  color: var(--soft);
  font-family: "Commissioner", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

.document-caption p,
.service-card p,
.price-panel p,
.body-copy,
.contact-box p,
.timeline-list p,
.document-grid p,
.article-link-card p,
.warning-table p {
  color: var(--muted);
  line-height: 1.55;
}

.band,
.faq-section,
.proof-layout,
.content-grid,
.contact-grid,
.price-table-section,
.article-body {
  padding: 48px 56px;
}

.split-band,
.faq-section {
  background: #f8f6f1;
}

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

.section-head h2 {
  margin: 0;
  max-width: 560px;
}

.section-head.compact {
  align-items: start;
  display: block;
}

.section-head.compact span {
  display: block;
  margin-bottom: 8px;
}

.section-spaced {
  margin-top: 38px;
}

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

.compact-services {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 20px;
}

.service-card h3 {
  margin: 10px 0 12px;
}

.service-card dl,
.price-panel dl {
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 9px;
  margin: auto 0 16px;
  padding-top: 14px;
}

dl {
  margin: 0;
}

dt {
  color: var(--soft);
  font-family: "Commissioner", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

dd {
  margin: 3px 0 0;
}

.service-hero {
  grid-template-columns: minmax(0, 1fr) 400px;
}

.price-panel {
  align-self: start;
}

.price-panel h2 {
  font-size: 22px;
  margin: 8px 0 12px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.breadcrumbs a {
  color: var(--soft);
  font-size: 13px;
}

.breadcrumbs a::after {
  color: #c0b8a6;
  content: "/";
  margin-left: 8px;
}

.breadcrumbs a:last-child::after {
  content: "";
  margin: 0;
}

.content-grid,
.article-body {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.visual-evidence {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 280px 1fr;
  margin-bottom: 38px;
}

.visual-evidence img {
  aspect-ratio: 4 / 3;
}

.visual-evidence div {
  padding: 22px;
}

.timeline-list,
.document-grid,
.warning-table {
  display: grid;
  gap: 0;
}

.timeline-list div,
.document-grid div,
.warning-table div {
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 18px;
  grid-template-columns: 58px 1fr;
  padding: 15px 0;
}

.timeline-list p,
.document-grid p,
.warning-table p {
  margin: 0;
}

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

.document-grid div {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px;
}

.warning-table {
  margin-top: 26px;
}

.warning-table div {
  grid-template-columns: 1fr;
  gap: 6px;
}

.proof-layout {
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) 410px;
}

.document-card {
  background: var(--paper);
  padding: 34px;
}

.compact-doc {
  align-self: start;
}

.doc-top {
  line-height: 1.8;
  text-align: center;
}

.doc-title {
  border-top: 1px solid var(--line-soft);
  font-size: 21px;
  font-weight: 600;
  margin-top: 20px;
  padding-top: 20px;
  text-align: center;
}

.doc-table,
.requisites {
  display: grid;
  gap: 10px 14px;
  grid-template-columns: 130px 1fr;
  margin-top: 26px;
}

.doc-table strong,
.requisites dd,
.unknown {
  background: #f1eee7;
  border: 1px dashed #c0b8a6;
  color: #6f6657;
  font-weight: 500;
  padding: 2px 7px;
}

.document-card p {
  color: #6b7280;
  font-size: 12px;
  line-height: 1.6;
  margin: 28px 0 0;
}

.page-hero.narrow {
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 30px;
}

.price-table {
  border: 1px solid var(--line);
}

.price-row {
  color: var(--ink);
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 1.7fr 0.7fr 0.7fr;
}

.price-row span {
  border-right: 1px solid var(--line-soft);
  padding: 15px 18px;
}

.price-row span:last-child {
  border-right: 0;
}

a.price-row {
  border-top: 1px solid var(--line-soft);
}

a.price-row:hover {
  background: var(--accent-soft);
  text-decoration: none;
}

.price-head {
  background: var(--white);
  color: var(--soft);
  font-family: "Commissioner", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

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

.article-link-card {
  color: var(--ink);
  display: grid;
  min-height: 330px;
  overflow: hidden;
}

.article-link-card:hover {
  border-color: var(--accent);
  text-decoration: none;
}

.article-link-card img {
  aspect-ratio: 16 / 9;
  height: auto;
}

.article-link-card span,
.article-link-card strong,
.article-link-card p {
  margin-left: 20px;
  margin-right: 20px;
}

.article-link-card span {
  margin-top: 18px;
}

.article-link-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
  margin-top: 8px;
}

.article-link-card p {
  font-size: 14.5px;
  margin-bottom: 20px;
}

.article-hero {
  align-items: start;
}

.article-hero img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
}

.article-copy {
  display: grid;
  gap: 28px;
}

.article-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 780px;
}

.article-side {
  align-self: start;
  display: grid;
  gap: 12px;
}

.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 360px;
}

.large {
  font-size: 22px;
  font-weight: 600;
}

.thin-line {
  background: var(--line-soft);
  height: 1px;
  margin: 22px 0;
}

.map-placeholder {
  align-items: center;
  background: #efebe2;
  color: var(--soft);
  display: flex;
  font-family: "Commissioner", sans-serif;
  font-size: 12px;
  height: 150px;
  justify-content: center;
  margin-top: 18px;
  text-align: center;
}

.useful-services,
.trust-layout,
.source-band,
.stats-dashboard,
.methodology-band,
.quality-band,
.credential-wall,
.proof-strip {
  padding: 52px 56px;
}

.useful-services {
  background: #f4f1ea;
  border-bottom: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
}

.useful-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.useful-card {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 18px;
}

.useful-card:hover,
.source-grid a:hover {
  border-color: var(--accent);
  color: var(--ink);
  text-decoration: none;
}

.useful-card span,
.source-grid span,
.proof-strip span,
.stats-kpi-band span,
.stats-row-foot,
.stats-row-head span,
.stats-files-note,
.credential-card span,
.trust-steps span,
.trust-doc-list span,
.trust-warning-stack span {
  color: var(--soft);
  font-family: "Commissioner", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

.useful-card h3 {
  font-size: 20px;
  margin: 0;
}

.useful-card p,
.source-grid small,
.trust-source-card li,
.trust-steps p,
.trust-doc-list p,
.trust-warning-stack p,
.office-card p,
.stats-method-card p,
.stats-side-panel p,
.methodology-grid p,
.quality-list p,
.credential-card p,
.proof-strip p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.trust-hero,
.stats-hero,
.about-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) 390px;
  padding: 58px 56px;
}

.trust-source-card,
.stats-method-card,
.office-card,
.stats-side-panel {
  align-self: start;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 26px;
}

.trust-source-card h2,
.stats-method-card h2,
.office-card h2 {
  font-size: 24px;
  margin: 8px 0 14px;
}

.trust-source-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding-left: 18px;
}

.trust-layout {
  background: var(--white);
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 1fr) 370px;
}

.compact-trust {
  border-top: 1px solid var(--line-soft);
  padding-top: 0;
}

.trust-steps,
.trust-doc-list,
.source-grid,
.methodology-grid,
.credential-grid,
.proof-strip {
  display: grid;
  gap: 16px;
}

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

.trust-steps article,
.trust-doc-list div,
.methodology-grid article,
.proof-strip article {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 20px;
}

.trust-steps article {
  min-height: 170px;
}

.trust-steps span,
.trust-doc-list span,
.methodology-grid span,
.proof-strip span {
  color: var(--accent);
  display: block;
  font-weight: 700;
  margin-bottom: 14px;
}

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

.trust-aside {
  align-self: start;
  background: var(--paper);
  border: 1px solid var(--line);
}

.trust-aside img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  width: 100%;
}

.trust-aside.no-image {
  background: var(--white);
}

.trust-warning-stack {
  display: grid;
  gap: 0;
}

.trust-warning-stack section {
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  gap: 8px;
  padding: 20px;
}

.trust-warning-stack section:last-child {
  border-bottom: 0;
}

.source-band,
.methodology-band,
.quality-band {
  background: #f8f6f1;
  border-top: 1px solid var(--line-soft);
}

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

.source-grid a {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  gap: 10px;
  min-height: 145px;
  padding: 20px;
}

.source-grid strong {
  font-size: 17px;
  line-height: 1.35;
}

.source-grid small {
  overflow-wrap: anywhere;
}

.stats-hero {
  background:
    linear-gradient(90deg, rgba(16, 59, 114, 0.08), transparent 48%),
    var(--paper);
}

.stats-kpi-band {
  background: var(--accent);
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-kpi-band article {
  background: rgba(255, 255, 255, 0.08);
  min-height: 185px;
  padding: 30px 26px;
}

.stats-kpi-band span {
  color: #cbd8e8;
}

.stats-kpi-band strong {
  display: block;
  font-family: "Literata", serif;
  font-size: 42px;
  line-height: 1;
  margin: 12px 0;
}

.stats-kpi-band p {
  color: #edf3fb;
  line-height: 1.45;
  margin: 0;
}

.stats-dashboard {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 320px;
}

.stats-chart-panel,
.stats-side-panel,
.quality-list {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 26px;
}

.stats-bars {
  display: grid;
  gap: 18px;
}

.stats-bar-row {
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 10px;
  padding-top: 16px;
}

.stats-row-head,
.stats-row-foot {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.stacked-bar {
  background: #ece6da;
  display: flex;
  height: 18px;
  overflow: hidden;
}

.stacked-bar .positive {
  background: var(--bulgaria-green);
}

.stacked-bar .refusal {
  background: var(--danger);
}

.stats-definition-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 20px;
}

.stats-definition-list div {
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 12px;
}

.stats-definition-list dd {
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
}

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

.stats-files-note {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  padding: 16px 18px;
  text-transform: none;
}

.quality-list {
  display: grid;
  gap: 10px;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(47, 96, 73, 0.1), transparent 48%),
    var(--paper);
}

.office-card dl {
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding-top: 18px;
}

.proof-strip {
  background: var(--white);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.credential-wall {
  background: #f8f6f1;
  border-bottom: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
}

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

.credential-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 310px;
}

.credential-card img {
  display: block;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  width: 100%;
}

.credential-card div {
  align-self: center;
  border-left: 1px solid var(--line-soft);
  padding: 26px;
}

.credential-card h3 {
  margin: 8px 0 12px;
}

.footer-contact-line {
  font-size: 13px;
  margin: 6px 0 0;
}

.request-layout {
  grid-template-columns: minmax(0, 1fr) 480px;
}

.compact-list {
  margin-top: 36px;
}

.step-tabs {
  border: 1px solid var(--line);
  display: grid;
  font-family: "Commissioner", sans-serif;
  font-size: 11px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.step-tabs span {
  border-right: 1px solid var(--line-soft);
  color: var(--soft);
  padding: 10px 12px;
}

.step-tabs span:first-child {
  background: var(--accent);
  color: var(--white);
}

.step-tabs span:last-child {
  border-right: 0;
}

.mini-form,
.full-form {
  display: grid;
  gap: 14px;
}

label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  gap: 6px;
}

.checkbox-line {
  align-items: center;
  grid-template-columns: 18px 1fr;
}

.checkbox-line input {
  height: 16px;
  min-height: auto;
  width: 16px;
}

.honeypot {
  height: 1px;
  left: -10000px;
  min-height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.editorial-meta {
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 8px;
  margin-top: 24px;
  max-width: 780px;
  padding-top: 16px;
}

.editorial-meta div {
  display: grid;
  gap: 12px;
  grid-template-columns: 160px 1fr;
}

input,
select,
textarea {
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--ink);
  min-height: 43px;
  padding: 12px;
  width: 100%;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 2px solid var(--accent-soft);
}

.form-chip-block {
  display: grid;
  gap: 8px;
}

.success-box,
.error-box {
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 12px;
}

.success-box {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--accent);
}

.error-box {
  background: #fff5f3;
  border: 1px solid var(--danger);
  color: var(--danger);
}

.faq-list {
  border-top: 1px solid var(--line-soft);
}

details {
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

details p {
  color: var(--muted);
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: 850px;
}

.site-footer {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #f4f2ed;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(260px, 1fr) repeat(4, auto);
  padding: 34px 56px;
}

.site-footer .brand {
  color: #f4f2ed;
}

.site-footer .brand:hover {
  color: #ffffff;
}

.site-footer p,
.footer-note {
  color: #a5acb7;
  line-height: 1.55;
}

.footer-links,
.footer-note {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #d3d8df;
}

.footer-note {
  font-family: "Commissioner", sans-serif;
  min-width: 220px;
}

.footer-note strong {
  color: #f4f2ed;
  font-family: "Literata", serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-note a {
  border-top: 1px solid rgb(255 255 255 / 14%);
  color: #dce6e1;
  font-size: 13px;
  line-height: 1.4;
  padding: 10px 0 2px;
  text-transform: none;
}

.footer-note a:hover {
  border-color: rgb(255 255 255 / 32%);
  color: #ffffff;
  text-decoration: none;
}

.footer-note > span {
  color: #9fb8ae;
  font-size: 10px;
  margin-top: 8px;
  text-transform: uppercase;
}

@media (min-width: 641px) and (max-width: 1180px) {
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Trust contour: an editorial verification dossier shared by the key pages. */
.trust-icon {
  fill: none;
  height: 32px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 32px;
}

.hero-trust-icon {
  align-items: center;
  background: var(--green-soft);
  color: var(--bulgaria-green);
  display: inline-flex;
  height: 64px;
  justify-content: center;
  margin: 20px 0 18px;
  width: 64px;
}

.trust-statement {
  border-left: 3px solid var(--bulgaria-green);
  color: var(--muted);
  line-height: 1.65;
  margin: 24px 0 0;
  max-width: 760px;
  padding-left: 18px;
}

.trust-contour {
  background: #eef3f0;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 58px 56px;
}

.trust-contour-head,
.company-section-intro,
.office-map-head {
  align-items: end;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  margin-bottom: 28px;
}

.trust-contour-head > p,
.company-section-intro > p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 3px;
}

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

.trust-contour-card {
  background: var(--white);
  border: 1px solid #c9d5ce;
  color: var(--ink);
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 236px;
  padding: 22px;
}

.trust-contour-card:hover {
  border-color: var(--bulgaria-green);
  color: var(--ink);
  text-decoration: none;
}

.trust-contour-card.is-current {
  border-color: var(--bulgaria-green);
  box-shadow: inset 0 4px 0 var(--bulgaria-green);
}

.trust-contour-icon {
  align-items: center;
  color: var(--bulgaria-green);
  display: flex;
  height: 42px;
}

.trust-contour-icon .trust-icon {
  height: 30px;
  width: 30px;
}

.trust-contour-meta,
.contact-channel-band article div > span,
.company-verification-card > span,
.trust-page-action > span,
.trust-check-aside > span,
.statistics-source-lockup > span,
.statistics-insight-band span,
.statistics-action-card > span,
.registry-country,
.contact-final-band > div > span {
  color: var(--soft);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.trust-contour-card h3 {
  font-size: 23px;
  margin: 10px 0;
}

.trust-contour-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.trust-contour-card > strong {
  color: var(--accent);
  font-size: 13px;
  margin-top: 20px;
}

.contact-hero,
.company-hero,
.trust-page-hero {
  background: #f5f7f5;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) 410px;
  padding: 56px;
}

.trust-visual-hero {
  background: #f2f5f3;
  color: var(--ink);
  isolation: isolate;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.trust-visual-hero.trust-visual-hero--open {
  align-items: center;
  background: #f2f5f3;
}

.trust-visual-hero--open .trust-hero-context {
  color: #40534c;
  font-size: 14px;
  line-height: 1.55;
  margin: 18px 0 0;
}

.trust-hero-background,
.trust-hero-scrim {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.trust-hero-background {
  filter: brightness(1.04) contrast(0.94) saturate(0.92);
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.trust-hero-scrim {
  backdrop-filter: blur(1.5px);
  background:
    linear-gradient(
      90deg,
      rgb(249 250 248 / 97%) 0%,
      rgb(249 250 248 / 90%) 44%,
      rgb(249 250 248 / 36%) 72%,
      rgb(249 250 248 / 8%) 100%
    ),
    linear-gradient(180deg, rgb(255 255 255 / 20%), rgb(238 243 240 / 12%));
  -webkit-backdrop-filter: blur(1.5px);
  z-index: 1;
}

.contact-hero .trust-hero-scrim {
  background:
    linear-gradient(
      90deg,
      rgb(249 250 248 / 98%) 0%,
      rgb(249 250 248 / 92%) 48%,
      rgb(249 250 248 / 34%) 74%,
      rgb(249 250 248 / 7%) 100%
    ),
    rgb(255 255 255 / 8%);
}

.trust-visual-hero > :not(.trust-hero-background, .trust-hero-scrim) {
  position: relative;
  z-index: 2;
}

.trust-visual-hero h1,
.trust-visual-hero .lead,
.trust-visual-hero .trust-statement {
  color: var(--ink);
}

.trust-visual-hero .breadcrumbs a,
.trust-visual-hero .meta-row span {
  color: #52645e;
}

.trust-visual-hero .hero-trust-icon {
  background: rgb(255 255 255 / 72%);
  color: var(--bulgaria-green);
}

.trust-visual-hero .button.secondary {
  backdrop-filter: blur(4px);
  background: rgb(255 255 255 / 74%);
  border-color: var(--bulgaria-green);
  color: var(--accent);
  -webkit-backdrop-filter: blur(4px);
}

.trust-visual-hero .button.secondary:hover,
.trust-visual-hero .button.secondary:focus-visible {
  background: var(--green-soft);
  color: var(--ink);
}

.statistics-hero.trust-visual-hero .lead {
  color: #40534c;
}

.trust-visual-hero .statistics-source-lockup {
  backdrop-filter: blur(5px);
  background: rgb(9 34 29 / 76%);
  border: 1px solid rgb(255 255 255 / 14%);
  box-shadow: 0 18px 44px rgb(17 32 27 / 10%);
  color: var(--white);
  padding: 28px;
  text-shadow: 0 1px 18px rgb(5 24 20 / 44%);
  -webkit-backdrop-filter: blur(5px);
}

.contact-hero-copy,
.company-hero-copy,
.trust-page-copy {
  align-self: center;
  min-width: 0;
}

.contact-hero h1,
.company-hero h1,
.trust-page-hero h1,
.statistics-hero h1 {
  margin-bottom: 18px;
  max-width: 900px;
}

.office-portrait {
  background: var(--dark-panel);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  margin: 0;
  min-height: 470px;
  overflow: hidden;
}

.office-portrait img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.office-portrait figcaption {
  align-content: end;
  color: var(--white);
  display: grid;
  padding: 22px 18px;
}

.office-portrait figcaption span {
  color: #a9c1b7;
  font-size: 10px;
  text-transform: uppercase;
}

.office-portrait figcaption strong {
  font-family: "Literata", serif;
  font-size: 20px;
  margin-top: 8px;
}

.office-portrait figcaption p {
  color: #c9d5d0;
  font-size: 12px;
  line-height: 1.5;
  margin: 10px 0 0;
}

.contact-channel-band,
.company-proof-band,
.trust-fact-band,
.visit-proof-band {
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-channel-band article {
  border-right: 1px solid var(--line-soft);
  display: grid;
  gap: 18px;
  grid-template-columns: 34px 1fr;
  min-height: 170px;
  padding: 30px 28px;
}

.contact-channel-band article:last-child,
.company-proof-band article:last-child,
.trust-fact-band article:last-child,
.visit-proof-band article:last-child {
  border-right: 0;
}

.contact-channel-index,
.company-proof-band article > span,
.trust-fact-band article > span,
.visit-proof-band article > span {
  color: var(--bulgaria-green);
  font-size: 12px;
  font-weight: 700;
}

.contact-channel-band article div {
  display: grid;
  gap: 8px;
}

.contact-channel-band a,
.contact-channel-band strong {
  color: var(--ink);
  font-family: "Literata", serif;
  font-size: 20px;
  line-height: 1.3;
}

.contact-channel-band p,
.company-proof-band p,
.trust-fact-band p,
.visit-proof-band p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.office-map-section {
  background: #f8f9f7;
  border-top: 1px solid var(--line);
  padding: 58px 56px;
}

.office-address-lockup {
  border-left: 2px solid var(--bulgaria-green);
  padding-left: 20px;
}

.office-address-lockup strong {
  font-family: "Literata", serif;
  font-size: 25px;
}

.office-address-lockup p {
  color: var(--muted);
  margin: 5px 0 12px;
}

.office-address-lockup a {
  font-size: 13px;
  font-weight: 600;
}

.office-map-frame {
  background: #dce4df;
  border: 1px solid var(--line);
  color: var(--white);
  display: block;
  height: 470px;
  overflow: hidden;
  position: relative;
}

.office-map-frame img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.office-map-frame > span {
  background: var(--forest);
  bottom: 26px;
  box-shadow: 0 8px 28px rgb(15 43 35 / 18%);
  font-family: "Literata", serif;
  font-size: 20px;
  left: 50%;
  line-height: 1.2;
  padding: 15px 20px;
  position: absolute;
  transform: translateX(-50%);
}

.office-map-frame > span::after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--forest);
  bottom: -10px;
  content: "";
  left: calc(50% - 8px);
  position: absolute;
}

.office-map-frame small {
  color: rgb(255 255 255 / 70%);
  font-family: "Commissioner", sans-serif;
  font-size: 11px;
}

.office-map-frame:hover img {
  transform: scale(1.01);
}

.office-map-frame img {
  transition: transform 180ms ease;
}

.company-proof-band article,
.trust-fact-band article,
.visit-proof-band article {
  border-right: 1px solid var(--line-soft);
  display: grid;
  gap: 18px;
  grid-template-columns: 32px 1fr;
  min-height: 126px;
  padding: 28px;
}

.company-advantage-band {
  background: #f8f6f1;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  gap: 32px;
  padding: 58px 56px;
}

.company-advantage-lead {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
}

.company-advantage-lead p {
  border-left: 3px solid var(--bulgaria-green);
  color: var(--ink);
  font-size: 19px;
  line-height: 1.65;
  margin: 0;
  padding-left: 22px;
}

.company-advantage-metrics {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.company-advantage-metrics article {
  background: rgb(255 255 255 / 88%);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1fr);
  min-height: 280px;
  overflow: hidden;
}

.company-advantage-feature figure {
  background: #edf1ee;
  border-right: 1px solid var(--line-soft);
  height: 100%;
  margin: 0;
  min-height: 280px;
  overflow: hidden;
}

.company-advantage-feature img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.company-advantage-feature-copy {
  align-content: center;
  display: grid;
  gap: 14px;
  padding: 32px;
}

.company-advantage-feature-copy > span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.company-advantage-metrics strong {
  color: var(--ink);
  font-family: "Literata", serif;
  font-size: 29px;
  line-height: 1.25;
}

.company-advantage-metrics p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.company-advantage-grid {
  counter-reset: company-advantage;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.company-advantage-grid li {
  align-items: center;
  background: rgb(255 255 255 / 78%);
  border: 1px solid var(--line-soft);
  counter-increment: company-advantage;
  display: flex;
  min-height: 92px;
  overflow: hidden;
  padding: 18px 18px 18px 76px;
  position: relative;
}

.company-advantage-grid li::before {
  color: rgb(42 94 74 / 22%);
  content: counter(company-advantage, decimal-leading-zero);
  font-family: "Literata", serif;
  font-size: 46px;
  font-weight: 700;
  left: 18px;
  line-height: 1;
  position: absolute;
  top: 18px;
}

.company-advantage-grid span {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.4;
}

.contact-final-band {
  align-items: center;
  background: var(--dark-panel);
  color: var(--white);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 44px 56px;
}

.contact-final-band h2 {
  color: var(--white);
  font-size: 30px;
  margin: 6px 0 0;
  max-width: 840px;
}

.contact-final-band p {
  color: #c7d1cd;
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 820px;
}

.company-verification-card,
.trust-page-action {
  align-self: center;
  background: var(--dark-panel);
  color: var(--white);
  padding: 34px;
}

.trust-visual-hero .company-verification-card,
.trust-visual-hero .trust-page-action {
  backdrop-filter: blur(6px);
  background: rgb(9 34 29 / 82%);
  border: 1px solid rgb(255 255 255 / 12%);
  box-shadow: 0 18px 44px rgb(17 32 27 / 12%);
  -webkit-backdrop-filter: blur(6px);
}

.trust-visual-hero .company-verification-card {
  background: rgb(9 34 29 / 64%);
}

.company-verification-card > span,
.trust-page-action > span {
  color: #9eb9ae;
}

.company-verification-card p,
.trust-page-action p {
  font-family: "Literata", serif;
  font-size: 24px;
  line-height: 1.45;
  margin: 16px 0 28px;
}

.company-documents {
  padding: 62px 56px;
}

.credential-card {
  grid-template-columns: 46% minmax(0, 1fr);
  min-height: 390px;
}

.credential-preview {
  border: 0;
  background: #eef1ee;
  color: var(--accent);
  display: grid;
  font: inherit;
  grid-template-rows: 1fr auto;
  margin: 0;
  padding: 22px;
  text-align: center;
  width: 100%;
}

.credential-preview img {
  height: 310px;
  object-fit: contain;
  padding: 0;
}

.credential-preview figcaption {
  color: var(--soft);
  font-family: "Commissioner", sans-serif;
  font-size: 11px;
  font-weight: 600;
  margin-top: 12px;
  text-transform: uppercase;
}

.document-lightbox {
  background: transparent;
  border: 0;
  max-height: 94vh;
  max-width: 94vw;
  padding: 0;
  width: min(94vw, 1040px);
}

.document-lightbox::backdrop {
  background: rgba(12, 31, 27, 0.82);
}

.document-lightbox-frame {
  background: var(--white);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  max-height: 94vh;
  overflow: hidden;
}

.document-lightbox-toolbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  min-height: 58px;
  padding: 8px 12px 8px 20px;
}

.document-lightbox-toolbar strong {
  font-family: "Literata", serif;
  font-size: 18px;
  line-height: 1.3;
}

.document-lightbox-toolbar button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 42px;
  font-size: 32px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 4px;
  width: 42px;
}

.document-lightbox-toolbar button:hover,
.document-lightbox-toolbar button:focus-visible {
  background: var(--line-soft);
}

.document-lightbox-canvas {
  background: #e8ece9;
  min-height: 0;
  overflow: auto;
  padding: 20px;
}

.document-lightbox-canvas img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  width: auto;
}

.credential-copy {
  align-self: stretch !important;
  align-content: center;
  display: grid;
}

.credential-copy h3 {
  font-size: 28px;
}

.text-link {
  font-size: 13px;
  font-weight: 600;
  margin-top: 22px;
}

.company-office-band {
  background: var(--white);
  display: grid;
  gap: 52px;
  grid-template-columns: 360px minmax(0, 1fr);
  padding: 60px 56px;
}

.company-office-band figure {
  background: #e8ece9;
  margin: 0;
  min-height: 440px;
}

.company-office-band figure img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.company-office-band > div {
  align-self: center;
}

.lead-small {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.company-office-details {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  margin: 26px 0;
}

.company-office-details div {
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  gap: 18px;
  grid-template-columns: 90px 1fr;
  padding: 12px 0;
}

.company-office-details dt {
  color: var(--soft);
  font-size: 11px;
  text-transform: uppercase;
}

.company-office-details dd {
  margin: 0;
}

.official-registers {
  background: #f4f7f5;
}

.trust-page-hero {
  background: #edf3ef;
}

.trust-page-action {
  border-top: 5px solid var(--bulgaria-green);
}

.process-hero-card {
  align-self: stretch;
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  padding: 0;
}

.process-hero-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.process-hero-card > div {
  align-content: center;
  display: grid;
  padding: 28px 32px 34px;
}

.process-hero-card p {
  font-size: 21px;
  margin-bottom: 24px;
}

.status-proof-section,
.trust-check-section {
  background: var(--white);
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 1fr) 390px;
  padding: 60px 56px;
}

.status-proof-copy > p,
.registry-caveat,
.official-process-section > .company-section-intro > p {
  color: var(--muted);
  line-height: 1.65;
}

.status-field-list {
  display: grid;
  gap: 0;
  margin-top: 30px;
}

.status-field-list div {
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 18px;
  grid-template-columns: 34px 1fr;
  padding: 16px 0;
}

.status-field-list span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.status-field-list p {
  margin: 0;
}

.status-slip {
  align-self: start;
  background: #f7f5ef;
  border: 1px solid var(--line-strong);
  box-shadow: 10px 10px 0 #dfe7e2;
  padding: 28px;
}

.status-slip > span {
  color: var(--soft);
  font-size: 10px;
  text-transform: uppercase;
}

.status-slip h3 {
  font-size: 27px;
  margin: 10px 0 24px;
}

.status-slip label {
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  display: grid;
  gap: 5px;
  padding: 13px 0;
}

.status-slip label b {
  color: var(--ink);
  font-size: 18px;
}

.status-slip p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.status-slip > a {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}

.apostille-registry-section,
.official-process-section,
.trust-documents-section,
.statistics-method-section {
  background: #f7f9f7;
  border-top: 1px solid var(--line);
  padding: 60px 56px;
}

.apostille-registry-grid,
.official-process-grid,
.trust-document-grid,
.statistics-method-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.apostille-registry-grid > a {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  min-height: 260px;
  padding: 22px;
}

.apostille-registry-grid > a:hover {
  border-color: var(--accent);
  color: var(--ink);
  text-decoration: none;
}

.country-flag {
  border: 1px solid rgba(23, 32, 30, 0.18);
  display: block;
  height: 28px;
  margin-bottom: 24px;
  width: 42px;
}

.flag-md {
  background: linear-gradient(90deg, #17479e 0 33%, #f4d03f 33% 66%, #c73b3f 66%);
}

.flag-ua {
  background: linear-gradient(#176fc1 0 50%, #f5d441 50%);
}

.flag-ru {
  background: linear-gradient(#ffffff 0 33%, #2356a5 33% 66%, #bd3340 66%);
}

.flag-ro {
  background: linear-gradient(90deg, #002b7f 0 33%, #fcd116 33% 66%, #ce1126 66%);
}

.flag-gr {
  background:
    linear-gradient(#ffffff 0 0) 6px 0 / 3px 13px no-repeat,
    linear-gradient(90deg, #ffffff 0 0) 0 5px / 15px 3px no-repeat,
    repeating-linear-gradient(#0d5eaf 0 3px, #ffffff 3px 6px);
}

.flag-tr {
  background: #e30a17;
  position: relative;
}

.flag-tr::before {
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 3px 0 0 2px #e30a17;
  content: "";
  height: 13px;
  left: 10px;
  position: absolute;
  top: 6px;
  width: 13px;
}

.flag-tr::after {
  color: #ffffff;
  content: "★";
  font-size: 8px;
  left: 24px;
  line-height: 1;
  position: absolute;
  top: 9px;
}

.flag-hcch {
  background: #163a67;
  border-left: 12px solid #d7b45b;
}

.apostille-registry-grid h3 {
  font-size: 22px;
  margin: 12px 0;
}

.apostille-registry-grid p,
.official-process-grid p,
.trust-document-grid p,
.statistics-method-grid p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.apostille-registry-grid strong {
  color: var(--accent);
  display: block;
  font-size: 12px;
  margin-top: 22px;
  overflow-wrap: anywhere;
}

.registry-caveat {
  border-left: 3px solid var(--warm);
  margin: 24px 0 0;
  padding: 4px 0 4px 18px;
}

.official-process-grid article,
.trust-document-grid article,
.statistics-method-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 245px;
  padding: 22px;
}

.official-process-grid article > span,
.trust-document-grid article > span,
.statistics-method-grid article > span {
  color: var(--bulgaria-green);
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 28px;
}

.official-process-grid small {
  color: var(--soft);
  display: block;
  font-size: 10px;
  min-height: 30px;
  text-transform: uppercase;
}

.official-process-grid h3 {
  font-size: 23px;
  margin: 10px 0 12px;
}

.sofia-office-note {
  align-items: center;
  background: var(--dark-panel);
  color: var(--white);
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 18px;
  padding: 28px;
}

.sofia-office-note span {
  color: #9eb9ae;
  font-size: 10px;
  text-transform: uppercase;
}

.sofia-office-note h3 {
  color: var(--white);
  margin: 7px 0;
}

.sofia-office-note p {
  color: #c7d1cd;
  margin: 0;
}

.process-intro {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 520px) minmax(320px, 1fr);
}

.process-official-strip {
  background: var(--dark-panel);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 34px 0 20px;
}

.process-official-strip article {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  min-height: 150px;
  padding: 24px;
}

.process-official-strip article:last-child {
  border-right: 0;
}

.process-official-strip strong {
  color: #bed3c9;
  display: block;
  font-family: "Literata", serif;
  font-size: 25px;
  margin-bottom: 12px;
}

.process-official-strip p {
  color: #d5dfdb;
  line-height: 1.55;
  margin: 0;
}

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

.process-route-grid article {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  min-height: 238px;
  padding: 0;
}

.process-card-index {
  background: #edf3ef;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-rows: auto 1fr;
  min-width: 0;
  padding: 23px 18px;
}

.process-card-index span {
  color: var(--bulgaria-green);
  font-family: "Literata", serif;
  font-size: 33px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

.process-card-index small {
  align-self: end;
  color: var(--soft);
  font-size: 10px;
  line-height: 1.35;
  max-width: 100%;
  min-height: 0;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.process-card-copy {
  align-content: center;
  display: grid;
  min-width: 0;
  padding: 25px 25px 24px;
}

.process-card-copy h3 {
  margin-top: 0;
}

.process-card-copy p {
  line-height: 1.6;
}

.process-card-copy a {
  align-self: end;
  border-top: 1px solid var(--line-soft);
  color: var(--accent);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 20px;
  padding-top: 12px;
}

.process-evidence-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 60px 56px;
}

.process-evidence-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.1fr 1.1fr 0.9fr 0.9fr;
}

.process-evidence-grid figure {
  background: #f4f6f4;
  border: 1px solid var(--line);
  display: grid;
  grid-template-rows: 270px auto;
  margin: 0;
  overflow: hidden;
}

.process-evidence-grid figure:first-child {
  grid-column: span 2;
}

.process-evidence-grid figure:nth-child(2) {
  grid-column: span 2;
}

.process-evidence-grid img {
  background: #e6ede8;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.process-evidence-grid figure:nth-child(3) img,
.process-evidence-grid figure:nth-child(4) img {
  background: #f8faf8;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  padding: 18px;
}

.process-evidence-grid figcaption {
  border-top: 1px solid var(--line-soft);
  padding: 22px;
}

.process-evidence-grid strong {
  display: block;
  font-family: "Literata", serif;
  font-size: 23px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.process-evidence-grid p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.trust-check-main {
  min-width: 0;
}

.trust-check-steps {
  border-top: 1px solid var(--line);
  display: grid;
}

.trust-check-steps article {
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  gap: 24px;
  grid-template-columns: 46px 1fr;
  padding: 20px 0;
}

.trust-check-steps span {
  color: var(--accent);
  font-weight: 700;
}

.trust-check-steps p {
  line-height: 1.6;
  margin: 0;
}

.trust-check-aside {
  align-self: start;
  background: #edf3ef;
  border-top: 5px solid var(--bulgaria-green);
  padding: 26px;
}

.trust-check-aside > div {
  border-top: 1px solid #cddad2;
  padding: 18px 0;
}

.trust-check-aside strong {
  font-family: "Literata", serif;
  font-size: 18px;
}

.trust-check-aside p {
  color: var(--muted);
  line-height: 1.55;
  margin: 8px 0 0;
}

.trust-document-grid article {
  min-height: 155px;
}

.trust-document-grid article > span {
  margin-bottom: 18px;
}

.official-source-band {
  background: #f2f5f3;
}

.statistics-hero {
  background: #15342d;
  color: var(--white);
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) 390px;
  padding: 58px 56px;
}

.statistics-hero .lead {
  color: #d8e2de;
}

.dark-breadcrumbs a,
.dark-meta span {
  color: #a9c1b7;
}

.light-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #d2e4dc;
}

.statistics-source-lockup {
  align-self: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 28px 0;
}

.statistics-source-lockup > span {
  color: #a9c1b7;
  display: block;
  margin-bottom: 16px;
}

.statistics-source-lockup strong {
  display: block;
  font-family: "Literata", serif;
  font-size: 48px;
  line-height: 1.05;
}

.statistics-source-lockup i {
  color: #d7b45b;
  display: block;
  font-size: 26px;
  font-style: normal;
  margin: 4px 0;
}

.statistics-source-lockup p {
  color: #c7d5cf;
  line-height: 1.55;
}

.statistics-source-lockup a {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.statistics-kpi-band {
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.statistics-kpi-band article {
  border-right: 1px solid var(--line-soft);
  min-height: 204px;
  padding: 30px 26px;
}

.statistics-kpi-band article:last-child {
  border-right: 0;
}

.statistics-kpi-band span {
  color: var(--soft);
  font-size: 10px;
  text-transform: uppercase;
}

.statistics-kpi-band strong {
  display: block;
  font-family: "Literata", serif;
  font-size: 43px;
  margin: 18px 0 12px;
}

.statistics-kpi-band p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.statistics-insight-band {
  align-items: center;
  background: #dfeae4;
  display: grid;
  gap: 42px;
  grid-template-columns: 280px minmax(0, 1fr);
  padding: 44px 56px;
}

.statistics-insight-number {
  color: var(--bulgaria-green);
  font-family: "Literata", serif;
  font-size: 72px;
  line-height: 1;
}

.statistics-insight-band h2 {
  font-size: 29px;
  margin: 8px 0;
}

.statistics-insight-band p {
  color: var(--muted);
  margin: 0;
}

.statistics-dashboard {
  background: var(--paper);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 340px;
  padding: 60px 56px;
}

.statistics-chart-panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
}

.statistics-chart-panel .company-section-intro {
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) 300px;
}

.statistics-year-list {
  display: grid;
}

.statistics-year-row {
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 22px;
  grid-template-columns: 94px minmax(0, 1fr);
  padding: 24px 0;
}

.statistics-year-row.is-partial {
  background: #f3f6f4;
  margin: 0 -12px -6px;
  padding: 24px 12px;
}

.statistics-year-label strong {
  display: block;
  font-family: "Literata", serif;
  font-size: 23px;
}

.statistics-year-label span,
.statistics-year-bars span {
  color: var(--soft);
  font-size: 10px;
  text-transform: uppercase;
}

.statistics-year-bars {
  display: grid;
  gap: 12px;
}

.statistics-decision-summary {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.statistics-decision-summary > div {
  display: grid;
  gap: 2px;
}

.statistics-decision-summary .is-refused {
  text-align: right;
}

.statistics-decision-summary .is-restored {
  text-align: center;
}

.statistics-decision-summary span {
  font-weight: 600;
}

.statistics-decision-summary strong {
  color: var(--ink);
  font-family: "Literata", serif;
  font-size: 15px;
}

.statistics-decision-summary small {
  color: var(--soft);
  font-size: 11px;
}

.statistics-decision-summary .is-approved span {
  color: var(--bulgaria-green);
}

.statistics-decision-summary .is-restored span {
  color: #936a12;
}

.statistics-decision-summary .is-refused span {
  color: var(--danger);
}

.statistics-decision-track {
  background: #e5ebe7;
  display: flex;
  height: 24px;
  overflow: hidden;
  width: 100%;
}

.statistics-decision-track b {
  display: block;
  height: 100%;
}

.statistics-decision-track .is-approved {
  background: var(--bulgaria-green);
}

.statistics-decision-track .is-restored {
  background: #c99a35;
  border-left: 2px solid var(--white);
}

.statistics-decision-track .is-refused {
  background: var(--danger);
  border-left: 2px solid var(--white);
}

.statistics-action-card {
  align-self: start;
  background: #173b72;
  border-top: 5px solid var(--bulgaria-green);
  color: var(--white);
  padding: 30px;
}

.statistics-action-card > span {
  color: #c5d3e7;
}

.statistics-action-card h3 {
  color: var(--white);
  font-size: 29px;
  margin: 12px 0 18px;
}

.statistics-action-card p {
  color: #dce6f3;
  line-height: 1.6;
}

.statistics-action-card ul {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  list-style: none;
  margin: 24px 0;
  padding: 12px 0 0;
}

.statistics-action-card li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #dce6f3;
  padding: 11px 0 11px 22px;
  position: relative;
}

.statistics-action-card li::before {
  color: #74b493;
  content: "✓";
  font-weight: 700;
  left: 0;
  position: absolute;
}

.statistics-action-card .button {
  display: flex;
  justify-content: center;
  width: 100%;
}

.statistics-action-card > small {
  color: #c5d3e7;
  display: block;
  line-height: 1.45;
  margin-top: 12px;
  text-align: center;
}

.statistics-method-intro {
  align-items: end;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) 410px;
  margin-bottom: 30px;
}

.statistics-official-source {
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  min-height: 112px;
}

.bulgaria-tricolor {
  background: linear-gradient(
    #ffffff 0 33.333%,
    #1f7a55 33.333% 66.666%,
    #bb3a37 66.666%
  );
  border-right: 1px solid var(--line-soft);
  display: block;
}

.statistics-official-source div {
  padding: 20px 22px;
}

.statistics-official-source strong {
  color: var(--bulgaria-green);
  display: block;
  font-size: 11px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.statistics-official-source p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.statistics-method-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.statistics-method-grid article {
  min-height: 238px;
  padding: 26px;
}

.statistics-method-icon {
  align-items: center;
  background: #e3eee8;
  color: var(--bulgaria-green) !important;
  display: flex !important;
  height: 46px;
  justify-content: center;
  margin-bottom: 30px !important;
  width: 46px;
}

.statistics-method-icon .trust-icon {
  height: 25px;
  width: 25px;
}

.statistics-method-grid h3 {
  font-size: 21px;
  margin: 0 0 12px;
}

.statistics-privacy-note {
  border-left: 3px solid var(--bulgaria-green);
  color: var(--muted);
  line-height: 1.55;
  margin: 26px 0 0;
  max-width: 780px;
  padding-left: 18px;
}

.statistics-reports-gateway {
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: 86px minmax(0, 1fr) 280px;
  padding: 48px 56px;
}

.statistics-reports-seal {
  align-items: center;
  background: var(--bulgaria-green);
  color: var(--white);
  display: flex;
  height: 74px;
  justify-content: center;
  width: 74px;
}

.statistics-reports-seal .trust-icon {
  height: 38px;
  width: 38px;
}

.statistics-reports-copy > span,
.statistics-reports-action > span {
  color: var(--soft);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.statistics-reports-copy h2 {
  font-size: 30px;
  margin: 8px 0 10px;
}

.statistics-reports-copy p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  max-width: 720px;
}

.statistics-reports-action {
  border-left: 1px solid var(--line-soft);
  display: grid;
  gap: 12px;
  padding-left: 28px;
}

.statistics-reports-action strong {
  font-family: "Literata", serif;
  font-size: 22px;
}

.statistics-reports-action .button {
  justify-content: center;
  width: 100%;
}

.statistics-final-band {
  background: #173b72;
}

.legal-hero {
  background: #f5f7f5;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) 390px;
  padding: 58px 56px;
}

.legal-hero-copy {
  align-self: center;
  min-width: 0;
}

.legal-hero h1 {
  max-width: 920px;
}

.legal-version-card {
  align-self: stretch;
  background: var(--dark-panel);
  color: var(--white);
  padding: 30px;
}

.legal-version-card > span,
.legal-toc > span,
.legal-toc-contact span,
.legal-sources > span,
.legal-rights-band > div > span {
  color: #9fb8ae;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.legal-version-card dl {
  margin: 22px 0;
}

.legal-version-card dl div {
  border-top: 1px solid rgb(255 255 255 / 14%);
  display: grid;
  gap: 16px;
  grid-template-columns: 92px 1fr;
  padding: 13px 0;
}

.legal-version-card dt {
  color: #9fb8ae;
  font-size: 11px;
  text-transform: uppercase;
}

.legal-version-card dd {
  font-weight: 600;
  margin: 0;
}

.legal-version-card p {
  color: #dce6e1;
  line-height: 1.6;
  margin: 0;
}

.legal-highlights {
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legal-highlights article {
  border-right: 1px solid var(--line-soft);
  display: grid;
  gap: 18px;
  grid-template-columns: 28px 1fr;
  min-height: 170px;
  padding: 30px 28px;
}

.legal-highlights article:last-child {
  border-right: 0;
}

.legal-highlights article > span {
  color: var(--bulgaria-green);
  font-size: 12px;
  font-weight: 700;
}

.legal-highlights h2 {
  font-size: 21px;
  margin: 0 0 9px;
}

.legal-highlights p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.legal-layout {
  align-items: start;
  background: var(--paper);
  display: grid;
  gap: 56px;
  grid-template-columns: 280px minmax(0, 820px);
  justify-content: center;
  padding: 64px 56px 76px;
}

.legal-toc {
  border-top: 3px solid var(--bulgaria-green);
  position: sticky;
  top: 108px;
}

.legal-toc > span {
  color: var(--soft);
  display: block;
  padding: 18px 0 10px;
}

.legal-toc nav {
  border-bottom: 1px solid var(--line);
  display: grid;
  padding-bottom: 18px;
}

.legal-toc nav a {
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  padding: 9px 0;
}

.legal-toc nav a:hover {
  color: var(--accent);
}

.legal-toc-contact {
  padding-top: 20px;
}

.legal-toc-contact span {
  color: var(--soft);
  display: block;
  margin-bottom: 8px;
}

.legal-toc-contact strong {
  display: block;
  font-family: "Literata", serif;
  font-size: 19px;
}

.legal-toc-contact p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 8px 0 0;
}

.legal-paper {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgb(23 32 30 / 6%);
  padding: 10px 52px 52px;
}

.legal-section {
  border-bottom: 1px solid var(--line-soft);
  padding: 42px 0;
  scroll-margin-top: 110px;
}

.legal-section h2 {
  font-size: 27px;
  margin-bottom: 20px;
}

.legal-section p,
.legal-section li {
  color: #4f5b56;
  font-size: 16px;
  line-height: 1.72;
}

.legal-section p {
  margin-bottom: 14px;
}

.legal-section ul {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  padding-left: 22px;
}

.legal-section .legal-note {
  background: var(--green-soft);
  border-left: 3px solid var(--bulgaria-green);
  color: var(--ink);
  margin: 22px 0 0;
  padding: 17px 19px;
}

.legal-sources {
  padding-top: 44px;
}

.legal-sources > span {
  color: var(--soft);
}

.legal-sources h2 {
  margin: 8px 0 22px;
}

.legal-sources > div {
  display: grid;
  gap: 10px;
}

.legal-sources a {
  align-items: center;
  border: 1px solid var(--line-soft);
  color: var(--ink);
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr auto;
  padding: 16px 18px;
}

.legal-sources a:hover {
  border-color: var(--bulgaria-green);
  color: var(--ink);
  text-decoration: none;
}

.legal-sources small {
  color: var(--accent);
  font-size: 12px;
}

.legal-rights-band {
  align-items: center;
  background: var(--accent);
  color: var(--white);
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 44px 56px;
}

.legal-rights-band > div > span {
  color: #c6d6e8;
}

.legal-rights-band h2 {
  color: var(--white);
  margin: 8px 0 10px;
}

.legal-rights-band p {
  color: #dce6f3;
  line-height: 1.55;
  margin: 0;
  max-width: 800px;
}

.legal-rights-actions {
  display: flex;
  gap: 10px;
}

.legal-rights-actions .button.primary {
  background: var(--white);
  color: var(--accent);
}

.legal-rights-actions .button.secondary {
  background: transparent;
  border-color: #9eb4cf;
  color: var(--white);
}

@media (max-width: 1180px) {
  .trust-visual-hero {
    min-height: auto;
  }

  .trust-hero-background {
    object-position: 68% center;
  }

  body {
    padding: 0;
  }

  .home-hero-content {
    max-width: 610px;
    padding-left: 36px;
    width: 61%;
  }

  .home-hero-content h1,
  .home-hero-content h2 {
    font-size: 38px;
  }

  .home-hero-controls {
    left: 36px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0 18px;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .main-nav.is-open {
    background: var(--white);
    border-top: 1px solid var(--line-soft);
    display: grid;
    gap: 12px;
    grid-column: 1 / -1;
    justify-content: start;
    padding: 14px 0 20px;
  }

  .main-nav.is-open .nav-action-whatsapp {
    align-items: center;
    border: 1px solid var(--bulgaria-green);
    color: var(--bulgaria-green);
    display: inline-flex;
    font-weight: 600;
    justify-content: center;
    min-height: 43px;
    padding: 11px 18px;
    width: max-content;
  }

  .main-nav.is-open .nav-action-whatsapp:hover {
    background: var(--green-soft);
    text-decoration: none;
  }

  .prototype-hero,
  .service-hero,
  .home-hero,
  .service-landing,
  .service-body,
  .service-stats-teaser,
  .service-conversion-band,
  .trust-hero,
  .trust-layout,
  .stats-hero,
  .stats-dashboard,
  .about-hero,
  .diagnostic-hero,
  .diagnostic-layout,
  .case-strip,
  .content-grid,
  .contact-grid,
  .request-layout,
  .proof-layout,
  .article-hero,
  .article-body {
    grid-template-columns: 1fr;
  }

  .service-hero-background {
    object-position: 72% center;
  }

  .compact-services,
  .service-grid,
  .article-link-grid,
  .document-grid,
  .useful-grid,
  .source-grid,
  .trust-steps,
  .trust-doc-list,
  .methodology-grid,
  .credential-grid,
  .proof-strip,
  .route-grid,
  .process-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .credential-card {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .diagnostic-guide {
    position: static;
  }

  .contact-hero,
  .company-hero,
  .trust-page-hero,
  .statistics-hero,
  .legal-hero,
  .legal-layout,
  .legal-rights-band,
  .status-proof-section,
  .trust-check-section,
  .company-office-band,
  .company-advantage-lead,
  .statistics-dashboard,
  .process-intro {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .legal-rights-actions {
    flex-wrap: wrap;
  }

  .office-portrait {
    grid-template-columns: minmax(0, 1fr) 180px;
    max-height: 620px;
  }

  .trust-contour-grid,
  .apostille-registry-grid,
  .official-process-grid,
  .trust-document-grid,
  .statistics-method-grid,
  .statistics-kpi-band,
  .service-timing-grid,
  .service-decision-grid,
  .process-official-strip,
  .process-evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-visual-hero--open,
  .root-timeline-item,
  .pmzh-legal-grid {
    grid-template-columns: 1fr;
  }

  .company-advantage-metrics article {
    grid-template-columns: 1fr;
  }

  .company-advantage-feature figure {
    border-bottom: 1px solid var(--line-soft);
    border-right: 0;
    min-height: 240px;
  }

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

  .root-timeline-list::before {
    left: 23px;
  }

  .root-timeline-copy {
    padding: 28px;
  }

  .service-source-strip {
    grid-template-columns: 1fr;
  }

  .process-evidence-grid figure:first-child,
  .process-evidence-grid figure:nth-child(2) {
    grid-column: auto;
  }

  .company-office-band figure {
    max-height: 560px;
  }

  .statistics-action-card,
  .trust-check-aside,
  .status-slip {
    width: 100%;
  }

  .statistics-method-intro,
  .statistics-reports-gateway {
    grid-template-columns: 1fr;
  }

  .statistics-reports-action {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    padding: 22px 0 0;
  }
}

@media (max-width: 640px) {
  .trust-hero-background {
    object-position: 72% center;
  }

  .trust-hero-scrim,
  .contact-hero .trust-hero-scrim {
    background:
      linear-gradient(
        90deg,
        rgb(249 250 248 / 97%) 0%,
        rgb(249 250 248 / 90%) 68%,
        rgb(249 250 248 / 70%) 100%
      ),
      linear-gradient(180deg, rgb(255 255 255 / 12%), rgb(232 239 235 / 26%));
  }

  .home-hero-slider {
    height: 560px;
  }

  .home-hero-content {
    align-content: center;
    max-width: none;
    padding: 28px 18px 82px;
    text-align: left;
    width: 74%;
  }

  .home-hero-content h1,
  .home-hero-content h2 {
    font-size: 27px;
    line-height: 1.14;
  }

  .home-hero-content .lead {
    font-size: 15px;
    line-height: 1.45;
    margin-top: 14px;
  }

  .home-hero-meta {
    display: grid;
    font-size: 10px;
    gap: 5px;
    margin-bottom: 13px;
  }

  .home-hero-content .hero-actions {
    align-items: flex-start;
    display: grid;
    gap: 8px;
    justify-items: start;
    margin-top: 18px;
  }

  .home-hero-content .button {
    font-size: 12px;
    line-height: 1.25;
    min-height: 40px;
    padding: 10px 12px;
    text-align: left;
    width: auto;
  }

  .home-hero-shade {
    background: linear-gradient(
      90deg,
      rgb(251 250 247 / 99%) 0%,
      rgb(251 250 247 / 96%) 57%,
      rgb(251 250 247 / 70%) 75%,
      rgb(251 250 247 / 16%) 100%
    );
  }

  .home-hero-controls {
    bottom: 22px;
    left: 18px;
  }

  .site-header {
    min-height: 56px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 35px;
    width: 45px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-name,
  .brand-descriptor {
    overflow-wrap: anywhere;
    white-space: normal;
  }

  h1 {
    font-size: 25px;
    line-height: 1.15;
  }

  h2 {
    font-size: 22px;
  }

  .lead {
    font-size: 15px;
  }

  .hero,
  .home-hero,
  .service-landing,
  .service-decision-band,
  .seo-content-section,
  .service-body,
  .service-stats-teaser,
  .service-conversion-band,
  .trust-hero,
  .trust-layout,
  .stats-hero,
  .stats-dashboard,
  .about-hero,
  .useful-services,
  .source-band,
  .stats-dashboard,
  .methodology-band,
  .quality-band,
  .credential-wall,
  .proof-strip,
  .diagnostic-hero,
  .diagnostic-layout,
  .route-board,
  .route-switcher,
  .case-strip,
  .diagnostic-cta-band,
  .service-hero,
  .band,
  .faq-section,
  .proof-layout,
  .content-grid,
  .contact-grid,
  .request-layout,
  .page-hero,
  .price-table-section,
  .article-hero,
  .article-body {
    padding: 26px 18px;
  }

  .service-visual-hero {
    gap: 28px;
  }

  .service-visual-hero--open {
    min-height: 560px;
  }

  .service-hero-background {
    object-position: 72% center;
  }

  .service-hero-scrim {
    backdrop-filter: blur(1.5px);
    background: linear-gradient(
      180deg,
      rgb(249 250 248 / 98%) 0%,
      rgb(249 250 248 / 94%) 48%,
      rgb(249 250 248 / 72%) 70%,
      rgb(249 250 248 / 30%) 100%
    );
    -webkit-backdrop-filter: blur(1.5px);
  }

  .service-visual-hero .consult-panel {
    background: rgb(9 34 29 / 82%);
  }

  .service-visual-hero--grazhdanstvo-bolgarii .consult-panel-image {
    height: 300px;
  }

  .argument-strip,
  .origin-box,
  .visual-evidence,
  .service-signals,
  .diagnostic-form,
  .price-row,
  .doc-table,
  .requisites,
  .step-tabs {
    grid-template-columns: 1fr;
  }

  .seo-content-section {
    gap: 22px;
    grid-template-columns: minmax(0, 1fr);
  }

  .seo-content-section > header p,
  .seo-content-copy > p {
    font-size: 16px;
  }

  .seo-answer-list > div {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .argument-strip div,
  .argument-strip div + div {
    border-bottom: 1px solid var(--line-soft);
    border-right: 0;
    min-height: auto;
    padding: 13px 0;
  }

  .argument-strip div:last-child {
    border-bottom: 0;
  }

  .compact-services,
  .service-grid,
  .article-link-grid,
  .document-grid,
  .useful-grid,
  .source-grid,
  .trust-steps,
  .trust-doc-list,
  .methodology-grid,
  .credential-grid,
  .proof-strip,
  .stats-kpi-band,
  .route-grid,
  .service-timing-grid,
  .service-decision-grid,
  .service-stats-teaser dl,
  .process-columns {
    grid-template-columns: 1fr;
  }

  .stats-row-head,
  .stats-row-foot {
    align-items: start;
    display: grid;
    gap: 5px;
  }

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

  .credential-card img {
    max-height: 280px;
  }

  .credential-card div {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }

  .route-card,
  .process-columns article {
    min-height: auto;
  }

  .diagnostic-cta-band {
    align-items: start;
    display: grid;
  }

  .span-2 {
    grid-column: auto;
  }

  .price-row span {
    border-bottom: 1px solid var(--line-soft);
    border-right: 0;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    padding: 30px 18px;
  }

  .contact-hero,
  .company-hero,
  .trust-page-hero,
  .statistics-hero,
  .trust-contour,
  .office-map-section,
  .company-documents,
  .company-advantage-band,
  .company-office-band,
  .status-proof-section,
  .apostille-registry-section,
  .official-process-section,
  .process-evidence-section,
  .trust-check-section,
  .trust-documents-section,
  .statistics-dashboard,
  .statistics-method-section,
  .statistics-reports-gateway {
    gap: 28px;
    padding: 30px 18px;
  }

  .trust-contour-head,
  .company-section-intro,
  .office-map-head,
  .statistics-chart-panel .company-section-intro,
  .contact-final-band,
  .statistics-insight-band,
  .sofia-office-note,
  .process-intro {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .trust-contour-grid,
  .apostille-registry-grid,
  .official-process-grid,
  .trust-document-grid,
  .statistics-method-grid,
  .statistics-kpi-band,
  .process-official-strip,
  .process-evidence-grid,
  .contact-channel-band,
  .company-proof-band,
  .company-advantage-lead,
  .company-advantage-metrics,
  .company-advantage-grid,
  .trust-fact-band,
  .visit-proof-band {
    grid-template-columns: 1fr;
  }

  .company-advantage-feature figure {
    min-height: 210px;
  }

  .company-advantage-feature-copy {
    padding: 24px;
  }

  .company-advantage-grid li {
    min-height: 84px;
    padding: 16px 16px 16px 66px;
  }

  .company-advantage-grid li::before {
    font-size: 38px;
    left: 16px;
    top: 20px;
  }

  .legal-highlights {
    grid-template-columns: 1fr;
  }

  .legal-highlights article {
    border-bottom: 1px solid var(--line-soft);
    border-right: 0;
    min-height: auto;
    padding: 22px 18px;
  }

  .legal-highlights article:last-child {
    border-bottom: 0;
  }

  .legal-hero,
  .legal-layout,
  .legal-rights-band {
    gap: 28px;
    padding: 30px 18px;
  }

  .legal-version-card {
    padding: 24px 20px;
  }

  .legal-paper {
    padding: 0 20px 30px;
  }

  .legal-section {
    padding: 30px 0;
  }

  .legal-section h2 {
    font-size: 21px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 15px;
  }

  .legal-sources a {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .legal-rights-actions,
  .legal-rights-actions .button {
    width: 100%;
  }

  .trust-contour-card,
  .apostille-registry-grid > a,
  .official-process-grid article,
  .process-route-grid article,
  .statistics-method-grid article {
    min-height: auto;
  }

  .process-hero-card {
    grid-template-rows: 180px 1fr;
  }

  .process-official-strip article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 0;
    min-height: auto;
  }

  .process-official-strip article:last-child {
    border-bottom: 0;
  }

  .process-route-grid article {
    grid-template-columns: 1fr;
  }

  .process-card-index {
    align-items: center;
    border-bottom: 1px solid var(--line);
    border-right: 0;
    gap: 18px;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto;
    padding: 16px 20px;
  }

  .process-card-index small {
    align-self: center;
    justify-self: end;
    text-align: right;
  }

  .process-card-copy {
    padding: 20px;
  }

  .process-evidence-grid figure {
    grid-template-rows: 210px auto;
  }

  .office-portrait {
    grid-template-columns: 1fr;
    max-height: none;
    min-height: auto;
  }

  .office-portrait img {
    aspect-ratio: 4 / 5;
  }

  .office-portrait figcaption {
    min-height: 120px;
  }

  .contact-channel-band article,
  .company-proof-band article,
  .trust-fact-band article,
  .visit-proof-band article {
    border-bottom: 1px solid var(--line-soft);
    border-right: 0;
    min-height: auto;
    padding: 22px 18px;
  }

  .office-map-frame {
    height: 360px;
  }

  .contact-final-band {
    padding: 30px 18px;
  }

  .contact-final-band h2 {
    font-size: 24px;
  }

  .company-verification-card,
  .trust-page-action {
    padding: 26px 22px;
  }

  .company-verification-card p,
  .trust-page-action p {
    font-size: 20px;
  }

  .credential-preview img {
    height: 280px;
  }

  .root-search-timeline,
  .pmzh-legal-basis {
    padding: 32px 18px;
  }

  .root-timeline-list {
    gap: 18px;
    margin-top: 24px;
  }

  .root-timeline-list::before {
    display: none;
  }

  .root-timeline-item,
  .root-timeline-item figure {
    min-height: auto;
  }

  .root-timeline-item figure {
    aspect-ratio: 16 / 10;
  }

  .root-timeline-copy {
    gap: 14px;
    padding: 22px 18px 24px;
  }

  .root-timeline-meta span {
    flex-basis: 38px;
    height: 38px;
  }

  .root-timeline-copy h3,
  .pmzh-legal-grid h3 {
    font-size: 22px;
  }

  .pmzh-legal-grid article {
    min-height: auto;
    padding: 22px 18px;
  }

  .company-office-band figure {
    min-height: 420px;
  }

  .statistics-insight-band {
    gap: 18px;
    padding: 30px 18px;
  }

  .statistics-insight-number {
    font-size: 56px;
  }

  .statistics-insight-band h2 {
    font-size: 22px;
  }

  .statistics-kpi-band article {
    border-bottom: 1px solid var(--line-soft);
    border-right: 0;
    min-height: auto;
    padding: 24px 18px;
  }

  .service-conversion-band ul {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 12px 0 0;
  }

  .service-source-strip {
    padding: 18px;
  }

  .service-source-strip a {
    width: 100%;
  }

  .service-stats-teaser {
    gap: 18px;
  }

  .service-stats-teaser dl div {
    min-height: auto;
  }

  .statistics-year-row {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .statistics-year-label {
    align-items: baseline;
    display: flex;
    gap: 10px;
  }

  .statistics-decision-summary {
    gap: 6px;
  }

  .statistics-decision-summary span {
    font-size: 8px;
  }

  .statistics-decision-summary strong {
    font-size: 14px;
  }

  .statistics-decision-summary small {
    font-size: 9px;
  }

  .statistics-chart-panel,
  .statistics-action-card {
    padding: 22px 18px;
  }
}

/* Keep the editorial layout authoritative over legacy article rules above. */
.article-hero.editorial-hero {
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  padding: 56px;
}

.article-hero-visual img {
  border: 0;
  height: auto;
}

.article-reading-layout .article-copy {
  gap: 0;
}

.article-reading-layout .article-copy p {
  color: #333b39;
  font-size: 18px;
  line-height: 1.78;
  max-width: none;
}

@media (max-width: 980px) {
  .article-hero.editorial-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .article-hero.editorial-hero {
    gap: 26px;
    padding: 30px 18px;
  }

  .article-reading-layout .article-copy p {
    font-size: 17px;
    line-height: 1.7;
  }
}

@media (max-width: 390px) {
  .home-hero-slider {
    height: 600px;
  }

  .home-hero-content {
    width: 78%;
  }
}

/* Official document examples must remain fully visible in every placement. */
img[src*="bulgaria-identity-card"],
img[src*="bulgaria-citizenship-certificate"],
img[src*="bulgaria-passport-cover"] {
  background: #f7f9f7;
  object-fit: contain;
  object-position: center;
}

.citizenship-document img[src*="bulgaria-passport-cover"] {
  height: 420px;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-viewport {
    scroll-behavior: auto;
  }
}

.diagnostic-consent-fieldset {
  border: 1px solid var(--line-soft);
  margin: 0;
  min-width: 0;
  padding: 14px 16px 16px;
}

.diagnostic-consent-fieldset legend {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  padding: 0 6px;
}

.diagnostic-consent-disclosure {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
  padding: 0;
}

.diagnostic-consent-fieldset .checkbox-line {
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.diagnostic-consent-fieldset .checkbox-line input {
  margin-top: 2px;
}

.diagnostic-form .errorlist {
  color: var(--danger);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.legal-dialog-prose {
  background: var(--white);
  color: var(--ink);
  display: grid;
  gap: 16px;
  line-height: 1.6;
  padding: 22px;
}

.legal-dialog-prose h2,
.legal-dialog-prose h3,
.legal-dialog-prose p,
.legal-dialog-prose ul,
.legal-dialog-prose ol {
  margin: 0;
}

.legal-dialog-prose h2 {
  font-size: 22px;
}

.legal-dialog-prose h3 {
  font-size: 18px;
}

.legal-dialog-prose ul,
.legal-dialog-prose ol {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-dialog-prose .legal-note {
  background: var(--green-soft);
  border-left: 3px solid var(--bulgaria-green);
  color: var(--ink);
  padding: 12px 14px;
}
