/* ══════════════════════════════════════════════════════════════════════════════
   DIGITALHEIM CONSOLIDATED CSS
   Complete styling for all pages and components
   ══════════════════════════════════════════════════════════════════════════════ */

/* ══ BASE & RESET ══ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1A5F7A;
  --primary-dark: #0E3D4F;
  --primary-light: #2E8BA8;
  --accent: #E8A838;
  --accent-glow: #F5C96A;
  --warm: #FAF6F1;
  --warm-mid: #F0E8DD;
  --cream: #FFFDF9;
  --text: #1C2833;
  --text-light: #4A5A6A;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(14,61,79,0.06);
  --shadow-md: 0 4px 24px rgba(14,61,79,0.1);
  --shadow-lg: 0 12px 48px rgba(14,61,79,0.12);
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

/* ══ ANIMATIONS ══ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.fade-up {
  animation: fadeUp 0.8s ease-out both;
}

.fade-up-d1 {
  animation-delay: 0.1s;
}

.fade-up-d2 {
  animation-delay: 0.2s;
}

.fade-up-d3 {
  animation-delay: 0.3s;
}

.fade-up-d4 {
  animation-delay: 0.4s;
}

/* ══ NAVIGATION ══ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(14, 61, 79, 0.06);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-dark);
  text-decoration: none;
}

.nav-brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  order: 2;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(232, 168, 56, 0.3);
  white-space: nowrap;
  order: 3;
  margin-left: 24px;
}

.nav-cta:hover {
  background: #D49730;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 168, 56, 0.4);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-lang-flags {
  display: none;
}

/* ══ HERO ══ */
.hero {
  padding: 140px 24px 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 95, 122, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--warm);
  border: 1px solid var(--warm-mid);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27AE60;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 19px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(26, 95, 122, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 95, 122, 0.35);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(26, 95, 122, 0.15);
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(26, 95, 122, 0.04);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  width: 100%;
  max-width: 380px;
  border: 1px solid rgba(14, 61, 79, 0.06);
}

.hero-card-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.hero-card-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.hero-card-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.hero-float-1 {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(232, 168, 56, 0.3);
  animation: float 3s ease-in-out infinite;
}

.hero-float-2 {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite 1.5s;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ══ TRUST BAR ══ */
.trust-bar {
  background: var(--warm);
  border-top: 1px solid var(--warm-mid);
  border-bottom: 1px solid var(--warm-mid);
  padding: 24px;
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-light);
  font-weight: 500;
}

.trust-icon {
  font-size: 22px;
  display: inline-flex;
  align-items: center;
}

/* ══ SERVICES ══ */
.services {
  padding: 80px 24px;
  background: var(--cream);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-light);
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid rgba(14, 61, 79, 0.06);
  transition: all 0.3s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 168, 56, 0.3);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.service-name {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.service-cta {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  transition: color 0.2s;
}

.service-card:hover .service-cta {
  color: var(--primary-dark);
  text-decoration: underline;
}

.wide-card {
  grid-column: span 2;
  text-align: center;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ══ PACKAGES ══ */
.packages {
  padding: 80px 24px;
  background: var(--warm);
}

.packages-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  border-color: var(--accent);
  border-width: 3px;
}

.package-card.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.package-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.package-name {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.package-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 66px;
}

.package-price {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
}

.package-price-unit {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
}

.package-includes {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--warm-mid);
}

.package-includes li {
  list-style: none;
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.package-check {
  color: #27AE60;
  font-weight: 700;
  flex-shrink: 0;
}

.package-select {
  display: block;
  text-align: center;
  margin-top: auto;
  padding-top: 16px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.package-select:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.package-selected-badge {
  display: none;
  background: var(--primary);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.package-selected-badge.visible {
  display: block;
}

/* ══ WORKSHOPS ══ */
.workshops {
  padding: 80px 24px;
  background: var(--cream);
}

.workshop-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.workshop-content {}

.workshop-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.workshop-content p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.workshop-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(14, 61, 79, 0.06);
  transition: all 0.2s;
}

.workshop-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(232, 168, 56, 0.2);
}

.workshop-item-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.workshop-item-text {
  flex: 1;
}

.workshop-item-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--primary-dark);
}

.workshop-item-detail {
  font-size: 13px;
  color: var(--text-light);
}

.workshop-item-price {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.workshop-visual {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: 24px;
  padding: 48px 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.workshop-visual::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(232, 168, 56, 0.15);
  border-radius: 50%;
}

.workshop-visual-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.workshop-visual h4 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.workshop-visual p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 20px;
}

.workshop-cert {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.workshop-cert-icon {
  font-size: 32px;
}

.workshop-cert-text {
  font-size: 14px;
  opacity: 0.9;
}

/* ══ ABOUT ══ */
.about {
  padding: 80px 24px;
  background: var(--warm);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 40px;
  text-align: center;
}

.about-photo-placeholder {
  font-size: 80px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.about-photo-hint {
  font-size: 14px;
  opacity: 0.6;
}

.about-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
}

.about-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
}

.about-stat-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ══ REVIEWS ══ */
.reviews {
  padding: 80px 24px;
  background: var(--cream);
}

.reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(14, 61, 79, 0.06);
}

.review-stars {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
}

.review-note {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--warm-mid);
}

/* ══ CTA ══ */
.cta {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.12) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 36px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--white);
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(232, 168, 56, 0.3);
  font-family: 'Fraunces', serif;
}

.cta-phone:hover {
  background: #D49730;
  transform: translateY(-2px);
  color: #fff;
}

.cta-sub {
  margin-top: 20px;
  font-size: 15px;
  opacity: 0.6;
}

/* ══ FOOTER ══ */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand span {
  color: var(--accent);
}

.footer-desc {
  font-size: 14px;
  opacity: 0.6;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.5;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--white);
  opacity: 0.7;
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: opacity 0.2s;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.4;
}

.footer-bottom a {
  color: #fff;
  opacity: 0.6;
  text-decoration: none;
}

.footer-bottom a:hover {
  opacity: 1;
}

/* ══ CONTACT FORM ══ */
.contact {
  padding: 0 24px 80px;
  background: var(--cream);
}

.contact-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-option-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(14, 61, 79, 0.06);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-option-card.highlight {
  border: 2px solid var(--accent);
  background: #FFFCF5;
}

.contact-option-icon {
  font-size: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-option-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.contact-option-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-option-btn {
  display: inline-block;
  margin-top: 12px;
  background: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-option-btn:hover {
  background: #D49730;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(14, 61, 79, 0.06);
}

.contact-form-header h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.contact-form-header p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--warm-mid);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s;
  background: var(--cream);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  background: var(--white);
}

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

.recommendation {
  margin: 20px 0;
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #F0F9FF 0%, #FFF9E6 100%);
  border: 1px solid rgba(232, 168, 56, 0.25);
  animation: fadeUp 0.4s ease-out;
}

.recommendation-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
}

.recommendation-bulb {
  font-size: 20px;
}

.recommendation-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(14, 61, 79, 0.08);
}

.recommendation-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.recommendation-name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
}

.recommendation-desc {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
  line-height: 1.5;
}

.recommendation-price {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
}

.recommendation-includes {
  font-size: 13px;
  color: var(--text-light);
  padding: 12px 0;
  border-top: 1px solid var(--warm-mid);
  line-height: 1.6;
}

.recommendation-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.rec-btn-yes {
  flex: 1;
  padding: 11px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  background: var(--primary);
  color: var(--white);
  transition: all 0.2s;
}

.rec-btn-yes:hover {
  background: var(--primary-dark);
}

.rec-btn-no {
  flex: 1;
  padding: 11px 16px;
  border-radius: 10px;
  border: 2px solid var(--warm-mid);
  background: transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-light);
  transition: all 0.2s;
}

.rec-btn-no:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.recommendation-feedback {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.recommendation-feedback.accepted {
  background: #E8F8E8;
  color: #1E7E34;
}

.recommendation-feedback.unsure {
  background: #FFF3E0;
  color: #B7770A;
}

.form-submit {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  background: var(--primary);
  color: var(--white);
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(26, 95, 122, 0.2);
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.form-hint {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 10px;
}

.form-success {
  margin-top: 16px;
  padding: 16px;
  border-radius: 12px;
  background: #E8F8E8;
  color: #1E7E34;
  text-align: center;
  font-size: 15px;
}

.form-error {
  margin-top: 16px;
  padding: 16px;
  border-radius: 12px;
  background: #FDE8E8;
  color: #C0392B;
  text-align: center;
  font-size: 15px;
}

/* ══ LANGUAGE BUBBLE ══ */
.lang-bubble-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  transition: opacity 0.6s ease;
}

.lang-bubble-wrap.hidden {
  opacity: 0;
  pointer-events: none;
}

.lang-bubble {
  width: auto;
  min-width: 48px;
  height: 48px;
  border-radius: 50px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s;
  user-select: none;
  padding: 0 14px;
  gap: 6px;
}

.lang-bubble:hover {
  opacity: 1;
  transform: scale(1.08);
}

.lang-bubble .bubble-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.lang-bubble .bubble-flag {
  font-size: 22px;
  line-height: 1;
}

.lang-hint {
  position: absolute;
  bottom: 58px;
  right: 0;
  background: var(--white);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
  pointer-events: none;
}

.lang-hint.visible {
  opacity: 1;
  transform: translateY(0);
}

.lang-hint::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: var(--white);
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.lang-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 199;
  pointer-events: none;
  transition: background 0.3s;
}

.lang-overlay.active {
  background: rgba(0, 0, 0, 0.4);
  pointer-events: all;
}

.lang-options {
  position: fixed;
  bottom: 84px;
  right: 24px;
  z-index: 201;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  pointer-events: none;
}

.lang-option:hover {
  background: var(--warm);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.lang-option .lang-flag {
  font-size: 26px;
  line-height: 1;
}

.lang-option .lang-label {
  display: none;
}

.lang-option .lang-label-desktop {
  display: inline;
}

.lang-options.active .lang-option {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.lang-options.active .lang-option:nth-child(1) {
  transition-delay: 0.05s;
}

.lang-options.active .lang-option:nth-child(2) {
  transition-delay: 0.1s;
}

.lang-options.active .lang-option:nth-child(3) {
  transition-delay: 0.15s;
}

/* ══ RESPONSIVE — MAIN (max-width: 900px) ══ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-sub {
    margin: 0 auto 36px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

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

  .wide-card {
    grid-column: span 1;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .workshop-layout {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 300px;
    margin: 0 auto;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    flex-wrap: nowrap;
  }

  .nav-cta {
    order: 2;
    font-size: 13px;
    padding: 9px 18px;
    margin-left: auto;
  }

  .hamburger {
    display: flex;
    order: 3;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 253, 249, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 0;
    border-bottom: 1px solid var(--warm-mid);
    box-shadow: var(--shadow-md);
    order: 4;
    margin-left: 0;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links a:not(.nav-flag-link) {
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--warm-mid);
    text-align: left;
    width: 100%;
  }

  /* NAV FLAGS in hamburger menu */
  .nav-lang-flags {
    display: flex;
    gap: 16px;
    justify-content: center;
    padding: 14px 0 10px;
    border-bottom: 1px solid var(--warm-mid);
    margin-bottom: 4px;
  }

  .nav-flag-link {
    font-size: 34px;
    text-decoration: none;
    transition: transform 0.2s;
  }

  .nav-flag-link:hover {
    transform: scale(1.2);
  }

  .nav-flag-link.active {
    transform: scale(1.15);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  }

  /* Contact responsive */
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .recommendation-top {
    flex-direction: column;
  }

  .recommendation-actions {
    flex-direction: column;
  }

  /* Language bubble mobile */
  .lang-bubble-wrap {
    bottom: 20px;
    right: 20px;
  }

  .lang-bubble {
    width: 48px;
    min-width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
  }

  .lang-bubble .bubble-text {
    display: none;
  }

  .lang-bubble .bubble-flag {
    display: flex;
  }

  .lang-options {
    right: 20px;
    bottom: 76px;
  }

  .lang-option .lang-label {
    display: inline;
  }

  .lang-option .lang-label-desktop {
    display: none;
  }
}

/* ══ RESPONSIVE — SMALL (max-width: 600px) ══ */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 30px;
  }

  .trust-inner {
    gap: 24px;
  }

  /* Paket-Karte: Mobiles Layout */
  .paket-header-mobile {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .paket-header-mobile h2 {
    text-align: center;
  }

  .paket-price-mobile {
    text-align: center;
  }
}

/* ══ DESKTOP-ONLY lang bubble ══ */
@media (min-width: 901px) {
  .lang-bubble .bubble-flag {
    display: none;
  }

  .lang-bubble .bubble-text {
    display: flex;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   PAGE-SPECIFIC STYLES (Subpages)
   Generic pattern used with prefixes: lh-, sth-, wih-, psc-, ps-
   ══════════════════════════════════════════════════════════════════════════════ */

/* ══ LERNEN & HERAUSFORDERUNGEN (lh-) ══ */
.lh-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: var(--cream);
}

.lh-hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.lh-hero-text {
  flex: 1;
  min-width: 300px;
}

.lh-hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.lh-placeholder {
  background: #e9ecef;
  border-radius: 20px;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ccc;
  color: #888;
  text-align: center;
  padding: 20px;
}

.lh-section-white {
  padding: 80px 24px;
  background: var(--white);
  border-top: 1px solid var(--warm-mid);
}

.lh-section-cream {
  background: var(--cream);
  padding: 80px 20px;
  border-top: 1px solid var(--warm-mid);
}

.lh-container-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.lh-container-wide {
  max-width: 1000px;
  margin: 0 auto;
}

.lh-body-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}

.lh-highlight-quote {
  font-size: 19px;
  line-height: 1.6;
  color: var(--primary-dark);
  font-weight: 600;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
}

.lh-paket-card {
  cursor: default;
  padding: 48px 40px;
  margin: 0;
}

.lh-paket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--warm-mid);
  padding-bottom: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.lh-paket-title {
  font-size: 36px;
  margin: 0;
  color: var(--primary-dark);
  font-family: 'Fraunces', serif;
}

.lh-paket-price {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
}

.lh-paket-price-note {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 4px;
}

.lh-paket-desc {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
  color: var(--text-light);
}

.lh-package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.lh-package-item {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
}

.lh-checkmark {
  color: #27AE60;
  font-weight: 700;
  font-size: 20px;
  margin-right: 16px;
  margin-top: 2px;
}

.lh-feature-title {
  color: var(--primary-dark);
}

.lh-cta-center {
  text-align: center;
  margin-top: 20px;
}

.lh-steps-section {
  padding: 60px 5px;
  background: #fff;
  border-top: 1px solid var(--warm-mid);
}

.lh-steps-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.lh-step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 20px;
}

.lh-step-number {
  background: var(--primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.lh-step-title {
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.lh-step-desc {
  color: var(--text-light);
  line-height: 1.6;
}

.lh-promise-section {
  padding: 40px 20px;
  background: var(--warm-light);
  border-top: 1px solid var(--warm-mid);
  border-bottom: 1px solid var(--warm-mid);
}

.lh-promise-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.lh-promise-title {
  font-family: 'Fraunces', serif;
  color: var(--primary-dark);
  font-size: 26px;
  margin-bottom: 20px;
}

.lh-promise-text {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

.lh-faq-section {
  padding: 40px 20px;
  background: var(--white);
}

.lh-faq-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(14, 61, 79, 0.06);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.lh-faq-question {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 18px;
  outline: none;
}

.lh-faq-answer {
  color: var(--text-light);
  margin-top: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ══ SMART THERMOSTAT HELPER (sth-) ══ */
.sth-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: var(--cream);
}

.sth-hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.sth-hero-text {
  flex: 1;
  min-width: 300px;
}

.sth-hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.sth-placeholder {
  background: #e9ecef;
  border-radius: 20px;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ccc;
  color: #888;
  text-align: center;
  padding: 20px;
}

.sth-section-white {
  padding: 80px 24px;
  background: var(--white);
  border-top: 1px solid var(--warm-mid);
}

.sth-section-cream {
  background: var(--cream);
  padding: 80px 20px;
  border-top: 1px solid var(--warm-mid);
}

.sth-container-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.sth-container-wide {
  max-width: 1000px;
  margin: 0 auto;
}

.sth-body-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}

.sth-highlight-quote {
  font-size: 19px;
  line-height: 1.6;
  color: var(--primary-dark);
  font-weight: 600;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
}

.sth-paket-card {
  cursor: default;
  padding: 48px 40px;
  margin: 0;
}

.sth-paket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--warm-mid);
  padding-bottom: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.sth-paket-title {
  font-size: 36px;
  margin: 0;
  color: var(--primary-dark);
  font-family: 'Fraunces', serif;
}

.sth-paket-price {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
}

.sth-paket-price-note {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 4px;
}

.sth-paket-desc {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
  color: var(--text-light);
}

.sth-package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.sth-package-item {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
}

.sth-checkmark {
  color: #27AE60;
  font-weight: 700;
  font-size: 20px;
  margin-right: 16px;
  margin-top: 2px;
}

.sth-feature-title {
  color: var(--primary-dark);
}

.sth-cta-center {
  text-align: center;
  margin-top: 20px;
}

.sth-steps-section {
  padding: 60px 5px;
  background: #fff;
  border-top: 1px solid var(--warm-mid);
}

.sth-steps-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.sth-step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 20px;
}

.sth-step-number {
  background: var(--primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.sth-step-title {
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.sth-step-desc {
  color: var(--text-light);
  line-height: 1.6;
}

.sth-promise-section {
  padding: 40px 20px;
  background: var(--warm-light);
  border-top: 1px solid var(--warm-mid);
  border-bottom: 1px solid var(--warm-mid);
}

.sth-promise-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sth-promise-title {
  font-family: 'Fraunces', serif;
  color: var(--primary-dark);
  font-size: 26px;
  margin-bottom: 20px;
}

.sth-promise-text {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

.sth-faq-section {
  padding: 40px 20px;
  background: var(--white);
}

.sth-faq-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(14, 61, 79, 0.06);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.sth-faq-question {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 18px;
  outline: none;
}

.sth-faq-answer {
  color: var(--text-light);
  margin-top: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ══ WORKSHOPS (wih-) ══ */
.wih-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: var(--cream);
}

.wih-hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.wih-hero-text {
  flex: 1;
  min-width: 300px;
}

.wih-hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.wih-placeholder {
  background: #e9ecef;
  border-radius: 20px;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ccc;
  color: #888;
  text-align: center;
  padding: 20px;
}

.wih-section-white {
  padding: 80px 24px;
  background: var(--white);
  border-top: 1px solid var(--warm-mid);
}

.wih-section-cream {
  background: var(--cream);
  padding: 80px 20px;
  border-top: 1px solid var(--warm-mid);
}

.wih-container-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.wih-container-wide {
  max-width: 1000px;
  margin: 0 auto;
}

.wih-body-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}

.wih-highlight-quote {
  font-size: 19px;
  line-height: 1.6;
  color: var(--primary-dark);
  font-weight: 600;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
}

.wih-paket-card {
  cursor: default;
  padding: 48px 40px;
  margin: 0;
}

.wih-paket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--warm-mid);
  padding-bottom: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.wih-paket-title {
  font-size: 36px;
  margin: 0;
  color: var(--primary-dark);
  font-family: 'Fraunces', serif;
}

.wih-paket-price {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
}

.wih-paket-price-note {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 4px;
}

.wih-paket-desc {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
  color: var(--text-light);
}

.wih-package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.wih-package-item {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
}

.wih-checkmark {
  color: #27AE60;
  font-weight: 700;
  font-size: 20px;
  margin-right: 16px;
  margin-top: 2px;
}

.wih-feature-title {
  color: var(--primary-dark);
}

.wih-cta-center {
  text-align: center;
  margin-top: 20px;
}

.wih-steps-section {
  padding: 60px 5px;
  background: #fff;
  border-top: 1px solid var(--warm-mid);
}

.wih-steps-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.wih-step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 20px;
}

.wih-step-number {
  background: var(--primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.wih-step-title {
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.wih-step-desc {
  color: var(--text-light);
  line-height: 1.6;
}

.wih-promise-section {
  padding: 40px 20px;
  background: var(--warm-light);
  border-top: 1px solid var(--warm-mid);
  border-bottom: 1px solid var(--warm-mid);
}

.wih-promise-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.wih-promise-title {
  font-family: 'Fraunces', serif;
  color: var(--primary-dark);
  font-size: 26px;
  margin-bottom: 20px;
}

.wih-promise-text {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

.wih-faq-section {
  padding: 40px 20px;
  background: var(--white);
}

.wih-faq-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(14, 61, 79, 0.06);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.wih-faq-question {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 18px;
  outline: none;
}

.wih-faq-answer {
  color: var(--text-light);
  margin-top: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ══ PROBLEM-SOLVING COACHING (psc-) ══ */
.psc-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: var(--cream);
}

.psc-hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.psc-hero-text {
  flex: 1;
  min-width: 300px;
}

.psc-hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.psc-placeholder {
  background: #e9ecef;
  border-radius: 20px;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ccc;
  color: #888;
  text-align: center;
  padding: 20px;
}

.psc-section-white {
  padding: 80px 24px;
  background: var(--white);
  border-top: 1px solid var(--warm-mid);
}

.psc-section-cream {
  background: var(--cream);
  padding: 80px 20px;
  border-top: 1px solid var(--warm-mid);
}

.psc-container-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.psc-container-wide {
  max-width: 1000px;
  margin: 0 auto;
}

.psc-body-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}

.psc-highlight-quote {
  font-size: 19px;
  line-height: 1.6;
  color: var(--primary-dark);
  font-weight: 600;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
}

.psc-paket-card {
  cursor: default;
  padding: 48px 40px;
  margin: 0;
}

.psc-paket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--warm-mid);
  padding-bottom: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.psc-paket-title {
  font-size: 36px;
  margin: 0;
  color: var(--primary-dark);
  font-family: 'Fraunces', serif;
}

.psc-paket-price {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
}

.psc-paket-price-note {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 4px;
}

.psc-paket-desc {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
  color: var(--text-light);
}

.psc-package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.psc-package-item {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
}

.psc-checkmark {
  color: #27AE60;
  font-weight: 700;
  font-size: 20px;
  margin-right: 16px;
  margin-top: 2px;
}

.psc-feature-title {
  color: var(--primary-dark);
}

.psc-cta-center {
  text-align: center;
  margin-top: 20px;
}

.psc-steps-section {
  padding: 60px 5px;
  background: #fff;
  border-top: 1px solid var(--warm-mid);
}

.psc-steps-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.psc-step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 20px;
}

.psc-step-number {
  background: var(--primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.psc-step-title {
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.psc-step-desc {
  color: var(--text-light);
  line-height: 1.6;
}

.psc-promise-section {
  padding: 40px 20px;
  background: var(--warm);
  border-top: 1px solid var(--warm-mid);
  border-bottom: 1px solid var(--warm-mid);
}

.psc-promise-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.psc-promise-title {
  font-family: 'Fraunces', serif;
  color: var(--primary-dark);
  font-size: 26px;
  margin-bottom: 20px;
}

.psc-promise-text {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

.psc-faq-section {
  padding: 40px 20px;
  background: var(--white);
}

.psc-faq-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(14, 61, 79, 0.06);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.psc-faq-question {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 18px;
  outline: none;
}

.psc-faq-answer {
  color: var(--text-light);
  margin-top: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ══ PERSONAL SUPPORT (ps-) ══ */
.ps-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: var(--cream);
}

.ps-hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.ps-hero-text {
  flex: 1;
  min-width: 300px;
}

.ps-hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.ps-placeholder {
  background: #e9ecef;
  border-radius: 20px;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ccc;
  color: #888;
  text-align: center;
  padding: 20px;
}

.ps-section-white {
  padding: 80px 24px;
  background: var(--white);
  border-top: 1px solid var(--warm-mid);
}

.ps-section-cream {
  background: var(--cream);
  padding: 80px 20px;
  border-top: 1px solid var(--warm-mid);
}

.ps-container-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.ps-container-wide {
  max-width: 1000px;
  margin: 0 auto;
}

.ps-body-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}

.ps-highlight-quote {
  font-size: 19px;
  line-height: 1.6;
  color: var(--primary-dark);
  font-weight: 600;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
}

.ps-paket-card {
  cursor: default;
  padding: 48px 40px;
  margin: 0;
}

.ps-paket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--warm-mid);
  padding-bottom: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.ps-paket-title {
  font-size: 36px;
  margin: 0;
  color: var(--primary-dark);
  font-family: 'Fraunces', serif;
}

.ps-paket-price {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
}

.ps-paket-price-note {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 4px;
}

.ps-paket-desc {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
  color: var(--text-light);
}

.ps-package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.ps-package-item {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
}

.ps-checkmark {
  color: #27AE60;
  font-weight: 700;
  font-size: 20px;
  margin-right: 16px;
  margin-top: 2px;
}

.ps-feature-title {
  color: var(--primary-dark);
}

.ps-cta-center {
  text-align: center;
  margin-top: 20px;
}

.ps-steps-section {
  padding: 60px 5px;
  background: #fff;
  border-top: 1px solid var(--warm-mid);
}

.ps-steps-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.ps-step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 20px;
}

.ps-step-number {
  background: var(--primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.ps-step-title {
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.ps-step-desc {
  color: var(--text-light);
  line-height: 1.6;
}

.ps-promise-section {
  padding: 40px 20px;
  background: var(--warm-light);
  border-top: 1px solid var(--warm-mid);
  border-bottom: 1px solid var(--warm-mid);
}

.ps-promise-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ps-promise-title {
  font-family: 'Fraunces', serif;
  color: var(--primary-dark);
  font-size: 26px;
  margin-bottom: 20px;
}

.ps-promise-text {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

.ps-faq-section {
  padding: 40px 20px;
  background: var(--white);
}

.ps-faq-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  border: 1px solid rgba(14, 61, 79, 0.06);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.ps-faq-question {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 18px;
  outline: none;
}

.ps-faq-answer {
  color: var(--text-light);
  margin-top: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════════════════════════
   UTILITY CLASSES – Ersatz für ehemalige Inline-Styles
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── State ── */
.is-hidden {
  display: none;
}

/* ── Text ── */
.text-primary {
  color: var(--primary);
}

.text-center-mb40 {
  text-align: center;
  margin-bottom: 40px;
}

/* ── Subpage Hero Overrides ── */
.subpage-tag {
  margin-bottom: 20px;
  display: inline-block;
}

.subpage-hero-title {
  font-size: 46px;
  margin-bottom: 24px;
}

.subpage-hero-sub {
  margin-bottom: 36px;
  font-size: 20px;
  text-align: left;
}

.btn-primary-lg {
  font-size: 18px;
  padding: 16px 32px;
}

.btn-primary-lg-wide {
  font-size: 18px;
  padding: 16px 40px;
}

/* ── Section Modifiers ── */
.section-tag-left {
  text-align: left;
  margin-bottom: 16px;
}

.section-title-left {
  text-align: left;
  margin-bottom: 24px;
  font-size: 36px;
}

.section-title-md {
  text-align: center;
  margin-bottom: 24px;
  font-size: 36px;
}

.section-title-mb32 {
  margin-bottom: 32px;
}

.section-header-sm {
  padding-top: 40px;
}

.section-header-lg {
  padding-top: 80px;
}

/* ── Layout Modifiers ── */
.packages-bordered {
  background: var(--warm);
  border-top: 1px solid var(--warm-mid);
}

.contact-subpage {
  background: var(--warm-light);
  border-top: 1px solid var(--warm-mid);
  border-bottom: 1px solid var(--warm-mid);
}

.packages-grid-spaced {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* ── About Photo (index) ── */
.about-photo-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
}

.about-photo-subtitle {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 4px;
}

.about-languages {
  color: var(--primary);
  font-weight: 600;
}

/* ── Footer Utilities ── */
.footer-owner {
  font-size: 13px;
  opacity: 0.5;
}

.footer-address-city {
  margin-top: 12px;
}

/* ── Subpage Package Card Extras ── */
.package-price-unit-spaced {
  margin-top: -10px;
  margin-bottom: 20px;
}

.featured-thick {
  border-width: 4px;
}

.package-star {
  font-size: 1.2rem;
}

/* ── Promise Box (smartphone/tablet subpage) ── */
.promise-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  border-left: 4px solid var(--accent);
}

.promise-heading {
  color: var(--primary);
  font-size: 1.2rem;
}

/* ── Paket-Karte Mobile ── */
.paket-price-right {
  text-align: right;
}

/* ── Premium Services Form Select ── */
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--warm-mid);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
}

/* ── Premium Services Footer Variants ── */
.footer-desc-sm {
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-copyright-sm {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Link Accent (for inline text links) ── */
.link-accent {
  text-decoration: underline;
  font-weight: bold;
}

/* ══════════════════════════════════════════════════════════════════════════════
   B2B LANDING PAGE & PARTNER BANNER STYLES
   ══════════════════════════════════════════════════════════════════════════════ */

/* ══ B2B PROBLEM SECTION ══ */
.b2b-problem {
  padding: 80px 24px;
  background: var(--cream);
  border-top: 1px solid var(--warm-mid);
}

.b2b-problem-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.b2b-problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(14, 61, 79, 0.06);
  text-align: center;
  transition: all 0.3s;
}

.b2b-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.b2b-problem-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.b2b-problem-title {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.b2b-problem-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ══ B2B BENEFITS ══ */
.b2b-benefits {
  padding: 80px 24px;
  background: var(--warm);
  border-top: 1px solid var(--warm-mid);
}

.b2b-benefits-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.b2b-benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(14, 61, 79, 0.06);
  transition: all 0.3s;
}

.b2b-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 168, 56, 0.2);
}

.b2b-benefit-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.b2b-benefit-title {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.b2b-benefit-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ══ B2B PROCESS / STEPS ══ */
.b2b-process {
  padding: 80px 24px;
  background: var(--cream);
  border-top: 1px solid var(--warm-mid);
}

.b2b-steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Verbindungslinien: Ball-Mitte zu nächster Ball-Mitte, exakt per Step */
.b2b-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 26.5px;               /* Ball-Mitte (28px) minus halbe Linie (1.5px) */
  top: calc(50% + 28px);     /* Step-Mitte = Ball-Mitte (align-items:center), +28px = Ball-Unterrand */
  bottom: -50%;              /* 50% der Step-Höhe unter Step-Unterrand = nächster Ball-Mittelpunkt */
  width: 3px;
  border-radius: 2px;
  z-index: 0;
}

/* Step 1 → 2: Gelb dominiert fast bis Ball 2, dann weicher Übergang */
.b2b-steps .b2b-step:nth-child(1)::after {
  background: linear-gradient(to bottom, var(--accent) 0%, var(--accent) 80%, var(--primary-light) 100%);
}

/* Step 2 → 3: weicher, langsamer Übergang Teal → Dunkel-Teal */
.b2b-steps .b2b-step:nth-child(2)::after {
  background: linear-gradient(to bottom, var(--primary-light), var(--primary-dark));
}

.b2b-step {
  display: flex;
  align-items: center;       /* Titel auf Ball-Höhe ausrichten */
  gap: 24px;
  padding: 24px 0;
  position: relative;
}

/* Ball-Farben entlang des Gradienten */
.b2b-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  /* Standard (Ball 3): Dunkel-Teal */
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26, 95, 122, 0.25);
  position: relative;
  z-index: 1;
}

/* Ball 1: Gelb (Accent) – passend zum oberen Gradient-Ende */
.b2b-steps .b2b-step:nth-child(1) .b2b-step-number {
  background: linear-gradient(135deg, var(--accent), var(--accent-glow));
  color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(232, 168, 56, 0.35);
}

/* Ball 2: Gelb→Teal – visuell am Übergangs-Punkt des Gradienten */
.b2b-steps .b2b-step:nth-child(2) .b2b-step-number {
  background: linear-gradient(to bottom, var(--accent), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(46, 139, 168, 0.3);
}

.b2b-step-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid rgba(14, 61, 79, 0.06);
  flex: 1;
  transition: all 0.3s;
}

.b2b-step-content:hover {
  box-shadow: var(--shadow-sm);
}

.b2b-step-title {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.b2b-step-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ══ B2B QUOTE ══ */
.b2b-quote {
  padding: 80px 24px;
  background: var(--cream);
  border-top: 1px solid var(--warm-mid);
}

.b2b-quote-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.b2b-quote-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.b2b-quote blockquote {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.b2b-quote-author {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 500;
}

/* ══ B2B PARTNER BANNER (for index pages) ══ */
.b2b-banner {
  padding: 48px 24px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.b2b-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.12) 0%, transparent 60%);
  border-radius: 50%;
}

.b2b-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.b2b-banner-content {
  flex: 1;
}

.b2b-banner-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.b2b-banner-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.b2b-banner-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 560px;
}

.b2b-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(232, 168, 56, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.b2b-banner-cta:hover {
  background: #D49730;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 168, 56, 0.4);
  color: #fff;
}

/* ══ B2B RESPONSIVE ══ */
@media (max-width: 900px) {
  .b2b-problem-grid,
  .b2b-benefits-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .b2b-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .b2b-banner-text {
    margin: 0 auto;
  }

  .b2b-banner-title {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .b2b-quote blockquote {
    font-size: 18px;
  }

  .b2b-step {
    gap: 16px;
  }

  .b2b-step-number {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  /* Kleinere Balls (44px): left anpassen, top/bottom bleiben calc-basiert */
  .b2b-step:not(:last-child)::after {
    left: 20.5px;             /* Ball-Mitte (22px) minus halbe Linie (1.5px) */
    top: calc(50% + 22px);   /* +22px = Radius des 44px-Balls */
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   END OF CONSOLIDATED CSS
   ══════════════════════════════════════════════════════════════════════════════ */
