@media (min-width: 601px) {
  .hero-images {
    max-width: 98vw;
    padding: 1.2rem 0.5rem 2.2rem 0.5rem;
    gap: 1.2rem;
    grid-template-columns: 1fr 1fr;
  }

  .hero-image-card {
    min-width: 0;
    height: auto;
  }

  .hero-image-left {
    aspect-ratio: 4 / 3;
  }

  .hero-image-right {
    aspect-ratio: 3 / 4;
  }

  .hero-image-media {
    border-radius: 1.1rem;
    height: 100%;
  }

  .hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-image-left img {
    aspect-ratio: 4 / 3;
  }

  .hero-image-right img {
    aspect-ratio: 3 / 4;
  }
}
/* FAQ two-column layout */
.faq-two-col {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.faq-col--left {
  padding-top: 0.5rem;
}

.faq-col--right {
  min-width: 0;
}

@media (max-width: 1024px) {
  .faq-two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .faq-col--left {
    padding-top: 0;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 600px) {
  .faq-two-col {
    display: block;
  }
  .faq-col--left, .faq-col--right {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .faq-list {
    border-radius: 0.75rem;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.03);
  }
}

/* FAQ mobile improvements */
@media (max-width: 480px) {
  .faq {
    padding: 3rem 0 2.5rem;
  }
  .faq-list {
    margin-top: 1.5rem;
  }
  .faq-question {
    padding: 1rem 1rem;
    font-size: 1rem;
  }
  .faq-answer-inner {
    padding: 1rem 1rem 1.25rem;
    font-size: 0.97rem;
  }
  .section-title {
    font-size: 1.35rem;
  }
  .section-sub {
    font-size: 1rem;
  }
}
/* =============================================================================
   FONTS
   ============================================================================= */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =============================================================================
   VARIABLES
   ============================================================================= */

:root {
  --bg:          #0A0A0A;
  --surface:     #111111;
  --surface-2:   #191919;
  --border:      #262626;
  --text:        #FFFFFF;
  --text-muted:  #888888;
  --text-dim:    #444444;
  --gold:        #C9A04A;
  --gold-bg:     rgba(201, 160, 74, 0.12);
  --green:       #22C55E;
  --amber:       #F59E0B;
  --blue:        #60A5FA;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-xs:   5px;
  --ease:        0.2s ease;
}

/* =============================================================================
   RESET & BASE
   ============================================================================= */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section-dark {
  background: rgb(20, 24, 27);
}

.section-white {
  background: #ffffff;
  color: #111827;
}

.section-soft {
  background: rgb(245, 247, 250);
  color: #111827;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* =============================================================================
   LAYOUT
   ============================================================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =============================================================================
   NAVBAR
   ============================================================================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 24, 27, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 1.125rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 30px;
  width: auto;
}

/* =============================================================================
   HERO
   ============================================================================= */

.hero {
  padding: 5rem 0 5.75rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 620px);
  gap: 2.25rem;
  align-items: start;
}

.hero-copy {
  max-width: 740px;
}

.hero-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 840px;
  margin-bottom: 1.375rem;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 0;
  line-height: 1.7;
}

.hero-images {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.1rem;
  max-width: 620px;
  width: 100%;
  justify-self: end;
  padding: 1.8rem 2rem 2.3rem 2rem;
}

.hero-image-card {
  position: relative;
  overflow: visible;
}

.hero-image-media {
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 600px) {
  .hero-images {
    max-width: 100%;
    padding: 0.5rem 0.5rem 1.5rem 0.5rem;
    gap: 0.5rem;
  }
  .hero-image-card {
    min-width: 0;
  }
  .hero-image-media {
    border-radius: 0.75rem;
  }
}
/* Übersicht cards for Transparenz section */
.mock-cards {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.2rem 0 0 0;
  padding: 0 0.9rem 0.9rem;
}

.mock-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid #e5e7eb;
  padding: 0.85rem 1.1rem;
  min-width: 0;
  overflow: hidden;
}

.mock-card-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
}

.mock-card-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 0%;
  gap: 0.18rem;
  overflow: hidden;
}

.mock-card-headline {
  display: block;
  font-size: 0.97rem;
  font-weight: 500;
  color: #111827;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.mock-card-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #4b5563;
}

.mock-card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0.82em;
  font-weight: 500;
  color: #4b5563;
}

.mock-card-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9ca3af;
  flex-shrink: 0;
}

.mock-card-status.status-live {
  color: #4b5563;
}

.mock-card-status.status-live::before {
  background: #16a34a;
}

.mock-card-status.status-processing {
  color: #4b5563;
}

.mock-card-status.status-processing::before {
  background: #2563eb;
}

.mock-card-status.status-purchased {
  color: #4b5563;
}

.mock-card-status.status-purchased::before {
  background: #9ca3af;
}

.mock-card-user {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 0.82em;
  font-weight: 500;
  white-space: nowrap;
}

.mock-card-user::before {
  content: '';
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background: currentColor;
  opacity: 0.75;
  border-radius: 50%;
  clip-path: path('M6 1.6a2.2 2.2 0 1 1 0 4.4a2.2 2.2 0 0 1 0-4.4ZM1.8 10.8c0-2.1 1.9-3.3 4.2-3.3s4.2 1.2 4.2 3.3v.6H1.8v-.6Z');
}

@media (min-width: 601px) and (max-width: 769px) {
  .mock-card {
    padding: 0.72rem 0.78rem;
    gap: 0.72rem;
  }

  .mock-card-thumb {
    width: 38px;
    height: 38px;
  }

  .mock-card-content {
    width: 100%;
  }

  .mock-card-headline {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    text-overflow: ellipsis;
    line-height: 1.2;
    word-break: break-word;
  }

  .mock-card-meta {
    gap: 0.6rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 600px) {
  .mock-cards {
    padding: 0 0.65rem 0.65rem;
  }

  .mock-card {
    padding: 0.7rem;
    gap: 0.7rem;
  }

  .mock-card-headline {
    font-size: 0.93rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.2;
  }

  .mock-card-meta {
    font-size: 0.8rem;
    gap: 0.7rem;
  }
}

.hero-image-left {
  aspect-ratio: 4 / 3;
  position: relative;
}

.hero-image-left .hero-image-media {
  display: flex;
  align-items: flex-end;
  height: auto;
}

.hero-image-left .hero-stat-bl {
  bottom: 0.7rem;
  left: 0.7rem;
  transform: none;
}

.hero-image-right {
  aspect-ratio: 3 / 4;
}

.hero-stat {
  position: absolute;
  padding: 0.875rem 1.125rem;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 160px;
  z-index: 3;
}

.hero-stat-bl {
  bottom: 1.5rem;
  left: 1.5rem;
}

.hero-stat-tr {
  top: 1.5rem;
  right: 1.5rem;
}

.hero-stat-br {
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  min-width: unset;
}

.hero-stat-br .hero-stat-group {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-stat-number .unit {
  font-size: 1.25rem;
  font-weight: 600;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* =============================================================================
   SHARED SECTION ELEMENTS
   ============================================================================= */

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.875rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1.18;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.72;
  margin-bottom: 3rem;
}

/* =============================================================================
   ÜBER CIRCLARIS
   ============================================================================= */

.about {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.about .section-title,
.about .about-intro,
.process .section-title,
.process .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-white.about {
  border-top-color: #e5e7eb;
}

.section-white .section-title,
.section-white .about-intro,
.section-white .feature-card h4,
.section-white .feature-card p {
  color: #111827;
}

.section-white .about-intro,
.section-white .feature-card p,
.section-white .footer-tagline {
  color: #4b5563;
}

.section-white .features-grid {
  background: #ffffff;
  border: none;
}

.section-white .feature-card {
  background: #ffffff;
}

.section-white .feature-card:hover {
  background: #ffffff;
}

.about-intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.72;
  margin-bottom: 3rem;
}

.about-image-wrap {
  margin-bottom: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.08);
}

.about-image-wrap[data-reveal] {
  opacity: 0;
  transform: translateY(34px) scale(0.965) rotate(-0.6deg);
  filter: saturate(0.92) contrast(0.96);
  transition: none;
}

.about-image-wrap[data-reveal].is-visible {
  animation: aboutImageReveal 0.95s cubic-bezier(0.2, 0.7, 0, 1) forwards,
             aboutImageFloat 7s ease-in-out 1.1s infinite;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 12%,
    rgba(255, 255, 255, 0.82) 48%,
    #ffffff 70%,
    #ffffff 100%
  );
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: #ffffff;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 1rem;
  margin-top: -16.4rem;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: #ffffff;
  background-color: #ffffff;
  opacity: 1;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.625rem;
  transition: transform var(--ease);
  border-radius: var(--radius);
  box-shadow: none;
}

.reveal-cards .feature-card {
  opacity: 0;
  transform: none;
  transition: opacity 0.58s ease;
}

.reveal-cards.is-visible .feature-card {
  opacity: 1;
}

.reveal-cards.is-visible .feature-card:nth-child(1) {
  transition-delay: 0.12s;
}

.reveal-cards.is-visible .feature-card:nth-child(2) {
  transition-delay: 0.24s;
}

.reveal-cards.is-visible .feature-card:nth-child(3) {
  transition-delay: 0.36s;
}

.reveal-cards.is-visible .feature-card:nth-child(4) {
  transition-delay: 0.48s;
}

.feature-card:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.feature-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: rgba(201, 160, 74, 0.14);
  border: 1px solid rgba(201, 160, 74, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.15rem;
}

.feature-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: #8b6a20;
}

.feature-card h4 {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.4;
}

.feature-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================================================
   PROCESS / FEATURES SECTION
   ============================================================================= */

.process {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.section-soft.process {
  border-top-color: #dbe1ea;
}

.section-soft .section-title,
.section-soft .section-sub,
.section-soft .process-card h3 {
  color: #111827;
}

.section-soft .section-sub,
.section-soft .mock-bar-title,
.section-soft .tab-label,
.section-soft .process-card-head p {
  color: #4b5563;
}

.section-soft .mock-window,
.section-soft .mock-table tr,
.section-soft .mock-feed-item,
.section-soft .mock-doc-item,
.section-soft .mock-bar,
.section-soft .mock-input,
.section-soft .mock-image-slot,
.section-soft .mock-avatar-initials,
.section-soft .process-card {
  border-color: #e5e7eb;
}

.section-soft .mock-window,
.section-soft .mock-table,
.section-soft .mock-feed-body,
.section-soft .mock-docs-body,
.section-soft .mock-form-body,
.section-soft .mock-feed-item,
.section-soft .mock-doc-item,
.section-soft .mock-input,
.section-soft .mock-avatar-initials,
.section-soft .mock-table .col-name,
.section-soft .mock-feed-item strong,
.section-soft .mock-doc-name {
  color: #111827;
}

.section-soft .mock-bar,
.section-soft .mock-input,
.section-soft .mock-image-slot,
.section-soft .mock-avatar-initials,
.section-soft .process-card,
.section-soft .mock-window {
  background: #ffffff;
}

.section-soft .mock-table .col-user,
.section-soft .mock-feed-item span,
.section-soft .mock-doc-meta,
.section-soft .mock-label {
  color: #4b5563;
}

.section-soft .mock-dot {
  background: #d1d5db;
}

.process-cards {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.process-card {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.process-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
}

.process-row--reverse .process-card-head {
  order: 2;
}

.process-row--reverse .process-content {
  order: 1;
}

.process-card-head {
  margin-bottom: 0;
  padding-top: 0.35rem;
}

.process-card .tab-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.875rem;
}

.process-card h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
}

.process-card-intro {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
}

.process-content {
  width: 100%;
}

/* =============================================================================
   MOCK UI – SHARED
   ============================================================================= */

.mock-window {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

.mock-bar-title {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* =============================================================================
   MOCK UI – INVENTORY TABLE (Transparenz)
   ============================================================================= */

.mock-table {
  width: 100%;
  border-collapse: collapse;
}

.mock-table tr {
  border-bottom: 1px solid var(--border);
}

.mock-table tr:last-child {
  border-bottom: none;
}

.mock-table td {
  padding: 0.875rem 1rem;
  font-size: 0.8rem;
  vertical-align: middle;
}

.mock-table .col-name {
  color: #111827;
  font-weight: 500;
}

.mock-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.mock-thumb {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
}

.mock-name-text {
  display: block;
}

.mock-table .col-user {
  color: #4b5563;
  white-space: nowrap;
  text-align: right;
}

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

.status-badge.status-live {
  background: rgba(34, 197, 94, 0.14);
  color: var(--green);
}

.status-badge.status-processing {
  background: rgba(245, 158, 11, 0.14);
  color: var(--amber);
}

.status-badge.status-purchased {
  background: rgba(96, 165, 250, 0.14);
  color: var(--blue);
}

/* =============================================================================
   MOCK UI – LISTING FORM + FEED (Geschwindigkeit)
   ============================================================================= */

.mock-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mock-form-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mock-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mock-input {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.mock-image-row {
  display: flex;
  gap: 0.5rem;
}

.mock-image-slot {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-xs);
  background: #ffffff;
  border: 1px dashed var(--border);
  flex-shrink: 0;
}

.mock-publish-btn {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xs);
  font-size: 0.8rem;
  font-weight: 600;
  align-self: flex-start;
  cursor: default;
}

.mock-feed-body {
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
}

.mock-feed-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid var(--border);
}

.mock-feed-item:last-child {
  border-bottom: none;
}

.mock-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-size: cover;
  background-position: center top;
  flex-shrink: 0;
  overflow: hidden;
}

.mock-avatar-initials {
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 600;
  color: #4b5563;
}

.mock-feed-item strong {
  font-size: 0.775rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.15rem;
  color: #111827;
}

.mock-feed-item span {
  font-size: 0.725rem;
  color: #4b5563;
  line-height: 1.4;
  display: block;
}

/* =============================================================================
   MOCK UI – DOCUMENTATION (Sicherheit)
   ============================================================================= */

.mock-docs-body {
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
}

.mock-doc-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 0.25rem;
  border-bottom: 1px solid var(--border);
}

.mock-doc-item:last-child {
  border-bottom: none;
}

.mock-doc-icon {
  font-size: 1.125rem;
  flex-shrink: 0;
}

.mock-doc-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #111827;
}

.mock-doc-meta {
  font-size: 0.7rem;
  color: #4b5563;
  margin-top: 0.15rem;
}

/* =============================================================================
   FAQ
   ============================================================================= */

.faq {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.section-white.faq {
  border-top-color: #e5e7eb;
}

.section-white.faq .section-title,
.section-white.faq .faq-question {
  color: #111827;
}

.section-white.faq .section-sub,
.section-white.faq .faq-answer-inner,
.section-white.faq .faq-icon {
  color: #4b5563;
}

.section-white.faq .faq-list,
.section-white.faq .faq-item,
.section-white.faq .faq-answer-inner {
  border-color: #e5e7eb;
}

.section-white.faq .faq-question,
.section-white.faq .faq-answer {
  background: #ffffff;
}

.section-white.faq .faq-question:hover {
  background: #f9fafb;
}

.faq-list {
  max-width: 780px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  background: var(--surface);
  transition: background var(--ease);
  gap: 1.5rem;
  line-height: 1.45;
}

.faq-question:hover {
  background: var(--surface-2);
}

.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.faq-item.open .faq-question .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
  background: var(--surface);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 1.25rem 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

/* =============================================================================
   FOOTER
   ============================================================================= */

.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo img {
  height: 26px;
  width: auto;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.65;
}

.section-dark.footer {
  background: rgb(20, 24, 27);
}

/* =============================================================================
   SCROLL + TAB ANIMATIONS
   ============================================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-image-card[data-reveal] {
  transform: translateY(34px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-image-card[data-reveal].is-visible {
  transform: translateY(0) scale(1);
}

.hero-image-right[data-reveal] {
  transition-delay: 0.12s;
}

.process-card[data-reveal]:nth-child(1) {
  transition-delay: 0.06s;
}

.process-card[data-reveal]:nth-child(2) {
  transition-delay: 0.16s;
}

.process-card[data-reveal]:nth-child(3) {
  transition-delay: 0.26s;
}

.process-card[data-reveal] {
  transform: translateY(34px) scale(0.985);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.process-card[data-reveal].is-visible {
  transform: translateY(0) scale(1);
}

@keyframes aboutImageReveal {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.965) rotate(-0.6deg);
    filter: saturate(0.92) contrast(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    filter: saturate(1) contrast(1);
  }
}

@keyframes aboutImageFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-image-wrap[data-reveal],
  .reveal-cards .feature-card {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: color var(--ease);
}

.footer-links a:hover {
  color: var(--text);
}

/* =============================================================================
   SUB-PAGES (impressum, datenschutz)
   ============================================================================= */

.subpage {
  padding: 5rem 0 7rem;
}

.subpage-content {
  max-width: 720px;
}

@media (min-width: 900px) {
  .hero-stat-bl {
    bottom: 0;
    left: 0;
    transform: translate(-38%, 38%);
  }

  .hero-stat-tr {
    top: 0;
    right: 0;
    transform: translate(38%, -38%);
  }

  .hero-stat-br {
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translate(-50%, 52%);
  }
}

@media (min-width: 1421px) {
  .hero-image-right {
    overflow: visible;
  }

  .hero-image-right .hero-image-media {
    height: 100%;
  }

  .hero-image-right img {
    aspect-ratio: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-image-right .hero-stat-br {
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translate(-50%, 56%);
  }
}

@media (max-width: 899px) {
  .hero-images {
    padding: 0;
    max-width: none;
  }

  .hero-image-card {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }

  .hero-stat {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    padding: 0.65rem 0.85rem;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .hero-stat-number .unit {
    font-size: 1rem;
  }

  .hero-stat-br {
    left: auto;
    right: auto;
    bottom: auto;
    flex-direction: row;
    gap: 0.75rem;
  }
}

.subpage h1 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.subpage h6 {
  font-size: 0.6875rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-top: 2.25rem;
  margin-bottom: 0.875rem;
}

.subpage p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.subpage ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.subpage li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.25rem;
}

.subpage a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    padding-bottom: 4rem;
  }

  .hero-sub {
    margin-bottom: 0.8rem;
  }

  .hero-images {
    justify-self: stretch;
    max-width: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -12rem;
  }
}

@media (max-width: 860px) {
  .process-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-row--reverse .process-card-head,
  .process-row--reverse .process-content {
    order: initial;
  }

  .mock-two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3.5rem 0 3rem;
  }

  .hero-sub {
    margin-bottom: 1.5rem;
  }

  .hero-images {
    grid-template-columns: 1fr;
  }

  .hero-image-right {
    aspect-ratio: 4 / 3;
  }

  .features-grid {
    grid-template-columns: 1fr;
    margin-top: -6.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .process-card {
    padding: 0.95rem;
  }
}

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

  .hero-stat-br {
    flex-direction: column;
    gap: 0.875rem;
    align-items: flex-start;
  }

  .features-grid {
    margin-top: -3.6rem;
  }
}
