:root {
  --ink: #18181b;
  --paper: hsl(60 9% 98%);
  --paper-strong: #ffffff;
  --muted: hsl(240 4% 46%);
  --line: hsl(240 6% 90%);
  --forest: #1b6f63;
  --surface: hsl(60 5% 94%);
  --copper: hsl(18 95% 56%);
  --rose: hsl(345 90% 55%);
  --violet: hsl(280 75% 60%);
  --cyan: hsl(195 95% 55%);
  --hero-gradient: linear-gradient(135deg, var(--copper) 0%, var(--rose) 48%, var(--violet) 100%);
  --public-hero-image: url("assets/hero-services.jpg");
  --public-hero-min: clamp(620px, 88svh, 900px);
  --public-hero-mobile-min: clamp(560px, 72svh, 600px);
  --white: #ffffff;
  --header-height: 76px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--header-height) + 18px);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
  width: 100%;
}

main {
  overflow-x: hidden;
}

body::selection {
  background: var(--copper);
  color: var(--white);
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgb(16 21 19 / 92%);
  box-shadow: 0 1px 0 rgb(255 255 255 / 10%);
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 5vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition:
    background 180ms ease,
    backdrop-filter 180ms ease,
    box-shadow 180ms ease;
  z-index: 10;
}

.site-header::before {
  background: linear-gradient(180deg, rgb(16 21 19 / 72%), rgb(16 21 19 / 0%));
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 180ms ease;
  z-index: -1;
}

.site-header.is-scrolled {
  backdrop-filter: blur(18px);
  background: rgb(16 21 19 / 92%);
  box-shadow: 0 1px 0 rgb(255 255 255 / 10%);
}

.site-header.is-scrolled::before {
  opacity: 0;
}

.brand {
  color: var(--white);
  font-size: 1rem;
  font-weight: 750;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(14px, 3vw, 32px);
}

.nav-toggle {
  align-items: center;
  background: rgb(255 255 255 / 10%);
  border: 1px solid rgb(255 255 255 / 18%);
  color: var(--white);
  display: none;
  font-size: 0.78rem;
  font-weight: 850;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  text-transform: uppercase;
}

.nav-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  width: 17px;
}

.nav-links a {
  color: rgb(255 255 255 / 86%);
  font-size: 0.92rem;
  font-weight: 650;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  transform: translateY(-1px);
}

.hero {
  background: #151716;
  isolation: isolate;
  min-height: var(--public-hero-min);
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-media {
  background-image: var(--public-hero-image), var(--hero-gradient);
  background-position: center;
  background-size: cover;
  filter: saturate(0.94) contrast(1.05);
  transform: scale(1.03);
  z-index: -2;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgb(9 13 11 / 84%) 0%, rgb(9 13 11 / 58%) 43%, rgb(9 13 11 / 20%) 100%),
    linear-gradient(180deg, rgb(9 13 11 / 8%) 0%, rgb(9 13 11 / 68%) 100%);
  z-index: -1;
}

.hero-content {
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--public-hero-min);
  padding: calc(var(--header-height) + 40px) clamp(20px, 7vw, 88px) 72px;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(4rem, 14vw, 10.5rem);
  line-height: 0.88;
  margin: 0;
  max-width: 7ch;
  overflow-wrap: break-word;
}

.hero-lede {
  color: rgb(255 255 255 / 88%);
  font-size: clamp(1.14rem, 2.4vw, 1.45rem);
  margin: 28px 0 0;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.96rem;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  white-space: nowrap;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--hero-gradient);
  box-shadow: 0 16px 34px rgb(247 89 54 / 26%);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  filter: saturate(1.08) brightness(0.96);
}

.button-secondary {
  border-color: rgb(255 255 255 / 42%);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgb(255 255 255 / 12%);
  border-color: rgb(255 255 255 / 70%);
}

.section {
  margin-inline: auto;
  max-width: var(--max-width);
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 40px);
}

.intro-grid {
  align-items: start;
  display: grid;
  gap: clamp(28px, 8vw, 96px);
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

h2,
h3,
p {
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.98;
  margin: 0;
}

h3 {
  font-size: clamp(1.18rem, 2.2vw, 1.65rem);
  line-height: 1.08;
  margin: 0;
}

.intro p,
.proof-copy p,
.terms-copy p,
.contact p {
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
  margin: 0;
}

.section-heading {
  margin-bottom: clamp(34px, 6vw, 62px);
  max-width: 860px;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  margin: 16px 0 0;
  max-width: 680px;
}

.coverage {
  max-width: none;
  padding-inline: clamp(20px, 6vw, 88px);
}

.coverage-heading {
  max-width: 920px;
}

.coverage-heading p:last-child {
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.18rem);
  margin: 22px 0 0;
  max-width: 680px;
}

.coverage-grid {
  align-items: stretch;
  display: grid;
  gap: clamp(18px, 4vw, 34px);
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  margin-top: clamp(34px, 6vw, 60px);
}

.map-panel {
  align-items: center;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  display: flex;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
  padding: clamp(18px, 4vw, 34px);
}

.slovakia-map {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100%;
  width: 100%;
}

.slovakia-map svg {
  display: block;
  height: auto;
  max-height: 360px;
  max-width: 100%;
  width: 100%;
}

.map-region {
  cursor: pointer;
  outline: none;
  transition:
    fill 180ms ease,
    stroke 180ms ease,
    transform 180ms ease;
  vector-effect: non-scaling-stroke;
}

.map-region:hover,
.map-region.is-active {
  stroke: var(--ink);
  stroke-width: 2.75;
}

.map-label,
.map-count {
  fill: var(--ink);
  font-weight: 900;
  pointer-events: none;
}

.map-label {
  font-size: 11px;
}

.map-count {
  fill: rgb(16 21 19 / 68%);
  font-size: 9px;
}

.coverage-detail {
  background:
    radial-gradient(circle at 18% 0%, rgb(247 89 54 / 20%), transparent 34%),
    linear-gradient(140deg, var(--ink), #241729 70%, #301f42);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  padding: clamp(24px, 4vw, 36px);
}

.coverage-label {
  color: rgb(255 255 255 / 58%);
  font-size: 0.74rem;
  font-weight: 900;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.coverage-detail h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0;
}

.coverage-detail p:not(.coverage-label) {
  color: rgb(255 255 255 / 72%);
  font-size: 1.04rem;
  margin: 14px 0 0;
}

.coverage-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.coverage-link {
  align-self: flex-start;
  margin-top: 28px;
}

.coverage-service {
  align-items: center;
  border: 1px solid rgb(255 255 255 / 18%);
  color: rgb(255 255 255 / 84%);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 7px;
  min-height: 32px;
  padding: 6px 10px;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

a.coverage-service::after {
  content: "›";
  font-size: 1rem;
  line-height: 1;
  opacity: 0.7;
  transform: translateY(-1px);
}

a.coverage-service:hover,
a.coverage-service:focus-visible {
  background: rgb(255 255 255 / 14%);
  border-color: rgb(255 255 255 / 58%);
  color: var(--white);
}

.coverage-empty {
  color: rgb(255 255 255 / 66%);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
  max-width: 30ch;
}

.region-strip {
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  margin-top: 22px;
}

.region-button {
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--ink);
  min-height: 98px;
  padding: 14px;
  text-align: left;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.region-button:last-child {
  border-right: 0;
}

.region-button:hover,
.region-button.is-active {
  background: var(--hero-gradient);
  color: var(--white);
}

.region-button span,
.region-button strong {
  display: block;
}

.region-button span {
  font-size: 0.72rem;
  font-weight: 900;
}

.region-button strong {
  font-size: 0.9rem;
  line-height: 1.1;
  margin-top: 8px;
}

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

.service-row {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(22px, 5vw, 58px);
  grid-template-columns: 72px minmax(0, 1fr);
  padding: clamp(24px, 4vw, 36px) 0;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.service-row:hover,
.service-row:focus-visible {
  border-color: var(--forest);
  outline: 0;
  transform: translateX(6px);
}

.service-index {
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-row p,
.timeline-step p,
.audience-item p {
  color: var(--muted);
  margin: 10px 0 0;
  max-width: 720px;
}

.proof {
  align-items: stretch;
  display: grid;
  gap: clamp(28px, 6vw, 74px);
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1fr);
  max-width: none;
  padding-inline: clamp(20px, 5vw, 72px);
}

.proof-image {
  aspect-ratio: 4 / 5;
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1300&q=82");
  background-position: center;
  background-size: cover;
  min-height: 440px;
}

.proof-copy {
  align-self: center;
  max-width: 720px;
}

.proof-copy p {
  margin-top: 26px;
}

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

.timeline-step {
  border-left: 1px solid var(--line);
  min-height: 300px;
  padding: 0 clamp(18px, 3vw, 30px) 30px;
}

.timeline-step:last-child {
  border-right: 1px solid var(--line);
}

.timeline-step span {
  align-items: center;
  background: var(--forest);
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-bottom: 34px;
  width: 42px;
}

.terms {
  align-items: start;
  border-block: 1px solid var(--line);
  display: grid;
  gap: clamp(26px, 8vw, 92px);
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.8fr);
}

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

.audience-item {
  background: var(--paper-strong);
  min-height: 230px;
  padding: clamp(24px, 4vw, 34px);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.audience-item:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.contact {
  max-width: none;
  padding: 0;
}

.contact-inner {
  background:
    linear-gradient(120deg, rgb(24 24 27 / 92%), rgb(24 24 27 / 72)),
    var(--hero-gradient);
  color: var(--white);
  margin-inline: auto;
  padding: clamp(76px, 12vw, 132px) clamp(20px, 7vw, 88px);
}

.contact-grid {
  align-items: start;
  display: grid;
  gap: clamp(34px, 8vw, 92px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
}

.contact h2 {
  max-width: 850px;
}

.contact p {
  color: rgb(255 255 255 / 74%);
  margin: 24px 0 34px;
  max-width: 660px;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-card,
.contact-note {
  background: var(--white);
  color: var(--ink);
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 22px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  box-shadow: 0 20px 44px rgb(24 24 27 / 18%);
  transform: translateY(-3px);
}

.contact-card span,
.contact-note span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong,
.contact-note strong {
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.taxonomy-main {
  padding-top: 0;
}

.taxonomy-hero {
  background: #151716;
  color: var(--white);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  justify-content: center;
  min-height: var(--public-hero-min);
  overflow: hidden;
  padding: calc(var(--header-height) + 44px) clamp(20px, 7vw, 88px) 80px;
  position: relative;
}

.taxonomy-hero::before,
.taxonomy-hero::after {
  content: "";
  inset: 0;
  position: absolute;
}

.taxonomy-hero::before {
  background-image: var(--public-hero-image), var(--hero-gradient);
  background-position: center;
  background-size: cover;
  filter: saturate(0.9) contrast(1.05);
  transform: scale(1.02);
  z-index: -2;
}

.taxonomy-hero::after {
  background:
    linear-gradient(100deg, rgb(24 24 27 / 90%) 0%, rgb(24 24 27 / 68%) 54%, rgb(24 24 27 / 26%) 100%),
    linear-gradient(135deg, hsl(18 95% 56% / 28%), hsl(280 75% 60% / 28%));
  z-index: -1;
}

.taxonomy-hero-inner {
  max-width: 980px;
}

.taxonomy-hero h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
  margin: 0;
  max-width: 980px;
  overflow-wrap: break-word;
}

.taxonomy-hero p:not(.section-kicker) {
  color: rgb(255 255 255 / 78%);
  font-size: clamp(1.06rem, 2vw, 1.3rem);
  margin: 26px 0 0;
  max-width: 760px;
}

.partner-main {
  min-height: 100svh;
}

.partner-hero {
  background: #151716;
  color: var(--white);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  justify-content: center;
  min-height: var(--public-hero-min);
  overflow: hidden;
  padding: calc(var(--header-height) + 44px) clamp(20px, 7vw, 88px) 80px;
  position: relative;
}

.partner-hero::before,
.partner-hero::after {
  content: "";
  inset: 0;
  position: absolute;
}

.partner-hero::before {
  background-image: var(--public-hero-image), var(--hero-gradient);
  background-position: center;
  background-size: cover;
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.02);
  z-index: -2;
}

.partner-hero::after {
  background:
    linear-gradient(100deg, rgb(24 24 27 / 92%) 0%, rgb(24 24 27 / 70%) 54%, rgb(24 24 27 / 24%) 100%),
    linear-gradient(135deg, hsl(18 95% 56% / 30%), hsl(280 75% 60% / 24%));
  z-index: -1;
}

.partner-hero-inner {
  max-width: 1040px;
}

.partner-hero h1 {
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.9;
  margin: 0;
  max-width: 1050px;
  overflow-wrap: break-word;
}

.partner-hero p:not(.section-kicker) {
  color: rgb(255 255 255 / 82%);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
  margin: 28px 0 0;
  max-width: 820px;
}

.partner-principle,
.partner-fit,
.partner-commission {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 8vw, 92px);
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.8fr);
}

.partner-principle p,
.partner-commission p,
.partner-form-heading p {
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
  margin: 0;
}

.partner-value-list {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-value {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 270px;
  padding: clamp(22px, 4vw, 32px);
}

.partner-value:nth-child(4n) {
  border-right: 0;
}

.partner-value span {
  color: var(--copper);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 28px;
}

.partner-value p {
  color: var(--muted);
  margin: 12px 0 0;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-tags span {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 820;
  min-height: 40px;
  padding: 9px 12px;
}

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

.partner-commission {
  background:
    linear-gradient(120deg, rgb(24 24 27 / 92%), rgb(24 24 27 / 76%)),
    var(--hero-gradient);
  color: var(--white);
  max-width: none;
  padding-inline: clamp(20px, 7vw, 88px);
}

.partner-commission p {
  color: rgb(255 255 255 / 78%);
}

.partner-rules-list .service-row:hover {
  border-color: var(--copper);
}

.partner-form-section {
  align-items: start;
  display: grid;
  gap: clamp(34px, 7vw, 82px);
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
}

.partner-form-heading {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.partner-form {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  display: grid;
  gap: 22px;
  padding: clamp(20px, 4vw, 34px);
}

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

.partner-form label {
  color: var(--muted);
  display: grid;
  font-size: 0.76rem;
  font-weight: 900;
  gap: 7px;
  text-transform: uppercase;
}

.partner-form .wide {
  grid-column: 1 / -1;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
  background: #fffdf8;
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  outline: 0;
  padding: 10px 11px;
  text-transform: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
  width: 100%;
}

.partner-form textarea {
  min-height: 104px;
  resize: vertical;
}

.partner-form input:focus,
.partner-form select:focus,
.partner-form textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgb(247 89 54 / 12%);
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.taxonomy-section {
  margin-inline: auto;
  max-width: var(--max-width);
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 40px);
}

.breadcrumbs {
  margin-inline: auto;
  max-width: var(--max-width);
  padding: calc(var(--header-height) + 18px) clamp(20px, 5vw, 40px) 0;
}

.breadcrumbs + .taxonomy-hero {
  padding-top: clamp(54px, 8vw, 92px);
}

.breadcrumbs ol {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  list-style: none;
  margin: 0;
  overflow-x: auto;
  padding: 0 0 18px;
  scrollbar-width: none;
}

.breadcrumbs ol::-webkit-scrollbar {
  display: none;
}

.breadcrumbs li {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.breadcrumbs li + li::before {
  color: rgb(24 24 27 / 32%);
  content: "/";
  margin: 0 10px;
}

.breadcrumbs a {
  color: var(--muted);
  transition: color 180ms ease;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--copper);
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
}

.services-coverage {
  border-bottom: 1px solid var(--line);
}

.services-region-sections {
  display: grid;
  gap: clamp(28px, 5vw, 52px);
  margin-top: clamp(38px, 6vw, 72px);
}

.services-region-section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(18px, 4vw, 34px);
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  padding-top: clamp(24px, 4vw, 38px);
}

.services-region-section h3 {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.taxonomy-cta {
  align-items: center;
  background:
    linear-gradient(120deg, rgb(24 24 27 / 92%), rgb(24 24 27 / 76%)),
    var(--hero-gradient);
  color: var(--white);
  display: grid;
  gap: clamp(24px, 5vw, 56px);
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(64px, 9vw, 108px) clamp(20px, 7vw, 88px);
}

.taxonomy-cta h2 {
  max-width: 900px;
}

.taxonomy-cta p:not(.section-kicker) {
  color: rgb(255 255 255 / 76%);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  margin: 22px 0 0;
  max-width: 660px;
}

.taxonomy-detail {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  padding-bottom: clamp(42px, 7vw, 76px);
}

.taxonomy-steps {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.taxonomy-steps article {
  border-right: 1px solid var(--line);
  min-height: 230px;
  padding: 22px 20px 24px;
}

.taxonomy-steps article:last-child {
  border-right: 0;
}

.taxonomy-steps span {
  color: var(--copper);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.taxonomy-steps p {
  color: var(--muted);
  margin: 10px 0 0;
}

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

.taxonomy-detail + .taxonomy-list {
  margin-top: clamp(34px, 6vw, 62px);
}

.taxonomy-empty-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  margin: 0;
  max-width: 760px;
  padding-top: 22px;
}

.service-scope {
  border-top: 1px solid var(--line);
  margin-top: clamp(34px, 6vw, 66px);
  padding-top: clamp(34px, 6vw, 62px);
}

.service-scope-standalone {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.service-scope-heading {
  align-items: end;
  display: grid;
  gap: clamp(22px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  margin-bottom: clamp(24px, 5vw, 44px);
}

.service-scope-heading h2 {
  grid-column: 1;
}

.service-scope-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  margin: 0;
}

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

.service-chip {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  display: grid;
  gap: 14px;
  min-height: 176px;
  padding: clamp(18px, 3vw, 26px);
}

.service-chip strong {
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.05;
}

.service-chip small {
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-chip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.local-grid {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(34px, 6vw, 62px);
}

.local-grid article {
  background: var(--paper-strong);
  min-height: 240px;
  padding: clamp(22px, 4vw, 34px);
}

.local-grid p:not(.section-kicker),
.faq-list p {
  color: var(--muted);
  margin: 12px 0 0;
}

.taxonomy-row {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(16px, 3vw, 36px);
  grid-template-columns: 64px minmax(180px, 0.5fr) minmax(0, 1fr);
  padding: 24px 0;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.taxonomy-row:hover,
.taxonomy-row:focus-visible {
  border-color: var(--copper);
  transform: translateX(6px);
}

.taxonomy-row span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
}

.taxonomy-row strong {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.05;
}

.taxonomy-row small {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.48;
}

.category-region-row {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(22px, 5vw, 56px);
  grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.18fr);
  padding: clamp(24px, 4vw, 34px) 0;
}

.category-region-main {
  align-items: start;
  display: grid;
  gap: 12px clamp(16px, 3vw, 28px);
  grid-template-columns: 64px minmax(0, 1fr);
  transition: transform 180ms ease;
}

.category-region-main:hover,
.category-region-main:focus-visible {
  transform: translateX(6px);
}

.category-region-main span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
}

.category-region-main strong {
  font-size: clamp(1.18rem, 2.1vw, 1.58rem);
  line-height: 1.05;
}

.category-region-main small {
  color: var(--muted);
  font-size: 0.95rem;
  grid-column: 2;
  line-height: 1.48;
}

.category-region-links {
  align-self: start;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-region-links a {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 5px;
  min-height: 74px;
  padding: 13px 14px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.category-region-links a:nth-child(4n) {
  border-right: 0;
}

.category-region-links a:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.category-region-links a:hover,
.category-region-links a:focus-visible {
  background: var(--hero-gradient);
  color: var(--white);
}

.category-region-links span {
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 900;
}

.category-region-links a:hover span,
.category-region-links a:focus-visible span {
  color: rgb(255 255 255 / 74%);
}

.category-region-links strong {
  font-size: 0.8rem;
  line-height: 1.18;
}

.taxonomy-regions {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(24px, 6vw, 74px);
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
}

.location-list {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: clamp(26px, 5vw, 46px);
}

.location-list a {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 18px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.location-list a:nth-child(4n) {
  border-right: 0;
}

.location-list a:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.location-list a:hover,
.location-list a:focus-visible {
  background: var(--hero-gradient);
  color: var(--white);
}

.location-list span {
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 900;
}

.location-list a:hover span,
.location-list a:focus-visible span,
.location-list a:hover small,
.location-list a:focus-visible small {
  color: rgb(255 255 255 / 74%);
}

.location-list strong {
  font-size: 1rem;
  line-height: 1.08;
}

.location-list small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.36;
}

.compact-list .taxonomy-row {
  padding-block: 18px;
}

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

.faq-list article {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

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

.taxonomy-region-grid span {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 820;
  min-height: 54px;
  padding: 14px 0;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: rgb(255 255 255 / 66%);
  display: flex;
  font-size: 0.92rem;
  justify-content: space-between;
  padding: 26px clamp(20px, 7vw, 88px);
}

.site-footer a {
  color: var(--white);
  font-weight: 750;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .eyebrow,
.hero h1,
.hero-lede,
.hero-actions,
.partner-hero .section-kicker,
.partner-hero h1,
.partner-hero p,
.partner-hero .hero-actions {
  animation: hero-rise 720ms ease both;
}

.hero h1 {
  animation-delay: 90ms;
}

.partner-hero h1 {
  animation-delay: 90ms;
}

.hero-lede {
  animation-delay: 180ms;
}

.partner-hero p {
  animation-delay: 180ms;
}

.hero-actions {
  animation-delay: 270ms;
}

.partner-hero .hero-actions {
  animation-delay: 270ms;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 900px) {
  .site-header {
    height: 68px;
    padding-inline: 20px;
  }

  .nav-links {
    gap: 16px;
    max-width: calc(100vw - 150px);
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .hero-content {
    padding-top: 106px;
  }

  .intro-grid,
  .proof,
  .coverage-grid,
  .contact-grid,
  .local-grid,
  .category-region-row,
  .taxonomy-detail,
  .taxonomy-regions,
  .services-region-section,
  .taxonomy-cta,
  .service-scope-heading,
  .partner-principle,
  .partner-fit,
  .partner-commission,
  .partner-form-section,
  .terms {
    grid-template-columns: 1fr;
  }

  .partner-form-heading {
    position: static;
  }

  .proof {
    padding-inline: 0;
  }

  .proof-copy {
    padding-inline: clamp(20px, 5vw, 40px);
  }

  .proof-image {
    aspect-ratio: 16 / 10;
    min-height: 320px;
  }

  .timeline,
  .taxonomy-steps,
  .audience-grid,
  .service-chip-list,
  .partner-value-list,
  .partner-steps,
  .region-strip {
    grid-template-columns: 1fr;
  }

  .partner-value,
  .partner-value:nth-child(4n) {
    border-right: 0;
    min-height: auto;
  }

  .coverage-detail {
    min-height: auto;
  }

  .map-panel {
    min-height: 0;
  }

  .slovakia-map svg {
    max-height: 260px;
  }

  .region-button {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 76px;
  }

  .region-button:last-child {
    border-bottom: 0;
  }

  .timeline-step,
  .timeline-step:last-child {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    min-height: auto;
    padding: 26px 0;
  }

  .taxonomy-steps article,
  .taxonomy-steps article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: auto;
  }

  .taxonomy-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .taxonomy-row small {
    grid-column: 2;
  }

  .category-region-main {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .category-region-main small {
    grid-column: 2;
  }

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

  .category-region-links a:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .category-region-links a:nth-child(2n) {
    border-right: 0;
  }

  .category-region-links a:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .category-region-links a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .location-list a:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .location-list a:nth-child(2n) {
    border-right: 0;
  }

  .location-list a:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .location-list a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    height: var(--header-height);
    padding-block: 0;
    padding-inline: 16px;
  }

  .brand {
    font-size: 0.95rem;
    width: auto;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin-left: auto;
    min-height: 44px;
    padding: 0;
    width: 44px;
    border-radius: 999px;
    font-size: 0;
    justify-content: center;
  }

  .nav-toggle span {
    border-radius: 999px;
    position: static;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .nav-toggle span:nth-child(1) {
    top: auto;
  }

  .nav-toggle span:nth-child(2) {
    top: auto;
  }

  .nav-toggle span:nth-child(3) {
    top: auto;
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    background: rgb(16 21 19 / 98%);
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 18px;
    box-shadow: 0 22px 48px rgb(0 0 0 / 28%);
    display: grid;
    gap: 0;
    left: 12px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: calc(100% + 8px);
    transition:
      max-height 180ms ease,
      opacity 180ms ease,
      padding 180ms ease;
    width: auto;
  }

  .site-header.is-menu-open .nav-links {
    max-height: 280px;
    opacity: 1;
    padding-block: 6px;
    pointer-events: auto;
  }

  .nav-links a {
    align-items: center;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    display: flex;
    font-size: 0.95rem;
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 16px;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero-media {
    transform: none;
  }

  .hero {
    min-height: var(--public-hero-mobile-min);
  }

  .hero-content {
    min-height: var(--public-hero-mobile-min);
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .hero-lede {
    font-size: 1.05rem;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 360px);
  }

  .button {
    width: 100%;
  }

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

  .taxonomy-hero {
    min-height: var(--public-hero-mobile-min);
    padding: calc(var(--header-height) + 34px) 18px 52px;
  }

  .taxonomy-hero h1 {
    font-size: clamp(2.15rem, 9vw, 3rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .taxonomy-hero p:not(.section-kicker) {
    font-size: 1rem;
    margin-top: 20px;
  }

  .taxonomy-hero .hero-actions {
    margin-top: 26px;
  }

  .partner-hero {
    min-height: var(--public-hero-mobile-min);
    padding: calc(var(--header-height) + 34px) 18px 52px;
  }

  .partner-hero h1 {
    font-size: clamp(2.15rem, 9vw, 3rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .partner-hero p:not(.section-kicker) {
    font-size: 0.98rem;
    margin-top: 20px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    overflow-wrap: anywhere;
  }

  .proof > *,
  .proof-copy {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .taxonomy-row {
    grid-template-columns: 1fr;
  }

  .taxonomy-row small {
    grid-column: auto;
  }

  .category-region-main {
    grid-template-columns: 1fr;
  }

  .category-region-main small {
    grid-column: auto;
  }

  .category-region-links {
    grid-template-columns: 1fr;
  }

  .category-region-links a,
  .category-region-links a:nth-child(2n),
  .category-region-links a:nth-child(4n) {
    border-right: 0;
  }

  .category-region-links a:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .category-region-links a:last-child {
    border-bottom: 0;
  }

  .taxonomy-region-grid {
    grid-template-columns: 1fr;
  }

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

  .location-list {
    grid-template-columns: 1fr;
  }

  .location-list a,
  .location-list a:nth-child(2n),
  .location-list a:nth-child(4n) {
    border-right: 0;
  }

  .location-list a:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .location-list a:last-child {
    border-bottom: 0;
  }

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