/* ============================================================
   BobRent — shared stylesheet
   ============================================================ */

/* ── Custom properties ────────────────────────────────────── */
:root {
  --bg: #ffffff;
  --surface: #f8fafc;
  --card: #ffffff;
  --navy: #0f172a;
  --navy-2: #1e293b;
  --navy-3: #334155;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-sub: #94a3b8;
  --border: #e2e8f0;
  --border-2: #f1f5f9;
  --accent: #e7a800;
  --accent-bg: #fef3c7;
  --accent-text: #b45309;
  --img-bg: #f1f5f9;

  /* Text on dark/navy backgrounds */
  --on-dark:       #f8fafc;
  --on-dark-body:  #bbbbbb;
  --on-dark-muted: #dddddd;
  --on-dark-dim:   #64748b;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f172a;
    --surface: #1e293b;
    --card: #1e293b;
    --navy: #020817;
    --navy-2: #0f172a;
    --navy-3: #1e293b;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --text-sub: #64748b;
    --border: #334155;
    --border-2: #1e293b;
    --accent-bg: rgba(217, 119, 6, 0.15);
    --accent-text: #e7a800;
    --img-bg: #3d4f63;
  }
}

/* ── Reset ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.seo-text a {
  color: var(--accent-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.seo-text a:hover {
  color: var(--accent);
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  padding: 0;
}

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Scroll offset for sticky header ─────────────────────── */
/* topbar ~32px + header 64px = 96px desktop, 64px mobile (no topbar) */
section[id], div[id].cat-filter {
  scroll-margin-top: 96px;
}
@media (max-width: 767px) {
  section[id], div[id].cat-filter {
    scroll-margin-top: 64px;
  }
}

/* ── Visibility helpers ───────────────────────────────────── */
.dn {
  display: flex;
}
.mo {
  display: none !important;
}
.tb {
  display: block;
}

@media (max-width: 767px) {
  .dn {
    display: none !important;
  }
  .mo {
    display: flex !important;
  }
  .tb {
    display: none !important;
  }
}

/* ── Mobile nav overlay ───────────────────────────────────── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 200;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 272px;
  height: 100vh;
  background: var(--card);
  z-index: 201;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open {
  display: flex;
}
.mobile-overlay.open {
  display: block;
}

.mobile-nav__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-2);
}
.mobile-nav__logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.mobile-nav__close {
  padding: 6px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  padding: 4px 20px;
  flex: 1;
}
.mobile-nav__link {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--surface);
}
.mobile-nav__link:last-child {
  border-bottom: none;
}
.mobile-nav__foot {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border-2);
}
.mobile-nav__mascot {
  display: flex;
  justify-content: center;
  padding: 12px 25px;
}

/* ── Header ───────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}
.topbar {
  background: var(--navy);
  padding: 6px 0;
}
.topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar__info {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--on-dark-muted);
  align-items: center;
}
.topbar__sep {
  color: var(--on-dark-dim);
}
.topbar__link {
  color: var(--on-dark-muted);
}
.topbar__badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}
.header__nav {
  gap: 22px;
  align-items: center;
}
.header__nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
}
.header__nav a:hover {
  color: var(--text);
}
.header__nav a.active {
  font-weight: 600;
  color: var(--accent);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ── Logo ─────────────────────────────────────────────────── */
.logo {
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  flex-shrink: 0;
  line-height: 1;
}
.logo--lg {
  font-size: 40px;
}
.logo__accent {
  color: var(--accent);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover {
  opacity: 0.9;
}
.btn--navy {
  background: var(--navy);
  color: #fff;
}
.btn--outline {
  background: transparent;
  border: 1px solid var(--navy-3);
  color: var(--text-muted);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--lg {
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 700;
}
.btn--sm {
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 3px;
}
.btn--hero-outline {
  background: transparent;
  border: 1px solid var(--navy-3);
  color: var(--on-dark-body);
}
.btn--hero-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Section helpers ──────────────────────────────────────── */
.section {
  padding: 64px 0;
}
.section--surface {
  background: var(--surface);
}
.section--card {
  background: var(--card);
}
.section--navy {
  background: var(--navy);
}
.section--border-top {
  border-top: 1px solid var(--border);
}
.section--border-bottom {
  border-bottom: 1px solid var(--border);
}

.section__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section__title {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.section__title--light {
  color: var(--on-dark);
}
.section__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 10px;
}
.section__head {
  margin-bottom: 48px;
}
.section__head--center {
  text-align: center;
}
.section__head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.section__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 48px 0;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.hero__text {
  flex: 2;
  min-width: 280px;
}
.hero__title {
  font-size: clamp(1.875rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--on-dark);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  max-width: 720px;
}
.hero__title .accent {
  color: var(--accent);
}
.hero__desc {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--on-dark-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--navy-3);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--on-dark-body);
}
.hero__sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--on-dark-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero__img {
  flex: 1;
  min-width: 180px;
  max-width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .hero__img {
    display: none !important;
  }
}

/* Logo "ent" text is always light on dark-background blocks */
.footer .logo {
  color: var(--on-dark);
}

/* ── Stats strip ──────────────────────────────────────────── */
.stats {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.stats__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.stats__item {
  padding: 22px 12px;
  text-align: center;
  flex: 1;
}
.stats__item + .stats__item {
  border-left: 1px solid var(--border);
}
.stats__num {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1;
}
.stats__num--accent {
  color: var(--accent);
}
.stats__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 600px) {
  .stats__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .stats__item {
    border-left: none !important;
  }
  .stats__item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .stats__item:nth-child(3),
  .stats__item:nth-child(4) {
    border-top: 1px solid var(--border);
  }
}

/* ── Tool cards grid ──────────────────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .tools-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Tool card ────────────────────────────────────────────── */
.tool-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.tool-card:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 12px rgba(217,119,6,.12);
}
.tool-card__link {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tool-card__img {
  background: var(--img-bg);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tool-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tool-card__body {
  padding: 16px 16px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tool-card__brand {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.08em;
}
.tool-card__name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.tool-card__specs {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.tool-card__note {
  font-size: 11px;
  color: var(--accent);
  margin-top: 4px;
  font-weight: 600;
}
.tool-card__foot {
  padding: 10px 16px 14px;
  border-top: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tool-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.tool-card__price-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}
.tool-card__price-unit {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-sub);
}
.tool-card .btn--navy {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.tool-card .btn--navy:hover {
  background: var(--accent);
  color: #fff;
}

/* ── Why BobRent grid ────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-card__icon {
  width: 44px;
  height: 44px;
  background: var(--accent-bg);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.why-card__text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── B2B section ──────────────────────────────────────────── */
.b2b {
  padding: 64px 0;
  background: var(--navy);
}
.b2b__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 64px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.b2b__content {
  max-width: 520px;
}
.b2b__title {
  font-size: clamp(1.875rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--on-dark);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.b2b__desc {
  font-size: 14px;
  color: var(--on-dark-body);
  line-height: 1.8;
  margin-bottom: 28px;
}
.b2b__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.b2b__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--on-dark-body);
}
.b2b__stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.b2b__stat {
  background: var(--navy-2);
  border: 1px solid var(--navy-3);
  border-radius: 4px;
  padding: 24px 36px;
  text-align: center;
}
.b2b__stat--accent {
  background: var(--accent);
  border-color: var(--accent);
}
.b2b__stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1.5px;
  line-height: 1;
}
.b2b__stat-label {
  font-size: 12px;
  color: var(--on-dark-muted);
  margin-top: 6px;
}
.b2b__stat--accent .b2b__stat-num {
  font-size: 16px;
  color: #fff;
  letter-spacing: 0;
}
.b2b__stat--accent .b2b__stat-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}

@media (max-width: 767px) {
  .b2b__stats {
    flex-direction: row;
    width: 100%;
  }
  .b2b__stat {
    flex: 1;
    padding: 16px 12px;
  }
  .b2b__stat-num {
    font-size: 26px;
  }
}

/* ── Pricing table ────────────────────────────────────────── */
.pricing-wrap {
  max-width: 740px;
  margin: 0 auto;
  overflow-x: auto;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pricing-table thead tr {
  background: var(--navy);
}
.pricing-table th {
  padding: 14px 20px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
}
.pricing-table th:last-child {
  text-align: right;
}
.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.pricing-table td:first-child {
  font-weight: 600;
  color: var(--text);
}
.pricing-table td:last-child {
  text-align: right;
  color: var(--text-muted);
}
.pricing-table tr:nth-child(2) td {
  background: var(--surface);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-note {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-sub);
}

.badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 2px;
}
.badge--yellow {
  background: var(--accent-bg);
  color: var(--accent-text);
}
.badge--accent {
  background: var(--accent);
  color: #fff;
}

/* ── Steps ────────────────────────────────────────────────── */
.steps {
  display: flex;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.step {
  flex: 1;
  padding: 0 28px;
  text-align: center;
  position: relative;
}
.step__num {
  width: 52px;
  height: 52px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 17px;
  font-weight: 800;
  color: var(--accent);
}
.step__line {
  position: absolute;
  top: 24px;
  left: calc(50% + 28px);
  right: 0;
  height: 2px;
  background: var(--border);
}
.step__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.step__text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 767px) {
  .steps {
    flex-direction: column;
    gap: 28px;
  }
  .step {
    padding: 0;
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  .step__num {
    margin: 0;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    font-size: 15px;
  }
  .step__line {
    display: none;
  }
  .step__content {
    flex: 1;
  }
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq {
  max-width: 720px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--border);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq details[open] .faq__chevron {
  transform: rotate(180deg);
}
.faq__body {
  padding: 4px 0 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Contact ──────────────────────────────────────────────── */
#kontakt.section {
  padding: 64px 0;
}
.contact__cols {
  display: flex;
  gap: 64px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact__col {
  flex: 0 1 380px;
}
.contact__col--sm {
  flex: 0 1 340px;
}
.contact__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__icon {
  width: 40px;
  height: 40px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__item-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.contact__item-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.contact__item-val--accent {
  color: var(--accent);
}
.contact__item-sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}
.contact__hours-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.hours-table {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 13.5px;
}
.hours-row + .hours-row {
  border-top: 1px solid var(--border);
}
.hours-row__day {
  color: var(--text-muted);
}
.hours-row__time {
  font-weight: 700;
  color: var(--text);
}
.hours-row__closed {
  font-weight: 700;
  color: var(--text-sub);
}

@media (max-width: 767px) {
  #kontakt.section {
    padding: 40px 0;
  }
  .contact__cols {
    gap: 24px;
  }
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 48px 0 24px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__brand {
  max-width: 260px;
}
.footer__tagline {
  font-size: 13px;
  color: var(--on-dark-body);
  line-height: 1.7;
  margin-top: 12px;
}
.footer__col-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--on-dark);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 13px;
  color: var(--on-dark-muted);
}
.footer__links a:hover {
  color: var(--accent);
}
.footer__bottom {
  border-top: 1px solid var(--navy-3);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 12px;
  color: var(--on-dark-muted);
}

/* ── CTA strip ────────────────────────────────────────────── */
.cta {
  padding: 48px 0;
  background: var(--navy);
}
.cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.cta__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cta__title {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--on-dark);
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb__link {
  color: var(--accent);
  font-weight: 500;
}

/* ── Page hero (catalog) ──────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 40px 0 36px;
}
.page-hero__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-hero__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--on-dark);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.page-hero__desc {
  font-size: 14px;
  color: var(--on-dark-muted);
  max-width: 480px;
}

/* ── Category filter ──────────────────────────────────────── */
.cat-filter {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-filter::-webkit-scrollbar {
  display: none;
}
.cat-filter__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.cat-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Catalog section ──────────────────────────────────────── */
.cat-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  background: var(--card);
  scroll-margin-top: 120px;
}
.cat-section:last-child {
  border-bottom: none;
}
.cat-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.cat-section__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.cat-section__bar {
  width: 4px;
  height: 24px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.cat-section__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.cat-section__title-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}
.cat-section__title-link:hover {
  color: var(--accent);
}
.cat-section__arrow {
  opacity: 0.45;
  transition: opacity 0.15s, transform 0.15s;
  flex-shrink: 0;
}
.cat-section__title-link:hover .cat-section__arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ── General responsive ───────────────────────────────────── */
@media (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
  .b2b {
    padding: 40px 0;
  }
  .cta {
    padding: 32px 0;
  }
  .section__head {
    margin-bottom: 32px;
  }
  .footer__top {
    flex-direction: column;
    gap: 24px;
  }
  .footer__brand {
    max-width: 100%;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
