:root {
    --accent: #ff8200;
    --accent-hover: #ff9d33;
    --bg: #050505;
    --bg-alt: #0f0f0f; /* AUFGEHELLT von #101010 */
    --bg-card: #0f0f0f; /* AUFGEHELLT von #0a0a0a */
    --text: #f5f5f5;
    --text-secondary: #e0e0e0;
    --muted: #ababab;
    --border: #2a2a2a;
    --border-light: #3a3a3a; /* AUFGEHELLT von #333333 */
    --radius-lg: 16px;
    --radius-md: 10px;
}

/* ====================================
   Global
   ==================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  background: #000000;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-size: 16px;
  background: radial-gradient(circle at top, #141414 0%, #050505 55%, #000000 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  padding-bottom: 0;
}

body.has-sticky-cta {
  padding-bottom: 80px;
}

/* Desktop: kein Padding, da Sticky-CTA versteckt ist */
@media (min-width: 721px) {
  body.has-sticky-cta {
    padding-bottom: 0;
  }
}

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

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

p {
  margin: 0 0 14px;
}

strong {
  font-weight: 600;
}

/* Abstand vor nächster Überschrift nach Text- oder Listenblock */
p + h2,
p + h3,
ul + h2,
ul + h3,
ol + h2,
ol + h3 {
  margin-top: 24px;
}

@media (max-width: 720px) {
  p + h2,
  p + h3,
  ul + h2,
  ul + h3,
  ol + h2,
  ol + h3 {
    margin-top: 20px;
  }
}

/* Mobile Lesbarkeit verbessern */
.section {
  padding: 56px 0;
}

/* Eyebrow / Mikro-Headline */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ====================================
   Header / Navigation
   ==================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-out;
}

/* 🚀 AUTO-HIDE HEADER (Mobile) */
.site-header.header-hidden {
  transform: translateY(-100%);
}

/* Desktop: Kein Auto-Hide */
@media (min-width: 901px) {
  .site-header.header-hidden {
    transform: translateY(0) !important;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 25px;
}

.logo img {
  width: 190px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.main-nav a {
  position: relative;
  padding-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
  transition: color 0.2s ease-out;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease-out;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: #ffffff;
}

/* Mobile nav button */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

/* Burger zu X Animation */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ====================================
   Sections + Scroll-Animation
   ==================================== */
.section {
  padding: 96px 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-alt {
  background: var(--bg-alt);
}

/* ✅ Legal-Seiten sofort sichtbar */
.legal-page {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ====================================
   Headings
   ==================================== */
h1,
h2,
h3,
h4 {
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

h1 {
  font-size: clamp(2.6rem, 4.2vw, 3.6rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2.1rem, 3.2vw, 2.6rem);
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.05rem;
}

/* ====================================
   Hero
   ==================================== */
.hero {
  min-height: auto;
  padding: 80px 0 100px;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  align-items: center;
}

.hero-copy p {
  max-width: 36rem;
  color: var(--text-secondary); /* Optimiert: Bessere Lesbarkeit */
}

.hero-copy p:last-of-type {
  margin-bottom: 20px;
}

.hero-tagline {
  display: block;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 10px 0 14px;
}

/* Pain Points & Ziele */
.hero-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 24px 0 20px;
  font-size: 14px;
  color: #ffffff;
  align-items: start;
}

.hero-list {
  min-height: 160px;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
}

.hero-list-highlighted {
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.hero-list h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  color: #ffffff;
  min-height: 32px;
  display: flex;
  align-items: center;
}

.hero-list-highlighted h2 {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #ff9933);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 12px;
  min-height: 32px;
}

.hero-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.hero-list li {
  position: relative;
  padding-left: 16px;
  color: #ffffff;
}

.hero-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-sub {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 380px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
}

/* ====================================
   Buttons - OPTIMIERT 2026
   ==================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* OPTIMIERT: Mehr Platz zwischen Text und Icon */
  padding: 13px 26px; /* OPTIMIERT: Etwas mehr Padding */
  min-height: 52px;
  border-radius: 999px; /* ✅ RUNDE ECKEN BEIBEHALTEN */
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, border-color 0.12s ease-out;
  white-space: nowrap;
  text-decoration: none;
}

/* Desktop: Noch größere Buttons */
@media (min-width: 901px) {
  .btn {
    padding: 14px 30px;
    min-height: 54px;
    gap: 12px; /* Desktop: Noch mehr Platz */
  }
}

.btn-primary {
  background: var(--accent);
  color: #1a1a1a;
  box-shadow: 0 14px 45px rgba(255, 130, 0, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 20px 60px rgba(255, 130, 0, 0.5);
  filter: drop-shadow(0 0 12px rgba(255, 130, 0, 0.4));
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(255, 130, 0, 0.05);
}

/* Icon-Styling - VERBESSERT */
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.9; /* Leicht transparenter für besseren Look */
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.btn:hover svg {
  opacity: 1;
  transform: translateX(2px); /* Leichte Animation beim Hover */
}

/* Ghost-Button Icons in Orange */
.btn-ghost svg {
  stroke: var(--accent);
  opacity: 0.8;
}

.btn-ghost:hover svg {
  opacity: 1;
  transform: translateX(2px);
}

/* ====================================
   Layout Helfer
   ==================================== */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

/* ====================================
   Über mich
   ==================================== */
.key-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 8px;
  color: var(--text-secondary); /* Optimiert */
  font-size: 14px;
}

#about .key-points:first-of-type {
  margin-bottom: 24px;
}

.image-portrait {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
}

/* ====================================
   Qualifikationen
   ==================================== */
#about .container:last-child {
  margin-top: 60px;
}

#about .container:last-child h3 {
  margin-bottom: 24px;
}

.qual-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
  color: var(--text-secondary); /* Optimiert */
  font-size: 14px;
}

.qual-list li {
  position: relative;
  padding-left: 16px;
}

.qual-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.qual-cards {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.qual-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light); /* Optimiert */
  background: var(--bg-card); /* Optimiert */
}

.qual-card-icon {
  font-size: 20px;
}

.qual-card-body p {
  color: var(--muted);
  margin-bottom: 8px;
}

.qual-card-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease-out;
}

.qual-card-body a:hover {
  color: var(--accent-hover); /* Optimiert */
}

/* ====================================
   Philosophie
   ==================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.card {
  background: linear-gradient(135deg, #141414, #090909);
  border-radius: var(--radius-lg);
  padding: 26px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.card p {
  color: var(--text-secondary); /* Optimiert */
}

/* ====================================
   Angebote & Preise
   ==================================== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  padding: 24px 22px 20px;
  gap: 12px;
  background: linear-gradient(135deg, var(--bg-card), rgba(255,130,0,0.03));
}

.offer-image {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  max-height: 180px;
  margin-bottom: 16px;
}

.offer-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.offer-header {
  margin-bottom: 16px;
  min-height: 140px;
}

.offer-card h3 {
  margin: 0 0 8px;
}

.offer-header p {
  margin: 0;
  color: var(--text-secondary); /* Optimiert */
}

.offer-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.offer-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-secondary); /* Optimiert */
  font-size: 14px;
  display: grid;
  gap: 6px;
}

.offer-body li {
  position: relative;
  padding-left: 16px;
}

.offer-body li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.price-wrap {
  margin-top: 16px;
  padding-top: 0;
  border-top: none;
}

.price {
  font-weight: 600;
  color: var(--accent) !important;
  font-size: 1.1rem;
  margin: 0;
}

/* ====================================
   Angebots-Toggle Button
   ==================================== */
.offer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 16px;
  padding: 11px 16px;
  background: transparent;
  border: 1px solid var(--border-light); /* Optimiert */
  border-radius: 999px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  min-height: 48px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: rgba(255, 130, 0, 0.2);
  touch-action: manipulation;
  user-select: none;
  position: relative;
}

.offer-toggle:hover {
  border-color: var(--accent);
  background: rgba(255, 130, 0, 0.05);
}

.offer-toggle:active {
  background: rgba(255, 130, 0, 0.12);
}

.offer-toggle:active .toggle-text {
  color: var(--accent);
}

.offer-toggle:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.toggle-icon {
  font-size: 12px;
  transition: transform 0.3s ease-out;
  color: var(--accent);
}

.toggle-text {
  transition: color 0.2s ease-out;
}

.offer-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}

/* ====================================
   Aufklappbare Details
   ==================================== */
.offer-details {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: slideDown 0.3s ease-out;
}

.offer-details[hidden] {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.offer-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-secondary); /* Optimiert */
  font-size: 14px;
  display: grid;
  gap: 8px;
}

.offer-details li {
  position: relative;
  padding-left: 16px;
}

.offer-details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

/* CTA in Karte – mehr Abstand auf Desktop */
.offer-cta {
  margin-top: 18px;
  width: 100%;
}

@media (min-width: 901px) {
  .offer-cta {
    margin-top: 22px;
  }
}

/* Best Practice 2025: Optimierte Typografie & Layout */
@media (min-width: 901px) {
  .hero {
    min-height: auto;
    padding: 60px 0 80px;
  }

  .hero-image {
    max-width: 320px;
  }

  .offer-header p {
    font-size: 18px;
    line-height: 1.6;
  }
}



/* ====================================
   MINI-TESTIMONIALS IN HERO
   ==================================== */

.hero-social-proof {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mini-testimonial {
  background: rgba(255, 130, 0, 0.05);
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  flex-direction: column; 
}

.mini-testimonial .quote-icon {
  display: inline-block;
  margin-right: 6px;
  font-size: 16px;
  opacity: 0.7;
}

.mini-testimonial p {
  margin: 0 0 6px;
  color: var(--text);
  font-weight: 500;
  flex: 1;
}

.mini-testimonial .author {
  font-size: 12px;
  color: var(--muted);
  font-style: normal;
  margin-top: auto;
  min-height: 18px;
  display: flex;
  align-items: center; 
}

/* ====================================
   OFFER TESTIMONIAL SNIPPETS
   ==================================== */

.offer-testimonial-snippet {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(255, 130, 0, 0.03);
  border-left: 2px solid var(--accent);
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.5;
}

.offer-testimonial-snippet p {
  margin: 0 0 6px;
  color: var(--text-secondary);
  font-style: italic;
}

.offer-testimonial-snippet span {
  font-size: 11px;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

/* ====================================
   HERO "DEINE ZIELE" HERVORHEBEN
   ==================================== */

.hero-list-highlighted h2 {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #ff9933);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 12px;
}

.hero-list-highlighted h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: var(--accent);
  border-radius: 2px;
}

.hero-list-highlighted {
  background: rgba(255, 130, 0, 0.04);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 130, 0, 0.15);
}

/* ====================================
   OFFER BADGE "MEIST GEBUCHT"
   ==================================== */

.offer-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent), #ff9933);
  color: #1a1a1a;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255, 130, 0, 0.4);
  z-index: 10;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(255, 130, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 130, 0, 0.6);
  }
}

.offer-card {
  position: relative;
}

/* ====================================
   BUTTON RIPPLE EFFECT
   ==================================== */

.btn {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ====================================
   ACCESSIBILITY IMPROVEMENTS
   ==================================== */

.btn:focus-visible,
.slider-btn:focus-visible,
.nav-toggle:focus-visible,
.back-to-top:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}


@media (max-width: 900px) {
  .offer-header p {
    font-size: 18px;
    line-height: 1.6;
  }
}

.offers-cta {
  margin-top: 40px;
  text-align: center;
}

.offers-cta p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

/* ====================================
   Testimonials
   ==================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--bg-card), rgba(255,130,0,0.03));
}

.testimonial-text {
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-author strong {
  font-size: 14px;
  color: var(--text);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--muted);
}

/* ====================================
   FAQ
   ==================================== */
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: linear-gradient(135deg, #141414, #090909);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: border-color 0.2s ease-out;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-item summary {
  padding: 18px 20px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s ease-out;
  padding-right: 32px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s ease-out;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: #ffffff;
}

.faq-item p {
  padding: 0 20px 20px;
  margin: 0;
  color: var(--text-secondary); /* Optimiert */
  line-height: 1.6;
  font-size: 15px;
}

/* ====================================
   Kontakt – Formular
   ==================================== */
.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  background: #050505;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light); /* Optimiert */
  padding: 11px 13px;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease-out;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-note {
  margin-top: 16px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
}

.field-error {
  font-size: 12px;
  color: #ff6b6b;
  margin-top: 4px;
  min-height: 16px;
}

.contact-form input.error,
.contact-form textarea.error {
  border-color: #ff4444;
}

.contact-info {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

address.contact-info {
  font-style: normal;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--accent);
  color: #0a0a0a;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  fill: #0a0a0a;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.contact-info a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease-out;
}

.contact-info a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ====================================
   Partner
   ==================================== */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 40px;
}

.partner-item {
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-light); /* Optimiert */
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition:
    border-color 0.2s ease-out,
    color 0.2s ease-out,
    transform 0.1s ease-out;
  cursor: pointer;
}

.partner-item:hover {
  border-color: var(--accent);
  color: #ffffff;
  transform: translateY(-1px);
}

.partner-item:active {
  transform: translateY(0);
}


/* ==========================================
   PARTNER SECTION - Optimiert ohne Badge & Description
   ========================================== */

.partners-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.partner-card {
  background: linear-gradient(135deg, var(--bg-card), rgba(255,130,0,0.02));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease-out;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ff9933);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
}

.partner-card:hover {
  border-color: rgba(255, 130, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 130, 0, 0.15);
}

.partner-card:hover::before {
  transform: scaleX(1);
}

.partner-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), #ff9933);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255, 130, 0, 0.3);
  transition: transform 0.3s ease-out;
}

.partner-card:hover .partner-icon {
  transform: scale(1.1) rotate(5deg);
}

.partner-icon svg {
  width: 28px;
  height: 28px;
  color: #1a1a1a;
  stroke-width: 2.5;
}

.partner-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.partner-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

.partner-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-category {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  flex-shrink: 0;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-out;
  white-space: nowrap;
}

.partner-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease-out;
}

.partner-link:hover {
  color: var(--accent-hover);
}

.partner-link:hover svg {
  transform: translate(2px, -2px);
}

.partners-cta {
  margin-top: 48px;
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 130, 0, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 130, 0, 0.1);
}

.partners-cta p {
  margin: 0 0 16px;
  color: var(--text-secondary);
  font-size: 16px;
}

@media (max-width: 900px) {
  .partners-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .partner-card {
    padding: 24px 20px;
    min-height: 200px;
  }
}

@media (max-width: 720px) {
  .partners-grid-new {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .partner-card {
    min-height: auto;
  }

  .partner-icon {
    width: 48px;
    height: 48px;
  }

  .partner-icon svg {
    width: 24px;
    height: 24px;
  }

  .partner-name {
    font-size: 1.05rem;
  }

  .partner-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .partners-cta {
    padding: 24px 16px;
  }
}


/* ====================================
   Footer
   ==================================== */
.site-footer {
  margin-top: 0;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
}

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

.footer-left {
  font-size: 13px;
  color: var(--muted);
}

.footer-copy {
  white-space: nowrap;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 12px;
  font-size: 13px;
}

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

.footer-links a:hover {
  color: var(--accent); /* Orange für konsistente Hover-Effekte */
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 20px;
  height: 20px;
  display: block;
  color: #f5f5f5;
  opacity: 0.85;
  transition:
    opacity 0.15s ease-out,
    transform 0.15s ease-out,
    color 0.15s ease-out;
}

.footer-social a:hover .social-icon {
  opacity: 1;
  transform: translateY(-1px);
  color: var(--accent);
}

/* ====================================
   Back-to-top Button
   ==================================== */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #111111;
  font-size: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 130, 0, 0.45);
  z-index: 30;
  transition:
    opacity 0.15s ease-out,
    transform 0.15s ease-out,
    background 0.2s ease-out;
}

.back-to-top.show {
  display: flex;
}

.back-to-top:hover {
  background: var(--accent-hover); /* Optimiert */
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 130, 0, 0.55);
}

@media (max-width: 720px) {
  .back-to-top {
    display: none !important;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .back-to-top {
    display: none !important;
  }
}

/* ====================================
   STICKY CTA FÜR MOBILE
   ==================================== */
.sticky-cta-mobile {
  display: none;
}

@media (min-width: 721px) {
  .sticky-cta-mobile {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 16px;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
    display: none;
    animation: slideUpCTA 0.3s ease-out;
  }

  .sticky-cta-mobile.show {
    display: block;
  }

  .sticky-cta-mobile .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
  }
}

@keyframes slideUpCTA {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 20px;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
    display: none;
    animation: slideUpCTA 0.3s ease-out;
  }

  .sticky-cta-mobile.show {
    display: block !important;
  }

  .sticky-cta-mobile .btn {
    width: 100%;
    min-height: 40px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
  }

  body.has-sticky-cta {
    padding-bottom: 52px;
  }
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .offers-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-card,
  .testimonial-card {
    padding: 22px 18px;
  }

  /* 🎯 FIX: Scroll-Stabilität Legal-Seiten */
  .legal-page h1 {
    font-size: 2rem !important;
    margin-bottom: 24px;
    line-height: 1.1;
  }

  .legal-page h2 {
    font-size: 1.6rem !important;
    line-height: 1.2;
  }

  .legal-page h3 {
    font-size: 1.3rem !important;
    line-height: 1.3;
  }

  .legal-page h4 {
    font-size: 1.05rem !important;
  }

  .legal-page p {
    margin-bottom: 14px;
  }

  .legal-page ul,
  .legal-page ol {
    margin-bottom: 14px;
  }
}

/* ====================================
   Mobile Portrait
   ==================================== */
@media (max-width: 720px) {
  .site-header {
    background: rgba(5, 5, 5, 1);
    backdrop-filter: blur(16px);
  }

  .header-inner {
    height: 56px;
  }

  .main-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #050505;
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.3s ease-out,
      opacity 0.3s ease-out,
      visibility 0s 0.3s;
    pointer-events: none;
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - 60px);
    max-height: none;
  }

  @supports (height: 100dvh) {
    .main-nav {
      height: calc(100dvh - 60px);
    }
  }

  .main-nav.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition:
      transform 0.3s ease-out,
      opacity 0.3s ease-out,
      visibility 0s 0s;
    pointer-events: auto;
  }

  .main-nav a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-toggle {
    display: flex;
    z-index: 25;
  }

  .logo {
    z-index: 25;
    position: relative;
    font-size: 22px;
  }

  .section {
  opacity: 1 !important;
  transform: translateY(0) !important;
  padding: 12px 0 !important;
  }


  /* ✅ HERO MOBILE PORTRAIT FIX */
  .hero {
    min-height: auto !important;
    padding: 6px 0 16px !important;
  }

  .hero-columns {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px !important;
    margin: 6px 0 0 !important;
    font-size: 12.5px !important;
  }

  .hero-list {
    padding: 10px 12px !important;
    min-height: auto !important;
  }

  .hero-list-highlighted {
    margin-top: 0 !important;
    padding: 10px 12px !important;
    border-top: none !important;
    border-left: 3px solid rgba(255,130,0,0.3) !important;
    border-radius: 12px !important;
    background: linear-gradient(180deg, rgba(255,130,0,0.08) 0%, rgba(255,130,0,0.12) 100%) !important;
  }

  .hero-list h2, 
  .hero-list-highlighted h2 {
    font-size: 11.5px !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
    min-height: auto !important;
  }

  .hero-list ul {
    gap: 4px !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .hero-list li {
    font-size: 12.5px !important;
    padding-left: 12px !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
  }

  .hero-list li:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    margin-top: 10px !important;
    gap: 10px !important;
  }

  /* 🚀 TYPOGRAFIE: Mobile Portrait */

  .hero {
  min-height: auto;
  padding: 6px 0 16px;
  }

  .hero-tagline { display: none; }

  h1 {
    margin: 0 0 4px !important;
    font-size: 1.8rem !important;
    line-height: 1.05;
  }

  h2 { font-size: 1.45rem !important; }
  h3 { font-size: 1.2rem !important; }
  h4 { font-size: 1rem !important; }

hero {
  --hero-spacing: clamp(8px, 2.2vw, 12px);
  padding: 60px 0 80px;
}

.hero-list-highlighted {
  padding: var(--hero-spacing);
  border-radius: var(--radius-md);
  background: rgba(255, 130, 0, 0.05);
  border: 1px solid rgba(255, 130, 0, 0.15);
}

.hero-list-highlighted h2 {
  margin: 0 0 var(--hero-spacing) 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  min-height: auto;
  background: linear-gradient(135deg, var(--accent), #ff9933);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: calc(var(--hero-spacing) * 0.6);
}

.hero-list li {
  position: relative;
  margin: 0;
  padding-left: 16px;
  color: #ffffff;
}

.hero-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--hero-spacing);
}

  .hero-sub {
    font-size: 12px;
    margin-top: 8px;
  }

  .hero-image {
    max-width: 140px;
    border-radius: 18px;
    margin-top: 16px;
  }

  .image-portrait {
    max-width: 280px;
    border-radius: 24px;
    margin: 0 auto;
  }

  .offers-grid,
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pillars {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    text-align: center;
    white-space: normal;
    min-height: 48px;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 500;
  }

  .offers-cta .btn {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  #about .container:last-child {
    margin-top: 80px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .contact-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .contact-info-item {
    gap: 0.7rem;
  }
}

/* ====================================
   Mobile Landscape
   ==================================== */
@media (max-width: 900px) and (orientation: landscape) {
  .site-header {
    background: rgba(5, 5, 5, 1);
  }

  .header-inner {
    height: 48px;
  }

  .main-nav {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #050505;
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 20px;
    padding-bottom: 80px;
    gap: 12px;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.3s ease-out,
      opacity 0.3s ease-out,
      visibility 0s 0.3s;
    pointer-events: none;
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - 50px);
    max-height: none;
  }

  @supports (height: 100dvh) {
    .main-nav {
      height: calc(100dvh - 50px);
    }
  }

  .main-nav.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition:
      transform 0.3s ease-out,
      opacity 0.3s ease-out,
      visibility 0s 0s;
    pointer-events: auto;
  }

  .main-nav a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    opacity: 1 !important;
    transform: translateY(0) !important;
    padding: 40px 0;
  }

  /* 🚀 TYPOGRAFIE: Landscape */
  .hero-tagline {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 12px 0 32px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 20px;
  }

  h1 {
    margin-bottom: 8px;
    font-size: 1.9rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.55rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1.05rem;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .hero-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 10px 0 12px;
    font-size: 12px;
  }

  .hero-list h2 {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .hero-list ul {
    gap: 3px;
  }

  .hero-list li {
    font-size: 12px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 12px;
    gap: 10px;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: 160px;
  }

  .hero-image {
    max-width: 160px;
    border-radius: 16px;
    margin: 0 auto;
  }

  .image-portrait {
    max-width: 220px;
    border-radius: 20px;
    margin: 0 auto;
  }

  .offers-cta .btn {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .faq-item summary {
    font-size: 14px;
    padding: 14px 16px;
    padding-right: 28px;
  }

  .faq-item p {
    font-size: 13px;
    padding: 0 16px 16px;
    line-height: 1.5;
  }

  .faq-item summary::after {
    font-size: 18px;
  }

  .logo img {
        width: 150px;
  }
    
  .scroll-progress {
        height: 2px !important;
  }
}

/* Safari iOS Fix */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 900px) and (orientation: landscape) {
    .faq-item summary {
      font-size: 13px !important;
      -webkit-text-size-adjust: none;
    }

    .faq-item p {
      font-size: 12px !important;
      -webkit-text-size-adjust: none;
    }
  }
}


/* ====================================
   Optimierungen mit Anpassungen
==================================== */

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0 16px;
  padding: 20px;
  background: rgba(255, 130, 0, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 130, 0, 0.15);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
}

.hero-footnote {
  font-size: 11px;
  color: var(--muted);
  margin: 8px 0 0;
  font-style: italic;
}

/* Offers CTA */
.offers-cta {
  margin-top: 40px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(255,130,0,0.05), rgba(255,130,0,0.02));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 130, 0, 0.15);
}

.offers-cta p {
  margin: 0 0 12px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.offers-cta p:last-of-type {
  margin-bottom: 20px;
}

.offers-cta .btn {
  min-width: 280px;
}

/* Trust Badges Row */
.trust-badges {
  background: var(--bg-alt);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.trust-item i {
  font-size: 24px;
  color: var(--accent);
}

.trust-item span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* FIX: Linksbündige Section-Intros */
.section-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: left;
}

/* Vergleichs-Table */
/* FIX: Einheitlicher Abstand vom Intro-Text zur Tabelle */
#comparison p {
  margin-bottom: 36px;
}

.comparison-table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table thead th {
  padding: 20px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 130, 0, 0.08);
  border-bottom: 2px solid rgba(255, 130, 0, 0.2);
}

.comparison-table thead th:first-child {
  width: 30%;
  text-align: left;
}

.comparison-langletics {
  color: var(--accent);
}

.comparison-standard {
  color: var(--muted);
}

.comparison-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.comparison-table tbody td {
  padding: 16px;
  font-size: 14px;
  vertical-align: middle;
  text-align: center;
}

.comparison-feature {
  font-weight: 500;
  color: var(--text);
  text-align: left;
}

.comparison-table i {
  margin-right: 8px;
  font-size: 16px;
}

.comparison-langletics i {
  color: var(--accent);
}

.comparison-standard i.fa-times {
  color: #ff4444;
}

.comparison-standard i.fa-minus {
  color: var(--muted);
}

/* Prozess Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.process-step {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}

/* FIX: Orange Gradient mit WEISSER Zahl (wie erstes Design, aber lesbar) */
.process-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #ffffff; /* Weiße Zahl statt schwarz */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255, 130, 0, 0.3);
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* FIX: Prozess-Intro linksbündig */
.process-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: left;
}

/* Exit-Intent Popup */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.exit-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.exit-popup-content {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid rgba(255, 130, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  animation: slideUp 0.4s ease-out;
}

.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}

.exit-popup-close:hover {
  color: var(--text);
}

.exit-popup h3 {
  margin: 0 0 16px;
  font-size: 1.8rem;
  color: var(--accent);
}

.exit-popup p {
  margin: 0 0 24px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.exit-popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.exit-popup-form input[type="email"] {
  padding: 14px 16px;
  background: #050505;
  border: 1px solid rgba(255, 130, 0, 0.2);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.2s;
}

.exit-popup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}

.exit-popup-form .btn {
  width: 100%;
}

.exit-popup-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button Pulse Animation */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 14px 45px rgba(255, 130, 0, 0.35);
  }
  50% {
    box-shadow: 0 18px 55px rgba(255, 130, 0, 0.5);
  }
}

.btn-primary {
  animation: pulse-glow 3s ease-in-out infinite;
}

.btn-primary:hover {
  animation: none;
}

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

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .comparison-table thead th,
  .comparison-table tbody td {
    text-align: center;
  }

  .comparison-feature {
    text-align: center !important;
  }
}

@media (max-width: 720px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 11px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .process-step h3 {
    min-height: auto;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .offers-cta {
    padding: 24px 16px;
  }

  .comparison-table {
    font-size: 13px;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 12px 8px;
    text-align: center;
  }

  .comparison-feature {
    text-align: center !important;
    font-size: 13px;
  }

  .comparison-table i {
    margin-right: 4px;
    font-size: 14px;
  }

  .exit-popup-content {
    padding: 32px 24px;
  }

  .exit-popup h3 {
    font-size: 1.5rem;
  }
}

/* Exit-Popup: Mobile Landscape Fix */
@media (max-width: 900px) and (orientation: landscape) {
    .exit-popup-content {
        max-height: 85vh;
        overflow-y: auto;
        padding: 16px 20px;
    }
    
    .exit-popup-close {
        top: 8px;
        right: 8px;
        font-size: 24px;
    }
    
    .exit-popup h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .exit-popup p {
        margin-bottom: 12px;
        font-size: 13px;
        line-height: 1.4;
    }
    
    .exit-popup-form {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .exit-popup-form input[type="email"] {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .exit-popup-form .btn {
        padding: 10px 16px;
        min-height: 42px;
    }
    
    .exit-popup-note {
        font-size: 10px;
        margin-top: 8px;
    }
}

/* ========================================
   TESTIMONIALS SLIDER - COMPLETE
   ======================================== */

.testimonials-slider-wrapper {
    position: relative;
    margin-top: 36px;
    padding: 0 60px;
}

.testimonials-slider {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s ease-out;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 18.67px);
    min-width: 0;
    max-width: calc(33.333% - 18.67px);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #1a1a1a;
    border: none;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease-out;
    box-shadow: 0 4px 16px rgba(255, 130, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 130, 0, 0.5);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
    padding: 0;
}

.slider-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}

.slider-dot:hover {
    background: var(--accent-hover);
}

/* Tablet: 2 Spalten */
@media (max-width: 900px) {
    .testimonials-slider-wrapper {
        padding: 0 55px;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 14px);
        max-width: calc(50% - 14px);
    }

    .slider-btn {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }
}

/* Mobile: 1 Spalte */
@media (max-width: 720px) {
    .testimonials-slider-wrapper {
        padding: 0;
        margin-left: -20px;
        margin-right: -20px;
    }

    .testimonials-slider {
        padding: 0 70px;
    }

    .testimonial-card {
        flex: 0 0 calc(100vw - 140px);
        max-width: calc(100vw - 140px);
    }

    .testimonials-track {
        gap: 20px;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .slider-btn-prev {
        left: 10px;
    }

    .slider-btn-next {
        right: 10px;
    }
}


/* ========================================
   TRUST BADGES - OPTION C
   ======================================== */

.trust-badges {
  background: linear-gradient(135deg, rgba(255, 130, 0, 0.05), rgba(255, 130, 0, 0.02));
  border-top: 1px solid rgba(255, 130, 0, 0.1);
  border-bottom: 1px solid rgba(255, 130, 0, 0.1);
  padding: 48px 0;
  margin: 60px 0;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.trust-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), #ff9933);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  box-shadow: 0 4px 16px rgba(255, 130, 0, 0.3);
  transition: transform 0.3s ease-out;
}

.trust-item:hover .trust-icon {
  transform: scale(1.1);
}

.trust-icon svg {
  width: 28px;
  height: 28px;
  color: #1a1a1a;
}

.trust-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-text {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  max-width: 220px;
}

/* Tablet: 2 Spalten */
@media (max-width: 900px) {
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .trust-badges {
    padding: 40px 0;
    margin: 48px 0;
  }
}

/* Mobile: 2 Spalten kompakt */
@a (max-width: 720px) {
  
  /* Trust Badges Container - zentriert das Grid */
  .trust-badges .container {
    padding: 0 20px;
    display: flex;
    justify-content: center;
  }
  
  /* Grid - Items zentriert */
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
    justify-items: center;
    width: 100%;
    margin: 0 auto;
  }
  
  /* Items - selbst zentriert */
  .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%; 
    max-width: 100%; 
    margin: 0;
}
  
  /* Icon, Text zentriert */
  .trust-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 8px auto;
  }
  
  .trust-title {
  font-size: 14px;
  font-weight: 600;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 8px 0;
  line-height: 1.3;
  }

  .trust-text {
    font-size: 12px;
    max-width: 140px;
    margin: 0 auto;
    width: 100%;
  }
}@media (max-width: 720px) {
  
  .trust-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
    width: 100%;
    margin: 0 auto;
  }
  
  .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;  /* ✓ Alles zentriert */
    text-align: center;  /* ✓ Text zentriert */
    justify-content: flex-start;
    width: 100%;
  }
  
  .trust-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px auto;  /* ✓ Icon zentriert */
    flex-shrink: 0;
  }
  
  .trust-title {
    font-size: 14px;
    font-weight: 600;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 0 8px 0;
    line-height: 1.3;
  }
  
  .trust-text {
    font-size: 12px;
    text-align: center;  /* ✓ Text zentriert */
    line-height: 1.5;
    margin: 0;
    width: 100%;
  }
}


/* ========================================
   TESTIMONIALS RESPONSIVE FONT SIZES
   ======================================== */

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-author strong {
    font-size: 14px;
}

.testimonial-author span {
    font-size: 13px;
}

/* Tablet Portrait (721px - 900px) */
@media (max-width: 900px) and (min-width: 721px) {
    .testimonial-text {
        font-size: 15px;
        line-height: 1.55;
    }

    .testimonial-author strong {
        font-size: 14px;
    }

    .testimonial-author span {
        font-size: 12px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }
}

/* Mobile Portrait (<720px) */
@media (max-width: 720px) {
    .testimonial-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .testimonial-author strong {
        font-size: 14px;
    }

    .testimonial-author span {
        font-size: 12px;
    }


  /* Neue Responsive Rules für Optimierungen */
  .mini-testimonials {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-social-proof {
    margin-top: 20px;
    padding-top: 20px;
  }

  .mini-testimonial {
    font-size: 13px;
    padding: 10px 14px;
  }

  .offer-testimonial-snippet {
    padding: 12px 14px;
    font-size: 12px;
  }

  .hero-list-highlighted {
    padding: 14px;
  }

  .hero-list-highlighted h2 {
    font-size: 13px;
  }

  .offer-badge {
    top: 12px;
    right: 12px;
    font-size: 10px;
    padding: 5px 12px;
  }

}

/* Mobile Landscape (<900px Querformat) */
@media (max-width: 900px) and (orientation: landscape) {
    .testimonial-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .testimonial-author strong {
        font-size: 14px;
    }

    .testimonial-author span {
        font-size: 12px;
    }

    .testimonial-card {
        padding: 20px 16px;
    }
}


/* ========================================
   FAQ GRUPPEN-TITEL
   ======================================== */

.faq-group-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255, 130, 0, 0.2);
}

.faq-group-title:first-of-type {
  margin-top: 32px;
}


/* ========================================
   FAQ SECTION - DUNKLE VERSION (FIX: Schwarzer Balken entfernt)
   Mobile & Desktop identisch
======================================== */

/* FAQ Controls */
.faq-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 32px 0 40px;
  flex-wrap: wrap;
}

.btn-faq-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: rgba(255, 130, 0, 0.1);
  color: #ff8200;
  border: 1px solid rgba(255, 130, 0, 0.3);
}

.btn-faq-toggle:hover {
  background: rgba(255, 130, 0, 0.2);
  border-color: #ff8200;
}

.btn-faq-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-faq-toggle:hover svg {
  transform: translateY(2px);
}

/* FAQ Section - Dunkler Hintergrund */
section#faq {
  background: #0a0a0a !important;
}

/* Kategorie-Akkordeons (Level 1) */
.faq-category {
  background: #1a1a1a !important;
  border: 1px solid rgba(255, 130, 0, 0.3);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-category:hover {
  border-color: #ff8200;
  box-shadow: 0 4px 12px rgba(255, 130, 0, 0.15);
}

.faq-category[open] {
  border-color: #ff8200;
  box-shadow: 0 4px 20px rgba(255, 130, 0, 0.25);
}

/* Kategorie-Titel */
.faq-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #ff8200 !important;
  cursor: pointer;
  list-style: none;
  background: linear-gradient(135deg, rgba(255, 130, 0, 0.15) 0%, transparent 100%) !important;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-category-title::-webkit-details-marker {
  display: none;
}

.faq-category-title:hover {
  background: linear-gradient(135deg, rgba(255, 130, 0, 0.25) 0%, transparent 100%) !important;
}

.faq-category[open] .faq-category-title {
  background: linear-gradient(135deg, rgba(255, 130, 0, 0.2) 0%, transparent 100%) !important;
  border-bottom: 1px solid rgba(255, 130, 0, 0.3);
}

/* Kategorie-Icon */
.faq-category-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  stroke: #ff8200;
  transition: transform 0.3s ease;
}

.faq-category[open] .faq-category-icon {
  transform: scale(1.1);
}

/* Pfeil für Kategorie */
.faq-category-arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #ff8200;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.faq-category[open] .faq-category-arrow {
  transform: rotate(180deg);
}

/* FIX: Fragen-Container - TRANSPARENT statt schwarz */
.faq-category .faq-list {
  padding: 16px 24px 24px 24px;
  background: transparent !important;
}

/* Einzelne FAQ-Items - Weiße Boxen */
section#faq .faq-category .faq-item,
.faq-category .faq-item {
  background: #ffffff !important;
  border: 1px solid rgba(255, 130, 0, 0.2);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: visible;
  transition: all 0.3s ease;
}

.faq-category .faq-item:last-child {
  margin-bottom: 0;
}

.faq-category .faq-item:hover {
  border-color: rgba(255, 130, 0, 0.5);
  box-shadow: 0 2px 8px rgba(255, 130, 0, 0.2);
}

section#faq .faq-category .faq-item[open],
.faq-category .faq-item[open] {
  border-color: #ff8200;
  box-shadow: 0 2px 12px rgba(255, 130, 0, 0.3);
  background: #ffffff !important;
}

/* FAQ Frage (Summary) */
section#faq .faq-category .faq-item summary,
.faq-category .faq-item summary {
  display: block;
  padding: 16px 20px;
  font-weight: 500;
  font-size: 16px;
  color: #ff8200 !important;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.3s ease;
  user-select: none;
  background: transparent !important;
  border: 0 !important;
  border-width: 0 !important;
  border-style: none !important;
  outline: none;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}

.faq-category .faq-item summary::-webkit-details-marker {
  display: none;
}

/* Plus/Minus Icon */
.faq-category .faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: #ff8200;
  transition: transform 0.3s ease;
}

.faq-category .faq-item[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

/* Hover */
section#faq .faq-category .faq-item summary:hover,
.faq-category .faq-item summary:hover {
  color: #ff6600 !important;
  background: transparent !important;
}

/* Geöffnete Summary */
section#faq .faq-category .faq-item[open] summary,
.faq-category .faq-item[open] summary {
  padding-bottom: 4px !important;
  background: transparent !important;
  border: 0 !important;
  border-width: 0 !important;
  border-style: none !important;
  box-shadow: none !important;
}

/* Antwort (Paragraph) */
section#faq .faq-category .faq-item p,
.faq-category .faq-item p {
  display: block;
  padding: 4px 20px 20px 20px !important;
  color: #2c2c2c !important;
  line-height: 1.7;
  font-size: 15px;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  animation: fadeInAnswer 0.3s ease-out;
}

@keyframes fadeInAnswer {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
  .faq-controls {
    flex-direction: column;
    gap: 8px;
  }

  .btn-faq-toggle {
    width: 100%;
    justify-content: center;
  }

  .faq-category-title {
    padding: 16px 18px;
    font-size: 16px;
  }

  .faq-category-icon {
    width: 20px;
    height: 20px;
  }

  /* FIX Mobile: Auch hier transparent */
  .faq-category .faq-list {
    padding: 12px 16px 16px 16px;
    background: transparent !important;
  }

  section#faq .faq-category .faq-item,
  .faq-category .faq-item {
    background: #ffffff !important;
  }

  section#faq .faq-category .faq-item summary,
  .faq-category .faq-item summary {
    padding: 14px 16px;
    font-size: 15px;
    padding-right: 40px;
    background: transparent !important;
    border: 0 !important;
    -webkit-tap-highlight-color: transparent !important;
    color: #ff8200 !important;
  }

  section#faq .faq-category .faq-item[open] summary,
  .faq-category .faq-item[open] summary {
    padding-bottom: 4px !important;
    border: 0 !important;
    background: transparent !important;
  }

  .faq-category .faq-item summary::after {
    right: 16px;
    font-size: 22px;
  }

  section#faq .faq-category .faq-item p,
  .faq-category .faq-item p {
    padding: 4px 16px 16px 16px !important;
    font-size: 14px;
    background: transparent !important;
    color: #2c2c2c !important;
  }

  section#faq .faq-category .faq-item[open],
  .faq-category .faq-item[open] {
    background: #ffffff !important;
  }

  .faq-category .faq-item summary:active {
    background: transparent !important;
  }
}

/* Accessibility */
.faq-category-title:focus,
.faq-category .faq-item summary:focus {
  outline: 2px solid #ff8200;
  outline-offset: 2px;
}

/* Verhindere tap-highlight */
.faq-category .faq-item summary {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
