/* ============ Reset & Base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a1a;
  background: #fafafa;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  --black: #0d0d0d;
  --anthracite: #1f1f1f;
  --orange: #e84f1e;
  --orange-light: #ff6b3d;
  --orange-dark: #c43c10;
  --warm: #f5f0e8;
  --grey: #6b6b6b;
  --light: #f8f8f6;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --max: 1280px;
  --radius: 14px;
}

/* ============ Typography ============ */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0;
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); white-space: normal; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p { margin: 0 0 1rem; color: #333; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 14px;
}

/* ============ Layout ============ */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
section { padding: 70px 0; position: relative; }
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }

/* ============ Top bar ============ */
.topbar {
  background: var(--black);
  color: #fff;
  font-size: 0.83rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-contact { display: flex; gap: 16px; flex-wrap: wrap; }
.topbar-contact a { opacity: 0.92; transition: opacity 0.2s; }
.topbar-contact a:hover { opacity: 1; color: var(--orange); }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.topbar-social a:hover { background: rgba(255,255,255,0.15); }
.topbar-social svg { width: 13px; height: 13px; fill: #fff; }

/* ============ Navigation ============ */
.nav {
  background: var(--white);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 18px;
}
.logo { display: flex; align-items: center; gap: 0; }
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.logo-img-light { display: none; }
.footer .logo-img-dark { display: none; }
.footer .logo-img-light { display: block; }
.footer .logo-img { height: 56px; }

.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 28px;
  align-items: center;
}
.nav-menu a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--black);
  position: relative;
  padding: 8px 0;
  transition: color 0.2s;
}
.nav-menu a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--orange);
  transition: width 0.25s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--orange); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  padding: 0;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.2s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  padding: 90px 24px 30px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu li { border-bottom: 1px solid #eee; }
.mobile-menu a {
  display: block;
  padding: 18px 4px;
  font-size: 1.15rem;
  font-weight: 600;
}
.mobile-menu .nav-cta { display: inline-block; margin-top: 24px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: all 0.25s;
  border: 2px solid transparent;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(232,79,30,0.35); }
.btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-outline-dark { border-color: var(--black); color: var(--black); }
.btn-outline-dark:hover { background: var(--black); color: #fff; }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: var(--anthracite); transform: translateY(-2px); }
.btn-small { padding: 10px 20px; font-size: 0.88rem; }

/* ============ Hero ============ */
.hero {
  background: var(--black);
  color: #fff;
  overflow: hidden;
  padding: 90px 0 100px;
  position: relative;
}
.hero-bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.5) 50%, rgba(13,13,13,0.85) 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,79,30,0.35), transparent 60%);
  border-radius: 50%;
  filter: blur(20px);
  animation: float 8s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,79,30,0.18), transparent 60%);
  border-radius: 50%;
  filter: blur(30px);
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-30px, 30px); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  color: #fff;
  max-width: 920px;
  margin-bottom: 24px;
  font-weight: 800;
}
.hero h1 .accent {
  color: var(--orange);
  display: inline-block;
  position: relative;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  opacity: 0.3;
  transform: skewX(-12deg);
}
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,79,30,0.15);
  border: 1px solid rgba(232,79,30,0.4);
  color: var(--orange);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-badge .pulse {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(232,79,30,0.5); }
  50% { transform: scale(1.2); opacity: 0.8; box-shadow: 0 0 0 8px rgba(232,79,30,0); }
}
/* Sub-page hero (less dramatic) */
.hero.hero-sub { padding: 70px 0 60px; }
.hero.hero-sub h1 { font-size: clamp(1.8rem, 4.5vw, 3rem); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat strong {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  display: block;
}

/* ============ Section Helpers ============ */
.section-warm { background: var(--warm); }
.section-light { background: var(--light); }
.section-dark { background: var(--black); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: var(--orange); }
.section-dark p { color: rgba(255,255,255,0.85); }
.section-orange { background: var(--orange); color: #fff; }

/* ============ Pillars / Cards ============ */
.cards-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}
.cards-grid.cols-2 { grid-template-columns: 1fr; }
.cards-grid.cols-3 { grid-template-columns: 1fr; }
.cards-grid.cols-4 { grid-template-columns: 1fr; }
@media (min-width: 480px) {
  .cards-grid.cols-2, .cards-grid.cols-3, .cards-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--orange);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.card-icon {
  width: 56px; height: 56px;
  background: rgba(232,79,30,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--orange);
}
.card-icon svg { width: 28px; height: 28px; }
.card-num {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(232,79,30,0.1);
  line-height: 1;
  position: absolute;
  top: 18px;
  right: 22px;
}
.card h3 { margin-bottom: 12px; position: relative; z-index: 1; }
.card p { font-size: 0.95rem; color: #555; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 700;
  margin-top: 12px;
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }

.card.card-dark { background: var(--anthracite); color: #fff; border-top-color: var(--orange); }
.card.card-dark h3 { color: #fff; }
.card.card-dark p { color: rgba(255,255,255,0.8); }

.card-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

/* ============ Pricing Table ============ */
.price-group {
  margin-top: 40px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-group h3 {
  padding: 20px 28px;
  background: var(--black);
  color: #fff;
  margin: 0;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid #eee;
  gap: 14px;
}
.price-row:last-child { border-bottom: 0; }
.price-info strong {
  display: block;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}
.price-info small {
  color: var(--grey);
  font-size: 0.85rem;
}
.price-value {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--orange);
  flex-shrink: 0;
  text-align: right;
}

/* ============ Trainer ============ */
.trainer-grid {
  display: grid;
  gap: 40px;
  margin-top: 50px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .trainer-grid { grid-template-columns: repeat(2, 1fr); }
}
.trainer-card {
  background: var(--anthracite);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s, border-color 0.3s;
}
.trainer-card:hover { transform: translateY(-4px); border-color: rgba(232,79,30,0.4); }
.trainer-img {
  height: 340px;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}
.trainer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s;
}
.trainer-card:hover .trainer-img img { transform: scale(1.05); }
.trainer-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 50%);
  pointer-events: none;
}
.trainer-info { padding: 32px 28px; }
.trainer-info h3 { color: #fff; margin-bottom: 4px; }
.trainer-role {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trainer-info p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.trainer-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag {
  background: rgba(232,79,30,0.18);
  color: var(--orange);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ============ Newsletter ============ */
.newsletter { background: var(--orange); color: #fff; padding: 50px 0; position: relative; overflow: hidden; }
.newsletter::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 60%);
  border-radius: 50%;
}
.newsletter .container { display: grid; gap: 24px; align-items: center; position: relative; z-index: 1; }
.newsletter h3 { color: #fff; font-size: 1.6rem; margin-bottom: 6px; }
.newsletter p { color: rgba(255,255,255,0.92); margin: 0; font-size: 0.95rem; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: 50px;
  border: 0;
  font-size: 0.95rem;
  font-family: inherit;
}
.newsletter-form button {
  background: var(--black);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--anthracite); }
.newsletter-consent {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.9);
  margin-top: 12px;
}
.newsletter-consent a { text-decoration: underline; }

/* ============ Footer ============ */
.footer { background: #050505; color: #aaa; padding: 60px 0 24px; }
.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; }
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { color: #888; font-size: 0.9rem; max-width: 280px; }
.footer h4 { color: #fff; margin-bottom: 18px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer ul a { color: #aaa; transition: color 0.2s; }
.footer ul a:hover { color: var(--orange); }
.footer-legal {
  border-top: 1px solid #222;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: #777;
}
.footer-legal a { color: #999; }
.footer-legal a:hover { color: var(--orange); }
.footer-credit { font-size: 0.8rem; color: #777; margin-top: 6px; }
.footer-credit a { color: #aaa; }
.footer-credit a:hover { color: var(--orange); }

/* ============ Cookie Banner ============ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  padding: 24px;
  max-width: 580px;
  z-index: 1000;
  border: 1px solid #e5e5e5;
  transform: translateY(150%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h4 { font-size: 1.1rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.88rem; color: #555; margin-bottom: 16px; }
.cookie-services { margin: 14px 0; max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.cookie-services.expanded { max-height: 320px; overflow-y: auto; }
.cookie-service {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-top: 1px solid #eee;
  gap: 12px;
}
.cookie-service:last-child { border-bottom: 1px solid #eee; }
.cookie-service strong { font-size: 0.88rem; display: block; margin-bottom: 2px; }
.cookie-service small { font-size: 0.76rem; color: #777; line-height: 1.4; }
.cookie-toggle {
  position: relative;
  width: 38px; height: 22px;
  background: #ccc;
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-toggle.on { background: var(--orange); }
.cookie-toggle.on::after { transform: translateX(16px); }
.cookie-toggle.locked { background: #999; opacity: 0.6; cursor: not-allowed; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  flex: 1;
  min-width: 130px;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.2s;
}
.cookie-btn-primary { background: var(--orange); color: #fff; }
.cookie-btn-primary:hover { background: var(--orange-dark); }
.cookie-btn-secondary { background: #f0f0f0; color: var(--black); }
.cookie-btn-secondary:hover { background: #e5e5e5; }
.cookie-btn-text { background: transparent; color: #555; text-decoration: underline; padding: 12px 0; min-width: auto; flex: 0; }
.cookie-toggle-services {
  background: none;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: underline;
  padding: 0;
  margin-bottom: 8px;
}

/* ============ Legal pages ============ */
.legal {
  padding: 60px 0 80px;
}
.legal .container { max-width: 880px; }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 8px; }
.legal h2 {
  font-size: 1.4rem;
  margin: 36px 0 12px;
  padding-top: 18px;
  border-top: 1px solid #eee;
}
.legal h2:first-of-type { border-top: 0; padding-top: 0; }
.legal h3 { font-size: 1.1rem; margin: 22px 0 8px; }
.legal p { color: #444; font-size: 0.96rem; }
.legal ul, .legal ol { color: #444; font-size: 0.96rem; padding-left: 20px; }
.legal ul li, .legal ol li { margin-bottom: 6px; }
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}
.legal table th, .legal table td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid #e5e5e5;
}
.legal table th { background: var(--light); font-weight: 700; }
.legal .meta-row {
  display: grid;
  gap: 4px;
  background: var(--light);
  padding: 18px 22px;
  border-radius: 8px;
  border-left: 4px solid var(--orange);
  margin-bottom: 24px;
  font-size: 0.93rem;
}
.legal .meta-row strong { display: inline-block; min-width: 130px; color: var(--grey); font-weight: 600; }
.legal small { color: var(--grey); }

/* ============ Specialty (modules, seminars, etc.) ============ */
.module-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .module-grid { grid-template-columns: repeat(2, 1fr); }
}
.module {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.module:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.module-code {
  display: inline-block;
  background: var(--black);
  color: var(--orange);
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.module h3 { margin-bottom: 8px; }
.module-quote {
  font-style: italic;
  color: var(--orange);
  font-weight: 600;
  margin: 8px 0 14px;
}
.module ul { padding-left: 20px; }
.module ul li { font-size: 0.93rem; margin-bottom: 4px; color: #555; }

.dates-list {
  background: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin: 24px 0;
}
.dates-list h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dates-list h3 .year-pill {
  background: var(--orange);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.date-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.date-item:last-child { border-bottom: 0; }
.date-day {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--orange);
  min-width: 95px;
  flex-shrink: 0;
}
.date-title strong { display: block; }
.date-title small { color: var(--grey); font-size: 0.85rem; }
.date-item.highlight { background: var(--warm); border-radius: 8px; padding: 14px 16px; margin: 8px 0; border: 0; }

/* ============ Bot Avatar ============ */
.bot-card {
  background: linear-gradient(135deg, var(--anthracite) 0%, var(--black) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 60px 30px;
  max-width: 900px;
  margin: 40px auto 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.bot-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,79,30,0.25), transparent 70%);
  border-radius: 50%;
}
.bot-card h2 { color: #fff; position: relative; z-index: 1; }
.bot-card p { color: rgba(255,255,255,0.85); max-width: 640px; margin: 18px auto 30px; position: relative; z-index: 1; }
.bot-avatar {
  width: 110px; height: 110px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(232,79,30,0.4);
  animation: bot-pulse 3s ease-in-out infinite;
}
.bot-avatar svg { width: 56px; height: 56px; color: #fff; }
@keyframes bot-pulse {
  0%, 100% { box-shadow: 0 20px 40px rgba(232,79,30,0.4), 0 0 0 0 rgba(232,79,30,0.5); }
  50% { box-shadow: 0 20px 40px rgba(232,79,30,0.4), 0 0 0 14px rgba(232,79,30,0); }
}
.bot-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 700px;
  margin: 30px auto;
  text-align: left;
  position: relative;
  z-index: 1;
}
.bot-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.06);
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}
.bot-step strong {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

/* ============ Contact card ============ */
.contact-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
.contact-card {
  background: var(--anthracite);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.3s;
}
.contact-card:hover { border-color: rgba(232,79,30,0.4); }
.contact-card h3 { color: var(--orange); margin-bottom: 6px; font-size: 1.3rem; }
.contact-role { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-bottom: 18px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255,255,255,0.92);
  transition: color 0.2s;
}
.contact-item:hover { color: var(--orange); }
.contact-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============ Partner Tiles ============ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 50px;
  align-items: center;
}
@media (min-width: 480px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .partners-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .partners-grid { grid-template-columns: repeat(5, 1fr); } }
.partner-tile {
  background: var(--white);
  border-radius: 10px;
  padding: 24px 18px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.partner-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.partner-tile span {
  font-weight: 700;
  color: #555;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  line-height: 1.2;
}
.partner-tile:hover span { color: var(--black); }
.partner-tile.dark { background: var(--black); }
.partner-tile.dark span { color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.85rem; }

/* ============ Concept visual (dual circles) ============ */
.concept-grid {
  display: grid;
  gap: 50px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .concept-grid { grid-template-columns: 1.2fr 1fr; }
}
.concept-quote {
  border-left: 4px solid var(--orange);
  padding: 12px 0 12px 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--anthracite);
}
.concept-visual {
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
.concept-circle {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s;
}
.concept-circle:hover { transform: scale(1.04); }
.concept-circle.mental { width: 62%; height: 62%; top: 0; left: 0; background: linear-gradient(135deg, var(--black) 0%, var(--anthracite) 100%); z-index: 2; }
.concept-circle.body { width: 62%; height: 62%; bottom: 0; right: 0; background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); z-index: 1; }
.concept-circle-label {
  font-size: clamp(0.75rem, 1.4vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.7;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
.concept-circle h3 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); margin: 0; }
.concept-circle svg { width: 36px; height: 36px; margin-bottom: 8px; opacity: 0.9; }

/* ============ Responsive ============ */
@media (min-width: 480px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 768px) {
  section { padding: 90px 0; }
  .burger { display: none; }
  .nav-menu { display: flex; }
  .newsletter .container { grid-template-columns: 1fr 1.2fr; }
}

/* Print */
@media print {
  .nav, .topbar, .cookie-banner, .burger, .mobile-menu { display: none !important; }
}

/* ============ Image-Hero (sub pages) ============ */
.image-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 20px 0;
}
.image-block img {
  width: 100%;
  height: auto;
  display: block;
}
.image-block-rounded {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Workshop showcase image */
.showcase-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}
.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.showcase-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 55%);
  pointer-events: none;
}
.showcase-caption {
  position: absolute;
  bottom: 24px;
  left: 28px;
  right: 28px;
  color: #fff;
  z-index: 2;
}
.showcase-caption strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.showcase-caption span {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Test cards with character image */
.test-card-image {
  background: var(--warm);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  transition: transform 0.3s, box-shadow 0.3s;
}
.test-card-image:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.test-card-image.dark { background: var(--anthracite); color: #fff; }
.test-card-image.dark h3 { color: #fff; }
.test-card-image.dark p { color: rgba(255,255,255,0.85); }
.test-card-image-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #cce5e0 0%, #b3d4cc 100%);
}
.test-card-image.dark .test-card-image-img {
  background: linear-gradient(135deg, #4d5d8c 0%, #2a3658 100%);
}
.test-card-image-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.test-card-image-body {
  padding: 28px 26px;
}
.test-card-image-body h3 { margin-bottom: 8px; }
.test-card-image-body blockquote {
  font-style: italic;
  font-size: 0.92rem;
  border-left: 3px solid var(--orange);
  padding-left: 14px;
  margin: 14px 0;
  opacity: 0.92;
}

/* Growth chart visual */
.growth-visual {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.growth-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Brand hierarchy */
.brand-hierarchy {
  background: var(--black);
  padding: 60px 30px;
  border-radius: var(--radius);
  margin-top: 30px;
}
.brand-hierarchy img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
}

/* ============ Shop ============ */
.shop-categories {
  display: grid;
  gap: 24px;
  margin-top: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) { .shop-categories { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .shop-categories { grid-template-columns: repeat(3, 1fr); } }
.shop-cat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid var(--orange);
  position: relative;
  overflow: hidden;
}
.shop-cat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.shop-cat-icon {
  width: 64px; height: 64px;
  background: rgba(232,79,30,0.1);
  border-radius: 16px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.shop-cat-icon svg { width: 32px; height: 32px; }
.shop-cat-count {
  position: absolute;
  top: 18px; right: 22px;
  background: var(--black);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
}
.shop-cat h3 { margin-bottom: 10px; }
.shop-cat p { color: #555; font-size: 0.93rem; }

.shop-products {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) { .shop-products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .shop-products { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .shop-products { grid-template-columns: repeat(4, 1fr); } }
.product {
  background: var(--white);
  border-radius: 10px;
  padding: 18px 18px 16px;
  border: 1px solid #eee;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.product:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--orange); }
.product-badge {
  display: inline-block;
  background: var(--red, #B83232);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  align-self: flex-start;
}
.product h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  flex: 1;
  color: var(--black);
}
.product-price {
  font-weight: 800;
  color: var(--orange);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.product-price-old {
  color: var(--grey);
  text-decoration: line-through;
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: 6px;
}
.product-vat { font-size: 0.75rem; color: var(--grey); margin-bottom: 14px; }
.product-btn {
  background: var(--black);
  color: #fff;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s;
  display: inline-block;
  align-self: flex-start;
}
.product-btn:hover { background: var(--orange); }

.shipping-banner {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
}
.shipping-banner span { color: var(--orange); }

/* ============ Video Embeds (DSGVO Click-to-Load) ============ */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-md);
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 30px;
  z-index: 2;
}
.video-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}
.video-placeholder > * { position: relative; z-index: 1; }
.video-play-btn {
  width: 88px; height: 88px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 12px 32px rgba(232,79,30,0.4);
  transition: transform 0.2s, background 0.2s;
}
.video-placeholder:hover .video-play-btn { transform: scale(1.08); background: var(--orange-light); }
.video-play-btn svg { width: 36px; height: 36px; fill: #fff; margin-left: 4px; }
.video-placeholder strong { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; max-width: 480px; }
.video-placeholder small { font-size: 0.82rem; opacity: 0.85; }
.video-consent {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  font-size: 0.72rem;
  opacity: 0.85;
  text-align: center;
  z-index: 1;
}
.video-consent a { color: var(--orange); text-decoration: underline; }
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ Breadcrumb ============ */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--orange); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ============ Hero Logo (large, prominent) ============ */
.hero-logo {
  display: block;
  width: clamp(280px, 45vw, 540px);
  height: auto;
  margin: 0 auto 40px;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.3));
}
.hero-logo-wrap {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .hero { padding: 60px 0 100px; }
}
