@charset "UTF-8";
.signature, .signature a {
  background: #000;
  color: #fff;
  margin: 0;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.signature-social-block {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

.signature .copyright, .signature .signature-social-block li {
  display: inline-block;
}

.signature {
  padding-top: 5px;
}

.cc-grower {
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 100000000;
}

/*

Hier werden alle Anpassungen die in der Public View am Css gemacht werden
eingetragen.

*/
.grecaptcha-badge {
  visibility: hidden;
}

[class*=rora-] a {
  text-decoration: none;
  color: inherit;
}

.rora-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.signature {
  background: var(--rora-footer-bg) !important;
}

.rora-anchor {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
}

:root {
  --rora-primary: #3c2a8a;
  --rora-dark: #271a62;
  --rora-light: #5a43b8;
  --rora-tint: #edeaf7;
  --rora-tint-light: #f5f3fc;
  --rora-ink: #111020;
  --rora-sub: #4a4660;
  --rora-border: #d8d2ee;
  --rora-offwhite: #f9f8fd;
  --rora-footer-bg: #2d1f5e;
  --rora-font-serif: 'Cormorant Garamond', Georgia, serif;
  --rora-font-sans: 'DM Sans', system-ui, sans-serif;
}

@keyframes rora-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes rora-fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes rora-slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes rora-slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes rora-scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes rora-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes rora-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes rora-gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes rora-drawLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes rora-pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(60, 42, 138, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 4px rgba(60, 42, 138, 0.15);
  }
}
@keyframes rora-expandWidth {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--rora-font-sans);
  color: var(--rora-ink);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

button {
  font-family: var(--rora-font-sans);
}

/* ACCESSIBILITY */
.rora-skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  background: var(--rora-primary);
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 9999;
}

.rora-skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--rora-light);
  outline-offset: 3px;
  border-radius: 2px;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--rora-light);
  outline-offset: 3px;
}

/* REVEAL SYSTEM */
.rora-r {
  opacity: 0;
  transform: translateY(30px);
}

.rora-r.rora-vis {
  animation: rora-fadeInUp 0.7s ease forwards;
}

.rora-r.rora-vis:nth-child(2) {
  animation-delay: 0.1s;
}

.rora-r.rora-vis:nth-child(3) {
  animation-delay: 0.2s;
}

.rora-r.rora-vis:nth-child(4) {
  animation-delay: 0.3s;
}

/* ICON UTILITY */
.rora-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  vertical-align: middle;
}

/* BUTTONS */
.rora-btn-solid {
  display: inline-block;
  background: var(--rora-primary);
  color: #fff;
  font-family: var(--rora-font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.rora-btn-solid:hover {
  background: var(--rora-dark);
  color: #fff;
  animation: rora-pulseGlow 2s ease infinite;
}

.rora-btn-out {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  font-family: var(--rora-font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  transition: all 0.2s;
}

.rora-btn-out:hover {
  background: rgba(255, 255, 255, 0.12);
}

a.rora-btn-solid, a.rora-btn-out, a.rora-nav-cta {
  color: #fff !important;
}

/* SECTION BASE */
.rora-sec {
  padding: 6rem max(5%, (100% - 1280px) / 2);
  background: linear-gradient(180deg, #fff 0%, var(--rora-offwhite) 100%);
}

.rora-sec-alt {
  background: linear-gradient(180deg, var(--rora-offwhite) 0%, #fff 100%);
}

.rora-sec-head {
  margin-bottom: 3.5rem;
}

.rora-sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rora-primary);
  margin-bottom: 0.8rem;
}

.rora-sec-label::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--rora-primary);
}

.rora-sec-head h2 {
  font-family: var(--rora-font-serif);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: var(--rora-ink);
  line-height: 1.1;
}

.rora-sec-head h2 em {
  font-style: italic;
  color: var(--rora-primary);
}

.rora-sec-intro {
  font-size: 1rem;
  color: var(--rora-sub);
  max-width: 600px;
  margin-top: 0.9rem;
  line-height: 1.75;
}

/* WAVE DIVIDER */
.rora-wave-divider {
  margin-top: -1px;
  line-height: 0;
  overflow: hidden;
}

.rora-wave-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* HERO BLOCK */
.rora-hero {
  min-height: 100svh;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rora-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.rora-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(17, 16, 32, 0.84) 0%, rgba(39, 26, 98, 0.58) 50%, rgba(17, 16, 32, 0.22) 100%);
}

.rora-hero-inner {
  position: relative;
  z-index: 1;
  padding: 5rem max(5%, (100% - 1280px) / 2) 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: calc(700px + max(10%, 100% - 1280px));
}

.rora-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.8rem;
  animation: rora-fadeInDown 0.8s ease 0.1s both;
}

.rora-hero-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rora-light);
}

.rora-hero-h1 {
  font-family: var(--rora-font-serif);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.03;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
  animation: rora-fadeInUp 1s ease 0.2s both;
}

.rora-hero-h1 em {
  font-style: italic;
  color: #c4b5fd;
}

.rora-hero-p {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.93);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
  animation: rora-fadeInUp 1s ease 0.4s both;
}

.rora-btn-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  animation: rora-fadeInUp 1s ease 0.6s both;
}

.rora-hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(17, 16, 32, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin: 0 max(5%, (100% - 1280px) / 2) 1.5rem;
  animation: rora-fadeInUp 0.8s ease 0.8s both;
}

.rora-hs-item {
  padding: 1.4rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.rora-hs-item:last-child {
  border-right: none;
}

.rora-hs-item:nth-child(1) {
  animation: rora-fadeInUp 0.6s ease 0.9s both;
}

.rora-hs-item:nth-child(2) {
  animation: rora-fadeInUp 0.6s ease 1s both;
}

.rora-hs-item:nth-child(3) {
  animation: rora-fadeInUp 0.6s ease 1.1s both;
}

.rora-hs-item:nth-child(4) {
  animation: rora-fadeInUp 0.6s ease 1.2s both;
}

.rora-hs-num {
  font-family: var(--rora-font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.rora-hs-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.3rem;
}

/* ÜBER UNS BLOCK */
.rora-ueber {
  position: relative;
  overflow: hidden;
}

.rora-ueber::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(90, 67, 184, 0.06);
  filter: blur(60px);
  pointer-events: none;
}

.rora-ueber::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(90, 67, 184, 0.05);
  filter: blur(60px);
  pointer-events: none;
}

.rora-ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.rora-ueber-text p {
  color: var(--rora-sub);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  font-size: 1rem;
}

.rora-ueber-vals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.rora-val-card {
  background: #fff;
  border: 1px solid var(--rora-border);
  border-radius: 16px;
  padding: 1.4rem 1.3rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.rora-val-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(60, 42, 138, 0.08), 0 2px 8px rgba(60, 42, 138, 0.04);
}

.rora-val-card .rora-v-icon {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
  color: var(--rora-primary);
}

.rora-val-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--rora-ink);
  margin-bottom: 0.35rem;
}

.rora-val-card p {
  font-size: 0.83rem;
  color: var(--rora-sub);
  line-height: 1.6;
}

.rora-ueber-stats {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rora-border);
}

.rora-us-item {
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--rora-border);
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: background 0.25s;
}

.rora-us-item:last-child {
  border-bottom: none;
}

.rora-us-item:hover {
  background: var(--rora-tint-light);
}

.rora-us-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--rora-primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s;
}

.rora-us-item:hover::before {
  transform: scaleY(1);
}

.rora-us-big {
  font-family: var(--rora-font-serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--rora-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
}

.rora-us-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rora-ink);
}

.rora-us-desc {
  font-size: 0.82rem;
  color: var(--rora-sub);
  margin-top: 0.15rem;
}

/* LEISTUNGEN BLOCK */
.rora-leistungen {
  position: relative;
  overflow: hidden;
}

.rora-leistungen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(60, 42, 138, 0.018) 40px, rgba(60, 42, 138, 0.018) 41px);
  pointer-events: none;
}

.rora-leis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.rora-lc {
  background: #fff;
  border: 1px solid var(--rora-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.rora-lc:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(60, 42, 138, 0.08), 0 2px 8px rgba(60, 42, 138, 0.04);
}

.rora-lc:hover .rora-lc-img img {
  transform: scale(1.06);
}

.rora-lc-img {
  height: 200px;
  overflow: hidden;
  background: var(--rora-tint);
}

.rora-lc-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.rora-lc-body {
  padding: 1.5rem 1.5rem 1.8rem;
}

.rora-lc-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rora-primary);
  margin-bottom: 0.65rem;
}

.rora-lc-tag::before {
  content: "";
  width: 14px;
  height: 1.5px;
  background: var(--rora-primary);
}

.rora-lc h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--rora-ink);
  margin-bottom: 0.45rem;
}

.rora-lc p {
  font-size: 0.86rem;
  color: var(--rora-sub);
  line-height: 1.65;
}

/* REFERENZEN BLOCK */
.rora-referenzen {
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  margin-top: -40px;
  padding-top: calc(5rem + 40px);
  position: relative;
  z-index: 1;
}

.rora-ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.rora-ref-card {
  background: #fff;
  border: 1px solid var(--rora-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.rora-ref-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(60, 42, 138, 0.08), 0 2px 8px rgba(60, 42, 138, 0.04);
}

.rora-ref-img {
  height: 200px;
  overflow: hidden;
}

.rora-ref-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.rora-ref-placeholder {
  width: 100%;
  height: 100%;
  background: var(--rora-tint);
}

.rora-ref-body {
  padding: 1.3rem 1.4rem 1.7rem;
}

.rora-ref-tag {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rora-primary);
  background: var(--rora-tint);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.7rem;
}

.rora-ref-body h3 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--rora-ink);
  margin-bottom: 0.4rem;
}

.rora-ref-body p {
  font-size: 0.85rem;
  color: var(--rora-sub);
  line-height: 1.6;
}

.rora-ref-cta {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.rora-ref-cta p {
  font-size: 0.98rem;
  color: var(--rora-sub);
}

/* TEAM BLOCK */
.rora-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}

.rora-tc {
  background: #fff;
  border: 1px solid var(--rora-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.rora-tc:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(60, 42, 138, 0.08), 0 2px 8px rgba(60, 42, 138, 0.04);
}

.rora-tc-photo {
  height: 190px;
  overflow: hidden;
  background: var(--rora-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rora-tc-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: transform 0.5s;
}

.rora-tc:hover .rora-tc-photo img {
  transform: scale(1.04);
}

.rora-tc-body {
  padding: 0.95rem 1rem 1.1rem;
}

.rora-tc-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--rora-ink);
  margin-bottom: 0.18rem;
}

.rora-tc-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rora-primary);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.rora-tc-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.rora-tc-contact {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--rora-sub);
  transition: color 0.2s;
}

.rora-tc-contact:hover {
  color: var(--rora-primary);
}

.rora-tc-contact .rora-ci {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--rora-primary);
}

/* VISION BLOCK */
.rora-vision {
  background: linear-gradient(135deg, var(--rora-dark), #1a1145, var(--rora-dark));
  background-size: 200% 200%;
  animation: rora-gradientShift 8s ease infinite;
  padding: 7rem max(5%, (100% - 1280px) / 2);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.rora-vision::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(90, 67, 184, 0.18);
  pointer-events: none;
}

.rora-vision::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(90, 67, 184, 0.12);
  pointer-events: none;
}

.rora-vision-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.rora-vision .rora-sec-label {
  color: #a89dd8;
  justify-content: center;
}

.rora-vision .rora-sec-label::before {
  background: #a89dd8;
}

.rora-vision h2 {
  font-family: var(--rora-font-serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.rora-vision h2 em {
  font-style: italic;
  color: #c4b5fd;
}

.rora-vision p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* PARTNER BLOCK */
.rora-partner {
  position: relative;
}

.rora-partner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(60, 42, 138, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.rora-pgrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  position: relative;
}

.rora-pc {
  background: #fff;
  border: 1px solid var(--rora-border);
  border-radius: 12px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.rora-pc:hover {
  border-color: var(--rora-light);
  box-shadow: 0 8px 30px rgba(60, 42, 138, 0.08), 0 2px 8px rgba(60, 42, 138, 0.04);
}

.rora-pc img {
  max-height: 34px;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.rora-pc-fb {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rora-sub);
  text-align: center;
  display: none;
}

/* BLOG PREVIEW BLOCK (homepage) */
.rora-blog-prev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.rora-bp-card {
  background: #fff;
  border: 1px solid var(--rora-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.rora-bp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(60, 42, 138, 0.08), 0 2px 8px rgba(60, 42, 138, 0.04);
}

.rora-bp-card:hover .rora-bp-img img {
  transform: scale(1.05);
}

.rora-bp-img {
  height: 180px;
  overflow: hidden;
  background: var(--rora-tint);
  position: relative;
  flex-shrink: 0;
}

.rora-bp-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.rora-bp-cat {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--rora-primary);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.rora-bp-body {
  padding: 1.3rem 1.4rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rora-bp-meta {
  font-size: 0.75rem;
  color: var(--rora-sub);
  margin-bottom: 0.7rem;
}

.rora-bp-body h3 {
  font-family: var(--rora-font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--rora-ink);
  line-height: 1.25;
  margin-bottom: 0.5rem;
  flex: 1;
}

.rora-bp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rora-primary);
  margin-top: 1rem;
  position: relative;
}

.rora-bp-link::after {
  content: "";
  position: absolute;
  inset: -9999px;
}

.rora-bp-card:hover .rora-bp-link {
  gap: 0.7rem;
}

.rora-blog-prev-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.rora-bp-icon-wrap {
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #edeaf7, #d5cded);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  color: var(--rora-primary);
}

/* KONTAKT BLOCK */
.rora-kontakt {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, var(--rora-tint-light) 50%, #fff 100%);
}

.rora-kontakt::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(90, 67, 184, 0.06);
  filter: blur(80px);
  pointer-events: none;
}

.rora-kontakt::after {
  content: "";
  position: absolute;
  left: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(90, 67, 184, 0.05);
  filter: blur(60px);
  pointer-events: none;
}

.rora-kontakt-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.rora-kform {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rora-kfield {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.rora-kfield label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rora-sub);
}

.rora-kfield input, .rora-kfield textarea, .rora-kfield select {
  border: 1.5px solid var(--rora-border);
  padding: 0.8rem 1rem;
  font-family: var(--rora-font-sans);
  font-size: 0.93rem;
  color: var(--rora-ink);
  background: #fff;
  outline: none;
  border-radius: 12px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.rora-kfield input:focus, .rora-kfield textarea:focus, .rora-kfield select:focus {
  border-color: var(--rora-primary);
}

.rora-kfield textarea {
  resize: vertical;
  min-height: 120px;
}

.rora-krow2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rora-kinfo h3 {
  font-family: var(--rora-font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.rora-kinfo-items {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.rora-ki {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.rora-ki-icon {
  width: 38px;
  height: 38px;
  background: var(--rora-tint);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rora-primary);
  border-radius: 10px;
}

.rora-ki-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rora-primary);
  margin-bottom: 0.2rem;
}

.rora-ki-text a, .rora-ki-text p {
  font-size: 0.92rem;
  color: var(--rora-sub);
  line-height: 1.65;
  display: block;
}

.rora-ki-text a:hover {
  color: var(--rora-primary);
}

.rora-kform-submit {
  align-self: flex-start;
}

/* BLOG HERO (blog.html) */
.rora-blog-hero {
  padding: 140px max(5%, (100% - 1280px) / 2) 100px;
  background: linear-gradient(170deg, var(--rora-offwhite) 0%, #fff 70%, var(--rora-tint-light) 100%);
  border-bottom: 1px solid var(--rora-border);
  position: relative;
  overflow: hidden;
}

.rora-blog-hero::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--rora-tint);
  opacity: 0.6;
  pointer-events: none;
}

.rora-blog-hero::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--rora-tint-light);
  opacity: 0.7;
  pointer-events: none;
}

.rora-blog-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.rora-blog-hero h1 {
  font-family: var(--rora-font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--rora-ink);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.rora-blog-hero h1 em {
  font-style: italic;
  color: var(--rora-primary);
}

.rora-blog-hero p {
  font-size: 1.05rem;
  color: var(--rora-sub);
  line-height: 1.75;
  max-width: 520px;
}

.rora-blog-hero .rora-sec-label {
  animation: rora-fadeInUp 0.8s ease 0.1s both;
}

/* FILTER BAR */
.rora-filter-bar {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--rora-border);
  padding: 0.9rem max(5%, (100% - 1280px) / 2);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  position: sticky;
  top: 70px;
  z-index: 100;
  animation: rora-fadeInDown 0.5s ease 0.3s both;
}

.rora-filter-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rora-sub);
  margin-right: 0.4rem;
}

.rora-filter-btn {
  font-family: var(--rora-font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--rora-border);
  border-radius: 50px;
  background: #fff;
  color: var(--rora-sub);
  cursor: pointer;
  transition: all 0.2s, transform 0.15s;
}

.rora-filter-btn:hover, .rora-filter-btn.rora-active {
  background: var(--rora-primary);
  color: #fff;
  border-color: var(--rora-primary);
}

.rora-filter-btn.rora-active {
  transform: scale(1.05);
}

/* BLOG GRID (blog listing) */
.rora-blog-section {
  padding: 5rem max(5%, (100% - 1280px) / 2);
  background: linear-gradient(180deg, #fff 0%, var(--rora-offwhite) 100%);
}

.rora-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rora-bc {
  background: #fff;
  border: 1px solid var(--rora-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.rora-bc:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(60, 42, 138, 0.08), 0 2px 8px rgba(60, 42, 138, 0.04);
}

.rora-bc:hover .rora-bc-img img {
  transform: scale(1.05);
}

.rora-bc-img {
  height: 220px;
  overflow: hidden;
  background: var(--rora-tint);
  position: relative;
  flex-shrink: 0;
}

.rora-bc-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.rora-bc-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--rora-primary);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  z-index: 1;
}

.rora-bc-body {
  padding: 1.6rem 1.6rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rora-bc-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  color: var(--rora-sub);
  margin-bottom: 0.8rem;
}

.rora-bc-meta .rora-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--rora-border);
}

.rora-bc-body h2 {
  font-family: var(--rora-font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--rora-ink);
  line-height: 1.25;
  margin-bottom: 0.7rem;
}

.rora-bc-body p {
  font-size: 0.88rem;
  color: var(--rora-sub);
  line-height: 1.65;
  flex: 1;
}

.rora-bc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rora-primary);
  margin-top: 1.2rem;
  transition: gap 0.2s;
  position: relative;
  z-index: 1;
}

.rora-bc-link::after {
  content: "";
  position: absolute;
  inset: -9999px;
  cursor: pointer;
}

.rora-bc:hover .rora-bc-link {
  gap: 0.7rem;
}

.rora-bc.rora-hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

.rora-bc.rora-featured {
  grid-column: span 2;
}

.rora-bc.rora-featured .rora-bc-img {
  height: 320px;
}

.rora-bc.rora-featured .rora-bc-body h2 {
  font-size: 1.8rem;
}

.rora-bc-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rora-light);
}

/* PAGINATION */
.rora-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 4rem;
  padding-bottom: 2rem;
}

.rora-pg-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--rora-border);
  border-radius: 50px;
  background: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  color: var(--rora-ink);
}

.rora-pg-btn:hover {
  background: var(--rora-primary);
  color: #fff;
  border-color: var(--rora-primary);
}

.rora-pg-btn.rora-pg-active {
  background: var(--rora-primary);
  color: #fff;
  border: 1.5px solid var(--rora-primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: default;
}

.rora-pg-btn.rora-pg-num {
  font-size: 0.85rem;
  font-weight: 600;
}

/* NEWSLETTER (blog.html) */
.rora-newsletter {
  background: linear-gradient(135deg, var(--rora-dark), #1a1145, var(--rora-dark));
  background-size: 200% 200%;
  animation: rora-gradientShift 8s ease infinite;
  padding: 5rem max(5%, (100% - 1280px) / 2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rora-newsletter::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(90, 67, 184, 0.18);
  pointer-events: none;
  filter: blur(40px);
}

.rora-newsletter::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(90, 67, 184, 0.12);
  pointer-events: none;
  filter: blur(30px);
}

.rora-newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0 auto;
}

.rora-newsletter .rora-sec-label {
  justify-content: center;
  color: #a89dd8;
}

.rora-newsletter .rora-sec-label::before {
  background: #a89dd8;
}

.rora-newsletter h2 {
  font-family: var(--rora-font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.rora-newsletter h2 em {
  font-style: italic;
  color: #c4b5fd;
}

.rora-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.rora-nl-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
}

.rora-nl-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: none;
  border-radius: 12px;
  font-family: var(--rora-font-sans);
  font-size: 0.92rem;
  color: var(--rora-ink);
  outline: none;
}

.rora-nl-form button {
  background: var(--rora-light);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 1.4rem;
  font-family: var(--rora-font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.rora-nl-form button:hover {
  background: var(--rora-primary);
}

/* BLOG POST (article page) */
.rora-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--rora-light), var(--rora-primary));
  z-index: 201;
  transition: width 0.1s;
}

.rora-breadcrumb {
  padding: 90px max(5%, (100% - 1280px) / 2) 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--rora-sub);
  animation: rora-fadeIn 0.6s ease 0.1s both;
}

.rora-breadcrumb a {
  color: var(--rora-primary);
  transition: opacity 0.2s;
}

.rora-breadcrumb a:hover {
  opacity: 0.7;
}

.rora-breadcrumb .rora-sep {
  color: var(--rora-border);
}

.rora-post-hero {
  padding: 1.8rem max(5%, (100% - 1280px) / 2) 0;
}

.rora-post-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rora-primary);
  margin-bottom: 1.2rem;
  animation: rora-slideInLeft 0.6s ease 0.2s both;
}

.rora-post-cat::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--rora-primary);
}

.rora-post-hero h1 {
  font-family: var(--rora-font-serif);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--rora-ink);
  line-height: 1.1;
  max-width: 820px;
  margin-bottom: 1.2rem;
  animation: rora-fadeInUp 1s ease 0.3s both;
}

.rora-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--rora-sub);
  margin-bottom: 2rem;
  animation: rora-fadeIn 0.6s ease 0.5s both;
}

.rora-post-meta .rora-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--rora-border);
}

.rora-author-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.rora-author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rora-tint);
  overflow: hidden;
  flex-shrink: 0;
}

.rora-author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.rora-post-hero-img {
  width: 100%;
  height: clamp(280px, 45vw, 520px);
  -o-object-fit: cover;
     object-fit: cover;
  animation: rora-scaleIn 0.8s ease 0.4s both;
}

.rora-article-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  padding: 3.5rem max(5%, (100% - 1280px) / 2) 5rem;
}

/* Article content typography */
.rora-post-content p {
  font-size: 1.05rem;
  color: var(--rora-ink);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.rora-post-content h2 {
  font-family: var(--rora-font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--rora-ink);
  margin: 2.8rem 0 1rem;
  line-height: 1.2;
}

.rora-post-content h3 {
  font-family: var(--rora-font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rora-ink);
  margin: 2rem 0 0.7rem;
}

.rora-post-content ul, .rora-post-content ol {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--rora-ink);
}

.rora-post-content li {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.rora-post-content strong {
  font-weight: 700;
}

.rora-post-content a {
  color: var(--rora-primary);
  text-decoration: underline;
  text-decoration-color: var(--rora-tint);
}

.rora-post-content a:hover {
  text-decoration-color: var(--rora-primary);
}

.rora-post-content blockquote {
  border-left: 3px solid var(--rora-primary);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: var(--rora-tint-light);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.rora-post-content blockquote p {
  font-family: var(--rora-font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--rora-dark);
  margin: 0;
}

.rora-post-content figure {
  margin: 2.5rem 0;
}

.rora-post-content figure img {
  width: 100%;
  border: 1px solid var(--rora-border);
}

.rora-post-content figure figcaption {
  font-size: 0.82rem;
  color: var(--rora-sub);
  margin-top: 0.6rem;
  text-align: center;
  font-style: italic;
}

/* Tip box */
.rora-tip-box {
  background: var(--rora-tint);
  border: 1px solid var(--rora-border);
  border-radius: 16px;
  padding: 1.3rem 1.5rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.rora-tip-box .rora-tip-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--rora-primary);
  line-height: 1;
}

.rora-tip-box p {
  margin: 0;
  font-size: 0.95rem;
}

/* Post footer */
.rora-post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rora-border);
}

.rora-post-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.rora-tag {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rora-primary);
  background: var(--rora-tint);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.rora-tag:hover {
  background: var(--rora-primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(60, 42, 138, 0.2);
}

.rora-share-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.rora-share-lbl {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rora-sub);
}

.rora-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border: 1.5px solid var(--rora-border);
  border-radius: 50px;
  color: var(--rora-sub);
  transition: all 0.2s;
  background: #fff;
  cursor: pointer;
}

.rora-share-btn:hover {
  border-color: var(--rora-primary);
  color: var(--rora-primary);
}

.rora-share-btn svg {
  flex-shrink: 0;
}

/* Sidebar */
.rora-sidebar-widget {
  background: var(--rora-offwhite);
  border: 1px solid var(--rora-border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.8rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.rora-sidebar-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(60, 42, 138, 0.08), 0 2px 8px rgba(60, 42, 138, 0.04);
}

.rora-widget-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rora-primary);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--rora-border);
}

.rora-author-card {
  text-align: center;
}

.rora-author-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--rora-tint);
}

.rora-author-card .rora-a-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.rora-author-card .rora-a-role {
  font-size: 0.78rem;
  color: var(--rora-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.rora-author-card p {
  font-size: 0.83rem;
  color: var(--rora-sub);
  line-height: 1.65;
}

.rora-toc-list {
  list-style: none;
}

.rora-toc-list li {
  margin-bottom: 0.5rem;
}

.rora-toc-list a {
  font-size: 0.85rem;
  color: var(--rora-sub);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.rora-toc-list a::before {
  content: "→";
  font-size: 0.75rem;
  color: var(--rora-light);
}

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

.rora-related-item {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--rora-border);
}

.rora-related-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.rora-related-thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--rora-tint);
  border-radius: 12px;
}

.rora-related-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.rora-related-thumb-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: var(--rora-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rora-primary);
  border-radius: 12px;
}

.rora-r-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rora-primary);
  display: block;
  margin-bottom: 0.2rem;
}

.rora-related-info a {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--rora-ink);
  line-height: 1.35;
  transition: color 0.2s;
}

.rora-related-info a:hover {
  color: var(--rora-primary);
}

.rora-cta-widget {
  background: linear-gradient(135deg, var(--rora-dark), #1a1145, var(--rora-primary));
  background-size: 200% 200%;
  animation: rora-gradientShift 8s ease infinite;
  border: none;
}

.rora-cta-widget .rora-widget-title {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
}

.rora-cta-widget p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.2rem;
  line-height: 1.65;
}

.rora-cta-widget a {
  display: block;
  background: #fff;
  color: var(--rora-primary);
  text-align: center;
  padding: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background 0.2s;
}

.rora-cta-widget a:hover {
  background: var(--rora-tint-light);
}

.rora-cta-widget:hover {
  transform: none;
  box-shadow: none;
}

/* More articles section */
.rora-more-section {
  padding: 5rem max(5%, (100% - 1280px) / 2);
  background: linear-gradient(180deg, var(--rora-offwhite) 0%, #fff 100%);
  border-top: 1px solid var(--rora-border);
  position: relative;
  overflow: hidden;
}

.rora-more-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 67, 184, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.rora-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.rora-mc {
  background: #fff;
  border: 1px solid var(--rora-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.rora-mc:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(60, 42, 138, 0.08), 0 2px 8px rgba(60, 42, 138, 0.04);
}

.rora-mc:hover .rora-mc-img img {
  transform: scale(1.05);
}

.rora-mc-img {
  height: 180px;
  overflow: hidden;
  background: var(--rora-tint);
  position: relative;
  flex-shrink: 0;
}

.rora-mc-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.rora-mc-img-placeholder {
  height: 180px;
  background: linear-gradient(135deg, #edeaf7, #d5cded);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--rora-primary);
}

.rora-mc-cat {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--rora-primary);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}

.rora-mc-body {
  padding: 1.3rem 1.4rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rora-mc-meta {
  font-size: 0.73rem;
  color: var(--rora-sub);
  margin-bottom: 0.7rem;
}

.rora-mc-body h3 {
  font-family: var(--rora-font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--rora-ink);
  line-height: 1.25;
  flex: 1;
  margin-bottom: 0;
}

.rora-mc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rora-primary);
  margin-top: 1rem;
  transition: gap 0.2s;
  position: relative;
}

.rora-mc-link::after {
  content: "";
  position: absolute;
  inset: -9999px;
}

.rora-mc:hover .rora-mc-link {
  gap: 0.7rem;
}

/* Back link */
.rora-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rora-primary);
  padding: 2rem max(5%, (100% - 1280px) / 2);
  transition: opacity 0.2s;
}

.rora-back-link:hover {
  opacity: 0.7;
}

/* NAV */
.rora-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 70px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(216, 210, 238, 0.5);
  transition: box-shadow 0.3s;
}

.rora-nav--scrolled {
  box-shadow: 0 4px 24px rgba(60, 42, 138, 0.08);
}

.rora-nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 max(5%, (100% - 1280px) / 2);
  gap: 1.5rem;
}

.rora-nav-logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.rora-nav-logo {
  height: 30px;
  width: auto;
}

.rora-nav-logo-text {
  font-weight: 700;
  font-size: 1rem;
  color: var(--rora-ink);
}

.rora-nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0 auto;
}

.rora-nav-links li {
  display: flex;
}

.rora-nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rora-ink);
  padding: 0.5rem 0.9rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.rora-nav-links a:hover {
  color: var(--rora-primary);
}

.rora-nav-cta {
  display: inline-block;
  background: var(--rora-primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.rora-nav-cta:hover {
  background: var(--rora-dark);
  color: #fff;
  animation: rora-pulseGlow 2s ease infinite;
}

.rora-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}

.rora-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rora-ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.rora-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.rora-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.rora-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.rora-mob-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 199;
  padding: 0 max(5%, (100% - 1280px) / 2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--rora-border);
  border-radius: 0 0 20px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}

.rora-mob-nav.open {
  display: block;
  max-height: 600px;
  padding: 1rem max(5%, (100% - 1280px) / 2);
}

.rora-mob-nav a {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rora-ink);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rora-tint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.rora-mob-nav a:last-child {
  border-bottom: none;
}

.rora-mob-nav a:hover {
  color: var(--rora-primary);
}

@media (max-width: 768px) {
  .rora-nav-links, .rora-nav-cta {
    display: none;
  }
  .rora-hamburger {
    display: flex;
  }
}
@media (max-width: 600px) {
  .rora-nav-inner {
    padding: 0 4%;
  }
}
/* FOOTER */
.rora-footer {
  background: var(--rora-footer-bg);
  color: #c8c0e8;
  padding: 4.5rem max(5%, (100% - 1280px) / 2) 2.5rem;
}

.rora-foot-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.rora-foot-logo {
  display: block;
  margin-bottom: 2rem;
}

.rora-foot-logo img {
  height: 26px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.rora-foot-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.rora-foot-tel a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.45rem;
  transition: color 0.2s;
}

.rora-foot-tel a:hover {
  color: #fff;
}

.rora-foot-tel .rora-ft-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.7;
}

.rora-foot-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 1rem;
}

.rora-foot-col a {
  display: block;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.rora-foot-col a:hover {
  color: #fff;
}

.rora-foot-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.8rem;
}

.rora-foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.rora-foot-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.rora-foot-legal {
  display: flex;
  gap: 1.5rem;
}

.rora-foot-legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.rora-foot-legal a:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1200px) {
  .rora-team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .rora-pgrid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1000px) {
  .rora-leis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rora-ref-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rora-foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .rora-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .rora-pgrid {
    grid-template-columns: repeat(3, 1fr);
  }
  .rora-blog-prev-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rora-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rora-bc.rora-featured {
    grid-column: span 2;
  }
  .rora-more-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .rora-ueber-grid, .rora-kontakt-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .rora-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .rora-pgrid {
    grid-template-columns: repeat(3, 1fr);
  }
  .rora-article-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .rora-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .rora-leis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rora-ueber-vals {
    grid-template-columns: 1fr 1fr;
  }
  .rora-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .rora-sec {
    padding: 5rem 5%;
  }
  .rora-pgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rora-blog-grid {
    grid-template-columns: 1fr;
  }
  .rora-bc.rora-featured {
    grid-column: span 1;
  }
  .rora-bc.rora-featured .rora-bc-img {
    height: 220px;
  }
  .rora-bc.rora-featured .rora-bc-body h2 {
    font-size: 1.35rem;
  }
  .rora-more-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .rora-sec {
    padding: 4.5rem 4%;
  }
  .rora-hero-inner {
    padding: 4rem 4% 2rem;
  }
  .rora-hero-stats {
    margin: 0 4% 1.5rem;
  }
  .rora-leis-grid, .rora-ref-grid, .rora-blog-prev-grid {
    grid-template-columns: 1fr;
  }
  .rora-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rora-pgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rora-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .rora-krow2 {
    grid-template-columns: 1fr;
  }
  .rora-foot-top {
    grid-template-columns: 1fr;
  }
  .rora-ueber-vals {
    grid-template-columns: 1fr;
  }
  .rora-btn-row {
    flex-direction: column;
  }
  .rora-kontakt-grid {
    gap: 2.5rem;
  }
  .rora-blog-hero {
    padding: 120px 5% 60px;
  }
  .rora-blog-section {
    padding: 3.5rem 5%;
  }
  .rora-nl-form {
    flex-direction: column;
  }
  .rora-nl-form input, .rora-nl-form button {
    width: 100%;
    border-radius: 12px;
  }
  .rora-article-wrap {
    padding: 2.5rem 4% 4rem;
  }
  .rora-post-hero {
    padding: 1.5rem 4% 0;
  }
  .rora-breadcrumb {
    padding: 90px 4% 0;
  }
  .rora-sidebar {
    grid-template-columns: 1fr;
  }
  .rora-back-link {
    padding: 1.5rem 4%;
  }
  .rora-more-section {
    padding: 4rem 4%;
  }
}
@media (max-width: 400px) {
  .rora-team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rora-hero-stats {
    grid-template-columns: 1fr 1fr;
  }
}
@media (hover: none) {
  .rora-lc:hover, .rora-tc:hover, .rora-ref-card:hover, .rora-pc:hover,
  .rora-us-item:hover, .rora-bp-card:hover, .rora-val-card:hover,
  .rora-bc:hover, .rora-mc:hover {
    transform: none;
    box-shadow: none;
    background: #fff;
  }
  .rora-us-item:hover::before {
    transform: scaleY(0);
  }
}
