:root {
  --max: 980px;
  --max-wide: 1160px;

  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --surface-muted: #eef2ff;

  --text: #0f172a;
  --muted: rgba(15, 23, 42, 0.72);
  --border: #dbe3ee;

  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-soft: rgba(37, 99, 235, 0.1);
  --primary-text: #ffffff;

  --accent: #0f766e;
  --accent-soft: rgba(15, 118, 110, 0.12);

  --accent-2: #0f766e;
  --text-muted: #475569;

  --warm: #d97706;
  --warm-soft: rgba(217, 119, 6, 0.12);

  --ghost-hover: #eef2f7;
  --selection: rgba(37, 99, 235, 0.18);

  --radius: 14px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --pad: 24px;

  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 16px 42px rgba(15, 23, 42, 0.09);

  --focus: rgba(37, 99, 235, 0.42);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1220;
    --surface: #121a2a;
    --surface-soft: #172132;
    --surface-muted: #182338;

    --text: #edf2f7;
    --muted: rgba(237, 242, 247, 0.74);
    --border: rgba(226, 232, 240, 0.15);

    --primary: #60a5fa;
    --primary-hover: #93c5fd;
    --primary-soft: rgba(96, 165, 250, 0.18);
    --primary-text: #08101d;

    --accent: #34d399;
    --accent-soft: rgba(52, 211, 153, 0.14);

    --warm: #fbbf24;
    --warm-soft: rgba(251, 191, 36, 0.14);

    --ghost-hover: rgba(226, 232, 240, 0.08);
    --selection: rgba(96, 165, 250, 0.26);

    --shadow-sm: 0 10px 26px rgba(0, 0, 0, 0.28);
    --shadow-md: 0 18px 48px rgba(0, 0, 0, 0.35);

    --focus: rgba(96, 165, 250, 0.42);
  }
}

/* 02 Reset & Base */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(37, 99, 235, 0.06), transparent 28%),
    var(--bg);
}

header,
main,
footer {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--selection);
}

::-moz-selection {
  background: var(--selection);
}

/* 03 Typography */
h1 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.2;
  font-weight: 850;
  margin: 20px 0 14px;
  text-align: center;
  letter-spacing: -0.5px;
}

h1 strong {
  font-weight: 950;
}

h2 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.2px;
}

.kicker {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  letter-spacing: 0.2px;
}

.sub {
  font-size: 18px;
  max-width: 72ch;
  color: var(--muted);
  margin: 10px auto 0;
  text-align: center;
  line-height: 1.7;
}

.info-box,
.note-box,
.hint-box {
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 16px;
  padding: 18px 20px;
}

.meta,
.trust,
.nextstep,
.small,
.note,
.anchor,
.hint,
.fineprint,
.download-info,
.portal-meta {
  color: var(--muted);
}

.meta,
.trust,
.nextstep {
  text-align: center;
  font-size: 14px;
}

.meta {
  margin-top: 14px;
}

.trust {
  margin-top: 10px;
}

.nextstep {
  margin-top: 14px;
}

.small {
  font-size: 13px;
}

.note,
.anchor,
.hint,
.fineprint,
.download-info {
  font-size: 14px;
}

.note {
  margin-top: 10px;
}

.anchor {
  margin-top: 8px;
}

.hint {
  margin-top: 6px;
}

.fineprint {
  text-align: center;
  margin-top: 10px;
}

.download-info {
  text-align: center;
  margin-top: 14px;
}

.note-preline {
  white-space: pre-line;
  line-height: 1.7;
}

/* 04 Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--pad);
}

.wrap-seo,
.seo-container,
.single-col {
  max-width: 820px;
  margin: 0 auto;
}

.seo-container {
  padding: 40px 20px;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin: 26px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.col-12 {
  grid-column: span 12;
}

.col-7 {
  grid-column: span 7;
}

.col-6 {
  grid-column: span 6;
}

.col-5 {
  grid-column: span 5;
}

@media (max-width: 900px) {

  .col-7,
  .col-6,
  .col-5 {
    grid-column: span 12;
  }
}

@media (max-width: 780px) {
  .row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* 05 Generic components */
.card,
.box,
.download-letter-preview,
.checkout-legal,
.sample-letter,
.problem-tile,
.sample-image-wrap,
.sample-figure,
.faq details,
details.opt {
  background: var(--surface);
  border: 1px solid var(--border);
}

.card,
.box {
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.form-card {
  width: 100%;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 26px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(37, 99, 235, 0.14);
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent);
}

.badge.is-teal {
  background: rgba(15, 118, 110, 0.08);
  border-color: rgba(15, 118, 110, 0.16);
  color: #0f766e;
}

.badge.is-warm {
  background: rgba(245, 158, 11, 0.10);
  border-color: rgba(245, 158, 11, 0.18);
  color: #b45309;
}

ul,
ol {
  margin: 10px 0 0 18px;
}

li {
  margin: 6px 0;
}

.link-list {
  margin: 0;
  padding-left: 18px;
}

.link-list li {
  margin-bottom: 10px;
}

.link-list a,
.category-item a,
.portal-item h3 a,
.seo-berufsinfo a {
  color: var(--text);
  text-decoration: none;
}

.link-list a:hover,
.category-item a:hover,
.portal-item h3 a:hover {
  text-decoration: underline;
}

.link-list a:hover {
  color: var(--primary);
}

.seo-berufsinfo a {
  font-weight: 600;
}

/* 06 Buttons */
.cta-row,
.actions,
.checkout-actions,
.checkout-submit {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-row {
  justify-content: center;
  margin-top: 26px;
}

.actions {
  margin-top: 18px;
}

.checkout-actions,
.checkout-submit {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--text);
  font-size: 16px;
  transition: transform 0.12s ease, background 0.12s ease, opacity 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
  cursor: pointer;
}

.btn.primary {
  background: var(--primary);
  color: var(--primary-text);
  border-color: var(--primary);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  background: var(--ghost-hover);
}

.btn .price {
  font-weight: 950;
  font-size: 1.12em;
  margin-left: 4px;
}

.btn:focus,
.btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.checkout-submit .btn {
  min-width: 320px;
  text-align: center;
}

/* 07 Hero */
.hero {
  padding: 60px 0 40px;
}

.hero-cta {
  margin-top: 20px;
}

/* 08 FAQ */
.faq details {
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
}

.faq p {
  margin: 8px 0 0;
  color: var(--muted);
}

/* 09 Forms */
label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 800;
}

input[type="text"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 15px;
}

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

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

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

@media (max-width: 900px) {
  .checkgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .checkgrid {
    grid-template-columns: 1fr;
  }
}

.checkgrid label {
  transition: background 0.15s ease, border-color 0.15s ease;
  font-size: 14px;
}

.checkgrid label:hover {
  background: var(--ghost-hover);
}

.checkgrid input[type="checkbox"] {
  margin-top: 2px;
  flex: 0 0 auto;
}

.checkgrid input[type="checkbox"]:checked+span {
  font-weight: 800;
}

details.opt {
  margin-top: 16px;
  border-style: dashed;
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--surface-soft);
}

details.opt summary {
  cursor: pointer;
  font-weight: 900;
}

.search-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.search-form input {
  flex: 1;
}

.legal-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
}

.legal-check:last-child {
  margin-bottom: 0;
}

.legal-check input[type="checkbox"] {
  margin-top: 4px;
  flex: 0 0 auto;
}

/* 10 Funnel / Progress / Loading */
.progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: transparent;
}

.dot.on {
  background: var(--primary);
  border-color: var(--primary);
}

@keyframes btspin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes btdots {
  0% {
    opacity: 0.2;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-4px);
  }

  100% {
    opacity: 0.2;
    transform: translateY(0);
  }
}

.bt-loading {
  text-align: center;
  padding-top: 60px;
}

.bt-loader {
  margin: 40px auto;
}

.bt-spinner {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 4px solid rgba(15, 23, 42, 0.12);
  border-top-color: var(--primary);
  animation: btspin 0.8s linear infinite;
}

.bt-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  animation: btdots 1.4s infinite;
}

.bt-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.bt-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

.bt-status {
  margin-top: 12px;
  font-size: 15px;
  color: var(--muted);
}

.bt-progress {
  width: 320px;
  height: 6px;
  margin: 24px auto 0;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.bt-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.4s ease;
}

/* 11 SEO / Content pages */
.seo-header {
  text-align: center;
}

.seo-content {
  text-align: left;
  line-height: 1.7;
  font-size: 18px;
}

.seo-content p,
.ratgeber-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.seo-content ul,
.seo-content ol,
.ratgeber-content ul,
.ratgeber-content ol {
  line-height: 1.8;
}

.seo-content li {
  margin-bottom: 8px;
}

.seo-content h2,
.seo-content h3 {
  position: relative;
}

.seo-content h2::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  vertical-align: -1px;
}

.seo-content a,
.ratgeber-content a {
  color: var(--accent);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

.seo-content a:hover,
.ratgeber-content a:hover {
  color: #1d4ed8;
}

.sample-letter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  cursor: default;
  position: relative;
  padding: 28px;
  border-radius: 12px;
  font-family: Georgia, serif;
  line-height: 1.8;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
}

.sample-letter::selection,
.sample-letter::-moz-selection {
  background: transparent;
  color: inherit;
}

.checkout-box {
  max-width: 760px;
  margin: 24px auto 0;
}

.checkout-form {
  margin: 0;
}

.checkout-legal {
  margin: 0 0 20px;
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
}

.download-letter-preview {
  border-radius: 14px;
  padding: 24px;
  line-height: 1.75;
}

.portal-list,
.category-list {
  display: grid;
  gap: 1rem;
}

.portal-item,
.category-item {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.portal-item:first-child,
.category-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.problem-tile,
.highlight-card,
.benefit-card {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05), rgba(255, 255, 255, 1));
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.06);
}

.portal-item h3,
.category-item h3,
.problem-tile h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.problem-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.problem-tile {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.problem-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.problem-tile p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--muted);
}

.sample-image-wrap {
  margin: 1.5rem auto;
  text-align: center;
  max-width: 380px;
  padding: 16px;
  border-radius: 12px;
  background: var(--surface-soft);
}

.sample-gallery {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sample-figure {
  padding: 12px;
  border-radius: 10px;
  background: var(--surface-soft);
}

.sample-figure figcaption {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--muted);
}

.sample-image {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
}

/* 12 Navigation */
.bt-site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.bt-site-nav__link.is-active {
  background: rgba(37, 99, 235, 0.10);
  color: var(--accent);
  font-weight: 700;
}

.search-form {
  margin: 28px 0 18px;
  text-align: center;
}

.search-label {
  display: block;
  margin-bottom: 14px;
  font-weight: 800;
  text-align: center;
}

.search-form__row {
  display: flex;
  justify-content: center;
}

.search-form__row input[type="text"] {
  width: 100%;
  max-width: 420px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-size: 16px;
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.search-form__row input[type="text"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.search-meta {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 14px;
}

.search-empty {
  margin-top: 20px;
}

.pagination {
  margin-top: 28px;
}

.pagination__inner {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.pagination__link,
.pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.pagination__link:hover {
  background: var(--surface-soft);
}

.pagination__link.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.pagination__link--nav {
  padding: 0 16px;
}

.search-live-results {
  position: relative;
  margin-top: 8px;
}

.search-live-item {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-top: 6px;
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
}

.search-live-item:hover {
  background: var(--surface-soft);
}

.search-live-item strong {
  display: block;
  font-size: 14px;
}

.search-live-item span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 640px) {
  .search-form__row {
    flex-direction: column;
    align-items: stretch;
  }

  .search-form__row .btn {
    width: 100%;
  }

  .pagination__inner {
    justify-content: flex-start;
  }
}

@media (prefers-color-scheme: dark) {
  .bt-site-nav {
    background: rgba(11, 18, 32, 0.88);
    border-bottom-color: rgba(226, 232, 240, 0.08);
  }
}

.bt-site-nav__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bt-site-nav__brand {
  flex: 0 0 auto;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bt-site-nav__brand-text {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.2;
}

.bt-site-nav__menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.bt-site-nav__link,
.bt-site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.bt-site-nav__link {
  color: var(--text);
  background: transparent;
}

.bt-site-nav__link:hover,
.bt-site-nav__link:focus-visible {
  background: var(--ghost-hover);
  outline: none;
}

.bt-site-nav__link.is-active {
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
}

.bt-site-nav__cta {
  margin-left: 0.35rem;
  background: var(--primary);
  color: var(--primary-text);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

.bt-site-nav__cta:hover,
.bt-site-nav__cta:focus-visible {
  background: var(--primary-hover);
  outline: none;
}

.bt-site-nav__toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  padding: 0.4rem;
  border-radius: 0.6rem;
  cursor: pointer;
}

.bt-site-nav__toggle:hover,
.bt-site-nav__toggle:focus-visible {
  background: var(--ghost-hover);
  outline: none;
}

.bt-site-nav__toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  border-radius: 2px;
}

.bt-site-nav__toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .bt-site-nav__inner {
    flex-wrap: wrap;
  }

  .bt-site-nav__toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .bt-site-nav__menu {
    display: none;
    width: 100%;
    margin-left: 0;
    padding-top: 0.4rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .bt-site-nav__menu.is-open {
    display: flex;
  }

  .bt-site-nav__link,
  .bt-site-nav__cta {
    width: 100%;
    justify-content: flex-start;
    border-radius: 0.9rem;
    padding: 0.8rem 0.95rem;
  }

  .bt-site-nav__cta {
    justify-content: center;
    margin-left: 0;
    margin-top: 0.15rem;
  }
}

/* 13 Footer */
footer {
  border-top: 1px solid var(--border);
  margin-top: 30px;
}

/* 14 Utility / Special cases */
.card-404 {
  padding: 32px;
  margin-top: 40px;
}

/* 15 RTL */
[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .cta-row,
[dir="rtl"] .actions {
  justify-content: center;
}

[dir="rtl"] ul,
[dir="rtl"] ol {
  margin: 10px 18px 0 0;
}

[dir="rtl"] .checkgrid label {
  text-align: right;
}

[dir="rtl"] input[type="text"],
[dir="rtl"] input[type="url"],
[dir="rtl"] textarea,
[dir="rtl"] select {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] input[type="url"] {
  direction: ltr;
  text-align: left;
}