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

html {
  scroll-behavior: smooth;
}

:root {
  --orange: #f97316;
  --orange-dark: #ea6c0a;
  --dark: #1a1a2e;
  --gray: #f4f4f4;
  --text: #333;
  --white: #fff;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.logo-img {
  height: 160px;
  width: auto;
}

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

.navbar ul li a {
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}
.navbar ul li a:hover { color: var(--orange); }

.btn-nav {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--orange-dark) !important; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
  color: var(--white);
  padding: 100px 40px;
  text-align: center;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-urgency {
  display: inline-block;
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.5);
  color: #fdba74;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--white); }

/* USPs */
.usps {
  background: var(--white);
  padding: 60px 0;
}

.usps .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.usp { text-align: center; }

.usp-icon {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 12px;
}

.usp h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.usp p { font-size: 0.9rem; color: #666; }

/* ÜBER MICH */
.uebermich {
  background: var(--gray);
  padding: 80px 0;
}

.uebermich-inner {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 50px;
  align-items: start;
}

.uebermich-media {
  display: contents;
}

.uebermich-image img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.uebermich-image {
  width: 100%;
}

.uebermich-text {
  width: 100%;
}

.uebermich-footer {
  grid-column: 1 / -1;
  margin-top: 28px;
}

.uebermich-text p {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.8;
}

.uebermich-cta {
  width: 100%;
  margin: 0;
  background: var(--dark);
  color: rgba(255,255,255,0.9);
  padding: 20px 24px;
  border-radius: 10px;
  font-size: 1rem;
  line-height: 1.7;
  border-left: 4px solid var(--orange);
}

.uebermich-cta a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
}

/* LEISTUNGEN */
.leistungen {
  background: var(--gray);
  padding: 80px 0;
}

.leistungen h2,
.ablauf h2,
.preise h2,
.b2b-text h2,
.kontakt h2 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--dark);
}

.section-sub {
  text-align: center;
  color: #666;
  margin-bottom: 48px;
}

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

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 16px;
}

.card ul li {
  font-size: 0.9rem;
  color: #444;
  padding: 4px 0;
}
.card ul li::before {
  content: "✓ ";
  color: var(--orange);
  font-weight: 700;
}

/* SCHULUNGSABLAUF */
.ablauf {
  background: var(--white);
  padding: 80px 0;
}

.ablauf-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.ablauf-step {
  background: var(--gray);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.step-content ul li {
  font-size: 0.88rem;
  color: #555;
  padding: 3px 0;
}
.step-content ul li::before {
  content: "→ ";
  color: var(--orange);
  font-weight: 700;
}

/* PREISE */
.preise {
  background: var(--gray);
  padding: 80px 0;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  align-items: start;
}

.pricing-card {
  border: 2px solid #e5e5e5;
  border-radius: 14px;
  padding: 36px 28px;
  position: relative;
  background: var(--white);
  transition: border-color 0.2s;
}

.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(249,115,22,0.15);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 20px;
}

.pricing-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 4px;
}
.price span { font-size: 1rem; font-weight: 400; color: #888; }

.price-note {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 20px;
}

.pricing-card ul {
  margin-bottom: 28px;
}
.pricing-card ul li {
  font-size: 0.9rem;
  color: #555;
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
}
.pricing-card ul li::before {
  content: "✓ ";
  color: var(--orange);
  font-weight: 700;
}

.pricing-card .btn-primary {
  width: 100%;
  text-align: center;
}

/* Unterweisung Gruppenpreise */
.unterweisung-preise {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.uw-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  font-size: 0.9rem;
  border-bottom: 1px solid #f0f0f0;
  flex-wrap: wrap;
  gap: 4px;
}

.uw-row:last-child { border-bottom: none; }

.uw-row strong {
  color: var(--orange);
  font-size: 1rem;
  font-weight: 800;
}

.uw-row.featured-row {
  background: rgba(249,115,22,0.06);
}

.uw-row em {
  font-style: normal;
  font-size: 0.75rem;
  background: var(--orange);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}

/* B2B */
.b2b {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0;
}

.b2b-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.b2b-text h2 { text-align: left; color: var(--white); }

.b2b-text p {
  opacity: 0.85;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.b2b-text ul { margin-bottom: 32px; }
.b2b-text ul li {
  padding: 7px 0;
  opacity: 0.9;
  font-size: 0.95rem;
}
.b2b-text ul li::before {
  content: "→ ";
  color: var(--orange);
  font-weight: 700;
}

.b2b-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.b2b-stat {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px 32px;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}
.b2b-stat span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
}

/* KONTAKT */
.kontakt {
  background: var(--white);
  padding: 80px 0;
}

.kontakt-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.kontakt-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s;
}
.kontakt-item:hover { color: var(--orange); }

.kontakt-icon {
  font-size: 1.4rem;
  color: var(--orange);
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
}

.contact-form button {
  align-self: flex-start;
  padding: 14px 40px;
}

/* FOOTER */
footer {
  background: #111;
  color: rgba(255,255,255,0.6);
  padding: 32px 0;
}

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

.footer-logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-links a:hover { color: var(--white); }

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.hamburger:hover { background: var(--gray); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE NAV PANEL */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 2px solid var(--orange);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  position: relative;
  z-index: 95;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  padding: 8px 0 16px;
}

.mobile-nav ul li a {
  display: block;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid #f4f4f4;
  transition: color 0.2s, background 0.2s;
}

.mobile-nav ul li a:hover {
  color: var(--orange);
  background: #fef6ef;
}

.mobile-nav ul li:last-child {
  padding: 12px 24px 0;
}

.mobile-link-cta {
  display: block;
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 8px;
  border-bottom: none !important;
  text-align: center;
  font-weight: 700 !important;
  padding: 12px 24px !important;
}

.mobile-link-cta:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
}

/* OVERLAY */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 90;
}

.mobile-overlay.is-visible {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .usps .container { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .ablauf-steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; }
  .b2b-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .navbar ul { gap: 16px; }
  .uebermich-inner { grid-template-columns: 1fr; }
  .uebermich-image img { max-height: 320px; }
}

@media (max-width: 700px) {
  .cards { grid-template-columns: 1fr; }
  .ablauf-steps { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .navbar { padding: 14px 20px; }
  .navbar .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 70px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .kontakt-info { flex-direction: column; align-items: center; }
  .usps .container { grid-template-columns: 1fr; }
  .uebermich-image img { max-height: 260px; }
}
