/* =========================================
   BEYOND-WALLS.ART — Stylesheet
   ========================================= */

/* --- Self-hosted fonts --- */
@font-face {
  font-family: 'BMX Radical';
  src: url('fonts/BMXRadical-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BMX Radical';
  src: url('fonts/BMXRadical-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w-.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EN.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEN.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Dev banner */
.dev-banner {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: linear-gradient(90deg,#fff7f9,#fff);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 1200;
  padding: 0.75rem 0;
}
.dev-banner-inner { display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.dev-banner-text { color: #4a050f; font-weight:600; }
.dev-countdown { margin-left:0.75rem; font-weight:400; color:#6a2b3b; font-size:0.95rem; }
.dev-banner-actions .btn { margin-left:0.5rem; }

:root {
  color-scheme: only light;
  --pink:    #FF5698;
  --pink-dark: #e04080;
  --black:   #020202;
  --white:   #ffffff;
  --beige:   #FDF6EE;
  --grey:    #f4f0eb;
  --text:    #000000;
  --text-muted: #555555;
  --radius:  0.5rem;
  --shadow:  0 4px 20px rgba(0,0,0,0.10);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--beige);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink); text-decoration: none; }
a:hover { color: var(--pink-dark); }

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'BMX Radical', 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1.35rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-align: center;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  background: linear-gradient(
    90deg,
    #ff2d7a 0%,
    #a855f7 22%,
    #00cfff 45%,
    #a8ff00 68%,
    #ff9f1c 85%,
    #ff2d7a 100%
  );
  background-size: 250% auto;
  background-position: 0% center;
  border: none !important;
  border-radius: 999px !important;
  color: #000000 !important;
  font-weight: 400 !important;
  padding: 16px 36px !important;
  letter-spacing: 0.2px;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.22),
    0 0 12px rgba(255, 45, 122, 0.35),
    0 0 22px rgba(0, 207, 255, 0.28);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.35),
    0 0 10px rgba(255, 255, 255, 0.18);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-position 0.65s ease;
}

/* Glanz-Effekt */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.10) 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

.btn-primary:hover {
  background-position: 100% center;
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(255, 45, 122, 0.5),
    0 0 30px rgba(0, 207, 255, 0.45),
    0 0 42px rgba(255, 159, 28, 0.35);
}

.btn-primary:hover::before {
  left: 140%;
}

.btn-primary:active {
  transform: translateY(0) scale(0.99);
}

.btn-large { padding: 1rem 2.25rem; }

/* --- Sections --- */
.section { padding: 5rem 0; }
.legal-main { padding-top: 7rem; }

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  color: var(--black);
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 720px;
  margin-bottom: 3rem;
}

.bg-dark {
  background: var(--black);
  color: var(--white);
}
.bg-dark h2, .bg-dark h3 { color: var(--white); }
.bg-dark .section-lead { color: #aaaaaa; }

.bg-light { background: var(--grey); }

.bg-brickwall-dark {
  background-image: url('images/bg-schwarz.webp');
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  background-color: #111;
  color: var(--white);
}
.bg-brickwall-dark h2,
.bg-brickwall-dark h3 { color: var(--white); }
.bg-brickwall-dark .section-lead { color: #cccccc; }
.bg-brickwall-dark p,
.bg-brickwall-dark li,
.bg-brickwall-dark label { color: var(--white); }
.bg-brickwall-dark a { color: var(--white); }
.bg-brickwall-dark .feature-item {
  background: rgba(0,0,0,0.45);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}
.bg-brickwall-dark .feature-item strong { color: var(--white); }
.bg-brickwall-dark .feature-item p { color: #dddddd; }
.bg-brickwall-dark .preise-text {
  background: rgba(0,0,0,0.5);
  border-radius: var(--radius);
  padding: 2rem;
}
.bg-brickwall-dark .preise-text p,
.bg-brickwall-dark .preise-tel { color: #dddddd !important; }
.bg-brickwall-dark .kontakt-form-wrap {
  background: rgba(0,0,0,0.5);
  border-radius: var(--radius);
  padding: 2rem;
}
.bg-brickwall-dark .kontakt-form-wrap > p { color: #cccccc; }
.bg-brickwall-dark .form-group label { color: #ffffff !important; }
.bg-brickwall-dark .form-datenschutz { color: #aaaaaa !important; }
.bg-brickwall-dark .form-datenschutz a { color: #cccccc !important; }

.bg-brickwall-beige {
  background-image: url('images/bg-beige.webp');
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  background-color: var(--beige);
  color: var(--text);
}
.bg-brickwall-beige .step-card {
  background: rgba(255,255,255,0.55);
  border: 2px solid rgba(0,0,0,0.15);
  border-bottom: 4px solid var(--black);
}
.bg-brickwall-beige .step-card h3 { color: var(--text); }
.bg-brickwall-beige .step-card p { color: var(--text-muted); }

/* Preise on beige */
.bg-brickwall-beige .preise-text {
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius);
  padding: 2rem;
}
.bg-brickwall-beige .preise-text p { color: var(--text-muted) !important; }
.bg-brickwall-beige .preise-tel { color: var(--text-muted) !important; }
.bg-brickwall-beige .preise-tel a { color: var(--text) !important; }

/* Kontakt form on beige */
.bg-brickwall-beige .kontakt-form-wrap {
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius);
  padding: 2rem;
}
.bg-brickwall-beige .kontakt-form-wrap > p { color: var(--text-muted); }
.bg-brickwall-beige .form-group label { color: var(--text) !important; }

/* FAQ accordion on dark */
.bg-brickwall-dark .accordion-item {
  background: rgba(255,255,255,0.12);
}
.bg-brickwall-dark .accordion-trigger { color: var(--white); }
.bg-brickwall-dark .accordion-body p { color: #cccccc; }

/* KontaktInfo auf dunkel: weißes Overlay wie Step-Cards / FAQ-Accordion */
.bg-brickwall-dark .kontakt-info { background: rgba(255,255,255,0.08); }

/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow var(--transition);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(253, 246, 238, 0.95);
  backdrop-filter: blur(8px);
  z-index: -1;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.10); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 80px;
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.logo {
  flex-shrink: 0;
  transition: transform var(--transition), filter var(--transition);
}
.logo:hover img {
  transform: scale(1.06);
  filter: brightness(1.15);
}
.logo img {
  height: 70px;
  width: auto;
  transition: transform var(--transition), filter var(--transition);
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--pink); }
.main-nav .nav-cta { color: var(--white); }
.main-nav .nav-cta:hover { color: var(--white); }

.blog-header-link img {
  height: 44px;
  width: auto;
  display: block;
  transition: transform var(--transition), filter var(--transition);
  flex-shrink: 0;
}
.blog-header-link:hover img {
  transform: scale(1.06);
  filter: brightness(1.15);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-shrink: 0;
  transition: transform var(--transition), filter var(--transition);
}
.hamburger img {
  height: 34px;
  width: auto;
  display: block;
}
.hamburger:hover {
  transform: scale(1.06);
  filter: brightness(1.15);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  background: var(--beige);
}

.hero-image-full {
  width: 100%;
  line-height: 0;
}

.hero-image-full img {
  width: 100%;
  display: block;
}

.hero-cta-bg {
  width: 100%;
  background-image: url('images/hero-cta-bg.webp');
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: var(--beige);
}

.hero-cta {
  padding: 2.5rem 1rem;
}

.hero-cta h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.hero-cta .section-lead {
  max-width: 720px;
  margin-bottom: 2rem;
}

.hero-manifesto {
  margin-top: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark, #1a1a1a);
  letter-spacing: 0.05em;
}

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.hero-cta-ar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.hero-cta-ar-sub {
  font-size: 0.8rem;
  color: var(--text-muted, #888);
  margin: 0;
  text-align: center;
}

h1, h2 {
  font-family: 'BMX Radical', 'Montserrat', sans-serif;
}

/* Farbklecks hinter dem ersten Buchstaben */
h1::before, h2::before {
  content: '';
  position: absolute;
  top: 0.5em;
  left: 0.4em;
  width: 2.7em;
  height: 2.7em;
  transform: translate(-50%, -50%);
  background: url('images/farbklecks-1-gruen.webp') no-repeat center / contain;
  opacity: 0.7;
  z-index: -1;
  pointer-events: none;
}

h1, h2 {
  position: relative;
  isolation: isolate;
}

/* Visuell versteckt aber für SEO/Screenreader sichtbar */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =========================================
   LEISTUNGEN
   ========================================= */
.leistungen { }

.material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.material-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

.material-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.material-card:hover img { transform: scale(1.05); }

.material-card span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--black);
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* =========================================
   ZIELGRUPPEN
   ========================================= */
.zielgruppen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.zielgruppe-card {
  background: rgba(255,255,255,0.6);
  border: 2px solid rgba(0,0,0,0.08);
  border-bottom: 4px solid var(--pink);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
}

.zielgruppe-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.zielgruppe-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.zielgruppe-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* =========================================
   MANIFEST
   ========================================= */
.manifest-inner {
  max-width: 820px;
  text-align: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
}

.manifest-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.manifest-claim {
  font-family: 'BMX Radical', 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.manifest-words {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}

.manifest-words span {
  font-family: 'BMX Radical', 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--pink);
}

/* =========================================
   ABLAUF
   ========================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.step-card p {
  color: #aaaaaa;
  font-size: 0.95rem;
}

/* =========================================
   PREISE
   ========================================= */
.preise { }

.preise-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.preise-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin-bottom: 1rem;
}

.preise-text p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.preise-tel {
  margin-top: 1rem !important;
  font-size: 0.95rem;
  color: var(--text-muted) !important;
}
.preise-tel a { font-weight: 600; }

.preise-image img {
  border-radius: 1rem;
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* =========================================
   FAQ
   ========================================= */
.faq-container { max-width: 820px; }
.faq-container h2 { margin-bottom: 2rem; }

.accordion { display: flex; flex-direction: column; gap: 0.75rem; }

.accordion-item {
  background: rgba(255,255,255,0.65);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.accordion-trigger:hover { color: var(--pink); }

.accordion-icon {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--pink);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 1.5rem;
}

.accordion-item.open .accordion-body {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

.accordion-body p { color: var(--text-muted); font-size: 0.97rem; }

/* =========================================
   KONTAKT
   ========================================= */
.kontakt { }

.kontakt-inner {
  max-width: 720px;
}

.kontakt-info-section .kontakt-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.kontakt-form-wrap h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.75rem;
}
.kontakt-form-wrap > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.97rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 86, 152, 0.12);
}

.form-group textarea { resize: vertical; }

.form-datenschutz {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-feedback {
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 1.5rem;
}
.form-feedback.success { color: #2e7d32; }
.form-feedback.error   { color: #c62828; }

/* Contact Info */
.kontakt-info {
  background: rgba(0,0,0,0.5);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  color: var(--white);
}

.kontakt-info h2 {
  color: var(--white);
  margin-bottom: 1.75rem;
}

.kontakt-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.kontakt-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.kontakt-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }

.kontakt-list a {
  color: var(--white);
  font-weight: 600;
}
.kontakt-list a:hover { color: var(--pink); }

.kontakt-list small { color: inherit; font-size: inherit; }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transition: background var(--transition), color var(--transition);
}
.social-links a:hover { background: var(--pink); color: var(--white); }

/* =========================================
   ÜBER UNS
   ========================================= */
.ueber-uns-manifest {
  font-family: 'BMX Radical', 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--text);
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem;
  line-height: 1.5;
  border: none;
  padding: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.team-card {
  background: rgba(255,255,255,0.6);
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: top;
  display: block;
}

.team-text {
  padding: 1.75rem;
}

.team-text h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.team-role {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem !important;
}

.team-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--black);
  color: #888;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy a {
  color: #888;
}
.footer-copy a:hover { color: var(--pink); }

.footer-note { font-size: 0.85rem; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {

  .material-grid       { grid-template-columns: repeat(2, 1fr); }
  .features-grid       { grid-template-columns: 1fr; }

  .steps-grid          { grid-template-columns: 1fr; gap: 1.5rem; }

  .preise-inner        { grid-template-columns: 1fr; }
  .preise-image        { order: -1; }

  .kontakt-inner       { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
}

@media (max-width: 1035px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--beige);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1.1rem; }
  .hamburger { display: flex; }

  .nav-logo-mobile {
    display: block !important;
  }
  .nav-logo-mobile img {
    height: 70px;
    width: auto;
  }

  .nav-logo-mobile,
  .nav-blog-mobile {
    transition: transform var(--transition), filter var(--transition);
  }
  .nav-logo-mobile:hover,
  .nav-blog-mobile:hover {
    transform: scale(1.06);
    filter: brightness(1.15);
  }

  .nav-blog-mobile {
    display: block !important;
    margin-top: 0.5rem;
  }
  .nav-blog-mobile img {
    height: 44px;
    width: auto;
  }

  .nav-footer-mobile {
    display: flex !important;
    position: absolute;
    bottom: 1.5rem;
    gap: 1.5rem;
  }
  .nav-footer-mobile a {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
  }
}

/* Auf Desktop ausblenden */
.nav-logo-mobile,
.nav-blog-mobile,
.nav-footer-mobile { display: none; }

@media (max-width: 600px) {
  .material-grid { grid-template-columns: 1fr; }
  .section       { padding: 3rem 0; }
  .legal-main    { padding-top: 8rem; }
}

/* =========================================
   BLOG — Übersicht
   ========================================= */
.blog-hero {
  padding: 7rem 0 3rem;
  text-align: center;
}
.blog-hero h1 { margin-bottom: 0.75rem; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.post-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.post-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--pink) 0%, #a855f7 100%);
}

.post-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 0.4rem;
}

.post-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.post-card-body h2 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.post-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.read-more {
  color: var(--pink);
  font-weight: 700;
  font-size: 0.9rem;
  align-self: flex-start;
}
.read-more:hover { color: var(--pink-dark); }

/* =========================================
   BLOG — Einzelner Post
   ========================================= */
.blog-post {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--pink);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.back-to-blog:hover { color: var(--pink-dark); }

.blog-post-header { margin-bottom: 2.5rem; }
.blog-post-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}
.blog-post-header .post-meta { font-size: 0.9rem; color: var(--text-muted); }

.blog-post-body { max-width: 760px; }
.blog-post-body h2 { margin: 2.5rem 0 1rem; font-size: 1.5rem; }
.blog-post-body h3 { margin: 2rem 0 0.75rem; font-size: 1.2rem; }
.blog-post-body p  { margin-bottom: 1.25rem; line-height: 1.75; }
.blog-post-body ul,
.blog-post-body ol { margin: 0.5rem 0 1.25rem 1.5rem; }
.blog-post-body li { margin-bottom: 0.5rem; line-height: 1.7; }
.blog-post-body img {
  border-radius: var(--radius);
  margin: 2rem 0;
  width: 100%;
  height: auto;
}
.blog-post-body .video-embed {
  margin: 2rem 0;
  aspect-ratio: 16/9;
}
.blog-post-body .video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}

.blog-post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* =========================================
   BLOG — Pagination
   ========================================= */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0 4rem;
}

.pagination-btn {
  background: var(--white);
  border: 2px solid var(--pink);
  color: var(--pink);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.pagination-btn:hover:not(:disabled) {
  background: var(--pink);
  color: var(--white);
}
.pagination-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.pagination-info {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* =========================================
   AR-WANDVORSCHAU
   ========================================= */

/* --- Intro-Screen --- */
.ar-intro {
  padding: 7rem 0 5rem;
  text-align: center;
  background: var(--beige, #f5f0e8);
}
.ar-intro h1 { margin-bottom: 1rem; }
.ar-intro-actions { margin-top: 2rem; }
.ar-intro-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.ar-hint {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted, #888);
}

.ar-step-nr-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ar-hint-optional {
  font-family: 'BMX Radical', 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--pink);
  opacity: 0.85;
}

.ar-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.ar-step-nr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--gold, #e8a020);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
}

/* --- Preset-Raster (Intro) --- */
.ar-presets {
  margin-top: 3rem;
}
.ar-presets-label {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-muted, #888);
  font-size: 0.9rem;
}
.ar-preset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.ar-preset-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 0.75rem;
  cursor: pointer;
  width: 110px;
  transition: border-color 0.2s, transform 0.15s;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark, #2b2b2b);
}
.ar-preset-btn:hover, .ar-preset-btn:active {
  border-color: var(--gold, #e8a020);
  transform: scale(1.04);
}
.ar-preset-btn img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 6px;
}
.ar-preset-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  background: #eee;
  border-radius: 12px;
  font-size: 0.8rem;
  color: var(--text-muted, #888);
  text-align: center;
  padding: 0.5rem;
}

/* --- AR Stage (Vollbild) --- */
.ar-stage {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: #000;
  touch-action: none;
}

#ar-canvas {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
}

/* --- Topbar --- */
.ar-topbar {
  position: absolute;
  top: env(safe-area-inset-top, 0);
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  pointer-events: none;
}
.ar-topbar-hint {
  color: rgba(255,255,255,0.75);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
}

/* --- Bottombar --- */
.ar-bottombar {
  position: absolute;
  bottom: env(safe-area-inset-bottom, 0);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  padding: 1rem 1rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

/* --- Buttons im Stage --- */
.ar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  min-width: 68px;
  pointer-events: all;
}
.ar-btn svg { flex-shrink: 0; }
.ar-btn:hover, .ar-btn:active {
  background: rgba(255,255,255,0.3);
  transform: scale(1.06);
}
.ar-btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}

.ar-btn-close {
  pointer-events: all;
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 0;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  border-color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.ar-btn-screenshot {
  background: rgba(232,160,32,0.8);
  border-color: rgba(232,160,32,0.95);
  padding: 0.9rem 1.5rem;
  font-size: 0.8rem;
}
.ar-btn-screenshot:hover {
  background: rgba(232,160,32,1);
}

/* --- Preset-Panel im Stage --- */
.ar-stage-presets {
  display: none; /* Standardmäßig versteckt — JS zeigt es via style.display */
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 10;
  padding: 2rem;
}
.ar-stage-presets.visible {
  display: flex;
}
.ar-stage-presets-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 480px;
}
.ar-stage-presets .ar-preset-btn {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.ar-stage-presets .ar-preset-btn:hover {
  border-color: var(--gold, #e8a020);
}
.ar-stage-presets-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
}

/* --- Fallback --- */
.ar-fallback {
  padding: 3rem 0;
  text-align: center;
  background: rgba(0,0,0,0.7);
  color: #fff;
  position: absolute;
  bottom: 6rem;
  left: 0; right: 0;
  z-index: 5;
}

/* --- Flash-Effekt --- */
.ar-flash {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.06s ease-in, opacity 0.1s ease-out;
}
.ar-flash.active { opacity: 0.9; }

/* --- Header ausblenden wenn AR aktiv --- */
body.ar-active .site-header {
  display: none;
}

/* --- Queue-Strip --- */
.ar-queue-strip {
  position: absolute;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 8.5rem);
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 20;
}
.ar-queue-arrow {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
}
.ar-queue-arrow:active { background: rgba(255,255,255,0.3); }
.ar-queue-thumbs {
  flex: 1;
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ar-queue-thumbs::-webkit-scrollbar { display: none; }
.ar-queue-thumb {
  flex-shrink: 0;
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  scroll-snap-align: center;
  cursor: pointer;
  touch-action: manipulation;
  transition: border-color 0.15s;
  background: rgba(0,0,0,0.3);
}
.ar-queue-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: rgba(0,0,0,0.12);
}
.ar-queue-delete {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1rem;
  height: 1rem;
  background: rgba(160,0,0,0.85);
  border-radius: 50%;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  padding: 0;
  display: none; /* nur bei hover sichtbar */
  align-items: center;
  justify-content: center;
}
.ar-queue-thumb:hover .ar-queue-delete,
.ar-queue-thumb:focus-within .ar-queue-delete { display: flex; }
.ar-queue-thumb.active { border-color: #e8a020; }
.ar-queue-badge {
  position: absolute;
  bottom: 1px;
  right: 2px;
  font-size: 0.6rem;
  line-height: 1;
}

/* --- Session-Share Modal --- */
.ar-share-modal[hidden] { display: none !important; }
.ar-share-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.ar-share-box {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 360px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  margin: auto;
}
.ar-share-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #999;
  cursor: pointer;
  padding: .25rem;
}
.ar-share-close:hover { color: #333; }
.ar-share-section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #aaa;
  margin: 0 0 .75rem;
  text-align: left;
}

/* --- AI-Studio Queue-Strip --- */
.ai-queue-wrap {
  margin-bottom: 1rem;
  padding: .75rem 1rem;
  background: #f5f0e8;
  border-radius: 10px;
  border: 1px solid #e8d8b0;
}
.ai-queue-wrap .ar-queue-thumb {
  border-color: rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.06);
}
.ai-queue-wrap .ar-queue-thumb.active { border-color: #e8a020; }

/* --- Intro Queue-Strip --- */
.ar-intro-queue { margin-top: 1.2rem; text-align: center; }
.ar-intro-queue-thumbs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .5rem;
}
/* Intro-Thumbs: etwas größer als Stage-Thumbs, heller Rahmen */
.ar-intro-queue .ar-queue-thumb {
  width: 3.5rem;
  height: 3.5rem;
  border-color: rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.06);
}
.ar-intro-queue .ar-queue-thumb.active { border-color: #e8a020; }

/* --- CTA-Sektion --- */
.ar-cta-section { background: var(--beige, #f5f0e8); }

@media (max-width: 480px) {
  .ar-bottombar { gap: 0.6rem; }
  .ar-btn { min-width: 58px; font-size: 0.68rem; padding: 0.6rem 0.9rem; }
  .ar-btn-screenshot { padding: 0.8rem 1.1rem; }
}

/* =========================================
   XR OVERLAY (Quest AR-Modus)
   ========================================= */

#xr-overlay {
  position: fixed;
  inset: 0;
  z-index: 860;
  pointer-events: none;
}
#xr-overlay * { pointer-events: all; }

.xr-topbar {
  position: absolute;
  top: 0;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem;
  background: rgba(0,0,0,0.6);
}

.xr-hint {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0,0,0,1);
}

.xr-exit-btn {
  background: rgba(200,0,0,0.8);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  min-width: 120px;
  min-height: 56px;
}

.xr-bottombar {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(0,0,0,0.6);
}

.xr-action-btn {
  background: rgba(232,160,32,0.9);
  color: #000;
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 1rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 64px;
  min-width: 160px;
}

/* ========== AI STUDIO ========== */
.ai-studio-page { max-width: 600px; margin: 0 auto; padding: 2rem 1rem 4rem; }
.ai-back-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--color-primary); text-decoration: none; font-weight: 600; margin-bottom: 1.5rem; }
.ai-step { margin-bottom: 2rem; }
.ai-step-title { font-size: 1rem; font-weight: 700; color: var(--color-primary); margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .05em; }
.ai-photo-preview { max-height: 300px; max-width: 100%; border-radius: 8px; margin-top: .75rem; display: block; }
.ai-camera-container { position: relative; }
.ai-camera-video { width: 100%; max-height: 300px; border-radius: 8px; display: block; }
.ai-style-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: .6rem; }
.ai-style-btn { padding: .6rem .5rem; border: 2px solid var(--color-border, #ddd); border-radius: 8px; background: #fff; cursor: pointer; font-size: .85rem; font-weight: 600; text-align: center; transition: all .2s; }
.ai-style-btn.active { border-color: var(--color-primary); background: var(--color-primary); color: #fff; }
.ai-style-btn small { font-weight: 400; font-size: .75rem; display: block; }
.ai-effect-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .6rem; margin-top: .25rem; }
.ai-effect-btn { padding: .6rem .5rem; border: 2px solid var(--color-border, #ddd); border-radius: 8px; background: #fff; cursor: pointer; font-size: .85rem; font-weight: 600; text-align: center; transition: all .2s; }
.ai-effect-btn small { font-weight: 400; font-size: .75rem; display: block; }
.ai-effect-btn.active { border-color: #6a9fd8; background: #6a9fd8; color: #fff; }
.ai-result-img { max-width: 100%; border-radius: 8px; display: block; margin: 0 auto 1.5rem; }
.ai-loading { text-align: center; padding: 2rem; }
.ai-loading-spinner { width: 48px; height: 48px; border: 4px solid #eee; border-top-color: var(--color-primary); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 1rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.ai-error { background: #fff0f0; border: 1px solid #fcc; border-radius: 8px; padding: 1rem; color: #c00; margin-bottom: 1rem; }
.ai-pw-row { display: flex; gap: .5rem; align-items: center; }
.ai-pw-input { flex: 1; padding: .6rem .8rem; border: 2px solid var(--color-border, #ddd); border-radius: 8px; font-size: 1rem; }
/* AR-Vorschau KI-Link */
.ar-ki-link { margin-top: 1.5rem; text-align: center; }
.ar-ki-link .btn { gap: .5rem; }

/* Aspect Ratio Buttons */
.ar-ratio-group { display: flex; gap: .5rem; }
.ar-ratio-btn { padding: .5rem 1rem; border: 2px solid var(--color-border, #ddd); border-radius: 8px; background: #fff; cursor: pointer; font-size: .9rem; font-weight: 700; transition: all .2s; }
.ar-ratio-btn.active { border-color: var(--color-primary); background: var(--color-primary); color: #fff; }

/* Rembg Upload-Toast */
.rembg-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(20,20,20,.88);
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  padding: .75rem 1.4rem;
  border-radius: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  z-index: 9999;
  white-space: nowrap;
}
.rembg-toast[hidden] { display: none; }
.rembg-toast-spinner {
  width: 18px; height: 18px;
  border: 3px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}
