/* -------------------- Velomotiv-Harsefeld -------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary);
    background-color: #f5f5f7;
	

}

/* -------------------- COLOR VARIABLES -------------------- */
:root {
    --primary: #000000;
    --secondary: #1d1d1f;
    --mid-gray: #86868b;
    --light-gray: #f5f5f7;
    --white: #ffffff;
    --accent: #0071e3;
    --primary-green: #0a9d58;
    --secondary-green: #1e7c4d;
    --cream: #fef9f2;
}

/* -------------------- TYPOGRAPHY -------------------- */
h1, h2, h3, h4 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin-bottom: 1rem;
    color: var(--primary);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
	text-align: center;
	margin-bottom: 1.5rem;
	color: #222;
	letter-spacing: 0.5px;
}

h2 {
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2rem;
}

h3, h4 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: #444;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--mid-gray);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* -------------------- SECTION BASE -------------------- */
.content-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* -------------------- BUTTONS -------------------- */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    transform: scale(1.03);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.cta-button.secondary:hover {
    background-color: var(--accent);
    color: var(--white);
}

/* -------------------- HEADER & NAV -------------------- */
header {
  background-color: rgba(255, 255, 255, 0.7); /* leicht transparent */
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  padding: 15px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 10px 20px;
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo statisch, keine Drehung mehr */
.logo img {
  transform: none !important;
  transition: none !important;
}

/* Navigation Links */
nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: var(--secondary);
  font-weight: 500;                /* Schrift etwas dicker */
  transition: color 0.3s ease, 
              transform 0.3s ease, 
              font-weight 0.3s ease; /* sanfter Übergang */
}

nav ul li a:hover {
  color: var(--primary);
  font-weight: 600;                /* noch dicker beim Hover */
  transform: scale(1.1);           /* Link wird größer */
}


/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger-bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--secondary);
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  nav ul#nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #f5f5f7;;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-top: 1px solid var(--light-gray);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  nav ul#nav-links.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  nav ul#nav-links li {
    margin: 0;
    width: 100%;
    text-align: center;
  }

  nav ul#nav-links li a {
  display: block;
  padding: 15px 20px;
  color: var(--secondary);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-weight: 500;              /* Schrift etwas dicker */
  transition: all 0.3s ease;     /* sanfter Übergang */
}

nav ul#nav-links li a:hover {
  background-color: rgba(0, 113, 227, 0.05);
  color: var(--accent);
  font-weight: 600;              /* noch dicker beim Hover */
  transform: scale(1.1);         /* kompletter Link-Block wird größer */
}


  .hamburger {
    display: block;
  }

  .hamburger.active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
#scrollTopBtn {
  position: fixed;
  bottom: 1.5rem;       /* Abstand vom unteren Rand */
  right: 1.5rem;        /* Abstand vom rechten Rand */
  display: flex;         /* für Icon zentrieren */
  justify-content: center;
  align-items: center;
  width: 45px;           /* Größe Button */
  height: 45px;
  background: linear-gradient(135deg, #00c6ff, #0072ff); /* Farbverlauf */
  color: #fff;
  font-size: 1.2rem;
  border-radius: 50%;    /* rund */
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  opacity: 0;            /* Start unsichtbar */
  pointer-events: none;  /* Klick blockiert, wenn unsichtbar */
  transition: opacity 0.4s ease, transform 0.3s ease;
}

#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;  /* wieder klickbar */
}

#scrollTopBtn:hover {
  transform: scale(1.15); /* Button wird größer */
}

/* Responsive für mobile Geräte */
@media (max-width: 600px) {
  #scrollTopBtn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: 1rem;
    right: 1rem;
  }
}


/* -------------------- HERO SECTION -------------------- */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  background: url('images/hero-bg.webp') no-repeat center center / cover;
  background-attachment: fixed;
  padding: 0 2rem;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
  will-change: opacity, transform;
}

.hero-content h1,
.hero-content p,
.hero-button {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.hero-content h1 {
  animation-delay: 0.2s;
  font-size: clamp(3.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.hero-content p {
  animation-delay: 0.4s;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--light-gray);
}

.hero-button {
  animation-delay: 0.6s;
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.hero-button:hover,
.hero-button:active {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* -------------------- ANIMATION: FADE IN UP -------------------- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------- MOBILE OPTIMIERUNG -------------------- */
@media (max-width: 480px) {
  header {
    background-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 12px 15px;
  }

  .hero-section {
    background-attachment: scroll;
    background-position: center top;
    padding: 2rem 1rem;
    margin-top: 60px;
  }

  .hero-content {
    padding: 15px;
  }

  .hero-content h1 {
  font-size: clamp(2.6rem, 9vw, 3.4rem);
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}


  .hero-content p {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    animation-duration: 0.8s;
  }

  .hero-button {
    padding: 0.6rem 1.5rem; /* kompakter */
    font-size: 0.95rem;     /* etwas kleiner */
    border-radius: 1.5rem;  /* angepasst für kleinere Fläche */
    animation-duration: 0.8s;
  }
}


/* -------------------- TABLET OPTIMIERUNG -------------------- */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-section {
    padding: 2rem 1.5rem;
  }

  .hero-content h1 {
    font-size: clamp(2.4rem, 7vw, 3.5rem);
  }

  .hero-content p {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
  }

  .hero-button {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
  }
}


/* -------------------- ABOUT SECTION -------------------- */
.about-circle-section {
  position: relative;
  padding: 60px 20px;
  background-color: #f5f5f7;
  font-family: 'Inter', sans-serif;
  color: #1d1d1f;
  z-index: 1;
}



.about-circle-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  gap: 2rem;
}

.about-circle-image {
  position: relative;
  display: inline-block;
}

.about-circle-image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: linear-gradient(145deg, #ffffff, #e6e6e6);
  touch-action: manipulation;
  z-index: 1;
}

.about-circle-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Mobile-Touch-Effekt */
@media (hover: none) and (pointer: coarse) {
  .about-circle-image img:active {
    transform: scale(1.03);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  }
}

.about-circle-text {
  max-width: 500px;
  z-index: 1;
}

.about-circle-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1d1d1f;
}

.about-circle-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: #333;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 768px) {
  .about-circle-container {
    flex-direction: column;
    text-align: center;
  }

  .about-circle-text {
    max-width: 100%;
  }

  .about-circle-image img {
    width: 220px;
    height: 220px;
  }

  .about-circle-section::before {
    background-size: 80%;
  }
}

@media (max-width: 480px) {
  .about-circle-section {
    padding: 40px 15px;
  }

  .about-circle-text h2 {
    font-size: 1.6rem;
  }

  .about-circle-text p {
    font-size: 1rem;
  }

  .about-circle-image img {
    width: 180px;
    height: 180px;
  }

  .about-circle-section::before {
    background-size: 100%;
    opacity: 0.05;
  }
}
/* -------------------- werkstatt -------------------- */
.werkstatt-single {
  padding: 10rem 2rem;
  background: #f5f5f7;
}

.werkstatt-inner {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.werkstatt-inner h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.werkstatt-inner p {
  font-size: 1.2rem;
  opacity: 0.7;
  margin-bottom: 4rem;
}

/* Bild */
.werkstatt-image {
  overflow: hidden;
  border-radius: 28px;
}

.werkstatt-image img {
  width: 100%;
  display: block;
  transition: transform 1.2s ease;
}

/* Sanfter Apple Hover */
.werkstatt-image:hover img {
  transform: scale(1.04);
}

/* Mobile */
@media (max-width: 900px) {
  .werkstatt-single {
    padding: 6rem 1.5rem;
  }

  .werkstatt-inner h2 {
    font-size: 2.2rem;
  }

  .werkstatt-inner p {
    font-size: 1.05rem;
  }
}

/* -------------------- Eingang -------------------- */

.eingang-single {
  padding: 10rem 2rem;
  background: #f5f5f7;
}

.eingang-single .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.eingang-single h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}

/* Bild-Container */
.eingang-image {
  border-radius: 28px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

/* Clip-Ebene für perfekten Rundungs-Schutz */
.eingang-clip {
  border-radius: inherit;
  overflow: hidden;
}

/* Bild */
.eingang-clip img {
  width: 100%;
  display: block;

  border-radius: inherit;

  transform: scale(1.05);
  transition: transform 1.4s ease-out;
  animation: velomotivZoom 12s ease-in-out infinite alternate;
}

/* Sanfter Zoom */
@keyframes velomotivZoom {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.1); }
}

/* Hover Effekt */
.eingang-image:hover .eingang-clip img {
  transform: scale(1.12);
}

/* Mobile */
@media (max-width: 900px) {
  .eingang-single {
    padding: 6rem 1.5rem;
  }

  .eingang-single h2 {
    font-size: 2.2rem;
  }
}

/* -------------------- PREISE SECTION -------------------- */
.pricing-section {
  background: #f5f5f7;
  padding: 60px 20px;
  text-align: center;
  color: #111;
  font-family: 'Inter', sans-serif;
}

.pricing-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: #222;
}

.pricing-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* === PRICING CARDS CONTAINER === */
.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* === CARD BASE === */
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 24px;
  width: 320px;
  min-height: 600px;
  padding: 2rem 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  color: #222;
}

/* === APPLE-INSPIRED CARD GRADIENTS === */

/* Basic Card – Neutral Light Gray */
.card.basic {
  background: linear-gradient(135deg, #f5f5f7, #e5e5e7);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Mobility Card – Pastell-Mint */
.card.mobility {
  background: linear-gradient(135deg, #f3fff8, #e0f7ec);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Standard Card – Subtle Blue */
.card.standard {
  background: linear-gradient(135deg, #f0f7ff, #d9edff);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Premium Card – Warm Gold */
.card.premium {
  background: linear-gradient(135deg, #fff9f0, #fde6c8);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Expert Card – Cool Gray / Technical Blue */
.card.expert {
  background: linear-gradient(135deg, #f4f7fa, #e3e8ef);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Hover */
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* === CARD CONTENT === */
.card-content {
  width: 100%;
}

/* === IMAGE & TITLE === */
.card-image {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image {
  transform: scale(1.03);
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* === PRICE === */
.price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #007aff;
}

.price span {
  font-size: 0.9rem;
  color: gray;
}

/* === FEATURES === */
.features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
  font-size: 0.95rem;
  flex-grow: 1;
}

.features li {
  margin: 0.7rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #007aff;
  font-weight: bold;
}

/* === EXPANDABLE LEASING INFO === */
.expand-info {
  width: 100%;
  margin-top: 1rem;
  border-radius: 10px;
  background: #f5f7fa;
  padding: 0.4rem 0.6rem;
  box-sizing: border-box;
}

.expand-info summary {
  cursor: pointer;
  padding: 0.5rem 0.8rem;
  background: #f5f7fa;
  border-radius: 6px;
  margin-bottom: 0.4rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: #1d1d1f;
}

.expand-info summary::-webkit-details-marker {
  display: none;
}

.expand-info summary::after {
  content: "";
  float: right;
  transition: transform 0.3s ease;
}

.expand-info[open] summary::after {
  transform: rotate(180deg);
}

.expand-content {
  padding: 0.4rem 0.8rem;
  background: #ffffff;
  border-radius: 6px;
  margin-top: 0.3rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Tabelle */
.leasing-table-wrapper {
  overflow-x: auto;
  margin-bottom: 0.5rem;
}

.leasing-table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.leasing-table-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
  border-radius: 3px;
}

.leasing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 100%;
}

.leasing-table td {
  padding: 0.4rem 0;
  border-bottom: 1px dotted #ccc;
}

.leasing-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.leasing-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.leasing-note {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
  margin-top: 0.5rem;
}

/* === BUTTON === */
.btn {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: center;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn:hover {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .pricing-container {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .card {
    width: 100%;
    max-width: 380px;
    padding: 1.8rem 1.5rem;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .pricing-title {
    font-size: 1.8rem;
  }

  .pricing-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .price {
    font-size: 1.6rem;
  }

  .features li {
    padding-left: 1.3rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* -------------------- THERAPIE SECTION -------------------- */

/* SECTION */
.therapy-hero {
  background: #f5f5f7;
  padding: 80px 20px;
  text-align: center;
}

.therapy-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Alles untereinander */
  align-items: center;
  gap: 2.5rem;
}

/* TEXTBEREICH */
.therapy-content {
  width: 100%;
}

/* BILD + BUTTON */
.therapy-image-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column; /* Button unter Bild */
  align-items: center;
}

.therapy-image {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.therapy-image:hover {
  transform: scale(1.02);
}

/* TYPOGRAPHIE */
.therapy-headline {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
}

.therapy-subline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 2rem;
  color: #333;
}

.therapy-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: #444;
  margin-bottom: 2.5rem;
}

/* BUTTON */
.therapy-cta {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  background: #000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s ease;
  margin-top: 1.5rem; /* Abstand zum Bild */
}

.therapy-cta:hover {
  background: #333;
}

/* LARGE SCREENS */
@media (min-width: 900px) {
  .therapy-hero {
    padding: 7rem 2rem;
  }
}

/* -------------------- RESULTS SECTION -------------------- */
#results.content-section {
  padding: 4rem 2rem;
  background-color: #f5f5f7;
  color: var(--secondary);
}

#results .headline {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 3rem;
  color: var(--accent);
}

#results .headline .link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

#results .headline .link:hover {
  color: var(--accent);
}

/* -------------------- RESULTS GRID -------------------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* -------------------- RESULT BOX -------------------- */
.result-box {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.result-box:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.result-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* -------------------- RESULTS SECTION -------------------- */
#results.content-section {
  padding: 4rem 2rem;
  background-color: #f5f5f7;
  color: var(--secondary);
}

#results .headline {
	 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: -0.015em;
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 3rem;
  color:  #000;
}

/* Link als Button */
#results .headline .link {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

#results .headline .link:hover {
  background-color: var(--accent-dark);
}

/* -------------------- RESULTS GRID -------------------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* -------------------- RESULT BOX -------------------- */
.result-box {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.result-box:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.result-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* -------------------- RESULT CONTENT -------------------- */
.result-content {
  padding: 20px;
}

.result-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.result-content p {
  font-size: 0.95rem;
  color: #111; /* tiefes Schwarz für bessere Lesbarkeit */
  line-height: 1.4;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 768px) {
  #results.content-section {
    padding: 3rem 1.5rem;
  }

  .results-grid {
    gap: 30px;
    padding: 0 10px;
  }

  .result-content h3 {
    font-size: 1.1rem;
  }

  .result-content p {
    font-size: 0.9rem;
  }

  #results .headline .link {
    margin-top: 1rem;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
}





/* --- Draggable Comparison Slider Styles --- */
.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 8px;
    cursor: ew-resize;
    aspect-ratio: 3 / 2; /* angepasst für dein 1248x832 Bild */
    border: 2px solid var(--primary-green);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.comparison-figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0; /* Reset figure margin */
    overflow: hidden; /* Important for clipping */
}

.comparison-figure img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Ensure image covers the container */
    height: 100%;
    object-fit: cover; /* Cover the area without distortion */
    pointer-events: none; /* Prevent image interaction */
}
#desc{
    text-align: center;
}

.comparison-figure.after {
    /* Width will be controlled by JavaScript */
    width: 50%; /* Initial position */
    z-index: 1; /* 'After' image is clipped */
}
.comparison-figure.before {
    z-index: 0; /* 'Before' image is underneath */
}


/* Figcaption Styles (Before/After Labels) */
.comparison-figure figcaption {
    position: absolute;
    top: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.9rem;
    z-index: 3; /* Above images */  
    pointer-events: none; /* Don't interfere with drag */
}
.comparison-figure.before figcaption { right: 10px; }
.comparison-figure.after figcaption { right: 10px; }


/* Draggable Handle Styles */
.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%; /* Initial position, controlled by JS */
    width: 4px; /* Width of the draggable line */
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* White line, slightly transparent */
    transform: translateX(-50%); /* Center the handle based on its left position */
    cursor: ew-resize;
    z-index: 2; /* Above 'before' image, below 'after' figcaption if needed */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.comparison-handle .handle-line {
    flex-grow: 1;
    width: 100%;
    background-color: inherit; /* Inherit from parent handle */
}

.comparison-handle .handle-arrows {
    width: 40px; /* Width of the arrow circle */
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background-color: var(--primary-green); /* Circle background */
    flex-shrink: 0;
    position: relative; /* For positioning arrows */
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/* Add arrows using pseudo-elements */
.comparison-handle .handle-arrows::before,
.comparison-handle .handle-arrows::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
}

/* Left arrow */
.comparison-handle .handle-arrows::before {
    left: 6px; /* Position inside the circle */
    border-width: 6px 8px 6px 0; /* Triangle shape */
    border-color: transparent white transparent transparent;
}

/* Right arrow */
.comparison-handle .handle-arrows::after {
    right: 6px; /* Position inside the circle */
    border-width: 6px 0 6px 8px; /* Triangle shape */
    border-color: transparent transparent transparent white;
}
/* Recommendation Form */
#recommendation-form {
    max-width: 600px;
    margin: 2rem auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-green);
}

.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fff;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(143, 188, 143, 0.3); /* Soft green glow */
}

#recommendation-form button {
    display: block;
    width: 100%;
    margin-top: 1rem;
}

.recommendation-result {
    margin-top: 2rem;
    padding: 20px;
    background-color: var(--cream);
    border-left: 5px solid var(--primary-green);
    border-radius: 4px;
    text-align: center;
    display: none; /* Hidden initially */
}

.recommendation-result h4 {
    color: var(--secondary-green);
    margin-bottom: 0.5rem;
}

/* -------------------- WHATSAPP BUTTON -------------------- */
.wa-box {
  background-color: #ffffff; /* Gleicher Hintergrund wie Kontakt-Map */
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  max-width: 400px;
  margin: 2rem auto; /* zentriert unter dem E-Mail-Hinweis */
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.wa-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25D366; /* WhatsApp Grün */
  color: white;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.wa-btn:hover,
.wa-btn:focus {
  background-color: #1ebe5d;
  transform: translateY(-2px);
  outline: none;
}

.wa-icon {
  width: 24px;
  height: 24px;
}

.wa-hint {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
  .wa-box {
    margin: 2rem 1rem; /* etwas Abstand an den Seiten */
  }
}


.faq-velomotiv {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f5f5f7;
  padding: 3rem 1rem;
}

.faq-container {
  max-width: 700px;
  margin: auto;
}

.faq-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1d1d1f;
}

details {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

summary {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1d1d1f;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}

summary::marker {
  display: none;
}

summary::after {
  content: "›";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2rem;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  color: #888;
}

details[open] summary::after {
  transform: rotate(90deg);
}

/* Sanftes Einblenden des Inhalts */
.faq-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

details[open] .faq-content {
  max-height: 500px;
  opacity: 1;
}

.faq-content p {
  margin-top: 0.8rem;
  color: #333;
  line-height: 1.5;
}

@media (max-width: 600px) {
  h2 {
    font-size: 1.6rem;
  }

  summary {
    font-size: 1rem;
  }

  .faq-image {
    max-height: 200px;
  }
}




/* -------------------- contact -------------------- */
.contact {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: left;
}

.contact h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact label {
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.contact input,
.contact textarea {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background-color: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact input:focus,
.contact textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,113,227,0.2);
  outline: none;
}

.contact .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact .btn-primary {
  background-color: var(--accent);
  color: white;
  padding: 14px 22px;
  border: none;
  border-radius: 980px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.email-box {
  position: relative;
  z-index: 1;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Entfernt: .email-box::before */

.email-box * {
  position: relative;
  z-index: 2;
}

.email-heading {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

/* Mobile Optimierung */
@media (max-width: 600px) {
  .email-box {
    padding: 1.5rem;
  }

  .email-heading {
    font-size: 1.2rem;
  }

  .contact input,
  .contact textarea {
    font-size: 1rem;
  }

  .btn-primary {
    width: 100%;
    font-size: 1rem;
    padding: 12px 18px;
  }
}



/* ==========================
   Kontaktkarte – Modern Style
========================== */

.contact-map-section {
  padding: 4rem 2rem;
  background: #f5f5f7;
}

.contact-map-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* Karte */
.map-column img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.map-column img:hover {
  transform: scale(1.02);
}

/* Adresse */
.address-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.address-logo {
  width: 60px;
  height: auto;
  flex-shrink: 0;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.address-logo:hover {
  opacity: 1;
}

.address-column h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 0.8rem; /* kleiner Abstand */ } .address-text { font-size: 1.25rem; line-height: 1.7; margin: 0; /* kein unnötiger Abstand */ }

.address-text strong {
  color: var(--primary);
  font-size: 1.35rem;
}

.address-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.address-text a:hover {
  opacity: 0.7;
}
/* ---------------- Partner Section ---------------- */

.velomotiv-partner{
padding:4rem 1rem;
background:#f6f8fb;
text-align:center;
overflow:hidden;
}

.partner-title{
font-size:2rem;
margin-bottom:2rem;
}

/* Slider */

.partner-slider{
max-width:1200px;
margin:0 auto;
overflow:hidden;
position:relative;
}

/* Track */

.partner-track{
display:flex;
gap:2rem;
width:max-content;
animation:partnerMove 60s linear infinite;
}

/* Hover stop */

.partner-slider:hover .partner-track{
animation-play-state:paused;
}

/* Logo Box */

.partner-logo{
flex:0 0 auto;
width:260px;
background:white;
padding:14px;
border-radius:16px;
box-shadow:0 8px 24px rgba(0,0,0,0.08);
}

/* Logo */

.partner-logo img{
width:100%;
height:auto;
display:block;
object-fit:contain;
aspect-ratio:5/2;
}

/* Animation */

@keyframes partnerMove{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* -------- Tablet -------- */

@media (max-width:900px){

.partner-logo{
width:200px;
}

.partner-track{
animation-duration:45s;
}

}

/* -------- Smartphone -------- */

@media (max-width:600px){

.partner-logo{
width:160px;
}

.partner-track{
gap:1.5rem;
animation-duration:38s;
}

}

/* -------- Kleine Smartphones -------- */

@media (max-width:420px){

.partner-logo{
width:140px;
}

.partner-track{
animation-duration:32s;
}

}
/* -------------------- CLEVER FIT SECTION -------------------- */

.cleverfit-hero {
  background: #f5f5f7;
  padding: 80px 20px;
  text-align: center;
}

.cleverfit-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Alles untereinander */
  align-items: center;
  gap: 2rem;
}

/* TEXT */
.cleverfit-content {
  width: 100%;
}

.cleverfit-headline {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000;
}

.cleverfit-subline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #333;
}

/* BILD */
.cleverfit-image-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cleverfit-image {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.cleverfit-image:hover {
  transform: scale(1.02);
}

/* LARGE SCREENS */
@media (min-width: 900px) {
  .cleverfit-hero {
    padding: 7rem 2rem;
  }
}


/* ==========================
   Zahlungsarten – Apple Style
========================== */

.payment-methods {
  margin-top: 3rem;
  text-align: center;
}

.payment-methods p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1d1d1f;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.payment-icons li {
  background: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.payment-icons li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.payment-icons img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* ==========================
   Mobile Layout
========================== */

@media (max-width: 768px) {
  .contact-map-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .address-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .address-logo {
    width: 50px;
  }

  .payment-icons img {
    width: 28px;
    height: 28px;
  }
}


/* -------------------- FOOTER -------------------- */
.site-footer {
  background-color: #1d1d1f; /* dezenter heller Hintergrund */
  text-align: center;
  font-size: 0.75rem; /* Standard-Font */
  color: #f5f5f7; /* dezenter Text */
  padding: 1.5rem 0;
  border-top: 1px solid #e0e0e0; /* Linie oben */
  line-height: 1.5;
}

.site-footer p {
  margin: 0.3rem 0; /* kleine Abstände zwischen den Zeilen */
}

.site-footer a {
  color: #f5f5f7;
  text-decoration: none;
  margin: 0 0.3rem;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #1462c5; /* dezenter Hover-Effekt */
  text-decoration: underline;
}

/* -------------------- RESPONSIVE FOOTER & GLOBAL (<768px) -------------------- */
@media (max-width: 768px) {
  .site-footer {
    font-size: 0.7rem;
    padding: 1rem 15px;
  }

  /* Typografie */
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .logo { font-size: 1.5rem; }

  
  /* Content Sections */
  .content-section { padding: 60px 15px; }
  .service-grid,
  .results-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* About Section */
  .about-container { flex-direction: column; gap: 2rem; text-align: center; }
  .about-text h2 { font-size: clamp(1.8rem, 5vw, 2.2rem); }
  .about-text p,
  .about-text details summary { font-size: 1rem; }
  .about-section::before {
    background-size: 180px;
    background-position: center bottom 5%;
    opacity: 0.04;
  }

  /* Recommendation Form */
  #recommendation-form { padding: 20px; }
  #recommendation-result { transform: translateY(5px); }

}

/* -------------------- ULTRAKOMPAKT (<400px) -------------------- */
@media (max-width: 400px) {
  .site-footer {
    font-size: 0.65rem;
    padding: 0.8rem 10px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .logo { font-size: 1.3rem; }

  .hero-section { height: 55vh; padding: 1.5rem 1rem; }
  .hero-content h1 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .hero-content p { font-size: 0.95rem; }

  .content-section { padding: 50px 10px; }
  .service-grid,
  .results-grid { gap: 1rem; }

  .about-text h2 { font-size: clamp(1.6rem, 4.5vw, 2rem); }
  .about-text p,
  .about-text details summary { font-size: 0.95rem; }
  .about-section::before { background-size: 150px; }

  #recommendation-form { padding: 15px; }
}
/* ------------------------------ */
/*   Apple‑Style Google Rating    */
/* ------------------------------ */

:root {
  --bg: #f5f5f7;
  --card-bg: #ffffff;
  --text-main: #111;
  --text-muted: #6e6e73;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(0,0,0,0.08);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
}

/* Container */
.google-rating {
  display: flex;
    margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 24px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: var(--font);
  width: 200px;
}

/* Google Schriftzug */
.gr-logo {
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, #4285f4, #ea4335, #fbbc05, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Score */
.gr-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4px;
}

.gr-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
}

.gr-stars {
  font-size: 20px;
  letter-spacing: 2px;
  color: #f5a623;
  margin-top: 2px;
}

/* Anzahl Bewertungen */
.gr-count {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Link */
.gr-link {
  font-size: 13px;
  color: #0071e3;
  text-decoration: none;
  font-weight: 500;
  margin-top: 6px;
}

.gr-link:hover {
  text-decoration: underline;
}

/* Mobile Optimierung */
@media (max-width: 480px) {
  .google-rating {
    width: 170px;
    padding: 16px 18px;
    border-radius: 16px;
  }

  .gr-number {
    font-size: 30px;
  }

  .gr-stars {
    font-size: 16px;
  }

  .gr-count {
    font-size: 11px;
  }
}

	/* -------------------- cockie -------------------- */
.therapy-hero { background: #f5f5f7; /* HIER Farbe ändern */ padding: 60px 20px; border-radius: 28px; margin: 40px auto; }
		/* -------------------- cockie -------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid #ccc;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  font-family: sans-serif;
  z-index: 9999;
  padding: 10px 20px;
  display: none;
}

.cookie-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

#accept-all { background: #4caf50; color: white; }
#accept-necessary { background: #2196f3; color: white; }
#open-settings { background: #f1f1f1; color: #333; }

/* Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  font-family: sans-serif;
}

.modal-content h3 {
  margin-top: 0;
}

.modal-buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.modal-buttons button {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

#save-settings { background: #4caf50; color: white; }
#close-modal { background: #f1f1f1; color: #333; }
/* -------------------- button -------------------- */

.cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #0071e3;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #005bb5;
}