/* ============================================
   LEIH-ENKEL — Design System
   ============================================ */

:root {
  --primary:        #8BA332;   /* bright olive — pops on dark */
  --primary-mid:    #9DB53A;
  --primary-faint:  rgba(139,163,50,0.10);
  --accent:         #C97E3A;
  --accent-light:   rgba(201,126,58,0.12);
  --bg:             #0C0F07;
  --surface:        #141A09;
  --surface-2:      #1C2410;
  --border:         rgba(255,255,255,0.08);
  --border-strong:  rgba(255,255,255,0.14);
  --text:           #F0EDDF;
  --text-muted:     rgba(240,237,223,0.58);
  --text-light:     rgba(240,237,223,0.32);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.25);
  --shadow-md:  0 4px 20px rgba(0,0,0,.35);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.5);

  --nav-h: 72px;
}

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

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

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.display-1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}
.display-2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 54ch;
}
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}
.section {
  padding-block: 96px;
}
.section-sm {
  padding-block: 64px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: scale(0.98) translateY(1px); }

.btn-primary {
  background: var(--primary);
  color: #0C0F07;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(139,163,50,.3);
}
.btn-primary:hover {
  background: var(--primary-mid);
  box-shadow: 0 4px 20px rgba(139,163,50,.4);
  transform: translateY(-1px);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: #1fb556;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary-faint);
  color: var(--primary);
}
.btn-lg {
  padding: 17px 36px;
  font-size: 1rem;
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
#navbar.scrolled {
  background: rgba(14, 18, 8, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark img {
  filter: drop-shadow(0 0 6px rgba(139,163,50,0.3)) !important;
}
.logo-wordmark {
  font-size: 1.05rem;
  font-weight: 700;
  color: #F0EDDF;
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-wordmark .enkel { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover {
  color: var(--primary);
  background: var(--primary-faint);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(12,15,7,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(240,237,223,0.8);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease, color 0.15s ease;
}
.mobile-menu a:hover {
  background: rgba(255,255,255,0.07);
  color: #F0EDDF;
}
.mobile-menu .mobile-cta {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

/* ============================================
   HERO — Dark cinematic
   ============================================ */

/* Nav — always transparent until scrolled */
#navbar:not(.scrolled) {
  background: transparent;
}
/* Keep nav links cream on dark bg */
.nav-links a {
  color: rgba(240,237,223,0.65);
}
.nav-links a:hover {
  color: #F0EDDF;
  background: rgba(255,255,255,0.07);
}
.hamburger span {
  background: #F0EDDF;
}

#hero {
  position: relative;
  min-height: 100dvh;
  background: #0C0F07;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Full-hero canvas background */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  opacity: 0.75;
}

/* Gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(92,101,32,0.35) 0%, transparent 70%);
  top: -100px; right: 5%;
  animation: orb-drift-1 20s ease-in-out infinite;
}
.hero-orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(201,126,58,0.18) 0%, transparent 70%);
  bottom: 0; left: 10%;
  animation: orb-drift-2 26s ease-in-out infinite;
}
.hero-orb-3 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(110,130,40,0.22) 0%, transparent 70%);
  top: 40%; left: 35%;
  animation: orb-drift-3 18s ease-in-out infinite;
}
@keyframes orb-drift-1 {
  0%,100%  { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-40px, 60px) scale(1.08); }
  66%      { transform: translate(30px, -30px) scale(0.95); }
}
@keyframes orb-drift-2 {
  0%,100%  { transform: translate(0,0) scale(1); }
  40%      { transform: translate(50px, -40px) scale(1.1); }
  70%      { transform: translate(-30px, 20px) scale(0.92); }
}
@keyframes orb-drift-3 {
  0%,100%  { transform: translate(0,0); }
  50%      { transform: translate(25px, 35px); }
}

/* Hero inner grid */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
  padding-block: calc(var(--nav-h) + 40px) 80px;
  gap: 48px;
}

/* ── Left side ─────────────────────────── */
.hero-left {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,126,58,0.12);
  color: #E8A96A;
  border: 1px solid rgba(201,126,58,0.3);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(74,222,128,0.7);
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:0.5; transform:scale(0.75); }
}

.hero-h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #F0EDDF;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-h1 .hw {
  display: block;
  overflow: hidden;
}
.hero-h1 .accent-line {
  background: linear-gradient(90deg, #C97E3A 0%, #E8A96A 50%, #C97E3A 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 4s linear infinite;
}
@keyframes shimmer-text {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-lead {
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(240,237,223,0.65);
  max-width: 48ch;
}

.hero-audience-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}
.hero-ctas-split {
  gap: 12px;
}

/* Dual-audience choice buttons */
.btn-hero-choice {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  flex: 1;
  min-width: 200px;
}
.btn-hero-choice:hover {
  transform: translateY(-2px);
}
.btn-choice-senior {
  background: linear-gradient(135deg, rgba(139,163,50,0.18), rgba(139,163,50,0.08));
  border-color: rgba(139,163,50,0.5);
  color: var(--text);
}
.btn-choice-senior:hover {
  background: linear-gradient(135deg, rgba(139,163,50,0.28), rgba(139,163,50,0.14));
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(139,163,50,0.2);
}
.btn-choice-helper {
  background: linear-gradient(135deg, rgba(201,126,58,0.18), rgba(201,126,58,0.08));
  border-color: rgba(201,126,58,0.45);
  color: var(--text);
}
.btn-choice-helper:hover {
  background: linear-gradient(135deg, rgba(201,126,58,0.28), rgba(201,126,58,0.14));
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(201,126,58,0.2);
}
.choice-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-choice-senior .choice-icon {
  background: rgba(139,163,50,0.2);
  color: var(--primary);
}
.btn-choice-helper .choice-icon {
  background: rgba(201,126,58,0.2);
  color: var(--accent);
}
.choice-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.choice-main {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.choice-sub {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
}

.btn-hero-outline {
  background: transparent;
  color: rgba(240,237,223,0.85);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 28px 0 0;
}
.hero-stat strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: #F0EDDF;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-stat span {
  font-size: 0.75rem;
  color: rgba(240,237,223,0.45);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  margin-right: 28px;
  flex-shrink: 0;
}

/* ── Right side — Logo Orb ──────────────── */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

/* Logo orb wrapper */
.logo-orb-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glow halo behind logo */
.orb-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(92,101,32,0.45) 0%, rgba(201,126,58,0.15) 45%, transparent 70%);
  border-radius: 50%;
  animation: orb-pulse 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orb-pulse {
  0%,100% { transform: scale(1); opacity: 0.85; }
  50%     { transform: scale(1.1); opacity: 1; }
}

/* Rotating rings */
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
}
.orb-ring-1 {
  width: 340px; height: 340px;
  border-color: rgba(92,101,32,0.4);
  animation: ring-spin-cw 18s linear infinite;
}
.orb-ring-2 {
  width: 400px; height: 400px;
  border-color: rgba(201,126,58,0.2);
  border-style: dashed;
  animation: ring-spin-ccw 28s linear infinite;
}
.orb-ring-3 {
  width: 460px; height: 460px;
  border-color: rgba(255,255,255,0.06);
  animation: ring-spin-cw 40s linear infinite;
}
@keyframes ring-spin-cw  { from { transform: rotate(0deg); }   to { transform: rotate(360deg); } }
@keyframes ring-spin-ccw { from { transform: rotate(0deg); }   to { transform: rotate(-360deg); } }

/* Orbit accent dots */
.orb-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  pointer-events: none;
}
.orb-dot-1 {
  background: #C97E3A;
  box-shadow: 0 0 14px rgba(201,126,58,0.8);
  top: 50%; left: -28px;
  transform: translateY(-50%);
  animation: orb-dot-orbit-1 18s linear infinite;
}
.orb-dot-2 {
  background: #8BA332;
  box-shadow: 0 0 14px rgba(139,163,50,0.8);
  bottom: 20px; right: -20px;
  animation: orb-dot-orbit-2 28s linear infinite;
}
.orb-dot-3 {
  background: rgba(255,255,255,0.5);
  width: 6px; height: 6px;
  top: 15%; right: -30px;
  animation: orb-dot-orbit-3 40s linear infinite;
}
@keyframes orb-dot-orbit-1 {
  0%   { transform: rotate(0deg)   translateX(170px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(170px) rotate(-360deg); }
}
@keyframes orb-dot-orbit-2 {
  0%   { transform: rotate(120deg)   translateX(200px) rotate(-120deg); }
  100% { transform: rotate(480deg)   translateX(200px) rotate(-480deg); }
}
@keyframes orb-dot-orbit-3 {
  0%   { transform: rotate(240deg)   translateX(230px) rotate(-240deg); }
  100% { transform: rotate(600deg)   translateX(230px) rotate(-600deg); }
}

/* Logo circle */
.orb-logo-inner {
  position: relative;
  z-index: 2;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 60px rgba(92,101,32,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.orb-logo-inner img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(139,163,50,0.4));
  animation: logo-float 6s ease-in-out infinite;
}
@keyframes logo-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

/* Floating pills on dark bg */
.floating-pill {
  position: absolute;
  background: rgba(20,24,12,0.75);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 4;
  color: rgba(240,237,223,0.9);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.pill-1 {
  top: 40px;
  right: -10px;
  animation: float-a 5s ease-in-out infinite;
}
.pill-2 {
  bottom: 60px;
  left: -20px;
  color: #E8A96A;
  animation: float-b 6.5s ease-in-out infinite;
}
.pill-3 {
  bottom: 170px;
  right: -30px;
  font-size: 0.75rem;
  color: rgba(240,237,223,0.6);
  animation: float-c 7.5s ease-in-out infinite;
}
@keyframes float-a {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%     { transform: translateY(-12px) rotate(1deg); }
}
@keyframes float-b {
  0%,100% { transform: translateY(0) rotate(1deg); }
  50%     { transform: translateY(10px) rotate(-1deg); }
}
@keyframes float-c {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
.pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pill-dot-green {
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.7);
}
.pill-dot-amber {
  background: #C97E3A;
  box-shadow: 0 0 8px rgba(201,126,58,0.6);
}
.pill-dot-gray { background: rgba(240,237,223,0.35); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  margin: auto;
  animation: scroll-line 2.2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}
.trust-bar-inner {
  max-width: 1160px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 28px;
  position: relative;
}
.trust-bar-item + .trust-bar-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.2);
}
.trust-bar-item svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}
.trust-bar-item strong { color: #fff; font-weight: 600; }

/* ============================================
   ABOUT SECTION (was ist leih-enkel)
   ============================================ */
#ueber-uns {
  padding-block: 112px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-content .section-label { margin-bottom: 16px; }
.about-content .display-2 { margin-bottom: 24px; }
.about-content .lead { margin-bottom: 32px; }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 40px; height: 40px;
  background: var(--primary-faint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon svg { width: 18px; height: 18px; color: var(--primary); }
.about-feature-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 3px;
}
.about-feature-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.about-visual {
  position: relative;
}
.about-card-main {
  background: linear-gradient(135deg, #1a2410 0%, #222e12 100%);
  border: 1px solid rgba(139,163,50,0.25);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: white;
  position: relative;
  overflow: hidden;
}
.about-card-main::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.about-card-main::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 150px; height: 150px;
  background: rgba(201,126,58,0.1);
  border-radius: 50%;
}
.about-stat {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}
.about-stat-num {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.about-stat-unit {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}
.about-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  font-weight: 500;
}
.about-card-text {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}
.about-card-floating {
  position: absolute;
  bottom: -24px;
  right: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-card-floating-icon {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-card-floating-icon svg { width: 20px; height: 20px; color: var(--accent); }
.about-card-floating-text p:first-child {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
}
.about-card-floating-text p:last-child {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   SERVICES
   ============================================ */
#leistungen {
  padding-block: 96px;
  background: var(--surface);
}
.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-header .section-label { margin-bottom: 12px; }
.services-header .display-2 { margin-bottom: 16px; }
.services-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 50ch;
  margin-inline: auto;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139,163,50,0.35);
}
.service-card:nth-child(1),
.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 2;
}
.service-card-icon {
  width: 52px; height: 52px;
  background: var(--primary-faint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card-icon svg { width: 24px; height: 24px; color: var(--primary); }
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 40ch;
}
.service-card-wide-layout {
  display: flex;
  align-items: center;
  gap: 28px;
}
.service-card-wide-layout .service-card-content { flex: 1; }
.service-card-wide-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 12px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
#ablauf {
  padding-block: 112px;
}
.ablauf-header {
  margin-bottom: 72px;
}
.ablauf-header .section-label { margin-bottom: 12px; }
.ablauf-header .display-2 { margin-bottom: 16px; max-width: 16ch; }
.ablauf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.ablauf-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 6);
  width: calc(100% * 2 / 3);
  height: 1px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  opacity: 0.2;
}
.step {
  padding: 0 32px 0 0;
  position: relative;
}
.step-number {
  width: 56px; height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.step:last-child .step-number {
  background: var(--accent);
}
.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28ch;
}
.step-note {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
}
.step-note svg { width: 14px; height: 14px; color: var(--accent); }

/* ============================================
   PREISE
   ============================================ */
#preise {
  padding-block: 96px;
  background: linear-gradient(135deg, #111a08 0%, #0e1407 60%, #131c09 100%);
  position: relative;
  overflow: hidden;
}
#preise::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(201,126,58,.1);
  border-radius: 50%;
}
#preise::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.preise-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.preise-left .section-label { color: var(--accent); margin-bottom: 16px; }
.preise-left .display-2 { color: #fff; margin-bottom: 20px; }
.preise-left .lead { color: rgba(255,255,255,.7); margin-bottom: 36px; max-width: 42ch; }
.preise-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 44px;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.preise-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.preise-from {
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.preise-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.preise-per {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
}
.preise-dls {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.preise-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.preise-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,.85);
}
.preise-feature svg { width: 18px; height: 18px; color: #22C55E; flex-shrink: 0; }

/* ============================================
   ÜBER TIM
   ============================================ */
#tim {
  padding-block: 112px;
}
.tim-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.tim-photo-wrap {
  position: relative;
}
.tim-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--primary-faint) 0%, var(--accent-light) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border);
}
.tim-initials {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  opacity: 0.4;
}
.tim-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  text-align: center;
}
.tim-badge-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
}
.tim-badge-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.tim-content {
  padding-top: 8px;
}
.tim-content .section-label { margin-bottom: 12px; }
.tim-content .display-2 { margin-bottom: 20px; }
.tim-quote {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}
.tim-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--primary-faint);
  color: var(--primary);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 600;
}
.trust-badge svg { width: 15px; height: 15px; }

/* ============================================
   KONTAKT
   ============================================ */
#kontakt {
  padding-block: 96px;
  background: var(--surface);
}
.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.kontakt-left .section-label { margin-bottom: 12px; }
.kontakt-left .display-2 { margin-bottom: 20px; }
.kontakt-left .lead { margin-bottom: 32px; }
.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.kontakt-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.kontakt-info-item svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.kontakt-info-item strong { color: var(--text); }
.kontakt-right {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.kontakt-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kontakt-ctas .btn {
  width: 100%;
  justify-content: center;
}
.kontakt-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.8rem;
}
.kontakt-divider::before,
.kontakt-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #080C05;
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: 1160px;
  margin-inline: auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-wordmark { color: rgba(255,255,255,.9); }
.footer-brand .logo-wordmark .enkel { color: var(--accent); }
.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  margin-top: 12px;
  max-width: 36ch;
  line-height: 1.65;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
  transition: color 0.15s ease;
}
.footer-links a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,.35);
}
.footer-area {
  font-size: 0.78rem;
  color: rgba(255,255,255,.35);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
  animation: none;
}
.wa-float svg { width: 28px; height: 28px; fill: white; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.3); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 10px rgba(37,211,102,0); }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  background: var(--primary);
  padding: calc(var(--nav-h) + 48px) 24px 64px;
}
.legal-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 1160px;
  margin-inline: auto;
}
.legal-hero p {
  color: rgba(255,255,255,.55);
  font-size: 0.9rem;
  max-width: 1160px;
  margin-inline: auto;
  margin-top: 8px;
}
.legal-content {
  max-width: 720px;
  margin-inline: auto;
  padding: 64px 24px 96px;
}
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 10px;
}
.legal-content p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal-content li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.legal-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content .impressum-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 20px 0;
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-muted);
}

/* ============================================
   ANIMATION STATES
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in {
  opacity: 0;
}
.fade-in.visible {
  opacity: 1;
  transition: opacity 0.7s ease;
}

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

  /* Hero */
  #hero { min-height: 100svh; align-items: flex-start; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: calc(var(--nav-h) + 24px);
    padding-bottom: 56px;
    gap: 40px;
  }
  .hero-h1 { font-size: clamp(2.4rem, 9vw, 3.6rem); }
  .hero-right { display: flex; min-height: 340px; }
  .logo-orb-wrap  { width: 220px; height: 220px; }
  .orb-logo-inner { width: 150px; height: 150px; }
  .orb-logo-inner img { width: 100px; height: 100px; }
  .orb-ring-1 { width: 240px; height: 240px; }
  .orb-ring-2 { width: 290px; height: 290px; }
  .orb-ring-3 { width: 340px; height: 340px; }
  .pill-1 { top: 16px; right: 8px; }
  .pill-2 { bottom: 32px; left: 0; }
  .pill-3 { display: none; }
  .hero-stats { gap: 0; flex-wrap: wrap; row-gap: 12px; }
  .hero-stat { padding-right: 20px; }
  .hero-stat-div { margin-right: 20px; }

  /* About / layout grids */
  .about-grid,
  .preise-inner,
  .kontakt-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tim-inner { grid-template-columns: 1fr; gap: 48px; }
  .tim-photo-wrap { max-width: 280px; }
  .tim-badge { width: max-content; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(1),
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: span 2; }

  /* Steps */
  .ablauf-grid { grid-template-columns: 1fr; gap: 32px; }
  .ablauf-grid::before { display: none; }
  .step { padding: 0; }

  /* Cards */
  .preise-card  { padding: 28px; }
  .kontakt-right { padding: 28px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-links { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .footer-links a { padding: 4px 8px; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* FAQ */
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-aside { position: static; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================ */
@media (max-width: 600px) {

  /* Spacing */
  .section  { padding-block: 56px; }
  #ueber-uns, #ablauf, #tim { padding-block: 56px; }
  #leistungen, #kontakt { padding-block: 56px; }
  #faq      { padding-block: 56px; }
  #preise   { padding-block: 56px; }

  /* Hero */
  .hero-inner {
    padding-top: calc(var(--nav-h) + 16px);
    padding-bottom: 48px;
    padding-inline: 18px;
    gap: 32px;
  }
  .hero-badge { font-size: 0.75rem; padding: 6px 12px; }
  .hero-lead  { font-size: 1rem; margin-bottom: 28px; }
  .hero-ctas  { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 16px 24px; }
  .btn-hero-choice { min-width: unset; width: 100%; }
  .choice-main { font-size: 0.95rem; }
  .hero-stats { column-gap: 0; row-gap: 10px; }
  .hero-stat strong { font-size: 1.1rem; }
  .hero-right { min-height: 280px; }
  .logo-orb-wrap  { width: 180px; height: 180px; }
  .orb-logo-inner { width: 120px; height: 120px; }
  .orb-logo-inner img { width: 84px; height: 84px; }
  .orb-ring-1 { width: 196px; height: 196px; }
  .orb-ring-2 { width: 238px; height: 238px; }
  .orb-ring-3 { width: 280px; height: 280px; }
  .pill-1 { font-size: 0.72rem; padding: 7px 12px; top: 10px; right: 0; }
  .pill-2 { font-size: 0.72rem; padding: 7px 12px; bottom: 20px; left: -10px; }
  .hero-scroll-hint { display: none; }

  /* Trust bar */
  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 0; }
  .trust-bar-item + .trust-bar-item::before { display: none; }
  .trust-bar-item { padding: 8px 16px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card:nth-child(n) { grid-column: span 1; }
  .service-card-wide-layout  { flex-direction: column; gap: 12px; }
  .service-card { padding: 24px 20px; }

  /* About */
  .about-card-main { padding: 32px 24px; }
  .about-card-floating { display: none; }

  /* Steps */
  .step-num { width: 48px; height: 48px; font-size: 1.1rem; }

  /* Preise */
  .preise-left .display-2 { font-size: 1.8rem; }
  .preise-num { font-size: 2.8rem; }

  /* FAQ */
  .faq-aside-card { padding: 28px 24px; }
  .faq-q { font-size: 0.95rem; }

  /* Kontakt */
  .kontakt-right { padding: 24px 20px; border-radius: var(--radius-lg); }
  .kontakt-inner { gap: 32px; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-links { flex-direction: column; gap: 4px; }
  .footer-links a { padding: 6px 0; }

  /* Buttons — bigger touch targets */
  .btn { min-height: 48px; }
  .btn-lg { min-height: 52px; }

  /* Floating WhatsApp */
  .wa-float { bottom: 20px; right: 16px; width: 52px; height: 52px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ============================================
   HERO — ANIMATED ORBS / MESH BACKGROUND
   ============================================ */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(72px);
  opacity: 0;
  animation: orb-fade-in 1.2s ease forwards;
}
.hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(92,101,32,0.22) 0%, transparent 70%);
  top: -80px; left: 30%;
  animation: orb-fade-in 1.2s ease forwards, orb-drift-1 18s ease-in-out infinite 1.2s;
}
.hero-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,126,58,0.18) 0%, transparent 70%);
  bottom: 0; right: 5%;
  animation: orb-fade-in 1.5s ease forwards, orb-drift-2 22s ease-in-out infinite 1.5s;
}
.hero-orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(92,101,32,0.12) 0%, transparent 70%);
  top: 40%; left: 5%;
  animation: orb-fade-in 1.8s ease forwards, orb-drift-3 14s ease-in-out infinite 1.8s;
}
@keyframes orb-fade-in {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, 30px) scale(1.06); }
  66%       { transform: translate(-30px, 20px) scale(0.96); }
}
@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-50px, -30px) scale(1.1); }
}
@keyframes orb-drift-3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(20px, -40px); }
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface-2), transparent);
}
.marquee-strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--primary), transparent);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}
.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 0 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.marquee-item svg {
  width: 14px; height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
#faq {
  padding-block: 112px;
  background: var(--surface);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.faq-header {
  margin-bottom: 48px;
}
.faq-header .section-label { margin-bottom: 12px; }
.faq-header .display-2 { margin-bottom: 16px; }
.faq-header .lead { max-width: 46ch; }

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  transition: color 0.2s ease;
}
.faq-trigger:hover .faq-q {
  color: var(--accent);
}
.faq-q {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease;
  line-height: 1.4;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-icon svg {
  width: 14px; height: 14px;
  color: var(--primary);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), color 0.25s ease;
}
.faq-item.open .faq-icon {
  background: var(--accent);
}
.faq-item.open .faq-icon svg {
  color: white;
  transform: rotate(45deg);
}
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.35s ease;
  opacity: 0;
}
.faq-item.open .faq-body {
  max-height: 400px;
  opacity: 1;
}
.faq-body-inner {
  padding-bottom: 22px;
}
.faq-body p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* FAQ aside card */
.faq-aside {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.faq-aside-card {
  background: linear-gradient(135deg, #1a2410 0%, #222e12 60%, #1a2410 100%);
  border: 1px solid rgba(139,163,50,0.2);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.faq-aside-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.faq-aside-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: rgba(201,126,58,.12);
  border-radius: 50%;
}
.faq-aside-logo {
  position: relative; z-index: 1;
  width: 60px; height: 60px;
  background: transparent;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.faq-aside-logo img {
  width: 60px; height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(139,163,50,0.4));
}
.faq-aside-card h3 {
  position: relative; z-index: 1;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.faq-aside-card p {
  position: relative; z-index: 1;
  font-size: 0.88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 28px;
}
.faq-aside-ctas {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-aside-ctas .btn {
  width: 100%;
  justify-content: center;
}
.btn-ghost-white {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.16);
  color: #fff;
}

/* ============================================
   SERVICE CARD — SPOTLIGHT EFFECT
   ============================================ */
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(92,101,32,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
}
.service-card:hover::before {
  opacity: 1;
}

/* ============================================
   SCRAMBLE TEXT
   ============================================ */
.scramble-target {
  display: inline;
}

/* ============================================
   GRAIN OVERLAY — fixed, performance-safe
   ============================================ */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ============================================
   RESPONSIVE — FAQ
   ============================================ */
@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-aside { position: static; }
}
@media (max-width: 600px) {
  #faq { padding-block: 64px; }
  .faq-aside-card { padding: 28px 24px; }
}

/* ============================================
   HERO CANVAS — Three.js
   ============================================ */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

.hero-right {
  position: relative;
}

.hero-right .floating-pill {
  z-index: 2;
}

/* ============================================
   SERVICE CARD IMAGES
   ============================================ */
.service-card-img {
  width: calc(100% + 48px);
  margin: -24px -24px 20px -24px;
  height: 180px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  flex-shrink: 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.service-card:hover .service-card-img img {
  transform: scale(1.07);
}

/* Taller image on wide cards */
.service-card:nth-child(1) .service-card-img,
.service-card:nth-child(4) .service-card-img,
.service-card:nth-child(5) .service-card-img {
  height: 200px;
}

/* ============================================
   ROLE SWITCH BUTTON (nav)
   ============================================ */
.role-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.role-switch-btn:hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--primary);
}
body.view-senior .role-switch-btn { border-color: rgba(139,163,50,0.4); }
body.view-helper .role-switch-btn { border-color: rgba(201,126,58,0.4); color: var(--accent); }
body.view-helper .role-switch-btn:hover { border-color: var(--accent); }
@media (max-width: 900px) { .role-switch-btn { display: none; } }

.role-switch-btn-mobile {
  display: none;
}
@media (max-width: 900px) {
  .role-switch-btn-mobile {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    background: var(--surface-2);
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
  }
  body.view-senior .role-switch-btn-mobile { border-color: rgba(139,163,50,0.4); }
  body.view-helper .role-switch-btn-mobile { border-color: rgba(201,126,58,0.4); color: var(--accent); }
}

/* ============================================
   ABO CALLOUT (preise section)
   ============================================ */
.preise-abo-callout {
  background: rgba(139,163,50,0.08);
  border: 1px solid rgba(139,163,50,0.25);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 28px;
}
.preise-abo-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.preise-abo-options {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.preise-abo-option {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 100px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 10px 14px;
  position: relative;
}
.preise-abo-option.abo-best {
  background: rgba(139,163,50,0.12);
  border: 1px solid rgba(139,163,50,0.3);
}
.abo-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 2px;
}
.abo-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.abo-price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
}
.abo-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.preise-abo-sep {
  font-size: 0.8rem;
  color: var(--text-light);
  flex-shrink: 0;
}
.preise-abo-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   HELPER BENEFITS (preise left)
   ============================================ */
.preise-helper-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  background: rgba(201,126,58,0.07);
  border: 1px solid rgba(201,126,58,0.2);
  border-radius: 12px;
  padding: 16px 18px;
}
.helper-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(240,237,223,0.8);
}
.helper-benefit svg { color: var(--accent); flex-shrink: 0; }

/* ============================================
   AUDIENCE SWITCHING
   ============================================ */
/* Default = Senior view */
.for-helper { display: none; }

/* Helper mode */
body.view-helper .for-senior { display: none; }
body.view-helper .for-helper { display: block; }

/* Elements that need specific display values */
body.view-helper span.for-helper           { display: inline; }
body.view-helper .ablauf-grid.for-helper   { display: grid; }
body.view-helper .faq-list.for-helper      { display: flex; }
body.view-helper .preise-inner .for-helper { display: block; }

/* Preise inner layout: hide gaps when one pair is hidden */
body.view-helper .preise-inner .for-senior,
body.view-senior .preise-inner .for-helper { display: none; }

/* ============================================
   ROLE PICKER
   ============================================ */
#role-picker {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  overflow-y: auto;
}
#role-picker.rp-visible {
  opacity: 1;
  pointer-events: all;
}
#role-picker.rp-exit {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.rp-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.rp-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(139,163,50,0.14) 0%, transparent 70%);
  top: -100px; right: -80px;
}
.rp-orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201,126,58,0.12) 0%, transparent 70%);
  bottom: -80px; left: -60px;
}
.rp-inner {
  position: relative;
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.rp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.rp-brand img {
  width: 52px; height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(139,163,50,0.4));
}
.rp-brand-name {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.02em;
}
.rp-brand-name strong {
  font-weight: 700;
  color: var(--primary);
}
.rp-heading {
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 14px;
}
.rp-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 380px;
}
.rp-choices {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.rp-choice {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 16px;
  border: 1.5px solid transparent;
  background: var(--surface);
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s, background 0.2s;
  width: 100%;
}
.rp-choice:hover {
  transform: translateY(-2px);
}
.rp-choice-senior {
  border-color: rgba(139,163,50,0.35);
}
.rp-choice-senior:hover {
  border-color: var(--primary);
  background: rgba(139,163,50,0.08);
  box-shadow: 0 8px 32px rgba(139,163,50,0.18);
}
.rp-choice-helper {
  border-color: rgba(201,126,58,0.35);
}
.rp-choice-helper:hover {
  border-color: var(--accent);
  background: rgba(201,126,58,0.08);
  box-shadow: 0 8px 32px rgba(201,126,58,0.18);
}
.rp-choice-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rp-choice-senior .rp-choice-icon {
  background: rgba(139,163,50,0.15);
  color: var(--primary);
}
.rp-choice-helper .rp-choice-icon {
  background: rgba(201,126,58,0.15);
  color: var(--accent);
}
.rp-choice-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rp-choice-main {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.rp-choice-sub {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.rp-arrow {
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform 0.2s, color 0.2s;
}
.rp-choice:hover .rp-arrow {
  transform: translateX(4px);
  color: var(--text-muted);
}
.rp-skip-btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s;
  font-family: inherit;
}
.rp-skip-btn:hover { color: var(--text-muted); }

@media (max-width: 600px) {
  .rp-choice { padding: 18px 16px; gap: 14px; }
  .rp-choice-icon { width: 44px; height: 44px; }
  .rp-heading { font-size: 1.8rem; }
}

/* ============================================
   INTRO SPLASH
   ============================================ */
#intro-splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0A0D06;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.18, 1),
              transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}
#intro-splash.is-exit {
  opacity: 0;
  transform: scale(1.03);
  pointer-events: none;
}

/* Ambient orbs */
.is-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  animation: is-orb-pulse 8s ease-in-out infinite;
}
.is-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(92,101,32,0.28) 0%, transparent 65%);
  top: -80px; right: -60px;
  animation-delay: 0s;
}
.is-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,126,58,0.14) 0%, transparent 65%);
  bottom: -60px; left: -40px;
  animation-delay: -4s;
}
@keyframes is-orb-pulse {
  0%,100% { transform: scale(1) translate(0,0); }
  50%      { transform: scale(1.12) translate(20px,-20px); }
}

/* Center stack */
.is-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Logo */
.is-logo {
  position: relative;
  width: 130px; height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  opacity: 0;
  transform: scale(0.6) translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.is-logo.vis {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.is-logo img {
  width: 100px; height: 100px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 28px rgba(139,163,50,0.55));
  animation: is-logo-float 4s ease-in-out infinite;
}
@keyframes is-logo-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* Logo rings */
.is-logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139,163,50,0.22);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.is-ring-1 { width: 150px; height: 150px; animation: is-ring-spin 14s linear infinite; }
.is-ring-2 { width: 180px; height: 180px; border-style: dashed; border-color: rgba(201,126,58,0.15); animation: is-ring-spin 22s linear infinite reverse; }
@keyframes is-ring-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Logo glow */
.is-logo-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(92,101,32,0.35) 0%, transparent 65%);
  border-radius: 50%;
  animation: is-glow-pulse 3s ease-in-out infinite;
}
@keyframes is-glow-pulse {
  0%,100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.15); }
}

/* Brand name */
.is-brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #F0EDDF;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.is-brand.vis { opacity: 1; transform: translateY(0); }
.is-brand span { color: #C97E3A; }

/* Divider */
.is-divider {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  margin-bottom: 28px;
  transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.is-divider.vis { width: 220px; }
.is-divider span { display: none; }

/* Quote */
.is-quote {
  text-align: center;
  max-width: 400px;
  padding: 0 24px;
}
.is-quote p {
  font-size: clamp(1rem, 3.5vw, 1.3rem);
  font-weight: 500;
  line-height: 1.7;
  color: rgba(240,237,223,0.82);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.is-quote p:last-child { margin-bottom: 0; }
.isw {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  margin-right: 0.25em;
}
.isw.vis { opacity: 1; transform: translateY(0); }
.is-accent { color: #C97E3A; font-weight: 700; }
.is-punct  { margin-right: 0; color: rgba(240,237,223,0.5); }

/* Progress bar */
.is-progress {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 1.5px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.is-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #5C6520, #8BA332, #C97E3A);
  border-radius: 2px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Skip button */
.is-skip {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(240,237,223,0.25);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  transition: color 0.2s ease;
  z-index: 2;
}
.is-skip:hover { color: rgba(240,237,223,0.6); }

@media (max-width: 480px) {
  .is-logo  { width: 100px; height: 100px; }
  .is-logo img { width: 76px; height: 76px; }
  .is-ring-1 { width: 116px; height: 116px; }
  .is-ring-2 { width: 144px; height: 144px; }
  .is-brand  { font-size: 1.25rem; }
  .is-quote p { font-size: 1rem; }
  .is-progress { bottom: 56px; }
  .is-skip { bottom: 20px; right: 16px; }
}

/* ── DLS Info Link ───────────────────────────────────────────── */
.dls-info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 16px;
  background: rgba(201,126,58,.12);
  border: 1px solid rgba(201,126,58,.45);
  border-radius: 10px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  width: fit-content;
}
.dls-info-link:hover {
  background: rgba(201,126,58,.22);
  border-color: var(--accent);
}
.dls-info-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
