/* ========================================================================
   RIEGER.MEDIA – GASTRO-SERVICE
   Eigene Seitendatei; alle Hauptselektoren sind auf .rd-gastro-* begrenzt.
   ======================================================================== */

.rd-gastro-hero,
.rd-gastro-hero *,
.rd-gastro-service,
.rd-gastro-service *,
.rd-gastro-tool-intro,
.rd-gastro-tool-intro * {
  box-sizing: border-box;
}

.rd-gastro-hero,
.rd-gastro-service,
.rd-gastro-tool-intro {
  --rd-gastro-blue: #0078bf;
  --rd-gastro-blue-light: #4ebaf0;
  --rd-gastro-green: #21a73f;
  --rd-gastro-green-light: #72dc87;
  --rd-gastro-ink: #071018;
  --rd-gastro-panel: #0d1821;
  --rd-gastro-panel-light: #13232e;
  --rd-gastro-text: #f2f7fa;
  --rd-gastro-muted: #9cafba;
  --rd-gastro-line: rgba(255, 255, 255, .1);
}

/* HERO ------------------------------------------------------------------ */

.rd-gastro-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 760px;
  overflow: hidden;
  color: var(--rd-gastro-text);
  background:
    radial-gradient(circle at 76% 38%, rgba(0, 120, 191, .12), transparent 36%),
    radial-gradient(circle at 31% 110%, rgba(33, 167, 63, .075), transparent 34%),
    linear-gradient(135deg, #071018 0%, #09141c 55%, #071018 100%);
  isolation: isolate;
}

.rd-gastro-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 28%, #000 100%);
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 100%);
}

.rd-gastro-hero::after {
  content: "SERVICE";
  position: absolute;
  right: 1.5%;
  bottom: -2%;
  z-index: -2;
  color: rgba(255, 255, 255, .015);
  font-size: clamp(8rem, 17vw, 19rem);
  font-weight: 850;
  letter-spacing: -.075em;
  line-height: .75;
  pointer-events: none;
}

.rd-gastro-hero__glow {
  position: absolute;
  z-index: -2;
  width: clamp(280px, 35vw, 570px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.rd-gastro-hero__glow--blue {
  top: 5%;
  right: 4%;
  background: rgba(0, 120, 191, .15);
}

.rd-gastro-hero__glow--green {
  right: 36%;
  bottom: -42%;
  background: rgba(33, 167, 63, .1);
}

.rd-gastro-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 6vw, 100px);
  width: min(1480px, calc(100% - 64px));
  min-height: 760px;
  margin-inline: auto;
  padding-block: clamp(78px, 9vw, 130px);
}

.rd-gastro-hero__copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.rd-gastro-hero__eyebrow,
.rd-gastro-section__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 13px;
  margin: 0 0 22px;
  color: #7f96a3;
  font-size: .75rem;
  font-weight: 770;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.rd-gastro-hero__eyebrow {
  color: #76c8f4;
}

.rd-gastro-hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--rd-gastro-blue), var(--rd-gastro-green));
}

.rd-gastro-section__eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #61c3f4;
}

.rd-gastro-section__eyebrow span::after {
  content: "";
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, .18);
}

.rd-gastro-hero__title {
  max-width: 760px;
  margin: 0;
  color: var(--rd-gastro-text);
  font: inherit;
  font-size: clamp(2.75rem, 4.45vw, 5.1rem);
  font-weight: 790;
  letter-spacing: -.052em;
  line-height: .99;
}

.rd-gastro-hero__title span,
.rd-gastro-section__title span {
  color: transparent;
  background: linear-gradient(92deg, #edf9ff 0%, #69c6f4 50%, #72dc87 118%);
  -webkit-background-clip: text;
  background-clip: text;
}

.rd-gastro-hero__lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--rd-gastro-muted);
  font-size: clamp(1.02rem, 1.15vw, 1.2rem);
  line-height: 1.72;
}

.rd-gastro-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.rd-gastro-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: .94rem;
  font-weight: 740;
  line-height: 1.2;
  text-decoration: none !important;
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}

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

.rd-gastro-button:focus-visible {
  outline: 3px solid rgba(78, 186, 240, .4);
  outline-offset: 3px;
}

.rd-gastro-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rd-gastro-button--primary {
  color: #fff !important;
  background: linear-gradient(120deg, #0078bf, #078bd7);
  box-shadow: 0 14px 34px rgba(0, 120, 191, .25);
}

.rd-gastro-button--primary:hover,
.rd-gastro-button--primary:focus-visible {
  color: #fff !important;
  box-shadow: 0 18px 42px rgba(0, 120, 191, .35);
}

.rd-gastro-button--secondary {
  border-color: rgba(255, 255, 255, .15);
  color: #edf6fa !important;
  background: rgba(255, 255, 255, .035);
}

.rd-gastro-button--secondary:hover,
.rd-gastro-button--secondary:focus-visible {
  border-color: rgba(78, 186, 240, .3);
  color: #fff !important;
  background: rgba(78, 186, 240, .07);
}

.rd-gastro-hero__topics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 35px 0 0;
  color: #63808f;
  font-size: .64rem;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rd-gastro-hero__topics i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #365360;
}

/* Servicezentrale im Hero ---------------------------------------------- */

.rd-gastro-desk {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(14, 28, 38, .98), rgba(8, 18, 25, .99));
  box-shadow: 0 45px 90px rgba(0, 0, 0, .4), 0 0 0 8px rgba(255, 255, 255, .02);
  transform: perspective(1300px) rotateY(-1.2deg) rotateX(.3deg);
  transition: transform .45s ease, box-shadow .45s ease;
}

.rd-gastro-desk:hover {
  box-shadow: 0 52px 105px rgba(0, 0, 0, .47), 0 0 0 8px rgba(255, 255, 255, .028);
  transform: perspective(1300px) rotateY(0) rotateX(0) translateY(-4px);
}

.rd-gastro-desk__topbar {
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 11px;
  padding: 13px 17px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: rgba(8, 19, 26, .9);
}

.rd-gastro-desk__mark {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  color: #69c8f8;
  background: linear-gradient(140deg, rgba(0, 120, 191, .2), rgba(33, 167, 63, .12));
  box-shadow: inset 0 0 0 1px rgba(78, 186, 240, .14);
}

.rd-gastro-desk__mark svg,
.rd-gastro-desk__item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rd-gastro-desk__topbar > strong {
  color: #dce9ef;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .01em;
}

.rd-gastro-desk__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: #76dc8b;
  font-size: .57rem;
  font-weight: 770;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.rd-gastro-desk__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60d779;
  box-shadow: 0 0 0 4px rgba(96, 215, 121, .07), 0 0 12px rgba(96, 215, 121, .55);
}

.rd-gastro-desk__body {
  padding: clamp(22px, 3vw, 34px);
}

.rd-gastro-desk__intro {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.rd-gastro-desk__intro span {
  color: #5c7a89;
  font-size: .58rem;
  font-weight: 740;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.rd-gastro-desk__intro strong {
  margin-top: 6px;
  color: #ecf6fa;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 760;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.rd-gastro-desk__list {
  display: grid;
  gap: 9px;
}

.rd-gastro-desk__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  min-height: 78px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 11px;
  color: inherit !important;
  background: rgba(255, 255, 255, .025);
  text-decoration: none !important;
  transition: border-color .3s ease, background-color .3s ease, transform .3s ease;
}

.rd-gastro-desk__item:hover,
.rd-gastro-desk__item:focus-visible,
.rd-gastro-desk__item.is-active {
  border-color: rgba(78, 186, 240, .24);
  background: linear-gradient(90deg, rgba(0, 120, 191, .1), rgba(33, 167, 63, .035));
  transform: translateX(4px);
}

.rd-gastro-desk__item:focus-visible {
  outline: 2px solid rgba(78, 186, 240, .38);
  outline-offset: 2px;
}

.rd-gastro-desk__icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 9px;
  color: #7b97a5;
  background: rgba(255, 255, 255, .045);
}

.rd-gastro-desk__item.is-active .rd-gastro-desk__icon,
.rd-gastro-desk__item:hover .rd-gastro-desk__icon {
  color: #67c6f6;
  background: rgba(0, 120, 191, .12);
}

.rd-gastro-desk__item > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.rd-gastro-desk__item small {
  color: #69818e;
  font-size: .56rem;
  font-weight: 690;
  letter-spacing: .06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.rd-gastro-desk__item strong {
  margin-top: 5px;
  color: #dce9ef;
  font-size: .78rem;
  font-weight: 740;
  line-height: 1.25;
}

.rd-gastro-desk__arrow {
  width: 16px !important;
  height: 16px !important;
  color: #4e6a77;
}

.rd-gastro-desk__item.is-active .rd-gastro-desk__arrow,
.rd-gastro-desk__item:hover .rd-gastro-desk__arrow {
  color: #72dc87;
}

.rd-gastro-desk__footer {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: #6c8490;
  font-size: .65rem;
  font-weight: 650;
}

.rd-gastro-desk__footer span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #21a73f;
  box-shadow: 0 0 10px rgba(96, 215, 121, .5);
}

/* ZUTATENCHECK: SP-PAGE-BUILDER-SEKTION ------------------------------- */

.rd-gastro-tool-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 132px) 0 !important;
  background:
    radial-gradient(circle at 80% 14%, rgba(0, 120, 191, .08), transparent 28%),
    radial-gradient(circle at 16% 88%, rgba(33, 167, 63, .075), transparent 27%),
    #eef4f1 !important;
}

.rd-gastro-tool-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(24, 49, 40, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 49, 40, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 5%, transparent 72%);
  mask-image: radial-gradient(ellipse at center, #000 5%, transparent 72%);
}

.rd-gastro-tool-section > * {
  position: relative;
  z-index: 1;
}

.rd-gastro-tool-intro {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 38px;
  color: #183128;
}

.rd-gastro-tool-intro .rd-gastro-section__eyebrow {
  color: #70827a;
}

.rd-gastro-tool-intro .rd-gastro-section__eyebrow span {
  color: #1f7350;
}

.rd-gastro-tool-intro .rd-gastro-section__eyebrow span::after {
  background: rgba(24, 49, 40, .18);
}

.rd-gastro-tool-intro .rd-gastro-section__title {
  max-width: 790px;
  color: #183128;
}

.rd-gastro-tool-intro .rd-gastro-section__title span {
  background: linear-gradient(92deg, #183128 0%, #0078bf 58%, #21a73f 115%);
  -webkit-background-clip: text;
  background-clip: text;
}

.rd-gastro-tool-intro .rd-gastro-section__lead {
  max-width: 790px;
  color: #5f7169;
}

.rd-gastro-tool-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr) 38px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  margin-top: 32px;
}

.rd-gastro-tool-steps > div {
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(24, 49, 40, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .55);
}

.rd-gastro-tool-steps > div > span {
  color: #1f7350;
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .08em;
}

.rd-gastro-tool-steps strong {
  display: block;
  margin-top: 6px;
  color: #183128;
  font-size: .86rem;
}

.rd-gastro-tool-steps small {
  display: block;
  margin-top: 5px;
  color: #687b72;
  font-size: .67rem;
  line-height: 1.45;
}

.rd-gastro-tool-steps > svg {
  width: 38px;
  fill: none;
  stroke: rgba(31, 115, 80, .32);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rd-gastro-tool-intro__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: #65776f;
  font-size: .76rem;
  line-height: 1.5;
}

.rd-gastro-tool-intro__note svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: #1f7350;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Das Modul behält seine eigene helle Arbeitsoberfläche. Der interne Kopf
   wird visuell ausgeblendet, weil die Sektion bereits eine Einleitung besitzt. */
.rd-gastro-tool-section .zc-app {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto !important;
}

.rd-gastro-tool-section .zc-head {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.rd-gastro-tool-section .zc-card,
.rd-gastro-tool-section .zc-analysis {
  box-shadow: 0 24px 65px rgba(24, 49, 40, .11) !important;
}

/* GEMEINSAME SEKTIONSSTILE --------------------------------------------- */

.rd-gastro-service {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  color: var(--rd-gastro-text);
  background: #081219;
}

.rd-gastro-section__inner {
  width: min(1480px, calc(100% - 64px));
  margin-inline: auto;
}

.rd-gastro-section__title {
  max-width: 820px;
  margin: 0;
  color: var(--rd-gastro-text);
  font: inherit;
  font-size: clamp(2.5rem, 4vw, 4.65rem);
  font-weight: 785;
  letter-spacing: -.05em;
  line-height: 1.02;
}

.rd-gastro-section__lead {
  max-width: 690px;
  margin: 27px 0 0;
  color: var(--rd-gastro-muted);
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  line-height: 1.72;
}

/* ÄNDERUNGSABLAUF ------------------------------------------------------- */

.rd-gastro-process {
  position: relative;
  padding-block: clamp(90px, 10vw, 150px);
  background:
    radial-gradient(circle at 19% 38%, rgba(0, 120, 191, .09), transparent 32%),
    radial-gradient(circle at 84% 78%, rgba(33, 167, 63, .05), transparent 27%),
    #09141b;
}

.rd-gastro-process::before,
.rd-gastro-updates::before,
.rd-gastro-reference::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 186, 240, .28), rgba(114, 220, 135, .18), transparent);
}

.rd-gastro-process__header {
  max-width: 810px;
  margin-bottom: clamp(40px, 5vw, 68px);
}

.rd-gastro-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.rd-gastro-process-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: clamp(22px, 2.5vw, 31px);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(16, 31, 41, .96), rgba(9, 20, 27, .98));
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.rd-gastro-process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(78, 186, 240, .24);
  box-shadow: 0 26px 55px rgba(0, 0, 0, .23);
}

.rd-gastro-process-card__number {
  position: absolute;
  top: 12px;
  right: 15px;
  color: rgba(255, 255, 255, .028);
  font-size: 4.8rem;
  font-weight: 850;
  letter-spacing: -.08em;
  line-height: 1;
}

.rd-gastro-process-card__icon,
.rd-gastro-update-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(78, 186, 240, .14);
  border-radius: 10px;
  color: #62c3f4;
  background: rgba(0, 120, 191, .08);
}

.rd-gastro-process-card__icon svg,
.rd-gastro-update-card svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rd-gastro-process-card h3 {
  margin: 67px 0 0;
  color: #eef7fb;
  font: inherit;
  font-size: 1.12rem;
  font-weight: 760;
  letter-spacing: -.02em;
  line-height: 1.25;
}

.rd-gastro-process-card p {
  margin: 12px 0 0;
  color: #8298a4;
  font-size: .87rem;
  line-height: 1.65;
}

/* LAUFENDE PFLEGE ------------------------------------------------------- */

.rd-gastro-updates {
  position: relative;
  padding-block: clamp(90px, 10vw, 150px);
  background:
    radial-gradient(circle at 78% 42%, rgba(0, 120, 191, .1), transparent 34%),
    #071018;
}

.rd-gastro-updates .rd-gastro-section__inner {
  display: grid;
  grid-template-columns: minmax(390px, .76fr) minmax(0, 1.24fr);
  align-items: start;
  gap: clamp(48px, 7vw, 110px);
}

.rd-gastro-updates__copy {
  position: sticky;
  top: 130px;
}

.rd-gastro-updates__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.rd-gastro-update-card {
  min-height: 220px;
  padding: clamp(22px, 2.5vw, 30px);
  border: 1px solid rgba(255, 255, 255, .085);
  border-radius: 16px;
  background: rgba(255, 255, 255, .028);
  transition: transform .3s ease, border-color .3s ease, background-color .3s ease;
}

.rd-gastro-update-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 186, 240, .22);
  background: rgba(78, 186, 240, .045);
}

.rd-gastro-update-card:nth-child(even) > span {
  border-color: rgba(114, 220, 135, .14);
  color: #72dc87;
  background: rgba(33, 167, 63, .07);
}

.rd-gastro-update-card h3 {
  margin: 27px 0 0;
  color: #eaf4f8;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: 1.25;
}

.rd-gastro-update-card p {
  margin: 11px 0 0;
  color: #8196a2;
  font-size: .85rem;
  line-height: 1.62;
}

.rd-gastro-update-card--accent {
  border-color: rgba(33, 167, 63, .16);
  background: linear-gradient(145deg, rgba(33, 167, 63, .065), rgba(0, 120, 191, .035));
}

/* MERKBLATT ------------------------------------------------------------- */

.rd-gastro-reference {
  position: relative;
  padding-block: clamp(86px, 9vw, 135px);
  background:
    radial-gradient(circle at 82% 30%, rgba(33, 167, 63, .07), transparent 30%),
    #0a151c;
}

.rd-gastro-reference__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .78fr);
  align-items: center;
  gap: clamp(45px, 6vw, 90px);
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 33, 43, .98), rgba(8, 22, 28, .98));
  box-shadow: 0 38px 82px rgba(0, 0, 0, .25);
}

.rd-gastro-reference__copy .rd-gastro-button {
  margin-top: 32px;
}

.rd-gastro-reference__facts {
  display: grid;
  gap: 10px;
}

.rd-gastro-reference__facts > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 17px;
  min-height: 102px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .085);
  border-radius: 12px;
  background: rgba(255, 255, 255, .026);
}

.rd-gastro-reference__facts span {
  grid-row: 1 / 3;
  color: transparent;
  background: linear-gradient(135deg, #70cafa, #72dc87);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.6rem;
  font-weight: 810;
  letter-spacing: -.04em;
}

.rd-gastro-reference__facts strong {
  color: #e9f4f8;
  font-size: .86rem;
  font-weight: 740;
  line-height: 1.25;
}

.rd-gastro-reference__facts small {
  margin-top: 5px;
  color: #77909c;
  font-size: .66rem;
  line-height: 1.45;
}

/* ABSCHLUSS ------------------------------------------------------------- */

.rd-gastro-contact {
  padding: clamp(76px, 8vw, 120px) 0;
  background: #071018;
}

.rd-gastro-contact__inner {
  display: flex;
  width: min(1380px, calc(100% - 80px));
  min-height: 250px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-inline: auto;
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(78, 186, 240, .17);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 50%, rgba(33, 167, 63, .14), transparent 34%),
    linear-gradient(120deg, rgba(0, 120, 191, .14), rgba(33, 167, 63, .09));
}

.rd-gastro-contact .rd-gastro-section__eyebrow {
  margin-bottom: 17px;
  color: #72dc87;
}

.rd-gastro-contact h2 {
  max-width: 760px;
  margin: 0;
  color: #f2f8fb;
  font: inherit;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 780;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.rd-gastro-contact p:not(.rd-gastro-section__eyebrow) {
  max-width: 700px;
  margin: 19px 0 0;
  color: #a0b2bc;
  font-size: .98rem;
  line-height: 1.65;
}

.rd-gastro-button--contact {
  flex: 0 0 auto;
  color: #fff !important;
  background: #078bd7;
  box-shadow: 0 14px 34px rgba(0, 120, 191, .25);
}

/* Reveal: Ohne JavaScript bleiben die Inhalte sichtbar. */

.rd-gastro-service.is-reveal-ready .rd-gastro-reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .75, .25, 1);
}

.rd-gastro-service.is-reveal-ready .rd-gastro-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE ------------------------------------------------------------ */

@media (max-width: 1180px) {
  .rd-gastro-hero__inner {
    grid-template-columns: minmax(0, .88fr) minmax(470px, 1.12fr);
    width: min(1120px, calc(100% - 44px));
    gap: 42px;
  }

  .rd-gastro-section__inner {
    width: min(1120px, calc(100% - 44px));
  }

  .rd-gastro-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rd-gastro-process-card {
    min-height: 240px;
  }

  .rd-gastro-updates .rd-gastro-section__inner {
    grid-template-columns: minmax(340px, .78fr) minmax(0, 1.22fr);
    gap: 42px;
  }
}

@media (max-width: 960px) {
  .rd-gastro-hero {
    min-height: auto;
  }

  .rd-gastro-hero__inner {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 40px));
    min-height: 0;
    gap: 58px;
    padding-block: 88px 82px;
  }

  .rd-gastro-desk {
    transform: none;
  }

  .rd-gastro-updates .rd-gastro-section__inner {
    grid-template-columns: 1fr;
  }

  .rd-gastro-updates__copy {
    position: static;
    max-width: 760px;
  }

  .rd-gastro-reference__panel {
    grid-template-columns: 1fr;
  }

  .rd-gastro-contact__inner {
    width: min(100% - 40px, 760px);
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .rd-gastro-hero__inner,
  .rd-gastro-section__inner {
    width: min(100% - 28px, 620px);
  }

  .rd-gastro-hero__inner {
    padding-block: 70px 62px;
  }

  .rd-gastro-hero__title {
    font-size: clamp(2.45rem, 11vw, 3.8rem);
  }

  .rd-gastro-hero__lead {
    margin-top: 23px;
    font-size: .99rem;
    line-height: 1.65;
  }

  .rd-gastro-hero__actions {
    margin-top: 28px;
  }

  .rd-gastro-button {
    width: 100%;
  }

  .rd-gastro-desk__body {
    padding: 17px;
  }

  .rd-gastro-desk__item {
    min-height: 72px;
  }

  .rd-gastro-tool-section {
    padding: 66px 0 !important;
  }

  .rd-gastro-tool-intro,
  .rd-gastro-tool-section .zc-app {
    width: min(100% - 28px, 620px);
  }

  .rd-gastro-tool-steps {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .rd-gastro-tool-steps > svg {
    display: none;
  }

  .rd-gastro-tool-steps > div {
    min-height: 88px;
  }

  .rd-gastro-section__title {
    font-size: clamp(2.3rem, 10.5vw, 3.5rem);
  }

  .rd-gastro-section__lead {
    margin-top: 22px;
    font-size: .97rem;
    line-height: 1.65;
  }

  .rd-gastro-process,
  .rd-gastro-updates,
  .rd-gastro-reference {
    padding-block: 72px;
  }

  .rd-gastro-process__grid,
  .rd-gastro-updates__grid {
    grid-template-columns: 1fr;
  }

  .rd-gastro-process-card,
  .rd-gastro-update-card {
    min-height: 0;
  }

  .rd-gastro-process-card h3 {
    margin-top: 46px;
  }

  .rd-gastro-reference__panel {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .rd-gastro-reference__facts > div {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .rd-gastro-contact {
    padding: 58px 0 70px;
  }

  .rd-gastro-contact__inner {
    width: min(100% - 28px, 620px);
    padding: 29px 22px;
  }
}

@media (max-width: 390px) {
  .rd-gastro-hero__title {
    font-size: 2.3rem;
  }

  .rd-gastro-hero__topics {
    gap: 8px;
    font-size: .56rem;
  }

  .rd-gastro-desk__topbar {
    padding-inline: 12px;
  }

  .rd-gastro-desk__item {
    padding-inline: 11px;
  }

  .rd-gastro-desk__item strong {
    font-size: .7rem;
  }

  .rd-gastro-reference__facts > div {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .rd-gastro-reference__facts span {
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rd-gastro-hero *,
  .rd-gastro-service *,
  .rd-gastro-tool-intro * {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
  }

  .rd-gastro-desk,
  .rd-gastro-desk:hover,
  .rd-gastro-service.is-reveal-ready .rd-gastro-reveal {
    opacity: 1;
    transform: none;
  }
}
