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

:root {
  --green-dark: #0369a1;
  --green-mid: #0284c7;
  --green-light: #38bdf8;
  --green-pale: #e0f2fe;
  --green-subtle: #f0f9ff;
  --cream: #f8fafc;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --text: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 2px 16px rgba(3,105,161,.08);
  --shadow-lg: 0 8px 40px rgba(3,105,161,.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__title--left {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.section__sub {
  color: var(--text-muted);
  font-size: 17px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green-dark);
  color: var(--white);
}
.btn--primary:hover { background: var(--green-mid); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }

.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
}
.btn--outline:hover { background: var(--green-pale); }

.btn--white {
  background: var(--white);
  color: var(--green-dark);
}
.btn--white:hover { background: var(--green-pale); transform: translateY(-1px); }

.btn--small { padding: 10px 20px; font-size: 14px; }

.nav__member-link {
  font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none;
  font-weight: 500; transition: color var(--transition); margin-right: 4px;
}
.nav__member-link:hover { color: rgba(255,255,255,.9); }
.nav.scrolled .nav__member-link { color: var(--text-muted); }
.nav.scrolled .nav__member-link:hover { color: var(--green-dark); }

.btn--ghost-nav {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
  margin-right: 4px;
}
.btn--ghost-nav:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,.08); }
.nav--scrolled .btn--ghost-nav { border-color: var(--border); color: var(--text); }
.nav--scrolled .btn--ghost-nav:hover { border-color: var(--green-mid); color: var(--green-dark); background: var(--green-subtle); }
.btn--full { width: 100%; justify-content: center; }

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}

.nav.scrolled .nav__logo { color: var(--green-dark); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color var(--transition);
}

.nav__links a:hover { color: var(--white); }
.nav.scrolled .nav__links a { color: var(--text-muted); }
.nav.scrolled .nav__links a:hover { color: var(--green-dark); }
.nav.scrolled .nav__links .btn--small { color: var(--white); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav.scrolled .nav__toggle span { background: var(--dark); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  background: var(--white);
  border-top: 1px solid var(--border);
  gap: 4px;
}

.nav__mobile a {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.nav__mobile a:last-child { border-bottom: none; color: var(--green-dark); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-2);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #082f49 0%, #0369a1 40%, #0284c7 70%, #0c4a6e 100%);
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(56,189,248,.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(3,105,161,.3) 0%, transparent 60%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero__badge {
  display: inline-block;
  background: rgba(56,189,248,.2);
  border: 1px solid rgba(56,189,248,.35);
  color: #bae6fd;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 78px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero__apps {
  margin-bottom: 48px;
}

.hero__apps-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  margin-bottom: 12px;
}

.hero__apps-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: #fff;
  text-decoration: none;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(4px);
}

.app-badge:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.35);
}

.app-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.app-badge span small {
  font-size: 10px;
  opacity: .6;
}

.app-badge span strong {
  font-size: 14px;
  font-weight: 700;
}

.hero__apps-soon {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin-top: 10px;
  font-style: normal;
}

.hero__apps-soon em {
  color: rgba(255,255,255,.55);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat__number {
  display: block;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  font-family: 'Playfair Display', serif;
}

.stat__label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.stat__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.2);
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll span {
  display: block;
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 11px;
  position: relative;
}

.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* SERVICES */
.services { background: var(--cream); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.service-card__badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 0 0 8px 8px;
}

.service-card--single {
  border-color: #fed7aa;
  background: linear-gradient(135deg, #fff 80%, #fff7ed);
}

.service-card--single:hover {
  border-color: #fb923c;
}

.service-card--single .service-card__price {
  color: #c2410c;
}

.service-card__price {
  font-size: 22px;
  font-weight: 800;
  color: #0369a1;
  margin-bottom: 8px;
}

.service-card__price span {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--green-subtle);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green-dark);
}

.service-card__icon svg { width: 28px; height: 28px; }

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.65;
}

.service-card__list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__list li {
  font-size: 14px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
}

.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
  transition: gap var(--transition);
}

.service-card__link:hover { color: var(--green-mid); }

/* ABOUT */
.about { background: var(--white); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
}

.about__image-placeholder svg {
  width: 100%;
  height: auto;
  max-height: 400px;
}

.about__badge-float {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.about__badge-float-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.about__badge-float-text {
  font-size: 12px;
  color: var(--text-muted);
}

.about__content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
}

.about__certs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0 36px;
}

.cert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cert__icon {
  width: 28px;
  height: 28px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.cert strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

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

/* PROCESS */
.process { background: var(--green-subtle); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.process__step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.process__step-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  color: #0369a1;
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.process__step::before {
  content: attr(data-num);
}

.process__step-line {
  position: absolute;
  top: 56px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process__step-line--last { display: none; }

.process__step h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.process__step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* TESTIMONIALS */
.testimonials { background: var(--white); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow); }

.testimonial-card__stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial-card__avatar--b { background: #e8f0fe; color: #1a56b0; }
.testimonial-card__avatar--c { background: #fce8f3; color: #9c2773; }

.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  color: var(--dark);
}

.testimonial-card__author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* PRICING */
.pricing { background: var(--cream); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
}

.pricing-card--featured {
  background: var(--dark-2);
  border-color: var(--dark-2);
  padding-top: 48px;
  box-shadow: var(--shadow-lg);
}

.pricing-card:not(.pricing-card--featured):hover { box-shadow: var(--shadow); }

.pricing-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-light);
  color: var(--dark-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}

.pricing-card--featured h3 { color: rgba(255,255,255,.9); }

.pricing-card__price {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-card--featured .pricing-card__price { color: rgba(255,255,255,.6); }

.pricing-card__price span {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--dark);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card--featured .pricing-card__price span { color: var(--white); }

.pricing-card ul {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card ul li {
  font-size: 14px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.pricing-card--featured ul li { color: rgba(255,255,255,.8); }

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
}

.pricing__note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
}

/* PRICING PERSONAL */
.pricing-personal {
  display: flex;
  justify-content: center;
}

.pricing-personal__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  text-align: center;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.pricing-personal__icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.pricing-personal__card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.pricing-personal__card p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* LEBENSCHECK */
.lebenscheck { background: var(--cream); }

.check-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.check-panel { padding: 48px 48px 40px; }

/* Intro */
.check-intro-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}
.check-intro-icons span { animation: floatIcon 3s ease-in-out infinite; }
.check-intro-icons span:nth-child(2) { animation-delay: .3s; }
.check-intro-icons span:nth-child(3) { animation-delay: .6s; }
.check-intro-icons span:nth-child(4) { animation-delay: .9s; }
.check-intro-icons span:nth-child(5) { animation-delay: 1.2s; }
.check-intro-icons span:nth-child(6) { animation-delay: 1.5s; }
@keyframes floatIcon { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

.check-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  text-align: center;
}
.check-panel > p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 32px;
}

/* Progress bar */
.check-progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: -48px -48px 36px;
  overflow: hidden;
}
.check-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  border-radius: 2px;
  transition: width .4s ease;
}

/* Question step */
.check-step-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}
.check-area-icon { font-size: 44px; text-align: center; margin-bottom: 8px; }
.check-area-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin-bottom: 10px;
}
.check-area-q {
  color: var(--text-muted);
  font-size: 15px;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Score buttons */
.check-score-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-score-hint { font-size: 22px; flex-shrink: 0; }
.check-score-nums {
  display: flex;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.check-num {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  color: var(--text);
  flex-shrink: 0;
}
.check-num--low   { color: #dc2626; border-color: #fecaca; }
.check-num--mid   { color: #d97706; border-color: #fde68a; }
.check-num--high  { color: #16a34a; border-color: #bbf7d0; }
.check-num:hover  { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(3,105,161,.15); }
.check-num--active.check-num--low  { background: #dc2626; color: #fff; border-color: #dc2626; }
.check-num--active.check-num--mid  { background: #d97706; color: #fff; border-color: #d97706; }
.check-num--active.check-num--high { background: #16a34a; color: #fff; border-color: #16a34a; }
.check-score-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 8px;
  padding: 0 32px;
}

.check-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.check-nav .btn:disabled { opacity: .4; cursor: not-allowed; pointer-events: none; }

/* Result */
.check-result-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.check-radar-wrap {
  background: var(--blue-subtle, #f0f9ff);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-result-score {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.check-result-score > span:first-child {
  font-size: 48px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.check-result-score > span:nth-child(2) { font-size: 20px; color: var(--text-muted); }
.check-result-score-label {
  font-size: 13px !important;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  margin-left: 8px;
  white-space: nowrap;
}
.check-result-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  text-align: left;
}
.check-result-text p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }

.check-result-areas { margin-bottom: 20px; display: flex; flex-direction: column; gap: 6px; }
.result-area-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}
.result-area-row--weak   { background: #fef2f2; color: #dc2626; }
.result-area-row--strong { background: #f0fdf4; color: #16a34a; }
.result-area-score { font-weight: 700; }

.check-restart {
  display: block;
  margin-top: 10px;
  background: none;
  border: none;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
  padding: 0;
}
.check-restart:hover { color: var(--text); }

@media (max-width: 700px) {
  .check-panel { padding: 36px 24px 28px; }
  .check-progress-bar { margin: -36px -24px 28px; }
  .check-result-inner { grid-template-columns: 1fr; }
  .check-radar-wrap canvas { width: 240px !important; height: 240px !important; }
  .check-num { width: 30px; height: 30px; font-size: 12px; border-radius: 7px; }
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 72px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner p {
  color: rgba(255,255,255,.75);
  font-size: 16px;
}

/* CONTACT */
.contact { background: var(--white); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 16px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.contact__detail a { color: var(--green-dark); text-decoration: none; font-weight: 500; }
.contact__detail a:hover { text-decoration: underline; }

.contact__detail-icon {
  width: 36px;
  height: 36px;
  background: var(--green-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact__social {
  display: flex;
  gap: 12px;
}

.contact__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}

.contact__social a:hover {
  background: var(--green-pale);
  border-color: var(--green-light);
  color: var(--green-dark);
}

.contact__social svg { width: 18px; height: 18px; }

.contact__form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(56,189,248,.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7c6e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* BOOKING FORM */
.contact__form-col { display: flex; flex-direction: column; gap: 16px; }

.contact__form-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact__form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact__form-card > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.contact__whatsapp-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.form-error {
  margin-top: 12px;
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  color: #dc2626;
  font-size: 14px;
}

.form-success {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.form-success__check {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 8px;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--dark);
}

.form-success p { color: var(--text-muted); font-size: 15px; }

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
}

.btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
  color: var(--white);
}

/* FOOTER */
.footer {
  background: var(--dark);
  padding: 72px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__brand .nav__logo { color: var(--white); font-size: 24px; }

.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  margin-top: 12px;
  line-height: 1.7;
}

.footer__insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s;
}

.footer__insta:hover { color: #fff; }

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer__links h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
  padding: 20px 0;
}

.footer__bottom p {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__badge-float { right: 0; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__step-line { display: none; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card--featured { order: -1; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile.open { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 20px; align-items: flex-start; }
  .stat__divider { display: none; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .process__steps { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 20px; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .about__badge-float { position: static; margin-top: 16px; display: inline-flex; }
}

/* HERO SPLIT LAYOUT */
.hero__inner--split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

.hero__photo-col {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.hero__photo-img {
  width: 100%;
  max-width: 380px;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}

@media (max-width: 900px) {
  .hero__inner--split { grid-template-columns: 1fr; }
  .hero__photo-col { display: none; }
}

/* ABOUT PHOTO */
.about__photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

/* SERVICE CARD IMAGE */
.service-card__img {
  width: calc(100% + 64px);
  margin: -36px -32px 24px;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* GYM BANNER */
.gym-banner {
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.gym-banner__img-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
}

.gym-banner__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.gym-banner__text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .gym-banner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


.gym-banner__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.gym-banner__title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin: 0;
}

@media (max-width: 600px) {
  .gym-banner__title { font-size: 1.3rem; }
}

/* =====================================================
   MOBILE RESPONSIVE — zusätzliche Breakpoints
   ===================================================== */

@media (max-width: 480px) {

  /* Container mehr Padding */
  .container { padding: 0 18px; }

  /* Sections kleiner */
  .section { padding: 64px 0; }
  .section__header { margin-bottom: 40px; }

  /* Hero */
  .hero__inner { padding-top: 100px; padding-bottom: 60px; }
  .hero__badge { font-size: 11px; padding: 5px 12px; margin-bottom: 20px; }
  .hero__title { font-size: clamp(34px, 9vw, 48px); margin-bottom: 16px; }
  .hero__sub { font-size: 15px; margin-bottom: 28px; }
  .hero__cta { gap: 10px; margin-bottom: 48px; }
  .hero__cta .btn { padding: 13px 22px; font-size: 14px; }
  .hero__stats { gap: 20px; }
  .stat__number { font-size: 22px; }
  .stat__label { font-size: 12px; }

  /* Service Cards */
  .service-card { padding: 28px 20px; }
  .service-card__img {
    width: calc(100% + 40px);
    margin: -28px -20px 20px;
  }

  /* About */
  .about__inner { gap: 32px; }

  /* Process */
  .process__step { padding: 28px 20px; }

  /* Pricing */
  .pricing-card { padding: 28px 20px; }
  .pricing-card__price span { font-size: 44px; }

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

  /* CTA Banner */
  .cta-banner { padding: 48px 0; }
  .cta-banner .btn { width: 100%; justify-content: center; }

  /* Contact */
  .contact__form { padding: 24px 16px; }
  .contact__form-col { grid-template-columns: 1fr; }

  /* Footer */
  .footer__links { grid-template-columns: 1fr; gap: 32px; }

  /* Lebenscheck */
  .check-panel { padding: 28px 16px 24px; }
  .check-progress-bar { margin: -28px -16px 24px; }
  .check-num { width: 28px; height: 28px; font-size: 11px; }
}

/* Buttons auf kleinen Screens nie überlaufen */
@media (max-width: 380px) {
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .btn--small { padding: 9px 16px; font-size: 13px; }
}

/* Scrollbar auf Mobile ausblenden */
@media (max-width: 640px) {
  .nav__mobile a:nth-child(6) { color: var(--green-light); }
}

/* =====================================================
   FAQ */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: box-shadow .2s;
}

.faq__item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.faq__icon {
  font-size: 22px;
  font-weight: 300;
  color: #0369a1;
  flex-shrink: 0;
  transition: transform .3s ease;
  line-height: 1;
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}

.faq__answer.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

/* =====================================================
   ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
