/* =========================================================
   CuraPorta GmbH – Globales Designsystem (main.css)
   Enthält ausschließlich projektweite Komponenten:
   Designtokens, Reset, Header, Footer, Buttons, Formulare,
   sowie wiederverwendbare Sektions-Komponenten.
   Seitenbezogene Stile liegen in /assets/css/pages/*.
   ========================================================= */

:root{
  --color-orange: #de7814;
  --color-orange-dark: #b8620f;
  --color-orange-light: #f5a35a;
  --color-green: #237c35;
  --color-green-dark: #1a5c27;
  --color-green-light: #4fa566;
  --color-brown: #a37349;
  --color-brown-light: #c9a583;

  --color-cream: #faf6f1;
  --color-cream-dark: #f1e9df;
  --color-white: #ffffff;
  --color-anthracite: #2b2b29;
  --color-anthracite-soft: #4a4a46;
  --color-grey-border: #e6ddd2;
  --color-grey-text: #756f66;

  --color-danger: #c0392b;
  --color-success: #237c35;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-soft: 0 10px 30px rgba(43, 43, 41, 0.06);
  --shadow-medium: 0 20px 50px rgba(43, 43, 41, 0.10);
  --shadow-strong: 0 30px 70px rgba(43, 43, 41, 0.16);

  --font-head: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', 'Poppins', sans-serif;

  --max-width: 1180px;
  --header-height: 84px;

  /* Layout-Breiten: Navbar & Footer nutzen die volle Bühne (max. 80vw),
     Inhalt bleibt in lesefreundlicher Breite. */
  --shell-max: min(80vw, 1760px);
  --content-max: 1180px;

  /* Bewegungen / Micro-Interactions (GPU-freundlich) */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Sichtbarer Fokus-Ring (WCAG 2.4.7) */
  --focus-ring: 0 0 0 3px rgba(222, 120, 20, 0.45);
  --focus-ring-color: var(--color-orange);
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-cream);
  color: var(--color-anthracite);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4{
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}
p{ margin: 0 0 16px 0; }

.container{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow{ max-width: 820px; }

/* ---------- Utilities ---------- */
.text-center{ text-align: center; }
.mt-0{ margin-top: 0; }
.mb-0{ margin-bottom: 0; }
.pt-0{ padding-top: 0; }

.tag-pill{
  display: inline-block;
  background: rgba(35, 124, 53, 0.1);
  color: var(--color-green-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}
.tag-pill-orange{
  background: rgba(222, 120, 20, 0.1);
  color: var(--color-orange-dark);
}

/* ---------- Eyebrow / Kicker ---------- */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 14px;
}
.eyebrow::before{
  content: "";
  width: 18px; height: 2px;
  background: var(--color-orange);
  border-radius: 2px;
}
.eyebrow-center{ justify-content: center; }
.eyebrow-light{ color: var(--color-orange-light); }

/* ---------- Header / Navigation ---------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  background: rgba(250, 246, 241, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(43,43,41,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled{ box-shadow: 0 4px 24px rgba(43,43,41,0.06); }
.header-inner{
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo{
  display: inline-flex; align-items: center;
  line-height: 0;
}
.logo .logo-img{
  display: block;
  height: 48px; width: auto;
  max-width: 100%;
  transition: transform var(--transition-base, 0.25s ease);
}
.logo:hover .logo-img{ transform: translateY(-1px); }

.main-nav{ display: flex; align-items: center; gap: 36px; }
.main-nav a{
  font-family: var(--font-head);
  font-size: 15px; font-weight: 500;
  color: var(--color-anthracite-soft);
  position: relative; padding: 6px 2px;
  transition: color 0.2s ease;
}
.main-nav a:hover, .main-nav a.active{ color: var(--color-anthracite); }
.main-nav a.active::after{
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--color-orange); border-radius: 2px;
}
.header-actions{ display: flex; align-items: center; gap: 18px; }
.header-phone{
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--color-green-dark);
}
.nav-toggle{
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span{
  width: 24px; height: 2px; background: var(--color-anthracite);
  border-radius: 2px; transition: 0.25s ease;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--color-orange); color: var(--color-white);
  box-shadow: 0 8px 24px rgba(222, 120, 20, 0.32);
}
.btn-primary:hover{
  background: var(--color-orange-dark); transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(222, 120, 20, 0.4);
}
.btn-secondary{
  background: var(--color-white); color: var(--color-anthracite);
  border: 1.5px solid var(--color-grey-border);
}
.btn-secondary:hover{ border-color: var(--color-orange); color: var(--color-orange); transform: translateY(-2px); }
.btn-green{
  background: var(--color-green); color: var(--color-white);
  box-shadow: 0 8px 24px rgba(35, 124, 53, 0.28);
}
.btn-green:hover{ background: var(--color-green-dark); transform: translateY(-2px); }
.btn:active{ transform: translateY(0) scale(0.98); }
.btn-large{ padding: 18px 38px; font-size: 17px; }
.btn-block{ width: 100%; }

/* ---------- Section basics ---------- */
section{ padding: 110px 0; }
.page-hero{ padding: calc(var(--header-height) + 70px) 0 40px; }
.section-head{ text-align: center; max-width: 680px; margin: 0 auto 64px auto; }
.section-head h2{ font-size: 38px; color: var(--color-anthracite); }
.section-head p{ font-size: 18px; color: var(--color-anthracite-soft); }
.section-cream{ background: var(--color-cream-dark); }
.section-dark{ background: var(--color-anthracite); color: var(--color-white); }
.section-dark h2, .section-dark h3{ color: var(--color-white); }
.section-dark p{ color: rgba(255,255,255,0.72); }
.section-dark .hero-note{ color: rgba(255,255,255,0.75); }

/* ---------- Hero (geteilte Komponente) ---------- */
.hero{ padding: calc(var(--header-height) + 90px) 0 100px; position: relative; overflow: hidden; }
.hero-bg-rings{
  position: absolute; top: -120px; right: -160px;
  width: 600px; height: 600px; opacity: 0.18; z-index: 0; pointer-events: none;
}
.hero-grid{
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero h1{ font-size: 52px; color: var(--color-anthracite); }
.hero h1 .accent, h1 .accent{ color: var(--color-orange); }
.hero-sub{ font-size: 19px; color: var(--color-anthracite-soft); max-width: 520px; margin-bottom: 32px; }
.hero-sub--centered{ margin-left: auto; margin-right: auto; }
.hero-narrow{ max-width: 700px; margin: 0 auto; }
.hero-cta-row{ display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-note{ font-size: 14px; color: var(--color-grey-text); display: flex; align-items: center; gap: 8px; }
.hero-visual{ position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-strong); }
.hero-visual img{ width: 100%; height: 100%; object-fit: cover; }

/* ---------- Trust bar ---------- */
.trust-bar{
  background: var(--color-white);
  border-top: 1px solid var(--color-grey-border);
  border-bottom: 1px solid var(--color-grey-border);
  padding: 36px 0;
}
.trust-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-item{ display: flex; flex-direction: column; align-items: center; gap: 10px; }
.trust-item .icon-circle, .icon-circle{
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-cream-dark);
}
.trust-item span{ font-size: 14px; font-weight: 600; color: var(--color-anthracite-soft); font-family: var(--font-head); }

/* ---------- Steps ---------- */
.steps-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step-card{
  background: var(--color-white); border-radius: var(--radius-md);
  padding: 36px 28px; box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative;
}
.step-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-medium); }
.step-number{
  font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--color-orange);
  background: rgba(222, 120, 20, 0.1); width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.step-card h3{ font-size: 18px; margin-bottom: 10px; }
.step-card p{ font-size: 15px; color: var(--color-anthracite-soft); margin-bottom: 0; }

/* ---------- Benefit cards ---------- */
.benefits-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card{
  background: var(--color-white); border-radius: var(--radius-md);
  padding: 32px; box-shadow: var(--shadow-soft);
  display: flex; gap: 18px; align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.benefit-icon{
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(35, 124, 53, 0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.benefit-card h3{ font-size: 17px; margin-bottom: 6px; }
.benefit-card p{ font-size: 14.5px; color: var(--color-anthracite-soft); margin-bottom: 0; }

/* Vertikal gestapelte Karten (z. B. neben Textspalte) */
.card-stack{ display: flex; flex-direction: column; gap: 18px; }

/* Dunkle Varianten der Benefit-Karten (auf .section-dark) */
.benefit-card--dark{
  background: rgba(255,255,255,0.06); box-shadow: none;
  border: 1px solid rgba(255,255,255,0.12);
}
.benefit-card--dark h3{ color: #fff; }
.benefit-icon--orange{ background: rgba(245,163,90,0.16); }
.benefit-icon--green{ background: rgba(79,165,102,0.18); }

/* ---------- Product teaser ---------- */
.product-teaser{ background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-dark) 100%); }
.product-teaser-grid{ display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.product-teaser-visual{ border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-strong); }
.price-pill{
  display: inline-flex; align-items: baseline; gap: 6px;
  background: var(--color-white); border-radius: 100px; padding: 10px 22px;
  box-shadow: var(--shadow-soft); margin-bottom: 24px;
}
.price-pill .price-amount{ font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--color-green); }
.price-pill .price-label{ font-size: 14px; color: var(--color-anthracite-soft); }

/* ---------- CTA banner ---------- */
.cta-banner{
  background: linear-gradient(120deg, var(--color-green-dark) 0%, var(--color-green) 100%);
  border-radius: var(--radius-lg); padding: 70px 60px; text-align: center;
  color: var(--color-white); position: relative; overflow: hidden;
}
.cta-banner h2{ color: var(--color-white); font-size: 36px; }
.cta-banner p{ color: rgba(255,255,255,0.85); font-size: 18px; max-width: 560px; margin: 0 auto 32px auto; }
.cta-banner .btn-primary{ background: var(--color-white); color: var(--color-green-dark); box-shadow: 0 10px 30px rgba(0,0,0,0.18); }
.cta-banner .btn-primary:hover{ background: var(--color-cream); color: var(--color-green-dark); }

/* ---------- FAQ Accordion (geteilte Komponente) ---------- */
.faq-list{ max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item{
  background: var(--color-white); border: 1px solid var(--color-grey-border);
  border-radius: var(--radius-sm); padding: 6px 26px;
  box-shadow: var(--shadow-soft); transition: border-color 0.25s ease;
}
.faq-item[open]{ border-color: rgba(222, 120, 20, 0.25); }
.faq-item summary{
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  color: var(--color-anthracite); padding: 20px 36px 20px 0; cursor: pointer;
  list-style: none; position: relative; -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 400; color: var(--color-orange);
}
.faq-item[open] summary::after{ content: "–"; }
.faq-item p{ font-size: 14.5px; color: var(--color-anthracite-soft); padding-bottom: 22px; margin: 0; }

/* ---------- Formulare (geteilt: Kontakt + Admin) ---------- */
.form-section{
  background: var(--color-white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium); padding: 40px;
}
.form-field{ display: block; margin-bottom: 18px; }
.form-label{ display: block; font-family: var(--font-head); font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.form-field input,
.form-field textarea,
.form-field select{
  width: 100%; padding: 12px 14px; font: inherit;
  border: 1.5px solid var(--color-grey-border); border-radius: var(--radius-sm);
  background: var(--color-white); color: var(--color-anthracite);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus{
  outline: none;
  border-color: var(--color-orange);
  box-shadow: var(--focus-ring);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-error{ display: block; color: var(--color-danger); font-size: 13px; margin-top: 4px; }
.form-hint{ display: block; color: var(--color-grey-text); font-size: 13px; margin-top: 4px; word-break: break-all; }
.form-honeypot{ position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-consent{ display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin: 8px 0 20px; color: var(--color-anthracite-soft); }
.form-consent input{ margin-top: 4px; }

.alert{ padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 14.5px; }
.alert-success{ background: rgba(35,124,53,0.12); color: var(--color-green-dark); }
.alert-error{ background: rgba(192,57,43,0.12); color: var(--color-danger); }

.badge{ display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 12.5px; font-weight: 600; }
.badge--green{ background: rgba(35,124,53,0.12); color: var(--color-green-dark); }
.badge--orange{ background: rgba(222,120,20,0.12); color: var(--color-orange-dark); }
.badge--grey{ background: rgba(43,43,41,0.08); color: var(--color-anthracite-soft); }

/* ---------- Footer ---------- */
.site-footer{ background: var(--color-anthracite); color: rgba(255,255,255,0.7); padding: 70px 0 30px; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer-logo{
  display: inline-flex; align-items: center;
  line-height: 0; margin-bottom: 16px;
}
.footer-logo .footer-logo-img{
  display: block;
  height: 44px; width: auto; max-width: 100%;
}
.footer-desc{ font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-col h4{ color: var(--color-white); font-size: 15px; margin-bottom: 18px; }
.footer-col ul li{ margin-bottom: 12px; }
.footer-col ul li a{ font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s ease; }
.footer-col ul li a:hover{ color: var(--color-orange-light); }
.footer-contact li{ display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 14px; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links{ display: flex; gap: 22px; }
.footer-bottom-links a:hover{ color: var(--color-white); }

/* ---------- Scroll reveal ---------- */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
  html{ scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero h1{ font-size: 38px; }
  .hero-grid{ grid-template-columns: 1fr; gap: 40px; }
  .hero-visual{ order: -1; }
  .trust-grid{ grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .steps-grid{ grid-template-columns: repeat(2, 1fr); }
  .benefits-grid{ grid-template-columns: 1fr; }
  .product-teaser-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 32px; }
  .main-nav{
    display: none; position: absolute; top: var(--header-height); left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--color-white);
    box-shadow: var(--shadow-medium); padding: 12px 24px;
  }
  .main-nav.is-open{ display: flex; }
  .main-nav a{ padding: 14px 0; border-bottom: 1px solid var(--color-grey-border); }
  .nav-toggle{ display: flex; }
  .header-phone{ display: none; }
  .form-row{ grid-template-columns: 1fr; }
}
@media (max-width: 600px){
  section{ padding: 70px 0; }
  .hero{ padding: calc(var(--header-height) + 50px) 0 60px; }
  .page-hero{ padding: calc(var(--header-height) + 40px) 0 20px; }
  .section-head h2{ font-size: 28px; }
  .steps-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .cta-banner{ padding: 50px 28px; }
  .cta-banner h2{ font-size: 28px; }
  .form-section{ padding: 28px 20px; }
}

/* =========================================================
   Barrierefreiheit, Layout-Shell, globaler CTA & Cursor
   ========================================================= */

/* ---------- Skip-Link (Tastatur / Screenreader) ---------- */
.skip-link{
  position: fixed; top: 0; left: 50%;
  transform: translateX(-50%) translateY(-120%);
  z-index: 2000;
  background: var(--color-anthracite); color: var(--color-white);
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: transform var(--transition-base);
}
.skip-link:focus{ transform: translateX(-50%) translateY(0); outline: none; box-shadow: var(--focus-ring); }
#main:focus{ outline: none; }

/* ---------- Globaler, sichtbarer Fokus-Indikator ---------- */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible,
summary:focus-visible,
.btn:focus-visible{
  outline: 2px solid var(--focus-ring-color);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Layout-Shell für Footer (80vw) ---------- */
.site-footer > .container{
  max-width: var(--shell-max);
}

/* ---------- Globaler Call-to-Action ---------- */
.cta-global{
  position: fixed;
  right: clamp(16px, 3vw, 40px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 1200;
}
.cta-global__link{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  color: var(--color-white);
  background: var(--color-orange);
  padding: 14px 22px;
  border-radius: 100px;
  box-shadow: 0 12px 30px rgba(222, 120, 20, 0.42);
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  will-change: transform;
}
.cta-global__link:hover{
  background: var(--color-orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(222, 120, 20, 0.5);
}
.cta-global__link:active{ transform: translateY(0) scale(0.97); }
.cta-global__icon{ flex-shrink: 0; }

/* Mobil: kompakter Floating-Action-Button */
@media (max-width: 600px){
  .cta-global{ right: 16px; bottom: 16px; }
  .cta-global__link{ padding: 14px 18px; font-size: 14px; box-shadow: 0 10px 26px rgba(222, 120, 20, 0.5); }
}

/* ---------- Individueller Cursor (nur feine Zeiger) ---------- */
.cursor-dot,
.cursor-ring{
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.cursor-dot{
  width: 7px; height: 7px;
  background: var(--color-orange);
}
.cursor-ring{
  width: 38px; height: 38px;
  border: 2px solid rgba(222, 120, 20, 0.55);
  transition: width var(--transition-base), height var(--transition-base),
              background var(--transition-base), border-color var(--transition-base),
              opacity var(--transition-base);
}
body.cursor-active.cursor-ready .cursor-dot,
body.cursor-active.cursor-ready .cursor-ring{ opacity: 1; }
/* Hover über interaktiven Elementen: Ring wächst, Akzent grün */
body.cursor-active .cursor-ring.is-hover{
  width: 60px; height: 60px;
  background: rgba(35, 124, 53, 0.10);
  border-color: var(--color-green);
}
/* Klick-Animation */
body.cursor-active .cursor-ring.is-click{
  width: 26px; height: 26px;
  border-color: var(--color-orange-dark);
}
/* Eigenen Cursor nur bei feinen Zeigern verstecken */
@media (hover: hover) and (pointer: fine){
  body.cursor-active{ cursor: none; }
  body.cursor-active a,
  body.cursor-active button,
  body.cursor-active [role="button"],
  body.cursor-active input,
  body.cursor-active textarea,
  body.cursor-active select,
  body.cursor-active label{ cursor: none; }
}

/* ---------- Globale Reduced-Motion-Absicherung ---------- */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .cursor-dot, .cursor-ring{ display: none !important; }
}

