:root {
  --obb-bg: #fafafa;
  --obb-bg-alt: #f0f0f0;
  --obb-text: #1a1a1a;
  --obb-muted: #5c5c5c;
  --obb-border: #e0e0e0;
  --obb-accent: #6cb900;
  --obb-accent-hover: #589600;
  --obb-white: #fff;
  --obb-max: 1120px;
  --obb-radius: 12px;
  --obb-font-body: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --obb-font-heading: "DM Serif Display", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--obb-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--obb-text);
  background: var(--obb-bg);
}

#content {
  flex: 1 0 auto;
  min-width: 0;
}

h1, h2, h3, h4 {
  font-family: var(--obb-font-heading);
  font-weight: 400;
}

.obb-brand__name {
  font-family: var(--obb-font-heading);
  font-weight: 400;
}

.obb-btn {
  font-family: var(--obb-font-body);
  font-weight: 700;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
}

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

.obb-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.obb-skip:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: var(--obb-white);
  border: 1px solid var(--obb-border);
  z-index: 10000;
}

.obb-container {
  max-width: var(--obb-max);
  margin: 0 auto;
  padding: 0 20px;
  min-width: 0;
}

@media (max-width: 480px) {
  .obb-container {
    padding: 0 24px;
  }
}

/* Header */
.obb-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(224, 224, 224, 0.65);
}

.obb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}

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

.obb-brand__name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.obb-nav {
  display: flex;
  align-items: center;
  gap: 8px 20px;
  flex-wrap: wrap;
}

.obb-nav a {
  text-decoration: none;
  color: var(--obb-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.obb-nav a:hover {
  color: var(--obb-text);
  border-bottom-color: var(--obb-accent);
}

.obb-nav__dropdown {
  position: relative;
}

.obb-nav__dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--obb-white);
  border: 1px solid var(--obb-border);
  border-radius: var(--obb-radius);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1200;
}

.obb-nav__dropdown:hover .obb-nav__dropdown-panel,
.obb-nav__dropdown:focus-within .obb-nav__dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.obb-nav__dropdown-panel li {
  margin: 0;
}

.obb-nav__dropdown-panel a {
  display: block;
  padding: 10px 18px;
  border-bottom: none;
  font-weight: 500;
  white-space: nowrap;
}

.obb-nav__dropdown-panel a:hover {
  background: var(--obb-bg);
  color: var(--obb-accent);
}

.obb-mobile__sub {
  padding-left: 24px !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  color: var(--obb-muted) !important;
}

.obb-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* «Anfrage stellen»: одна строка на десктопе; на узкой шапке — круг с иконкой трубки */
.obb-btn--header-cta {
  flex-shrink: 0;
}

.obb-btn--header-cta .obb-btn__text {
  white-space: nowrap;
}

.obb-btn--header-cta .obb-btn__icon-phone {
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

@media (max-width: 900px) {
  .obb-btn--header-cta {
    position: relative;
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 999px;
  }

  .obb-btn--header-cta .obb-btn__text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .obb-btn--header-cta .obb-btn__icon-phone {
    display: inline-flex;
  }
}

.obb-link-tel {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--obb-text);
  text-decoration: none;
  white-space: nowrap;
}

.obb-link-tel:hover {
  color: var(--obb-accent);
}

.obb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.obb-btn--primary {
  background: var(--obb-accent);
  color: var(--obb-white);
  border-color: var(--obb-accent);
}

.obb-btn--primary:hover {
  background: var(--obb-accent-hover);
  border-color: var(--obb-accent-hover);
  color: var(--obb-white);
}

.obb-btn--lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.obb-btn--block {
  width: 100%;
}

.obb-btn--outline {
  background: transparent;
  color: var(--obb-accent);
  border-color: var(--obb-accent);
}

.obb-btn--outline:hover {
  background: var(--obb-accent);
  color: var(--obb-white);
}

.obb-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--obb-border);
  background: var(--obb-white);
  border-radius: var(--obb-radius);
  cursor: pointer;
}

.obb-burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--obb-text);
}

.obb-mobile {
  display: none;
  padding: 0 20px 16px;
  border-bottom: 1px solid var(--obb-border);
  background: var(--obb-white);
}

.obb-mobile.is-open {
  display: block;
}

.obb-mobile a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  font-weight: 600;
  color: var(--obb-text);
  border-bottom: 1px solid var(--obb-border);
}

.obb-mobile a:last-child {
  border-bottom: 0;
}

@media (max-width: 900px) {
  .obb-nav {
    display: none;
  }

  .obb-burger {
    display: flex;
  }
}

/* Hero */
.obb-hero {
  position: relative;
  overflow: visible;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: #141414;
  background-image: var(--obb-hero-bg);
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .obb-hero {
    min-height: 80vh;
    background-position: center;
  }

  /* Nur Küchen-Hero hat den rechts versetzten Fokus auf Mobil */
  .obb-hero--kitchen-photo {
    background-position: 62.5% center;
  }
}

.obb-hero--service {
  min-height: 52vh;
}

@media (max-width: 768px) {
  .obb-hero--service {
    min-height: 58vh;
  }
}

/* Service-Hero: etwas breiter für lange Stat-Labels (Desktop) */
@media (min-width: 769px) {
  .obb-hero--service .obb-hero__content {
    max-width: 760px;
  }
}

/* Lead unter „Das erwartet Sie“: .obb-section__lead kommt später im CSS und würde margin:auto überschreiben */
.obb-service-cards-wrap .obb-section__lead {
  margin: -24px auto 40px;
  max-width: 640px;
  text-align: center;
  color: var(--obb-muted);
}

/* Küchenmontage: ein Band wie Service-Seite (obb-page + obb-service-page, gap 24px) – kein doppeltes obb-section-Padding */
.obb-page.obb-page--kueche-main {
  background: var(--obb-bg-alt);
  padding: 48px 0 40px;
}

.obb-page.obb-page--kueche-main .obb-why__card {
  background: var(--obb-bg);
}

.obb-page.obb-page--kueche-main + .obb-section.obb-section--contact {
  padding-top: 48px;
}

.obb-page--kueche {
  padding-top: 56px;
}

.obb-service-cta {
  margin-bottom: 8px;
}

.obb-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

/* Helles Küchenfoto: links mehr Abdunkelung für weiße Typo, rechts Foto sichtbar */
.obb-hero--kitchen-photo .obb-hero__overlay {
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.4) 48%,
    rgba(0, 0, 0, 0.22) 100%
  );
}

.obb-hero--service-photo .obb-hero__overlay {
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.66) 0%,
    rgba(0, 0, 0, 0.42) 54%,
    rgba(0, 0, 0, 0.24) 100%
  );
}

.obb-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--obb-max);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding: 56px 0 110px;
  padding-left: max(20px, env(safe-area-inset-left, 0px));
  padding-right: max(20px, env(safe-area-inset-right, 0px));
}

.obb-hero__content {
  max-width: 640px;
  padding: 0;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.obb-hero__title {
  margin: 0;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--obb-white);
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

.obb-hero__tagline {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

.obb-hero__price {
  margin: 10px 0 0;
  display: inline-flex;
  align-self: flex-start;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 14px rgba(0,0,0,0.25);
}

.obb-hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 520px) {
  .obb-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.obb-hero-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 4px;
  align-items: start;
  min-width: 0;
  max-width: none;
  padding: 16px 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

@media (max-width: 519px) {
  .obb-hero-stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px 0;
  }

  .obb-hero-stat:last-child {
    border-bottom: none;
  }
}

@media (min-width: 520px) {
  .obb-hero-stat {
    padding: 18px 0;
  }
}

.obb-hero-stat::before {
  content: ">";
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: center;
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--obb-accent);
  font-family: var(--obb-font-body);
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.35));
}

.obb-hero-stat__value {
  grid-column: 2;
  grid-row: 1;
  font-weight: 800;
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  color: var(--obb-white);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.obb-hero-stat__label {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.obb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.obb-hero--service .obb-hero__content {
  width: min(100%, 760px);
  min-width: 0;
}

.obb-hero--service .obb-hero-stats {
  min-width: 0;
  box-sizing: border-box;
}

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

.obb-hero--service .obb-hero-stat__label {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.obb-hero .obb-hero__cta-alt {
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.2);
}

.obb-hero .obb-hero__cta-alt:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--obb-white);
}

.obb-hero--kitchen-photo .obb-offer-badge {
  margin: -2px 0 0;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px 11px;
  border-radius: 14px;
  border: 1px solid rgba(223, 199, 151, 0.72);
  background: linear-gradient(140deg, rgba(39, 28, 16, 0.64) 0%, rgba(95, 73, 45, 0.48) 100%);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 245, 220, 0.26);
  backdrop-filter: blur(2px);
}

.obb-hero--kitchen-photo .obb-offer-badge--soft {
  border-color: rgba(223, 199, 151, 0.64);
  background: linear-gradient(140deg, rgba(39, 28, 16, 0.56) 0%, rgba(95, 73, 45, 0.42) 100%);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 245, 220, 0.22);
}

.obb-hero--kitchen-photo .obb-offer-badge--strong {
  border-color: rgba(249, 226, 176, 0.96);
  background:
    linear-gradient(135deg, rgba(110, 72, 25, 0.88) 0%, rgba(196, 136, 50, 0.8) 58%, rgba(228, 176, 86, 0.72) 100%);
  box-shadow:
    0 14px 32px rgba(22, 14, 8, 0.34),
    0 0 0 1px rgba(255, 240, 203, 0.36) inset,
    0 0 24px rgba(255, 210, 120, 0.16);
}

.obb-hero--kitchen-photo .obb-offer-badge__title {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff8ea;
  letter-spacing: -0.005em;
  text-shadow: 0 1px 8px rgba(40, 24, 9, 0.42);
}

.obb-hero--kitchen-photo .obb-offer-badge__meta {
  font-size: 0.79rem;
  font-weight: 650;
  line-height: 1.2;
  color: rgba(255, 245, 222, 0.94);
}

.obb-hero--kitchen-photo .obb-offer-badge__hint {
  margin: -6px 0 0;
  font-size: 0.74rem;
  line-height: 1.25;
  color: rgba(255, 250, 240, 0.86);
}

.obb-kueche-express .obb-kueche-express__inner {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.obb-kueche-express__title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.obb-kueche-express__envelope {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(108, 185, 0, 0.12);
  color: var(--obb-accent);
}

.obb-kueche-express__envelope-svg {
  display: block;
}

.obb-kueche-express__title {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 700;
  text-align: left;
  color: var(--obb-text);
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}

.obb-kueche-express__lead {
  margin: 0 0 22px;
  text-align: left;
  color: var(--obb-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.obb-kueche-express__trust {
  margin: 20px 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--obb-muted);
  text-align: center;
}

.obb-kueche-express__alt {
  margin: 16px 0 0;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
}

.obb-kueche-express__alt a {
  color: var(--obb-accent);
  text-decoration: none;
}

.obb-kueche-express__alt a:hover {
  text-decoration: underline;
}

.obb-kueche-express__sep {
  color: var(--obb-muted);
  font-weight: 400;
}

@media (max-width: 768px) {
  .obb-hero__inner {
    padding-left: max(24px, env(safe-area-inset-left, 0px));
    padding-right: max(24px, env(safe-area-inset-right, 0px));
  }

  .obb-hero__content {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .obb-hero__inner {
    padding: 44px 0 96px;
    padding-left: max(24px, env(safe-area-inset-left, 0px));
    padding-right: max(24px, env(safe-area-inset-right, 0px));
  }
  .obb-hero__title {
    font-size: 1.9rem;
    line-height: 1.12;
  }
  .obb-hero__tagline {
    font-size: 1.05rem;
  }

  .obb-hero__price {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.92rem;
  }

  .obb-hero--kitchen-photo .obb-offer-badge {
    width: 100%;
    max-width: 100%;
    padding: 10px 12px;
  }

  .obb-hero--kitchen-photo .obb-offer-badge__title {
    font-size: 0.9rem;
  }
}

/* Trust — карточки заходят на hero (фон секции прозрачный в зоне overlap) */
.obb-trust {
  position: relative;
  z-index: 2;
  padding: 0 0 56px;
  margin-top: -100px;
  background: transparent;
  border-bottom: none;
}

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

.obb-trust__item{
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 6px;
  align-items: start;
  padding: 18px 18px;
  background: var(--obb-white);
  border: 1px solid rgba(224,224,224,0.9);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.obb-trust__item h3{
  grid-column: 2;
}
.obb-trust__item p{
  grid-column: 2;
}

.obb-ico{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(224,224,224,0.9);
  background: rgba(250,250,250,1);
  color: var(--obb-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.obb-ico svg{width:22px;height:22px}
.obb-ico--small{width:38px;height:38px;border-radius:10px}

@media (max-width: 768px) {
  .obb-trust__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
}

.obb-trust__item h3 {
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: 700;
}

.obb-trust__item p {
  margin: 0;
  color: var(--obb-muted);
  font-size: 0.9375rem;
}

/* Sections */
.obb-section {
  padding: 72px 0;
}

.obb-section--alt {
  background: var(--obb-bg-alt);
}

#faq {
  background: var(--obb-bg);
}

.obb-section__lead--faq {
  margin: -24px auto 32px;
  text-align: center;
}

.obb-faq {
  max-width: 720px;
  margin: 0 auto;
}

.obb-service-page__faq {
  margin-top: 24px;
}

.obb-service-page__faq .obb-service-page__intro {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.obb-faq--in-panel {
  max-width: none;
}

.obb-service-page__pricing {
  margin-top: 24px;
}

.obb-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.obb-pricing__card {
  border: 1px solid var(--obb-border);
  border-radius: var(--obb-radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 18px 18px 16px;
}

.obb-pricing__card--highlight {
  border-color: rgba(108, 185, 0, 0.35);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.obb-pricing__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.obb-pricing__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--obb-text);
}

.obb-pricing__price {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--obb-text);
  white-space: nowrap;
}

.obb-pricing__list {
  margin-top: 10px;
}

.obb-pricing__cta {
  margin: 14px 0 0;
}

.obb-pricing__addons {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(206, 193, 176, 0.45);
}

.obb-pricing__addons-title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .obb-pricing {
    grid-template-columns: 1fr;
  }
}

.obb-faq__item {
  margin-bottom: 12px;
  border: 1px solid var(--obb-border);
  border-radius: var(--obb-radius);
  background: var(--obb-white);
  overflow: hidden;
}

.obb-faq__summary {
  cursor: pointer;
  padding: 18px 20px;
  padding-right: 44px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--obb-text);
  list-style: none;
  position: relative;
}

.obb-faq__summary::-webkit-details-marker {
  display: none;
}

.obb-faq__summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  opacity: 0.55;
  transition: transform 0.2s ease;
}

.obb-faq__item[open] .obb-faq__summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.obb-faq__answer {
  padding: 0 20px 18px;
  margin: 0;
  border-top: 1px solid rgba(206, 193, 176, 0.45);
}

.obb-faq__answer p {
  margin: 14px 0 0;
  font-size: 0.96rem;
  line-height: 1.58;
  color: var(--obb-muted);
}

@media (max-width: 480px) {
  .obb-faq__summary {
    padding: 16px 42px 16px 16px;
    font-size: 0.96rem;
  }

  .obb-faq__answer {
    padding: 0 16px 16px;
  }

  .obb-faq__summary::after {
    right: 14px;
  }
}

.obb-section__title {
  margin: 0 0 40px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.obb-section__lead {
  margin: -24px 0 32px;
  max-width: 640px;
  color: var(--obb-muted);
}

.obb-section__lead.obb-section__lead--faq {
  margin: -24px auto 32px;
  text-align: center;
}

@media (max-width: 768px) {
  /* Home mobile rhythm: clean luxe, no heavy transition effects */
  .home .obb-trust {
    margin-top: -68px;
    padding-bottom: 32px;
  }

  .home .obb-trust__grid {
    gap: 14px;
  }

  .home .obb-section {
    padding: 52px 0;
    position: relative;
  }

  .home .obb-section + .obb-section {
    box-shadow: inset 0 1px 0 rgba(206, 193, 176, 0.38);
  }

  .home #leistungen,
  .home #bewertungen {
    background:
      linear-gradient(180deg, rgba(255, 253, 250, 0.42) 0%, rgba(255, 253, 250, 0) 72px),
      var(--obb-bg-alt);
  }

  .home #vorteile,
  .home #faq {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 72px),
      var(--obb-bg);
  }

  .home #anfrage {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0) 72px),
      var(--obb-white);
  }

  .home #leistungen {
    padding-top: 52px;
    box-shadow: inset 0 1px 0 rgba(206, 193, 176, 0.38);
  }

  .home .obb-section__title {
    margin: 0 0 28px;
  }

  .home #faq .obb-section__lead {
    margin: -14px auto 24px;
  }

  .home #bewertungen {
    padding-bottom: 44px;
  }
}

/* About */
.obb-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .obb-about {
    grid-template-columns: 1fr;
  }
}

.obb-about__text h1,
.obb-about__text h2 {
  margin: 0 0 20px;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}

.obb-about__text p {
  margin: 0 0 16px;
  color: var(--obb-muted);
}

.obb-about__stat {
  padding: 32px;
  background: var(--obb-white);
  border: 1px solid var(--obb-border);
  border-radius: var(--obb-radius);
  text-align: center;
}

.obb-about__stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--obb-accent);
  line-height: 1;
}

.obb-about__stat-label {
  display: block;
  margin-top: 12px;
  font-weight: 700;
  font-size: 1rem;
}

.obb-about__stat-sub {
  display: block;
  margin-top: 6px;
  font-size: 0.875rem;
  color: var(--obb-muted);
}

/* Services */
.obb-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

@media (max-width: 768px) {
  .obb-services {
    grid-template-columns: minmax(0, 1fr);
  }
}

.obb-services__card{
  padding: 26px;
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(224,224,224,0.9);
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}
.obb-section--alt .obb-services__card{
  background: rgba(250,250,250,0.95);
}
.obb-services__head{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}
.obb-services__head h3{
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.obb-list {
  margin: 0;
  padding-left: 0;
  color: var(--obb-muted);
  list-style: none;
}

.obb-list li {
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
  line-height: 1.55;
}
.obb-list li::before{
  content: "✓";
  position:absolute;
  left: 0;
  top: 0.05em;
  color: var(--obb-accent);
  font-weight: 800;
}

.obb-list a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(108, 185, 0, 0.28);
}

.obb-list a:hover,
.obb-list a:focus-visible {
  color: var(--obb-accent);
  border-bottom-color: var(--obb-accent);
}

.obb-services__cta{
  margin-top: 14px;
}
.obb-link{
  color: var(--obb-accent);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(108, 185, 0, 0.35);
}
.obb-link:hover{
  color: var(--obb-accent-hover);
  border-bottom-color: rgba(88, 150, 0, 0.55);
}

/* Why */
.obb-why {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}

.obb-why__card {
  padding: 24px;
  background: var(--obb-white);
  border: 1px solid var(--obb-border);
  border-radius: var(--obb-radius);
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 6px;
}

.obb-section--alt .obb-why__card {
  background: var(--obb-bg);
}

.obb-why__card h3 {
  margin: 2px 0 10px;
  font-size: 1.0625rem;
  font-weight: 700;
  grid-column: 2;
}

.obb-why__card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--obb-muted);
  grid-column: 2;
}

/* Reviews */
.obb-reviews {
  margin-top: 6px;
}

.obb-reviews__summary {
  margin: -12px 0 24px;
  text-align: center;
  color: var(--obb-muted);
  font-size: 0.9375rem;
  font-weight: 600;
}

.obb-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 20px;
}

.obb-reviews__card {
  padding: 22px;
  border: 1px solid var(--obb-border);
  border-radius: var(--obb-radius);
  background: var(--obb-white);
}

.obb-reviews__stars {
  margin-bottom: 10px;
  color: var(--obb-accent);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  font-weight: 700;
}

.obb-reviews__name {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 700;
}

.obb-reviews__meta {
  margin: 0 0 12px;
  color: var(--obb-muted);
  font-size: 0.8125rem;
}

.obb-reviews__text {
  color: var(--obb-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.obb-reviews__text > *:last-child {
  margin-bottom: 0;
}

.obb-reviews--compact .obb-reviews__summary {
  display: none;
}

.obb-reviews--compact .obb-reviews__grid {
  gap: 16px;
}

.obb-reviews--compact .obb-reviews__card {
  padding: 18px;
  box-shadow: none;
}

@media (max-width: 768px) {
  .obb-page,
  .obb-service-page,
  .obb-service-page .obb-panel,
  .obb-reviews,
  .obb-reviews--compact {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .obb-page,
  .obb-service-page,
  .obb-service-page .obb-panel,
  .obb-reviews,
  .obb-reviews--compact {
    overflow-x: clip;
  }

  .obb-reviews--compact {
    overflow-y: visible;
    max-width: 100%;
    min-width: 0;
  }

  .obb-reviews--compact .obb-reviews__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
    min-width: 0;
    padding: 2px 0 8px;
    margin: 0;
    box-sizing: border-box;
  }

  .obb-reviews--compact .obb-reviews__grid::-webkit-scrollbar {
    display: none;
  }

  .obb-reviews--compact .obb-reviews__card {
    flex: 0 0 min(88%, 360px);
    max-width: 100%;
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    margin: 0;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  #bewertungen .obb-reviews__grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    background: transparent;
  }

  #bewertungen .obb-reviews__grid::-webkit-scrollbar {
    display: none;
  }

  #bewertungen .obb-reviews__grid {
    scrollbar-width: none;
  }

  #bewertungen .obb-reviews__card {
    flex: 0 0 min(88%, 360px);
    scroll-snap-align: start;
    overflow: hidden;
  }
}

@media (min-width: 769px) {
  .obb-page--kueche-main .obb-reviews--compact {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
  }

  .obb-page--kueche-main .obb-reviews--compact .obb-reviews__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 4px 0 8px;
  }

  .obb-page--kueche-main .obb-reviews--compact .obb-reviews__grid::-webkit-scrollbar {
    display: none;
  }

  .obb-page--kueche-main .obb-reviews--compact .obb-reviews__card {
    flex: 0 0 min(32%, 360px);
    max-width: 360px;
    scroll-snap-align: start;
    margin: 0;
    overflow: hidden;
  }
}

/* Gallery */
.obb-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

@media (max-width: 480px) {
  .obb-gallery {
    grid-template-columns: minmax(0, 1fr);
  }
}

.obb-gallery__item {
  margin: 0;
}

.obb-gallery__ph {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #d4d4d4 0%, #e8e8e8 50%, #cfcfcf 100%);
  border-radius: var(--obb-radius);
  border: 1px solid var(--obb-border);
}

.obb-gallery__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--obb-radius);
  border: 1px solid var(--obb-border);
}

.obb-gallery__item figcaption {
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--obb-muted);
}

/* Contact */
.obb-section--contact {
  background: var(--obb-white);
  border-top: 1px solid var(--obb-border);
}

/* Eine Spalte: minmax(300px) in zweispaltigem Grid erzwingt oft horizontales Overflow in schmalen Viewports */
.obb-contact {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: stretch;
  min-width: 0;
}

.obb-contact__info h2 {
  margin: 0 0 8px;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}

.obb-contact__info h3 {
  margin: 0 0 12px;
  font-size: 1.125rem;
  font-weight: 700;
}

.obb-contact__info > p {
  margin: 0 0 24px;
  color: var(--obb-muted);
}

.obb-contact__dl {
  margin: 0 0 20px;
}

.obb-contact__dl dt {
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--obb-muted);
}

.obb-contact__dl dt:first-child {
  margin-top: 0;
}

.obb-contact__dl dd {
  margin: 4px 0 0;
}

.obb-contact__dl a {
  color: var(--obb-accent);
  font-weight: 600;
  text-decoration: none;
}

.obb-contact__dl a:hover {
  text-decoration: underline;
}

.obb-map {
  margin-top: 24px;
  border-radius: var(--obb-radius);
  overflow: hidden;
  border: 1px solid var(--obb-border);
}

.obb-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.obb-contact__form-wrap {
  padding: 28px;
  background: var(--obb-bg);
  border: 1px solid var(--obb-border);
  border-radius: var(--obb-radius);
}

.obb-notice {
  padding: 12px 14px;
  margin: 0 0 20px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--obb-radius);
  color: #065f46;
  font-weight: 500;
}

.obb-notice--error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.obb-recaptcha-wrap {
  margin-bottom: 18px;
}

.obb-recaptcha-wrap .g-recaptcha {
  display: inline-block;
  vertical-align: top;
}

.obb-field {
  margin: 0 0 18px;
}

.obb-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.875rem;
  font-weight: 600;
}

.obb-req {
  color: var(--obb-accent);
}

.obb-field input,
.obb-field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  border: 1px solid var(--obb-border);
  border-radius: var(--obb-radius);
  background: var(--obb-white);
}

.obb-field input:focus,
.obb-field textarea:focus {
  outline: 2px solid var(--obb-accent);
  outline-offset: 1px;
}

.obb-field input[type="file"] {
  width: 100%;
  max-width: 100%;
  padding: 10px 0;
  font-size: 0.875rem;
  border: none;
  background: transparent;
}

.obb-field input[type="file"]:focus {
  outline: none;
}

.obb-field-hint {
  display: block;
  margin-top: 8px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--obb-muted);
}

.obb-field-checkboxes {
  border: none;
  margin: 0 0 18px;
  padding: 0;
  min-width: 0;
}

.obb-field-checkboxes__legend {
  margin: 0 0 12px;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--obb-text);
  line-height: 1.4;
}

.obb-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--obb-text);
  cursor: pointer;
}

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

.obb-check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  flex-shrink: 0;
  accent-color: var(--obb-accent);
  cursor: pointer;
}

/* Footer */
.obb-footer {
  background: #252525;
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 0;
}

.obb-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
  padding-bottom: 48px;
}

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

@media (max-width: 560px) {
  .obb-footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.obb-footer__title {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: var(--obb-white);
}

.obb-footer__brand p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}

.obb-footer__heading {
  margin: 0 0 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.obb-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
}

.obb-footer__list li {
  margin-bottom: 10px;
}

.obb-footer__list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.obb-footer__list a:hover {
  color: var(--obb-white);
  text-decoration: underline;
}

.obb-footer__legal {
  margin: 20px 0 0;
  font-size: 0.8125rem;
}

.obb-footer__legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.obb-footer__legal a:hover {
  color: var(--obb-white);
  text-decoration: underline;
}

.obb-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
}

.obb-footer__bar p {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Scroll reveal */
.obb-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .obb-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* FAB + back to top — трубка/мессенджеры внизу, стрелка наверх выше колонки */
.obb-fab {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.obb-fab__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--obb-accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.obb-fab__btn:hover {
  background: var(--obb-accent-hover);
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.obb-fab__btn--phone {
  background: var(--obb-accent);
}

.obb-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 901;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--obb-border);
  border-radius: 50%;
  background: var(--obb-white);
  color: var(--obb-text);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.obb-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.obb-to-top:hover {
  border-color: var(--obb-accent);
  color: var(--obb-accent);
}

/* Две кнопки FAB: 52 + gap 10 + 52; отступ между колонкой и стрелкой 12px */
body:has(.obb-fab) .obb-to-top {
  bottom: calc(24px + 52px + 10px + 52px + 12px);
}

@media (max-width: 480px) {
  .obb-fab {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
  }

  .obb-to-top {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
  }

  body:has(.obb-fab) .obb-to-top {
    bottom: calc(max(16px, env(safe-area-inset-bottom, 0px)) + 52px + 10px + 52px + 12px);
  }
}

/* Inner pages */
.obb-page {
  padding: 48px 0 72px;
}

.obb-service-page {
  display: grid;
  gap: 24px;
}

.obb-service-page .obb-panel {
  margin-top: 0 !important;
}

.obb-service-page__intro {
  margin: 0 0 20px;
  color: var(--obb-muted);
  font-size: 1rem;
}

.obb-service-page .obb-section__title {
  margin-bottom: 22px;
}

/* So läuft es ab: vertikale Timeline (nummerierte Schritte + Verbindungslinie) */
.obb-process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.obb-process-timeline__item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 22px;
  padding-bottom: 28px;
}

.obb-process-timeline__item:last-child {
  padding-bottom: 0;
}

.obb-process-timeline__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

.obb-process-timeline__marker {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--obb-accent);
  color: var(--obb-white);
  font-family: var(--obb-font-body);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(108, 185, 0, 0.32);
}

.obb-process-timeline__connector {
  flex: 1 1 auto;
  width: 3px;
  min-height: 22px;
  margin-top: 12px;
  background: linear-gradient(
    180deg,
    rgba(108, 185, 0, 0.5) 0%,
    rgba(108, 185, 0, 0.18) 100%
  );
  border-radius: 3px;
}

.obb-process-timeline__item:last-child .obb-process-timeline__connector {
  display: none;
}

.obb-process-timeline__body {
  min-width: 0;
  padding-top: 4px;
}

.obb-process-timeline__heading {
  margin: 0 0 10px;
  font-family: var(--obb-font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--obb-text);
}

.obb-process-timeline__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--obb-muted);
}

.obb-process-timeline__cta {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--obb-border);
  text-align: center;
  background: linear-gradient(180deg, rgba(108, 185, 0, 0.07) 0%, rgba(108, 185, 0, 0.02) 100%);
  border-radius: 0 0 calc(var(--obb-radius) - 2px) calc(var(--obb-radius) - 2px);
}

.obb-process-timeline__cta-lead {
  margin: 0 0 14px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--obb-text);
}

.obb-page--about {
  padding-bottom: 96px;
}

.obb-page--thankyou {
  padding-top: 48px;
  padding-bottom: 96px;
}

.obb-thankyou {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.obb-thankyou .obb-section__lead {
  margin-top: 0;
}

.obb-thankyou__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.obb-thankyou__direct {
  margin-top: 28px;
  font-size: 0.95rem;
  color: var(--obb-muted);
}

.obb-thankyou__direct-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--obb-text);
}

.obb-thankyou__direct-link {
  color: var(--obb-accent, #6cb900);
  font-weight: 600;
  text-decoration: none;
}

.obb-thankyou__direct-link:hover {
  text-decoration: underline;
}

.obb-thankyou__extra {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--obb-border);
  text-align: left;
}

@media (max-width: 480px) {
  .obb-page--thankyou {
    padding-top: 28px;
    padding-bottom: 72px;
  }

  .obb-thankyou__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 22px;
  }

  .obb-thankyou__actions .obb-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .obb-thankyou__direct-label {
    margin-bottom: 10px;
  }
}

.obb-page__extra {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--obb-border);
}

.obb-page__extra h2 {
  margin: 0 0 16px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--obb-text);
}

.obb-page h1 {
  margin: 0 0 20px;
  font-size: 1.85rem;
  font-weight: 700;
}

.obb-panel {
  padding: 28px;
  background: var(--obb-white);
  border: 1px solid var(--obb-border);
  border-radius: var(--obb-radius);
}

.obb-content {
  color: var(--obb-text);
}

.obb-content p {
  margin: 0 0 14px;
  color: var(--obb-muted);
}

.obb-content h2,
.obb-content h3 {
  margin: 24px 0 12px;
  color: var(--obb-text);
}

.obb-content ul {
  margin: 0 0 14px;
  padding-left: 1.25rem;
  color: var(--obb-muted);
}

.obb-content a {
  color: var(--obb-accent);
  font-weight: 600;
}

/* ===== Safe luxe visual polish (no layout changes) ===== */
:root {
  --obb-bg: #f6f3ef;
  --obb-bg-alt: #efe9e2;
  --obb-text: #1f1b16;
  --obb-muted: #61584d;
  --obb-border: #ded4c8;
  --obb-accent: #62a700;
  --obb-accent-hover: #4f8700;
  --obb-white: #fffdfb;
}

body {
  background:
    radial-gradient(1200px 420px at 100% -10%, rgba(98, 167, 0, 0.1), rgba(98, 167, 0, 0)),
    radial-gradient(900px 320px at 0% 20%, rgba(118, 93, 62, 0.07), rgba(118, 93, 62, 0)),
    var(--obb-bg);
}

@media (max-width: 768px) {
  body {
    background:
      radial-gradient(900px 320px at 0% 20%, rgba(118, 93, 62, 0.07), rgba(118, 93, 62, 0)),
      var(--obb-bg);
  }
}

.obb-header {
  background: rgba(255, 253, 251, 0.88);
  border-bottom: 1px solid rgba(222, 212, 200, 0.72);
}

.obb-hero__overlay {
  background: linear-gradient(
    112deg,
    rgba(15, 14, 12, 0.72) 0%,
    rgba(15, 14, 12, 0.46) 54%,
    rgba(15, 14, 12, 0.23) 100%
  );
}

.obb-hero-stats {
  background: rgba(10, 20, 31, 0.34);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 14px;
}

.obb-trust__item,
.obb-panel,
.obb-services__card,
.obb-why__card,
.obb-reviews__card {
  border-color: rgba(209, 193, 176, 0.8);
  box-shadow:
    0 12px 30px rgba(39, 28, 16, 0.08),
    0 2px 8px rgba(39, 28, 16, 0.04);
}

.obb-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(253, 250, 247, 0.98) 100%);
}

.obb-services__card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 244, 238, 0.92) 100%);
}

.obb-why__card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.94) 0%, rgba(249, 245, 239, 0.92) 100%);
}

.obb-ico {
  border-color: rgba(194, 176, 155, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.obb-btn {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.obb-btn--primary {
  box-shadow: 0 10px 24px rgba(98, 167, 0, 0.28);
}

.obb-btn:hover,
.obb-btn:focus-visible {
  transform: translateY(-1px);
}

.obb-process-timeline__marker {
  box-shadow:
    0 8px 18px rgba(98, 167, 0, 0.36),
    inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.obb-process-timeline__connector {
  background: linear-gradient(180deg, rgba(98, 167, 0, 0.62) 0%, rgba(98, 167, 0, 0.2) 100%);
}

.obb-gallery__img,
.obb-gallery__item img {
  box-shadow: 0 12px 24px rgba(36, 25, 13, 0.16);
}

.obb-form input:focus,
.obb-form textarea:focus,
.obb-form select:focus {
  border-color: rgba(98, 167, 0, 0.82);
  box-shadow: 0 0 0 4px rgba(98, 167, 0, 0.16);
}

.obb-footer {
  background: linear-gradient(180deg, #2f2a24 0%, #1f1b16 100%);
}

/* ===== Luxe upgrade: reviews ===== */
.obb-reviews__summary {
  color: #4f463b;
  letter-spacing: 0.01em;
}

.obb-reviews__card {
  position: relative;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.97) 0%, rgba(249, 245, 238, 0.96) 100%);
  border: 1px solid rgba(207, 190, 170, 0.78);
  box-shadow: none;
  transition: transform 200ms ease, border-color 200ms ease;
}

.obb-reviews__card::after {
  content: "“";
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: var(--obb-font-heading);
  font-size: 2rem;
  line-height: 1;
  color: rgba(98, 167, 0, 0.18);
  pointer-events: none;
}

.obb-reviews__card:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 164, 141, 0.86);
}

.obb-reviews__stars {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.obb-reviews__name {
  color: #2e261e;
  letter-spacing: 0.01em;
}

.obb-reviews__meta {
  margin: 0 0 12px;
}

.obb-reviews__meta-main {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(198, 181, 161, 0.72);
  background: rgba(250, 244, 236, 0.8);
  color: #5e5448;
  font-size: 0.8125rem;
}

.obb-reviews__meta-date {
  margin: 6px 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  color: #7a6e60;
}

.obb-reviews__text {
  color: #4c4338;
}

.obb-section--alt .obb-reviews__card {
  background:
    linear-gradient(165deg, rgba(255, 253, 250, 0.98) 0%, rgba(244, 237, 228, 0.94) 100%);
}

@media (max-width: 768px) {
  .obb-reviews__card::after {
    font-size: 1.7rem;
    top: 12px;
    right: 12px;
  }
}

