:root {
  --y: #FFE200;
  --bg: #06080c;
  --max: 1600px;
  --edge: clamp(1.25rem, 5vw, 5cm);
  --nav-break: 1130px;
  --nav-link-size: 20px;
  --nav-logo-height: 60px;
  --nav-menu-gap: 1.65rem;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--bg);
}

body {
  font-family: Roboto, Arial, sans-serif;
  background: var(--bg);
  color: #fff;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.shell {
  width: min(var(--max), calc(100% - var(--edge) * 2));
  margin-inline: auto;
}

/* ── NAV ── */
.nav {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 1.75rem var(--edge) 0;
}

.nav::before {
  content: none;
  display: none;
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  width: 100%;
}

.nav-logo {
  flex: 0 0 auto;
  display: block;
  line-height: 0;
  z-index: 2;
}

.nav-logo img {
  display: block;
  height: var(--nav-logo-height);
  width: auto;
  max-width: none;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  background: rgba(8,10,14,.55);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: border-color .22s, background .22s;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(255,226,0,.45);
  outline: none;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  margin-left: -9px;
  background: #fff;
  border-radius: 1px;
  transition: transform .28s ease, opacity .2s, top .28s ease, background .22s;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }

.nav-open .nav-toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
  background: var(--y);
}

.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }

.nav-open .nav-toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
  background: var(--y);
}

.nav-drawer { position: relative; z-index: 1; }

.menu {
  display: flex;
  gap: var(--nav-menu-gap);
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a {
  display: block;
  font-size: var(--nav-link-size);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #fff;
  padding: .2rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}

.menu a:hover { color: #fff; border-bottom-color: var(--y); }
.menu a.on { color: #fff; font-weight: 700; border-bottom-color: var(--y); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}

.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-open { overflow: hidden; }

@media (max-width: 1129px) {
  .nav-toggle { display: block; z-index: 62; }

  .nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 61;
    width: min(340px, calc(100vw - 1.5rem));
    height: 100dvh;
    padding: calc(5.5rem + 1cm) 1.75rem 2rem;
    background:
      linear-gradient(180deg, rgba(255,226,0,.06) 0%, transparent 18%),
      rgba(6,8,12,.97);
    border-left: 1px solid rgba(255,255,255,.08);
    box-shadow: -24px 0 48px rgba(0,0,0,.45);
    transform: translateX(105%);
    transition: transform .34s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
  }

  .nav-open .nav-drawer { transform: translateX(0); }

  .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .menu li { width: 100%; }

  .menu a {
    width: 100%;
    font-size: var(--nav-link-size);
    padding: .95rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    white-space: normal;
  }

  .menu a.on {
    border-bottom-color: rgba(255,255,255,.08);
    box-shadow: inset 3px 0 0 var(--y);
    padding-left: .75rem;
  }

  .menu li:last-child a { border-bottom: none; }
}

@media (min-width: 1130px) {
  .nav-backdrop { display: none; }
  .menu { flex-wrap: nowrap; }
}

/* Nav — locked size on every page (homepage + subpages) */
header.nav .nav-logo img {
  height: var(--nav-logo-height) !important;
}

header.nav .menu {
  gap: var(--nav-menu-gap) !important;
}

header.nav .menu a,
header.nav .menu a.on {
  font-size: var(--nav-link-size) !important;
  line-height: 1.2 !important;
  letter-spacing: 0.02em !important;
}

@media (max-width: 1129px) {
  .nav::before {
    inset: 0;
    background: transparent;
  }
}

/* ── FOOTER ── */
.oct-footer-bg {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  isolation: isolate;
  color: rgba(255,255,255,.74);
  border-top: 1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(circle at 18% 24%, rgba(255,226,0,.035) 0%, transparent 28%),
    radial-gradient(circle at 84% 72%, rgba(110,130,148,.07) 0%, transparent 30%),
    linear-gradient(180deg, #101620 0%, #0b1018 52%, #080c12 100%);
}

.oct-footer-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1800' height='900' viewBox='0 0 1800 900'%3E%3Cg fill='none'%3E%3Cpath d='M-80 130 C170 54 320 214 570 126 C820 38 1010 170 1245 90 C1480 10 1600 90 1880 34' stroke='%238ea0ad' stroke-opacity='.10' stroke-width='1.1'/%3E%3Cpath d='M-110 770 C155 680 340 850 610 754 C880 658 1030 810 1305 700 C1580 590 1650 730 1910 650' stroke='%238ea0ad' stroke-opacity='.08' stroke-width='1'/%3E%3Cpath d='M-130 604 C170 548 372 640 662 590 C952 540 1120 640 1398 568 C1676 496 1735 556 1915 514' stroke='%23FFE200' stroke-opacity='.08' stroke-width='1.1'/%3E%3Cpath d='M-120 104 C170 70 392 132 662 96 C932 60 1120 142 1398 88 C1676 34 1760 84 1925 50' stroke='%23FFE200' stroke-opacity='.06' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E") center center / cover no-repeat;
}

.oct-footer-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 155px 155px;
  opacity: .28;
}

.oct-footer-bg__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.14) 0%, rgba(0,0,0,.06) 42%, rgba(0,0,0,.12) 100%);
}

.oct-footer-bg__shell {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - var(--edge) * 2));
  margin-inline: auto;
  padding-top: 56px;
}

.oct-footer-bg__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: stretch;
  align-self: stretch;
  width: 100%;
  padding-inline: 16px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,.12);
}

.oct-footer-bg__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  justify-self: stretch;
  align-self: stretch;
  width: 100%;
  gap: 14px;
  padding: 0 0 0 24px;
  text-align: right;
  border-left: 1px solid rgba(255,255,255,.12);
}

.oct-footer-bg__menu a {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  color: rgba(232, 236, 240, 0.82);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
  transition: color .22s, transform .22s;
}

.oct-footer-bg__menu a:not(:last-child)::after {
  display: none;
}

.oct-footer-bg__menu a:hover {
  color: rgba(255,255,255,.96);
  transform: translateX(-2px);
}

/* Team-Seite noch nicht live — Footer-Link vorerst ausblenden */
.oct-footer-bg__menu a[href="team.html"] {
  display: none !important;
}

.oct-footer-bg__divider {
  display: none;
}

.oct-footer-bg__main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  padding: 28px 0 36px;
  gap: 0;
}

.oct-footer-bg__brand {
  padding-right: 24px;
  text-align: left;
  justify-self: start;
}

.oct-footer-bg__logo {
  display: block;
  margin: 0 0 22px;
  line-height: 0;
}

.oct-footer-bg__logo img {
  width: min(100%, 280px);
  height: auto;
  max-height: 65px;
  object-fit: contain;
  object-position: left center;
}

.oct-footer-bg__address {
  font-style: normal;
  color: rgba(232, 236, 240, 0.84);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.62;
}

.oct-footer-bg__address strong {
  font-weight: 500;
  color: rgba(240, 243, 246, 0.9);
}

.oct-footer-bg__contact-lines {
  margin-top: 16px;
}

.oct-footer-bg__contact-line {
  margin: 0;
  color: rgba(232, 236, 240, 0.84);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.62;
}

.oct-footer-bg__contact-line:last-child {
  margin-bottom: 0;
}

.oct-footer-bg__contact-label {
  color: rgba(232, 236, 240, 0.78);
  font-weight: 300;
}

.oct-footer-bg__contact-line a {
  color: rgba(232, 236, 240, 0.84);
  font-weight: 300;
  text-decoration: none;
  transition: color .22s;
}

.oct-footer-bg__contact-line a:hover {
  color: rgba(255,255,255,.96);
}

.oct-footer-bg__contact {
  display: none;
}

.oct-footer-bg__bso-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 280px;
  color: rgba(232, 236, 240, 0.84);
  text-decoration: none;
  transition: transform 0.32s var(--ease, ease);
}

.oct-footer-bg__bso-link:hover {
  transform: translateY(-4px);
}

.oct-footer-bg__bso-img {
  display: block;
  width: 110px;
  max-width: 110px;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.4));
  transition: opacity 0.28s ease;
}

.oct-footer-bg__bso-link:hover .oct-footer-bg__bso-img {
  transform: none;
  opacity: 0.92;
}

.oct-footer-bg__bso-text strong {
  display: block;
  margin-bottom: 0.3rem;
  color: rgba(232, 236, 240, 0.84);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.oct-footer-bg__bso-text span {
  display: block;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(232, 236, 240, 0.78);
}

.oct-footer-bg__contact-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
  margin: 0 0 18px;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.35;
  transition: color .22s, transform .22s;
}

.oct-footer-bg__contact-row:last-child { margin-bottom: 0; }

.oct-footer-bg__contact-row:hover {
  color: rgba(255,255,255,.96);
  transform: translateX(2px);
}

.oct-footer-bg__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--y);
  background: rgba(255,255,255,.052);
  border: 1px solid rgba(255,255,255,.075);
  font-size: 15px;
  text-shadow: 0 0 12px rgba(255,226,0,.24);
}

.oct-footer-bg__bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.oct-footer-bg__bottom p {
  margin: 0 auto 8px;
  width: min(var(--max), calc(100% - var(--edge) * 2));
  color: rgba(255,255,255,.64);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

.oct-footer-bg__bottom p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .oct-footer-bg {
    padding-top: 48px;
  }

  .oct-footer-bg__shell {
    padding-inline: clamp(16px, 4vw, 24px);
  }

  .oct-footer-bg__main {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    justify-items: center;
  }

  .oct-footer-bg__brand,
  .oct-footer-bg__badge,
  .oct-footer-bg__menu {
    padding: 0;
    border: none;
    text-align: center;
    align-items: center;
    justify-self: center;
    width: 100%;
    max-width: 420px;
  }

  .oct-footer-bg__menu {
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .oct-footer-bg__menu a {
    display: block;
    width: 100%;
    text-align: center;
  }

  .oct-footer-bg__menu a:not(:last-child)::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 28px;
  }

  .oct-footer-bg__badge {
    border-left: 0;
    padding-top: 4px;
  }

  .oct-footer-bg__address,
  .oct-footer-bg__contact-lines {
    text-align: center;
  }

  .oct-footer-bg__contact-row { justify-content: center; }
  .oct-footer-bg__logo {
    margin-inline: auto;
    display: flex;
    justify-content: center;
  }
  .oct-footer-bg__logo img {
    object-position: center center;
    max-width: 300px;
    height: auto;
    margin-inline: auto;
  }
  .oct-footer-bg__bso-link { margin-inline: auto; }
  .oct-footer-bg__bso-img {
    width: 96px;
    max-width: 96px;
    height: auto;
  }

  .oct-footer-bg__bottom {
    text-align: center;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 767px) {
  :root {
    --nav-logo-height: 36px;
  }

  .nav-logo img {
    max-width: min(46vw, 160px);
  }

  .nav-toggle {
    display: block;
  }
}

/* Nach oben — rechts unten */
.oct-to-top {
  position: fixed;
  right: clamp(14px, 2.5vw, 28px);
  bottom: clamp(14px, 2.5vw, 28px);
  z-index: 9990;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 226, 0, 0.45);
  border-radius: 0;
  background: rgba(7, 17, 27, 0.88);
  color: #ffe200;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease, border-color 0.2s ease;
}

.oct-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.oct-to-top:hover {
  background: rgba(7, 17, 27, 0.96);
  border-color: #ffe200;
}

.oct-to-top:focus-visible {
  outline: 2px solid #ffe200;
  outline-offset: 3px;
}

/* ── Cookie Consent ── */
.oct-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  padding: 18px clamp(16px, 3vw, 28px) calc(18px + env(safe-area-inset-bottom, 0px));
  background: rgba(6, 8, 12, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.45);
  color: #fff;
}

.oct-cookie[hidden] {
  display: none !important;
}

.oct-cookie__inner {
  width: min(var(--max, 1200px), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
}

.oct-cookie__copy {
  flex: 1 1 280px;
  max-width: 720px;
}

.oct-cookie__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.oct-cookie__copy p + p {
  margin-top: 6px;
}

.oct-cookie__copy strong {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.oct-cookie__copy a {
  color: #ffe200;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.oct-cookie__copy a:hover {
  color: #fff;
}

.oct-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 auto;
}

.oct-cookie__btn {
  appearance: none;
  cursor: pointer;
  margin: 0;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.oct-cookie__btn:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.oct-cookie__btn--primary {
  border-color: rgba(255, 226, 0, 0.85);
  background: transparent;
  color: #ffe200;
}

.oct-cookie__btn--primary:hover {
  background: rgba(255, 226, 0, 0.12);
  border-color: #ffe200;
  color: #ffe200;
}

.oct-cookie__btn:focus-visible {
  outline: 2px solid #ffe200;
  outline-offset: 2px;
}

/* Settings pill */
.oct-cookie-settings {
  position: fixed;
  left: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 10040;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(12, 16, 22, 0.94);
  color: #fff;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s, background 0.2s;
}

.oct-cookie-settings:hover {
  border-color: rgba(255, 226, 0, 0.55);
  background: rgba(18, 24, 32, 0.98);
}

.oct-cookie-settings:focus-visible {
  outline: 2px solid #ffe200;
  outline-offset: 2px;
}

.oct-cookie-settings__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 2px, transparent 2.5px),
    radial-gradient(circle at 62% 48%, #fff 0 1.5px, transparent 2px),
    radial-gradient(circle at 45% 68%, #fff 0 1.5px, transparent 2px),
    #ffe200;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  flex: 0 0 auto;
}

/* Preference modal (Carwash-ähnlich) */
.oct-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.oct-cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.oct-cookie-modal__panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(86vh, 720px);
  display: flex;
  flex-direction: column;
  background: #2a2f36;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.oct-cookie-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 8px;
}

.oct-cookie-modal__head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.oct-cookie-modal__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.oct-cookie-modal__close:hover {
  color: #ffe200;
}

.oct-cookie-modal__tabs {
  display: flex;
  gap: 22px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.oct-cookie-modal__tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.oct-cookie-modal__tab.is-active {
  color: #fff;
  border-bottom-color: #ffe200;
}

.oct-cookie-modal__body {
  overflow: auto;
  padding: 16px 20px 8px;
  flex: 1 1 auto;
}

.oct-cookie-modal__intro {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.oct-cookie-modal__intro a {
  color: #ffe200;
}

.oct-cookie-modal__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.oct-cookie-modal__quick .oct-cookie__btn {
  background: transparent;
  color: #ffe200;
  border-color: rgba(255, 226, 0, 0.75);
  border-radius: 999px;
  text-transform: none;
  font-size: 13px;
  letter-spacing: 0;
}

.oct-cookie-modal__quick .oct-cookie__btn:hover {
  background: rgba(255, 226, 0, 0.1);
  border-color: #ffe200;
  color: #ffe200;
}

.oct-cookie-cat {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 0;
}

.oct-cookie-cat__row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: start;
}

.oct-cookie-cat h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
}

.oct-cookie-cat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.oct-cookie-cat__service {
  margin-top: 8px !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 12px !important;
}

.oct-cookie-switch {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 28px;
  cursor: pointer;
  border-radius: 999px;
}

.oct-cookie-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.oct-cookie-switch__ui {
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  box-sizing: border-box;
}

.oct-cookie-switch__ui::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f2f4f6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, background 0.2s;
}

.oct-cookie-switch input:checked + .oct-cookie-switch__ui {
  background: rgba(255, 226, 0, 0.22);
  border-color: rgba(255, 226, 0, 0.7);
}

.oct-cookie-switch input:checked + .oct-cookie-switch__ui::after {
  transform: translateX(20px);
  background: #ffe200;
}

.oct-cookie-switch.is-locked {
  cursor: not-allowed;
  opacity: 0.9;
}

.oct-cookie-modal__foot .oct-cookie__btn--primary {
  border-radius: 999px;
  border-color: rgba(255, 226, 0, 0.85);
  background: transparent;
  color: #ffe200;
}

.oct-cookie-modal__foot .oct-cookie__btn--primary:hover {
  background: rgba(255, 226, 0, 0.12);
  border-color: #ffe200;
  color: #ffe200;
}

.oct-cookie-modal__pane h3 {
  margin: 16px 0 8px;
  font-size: 15px;
}

.oct-cookie-modal__pane p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.oct-cookie-modal__pane a {
  color: #ffe200;
}

.oct-cookie-modal__choice {
  color: #ffe200 !important;
  font-weight: 600;
}

.oct-cookie-modal__foot {
  padding: 14px 20px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

html.oct-cookie-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .oct-cookie__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .oct-cookie__actions {
    width: 100%;
  }

  .oct-cookie__btn {
    flex: 1 1 auto;
    text-align: center;
  }

  .oct-cookie-settings {
    left: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    font-size: 10px;
    padding: 8px 12px 8px 8px;
  }

  .oct-cookie-modal {
    padding: 10px;
    align-items: flex-end;
  }

  .oct-cookie-modal__panel {
    max-height: 92vh;
    width: 100%;
  }
}

/* =========================================================
   Hero Ken Burns — langsamer Zoom beim Seitenload
========================================================= */
@keyframes octHeroKenBurnsZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.085);
  }
}

@media (prefers-reduced-motion: reduce) {
  .oct-fs-hero__media img,
  .oct-home-hero-v20-bg,
  .oct-verado-hero-v9 .oct-hero-kenburns-bg,
  .oct-verado-hero-v10 .oct-hero-kenburns-bg,
  .oct-verado-hero-v11 .oct-hero-kenburns-bg,
  .oct-verado-hero-v12 .oct-hero-kenburns-bg {
    animation: none !important;
    transform: scale(1) !important;
  }
}
