/* ==========================================================================
   Win3 Academy - Premium Visual Effects
   Additive layer on top of core.css, components.css, layout.css, effects.css
   ========================================================================== */

/* --- Premium Design Tokens --- */
:root {
  --premium-glow-gold: var(--gold-35);
  --premium-glow-orange: rgba(217, 105, 53, 0.3);
  --premium-gradient: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  --premium-gradient-text: linear-gradient(135deg, var(--accent-gold-light), var(--accent-orange), var(--accent-gold));
  --premium-section-py: clamp(80px, 10vw, 120px);
  --premium-grid-gap: 32px;
  --premium-noise-opacity: 0.025;
}

/* ==========================================================================
   1. Animated Hero Background Mesh
   ========================================================================== */
.hero-premium {
  position: relative;
  overflow: visible;
}

.hero-mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -120px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  background:
    radial-gradient(ellipse 600px 600px at 20% 30%, var(--gold-10) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 75% 60%, rgba(217, 105, 53, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 50% 80%, var(--gold-10) 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  animation: meshMove 20s ease-in-out infinite alternate;
}

.hero-mesh::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 450px 450px at 80% 20%, var(--gold-10) 0%, transparent 70%),
    radial-gradient(ellipse 350px 350px at 30% 70%, rgba(217, 105, 53, 0.08) 0%, transparent 70%);
  animation: meshMoveSec 25s ease-in-out infinite alternate-reverse;
}

@keyframes meshMove {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.97); }
  100% { transform: translate(10px, -10px) scale(1.02); }
}

@keyframes meshMoveSec {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-25px, 20px) rotate(1deg); }
  100% { transform: translate(15px, -15px) rotate(-0.5deg); }
}

/* ==========================================================================
   1b. Hero Split Layout (Text left, Image right)
   ========================================================================== */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text {
  text-align: left;
}

/* Hero Checklist */
.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-2xl) 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.5;
}

.hero-checklist li svg {
  flex-shrink: 0;
  color: var(--accent-gold);
  margin-top: 3px;
}

.hero-image {
  position: relative;
  max-width: 460px;
  justify-self: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Light mode logo lockup adjustments */
[data-theme="light"] .hero-logo-icon g { stroke: #2D2726; stroke-width: 2.0; }
[data-theme="light"] .hero-logo-icon .hero-logo-dot { fill: #BC8034; }
[data-theme="light"] .hero-logo .font-logo { color: #2D2726 !important; }

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-split {
    gap: 32px;
  }
  .hero-image {
    max-width: 340px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-text {
    text-align: center;
    order: 1;
  }
  .hero-text .d-flex {
    justify-content: center;
  }
  .hero-logo {
    justify-content: center;
  }
  .hero-image {
    order: 0;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   2. Premium Section Spacing
   ========================================================================== */
.section-premium {
  padding-top: var(--premium-section-py);
  padding-bottom: var(--premium-section-py);
}

.section-alt {
  background: linear-gradient(180deg,
    rgba(45, 39, 38, 0.3) 0%,
    rgba(45, 39, 38, 0.15) 50%,
    rgba(45, 39, 38, 0.3) 100%
  );
}

/* ==========================================================================
   3. Gradient Border Cards
   ========================================================================== */
.card-premium {
  position: relative;
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: var(--space-xl);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.card-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    var(--gold-20),
    rgba(217, 105, 53, 0.1),
    var(--gold-20)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background var(--transition-slow), opacity var(--transition-slow);
}

.card-premium:hover::before {
  background: linear-gradient(135deg,
    var(--accent-gold),
    var(--accent-orange),
    var(--accent-gold-light)
  );
  opacity: 0.8;
}

.card-premium:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 4px 16px var(--gold-10),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   4. Premium Buttons
   ========================================================================== */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-slow);
}

.btn-primary:hover {
  background: #c05a1e;
  color: #fff;
  box-shadow:
    0 4px 20px rgba(217, 105, 53, 0.35),
    0 0 40px var(--gold-15);
  transform: translateY(-1px);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: none;
  pointer-events: none;
}

.btn-primary:hover::before {
  animation: btnShimmer 0.8s ease forwards;
}

@keyframes btnShimmer {
  0% { left: -100%; }
  100% { left: 150%; }
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   5. Counter Section
   ========================================================================== */
.counter-section {
  display: flex;
  justify-content: center;
  gap: var(--premium-grid-gap);
  flex-wrap: wrap;
  padding: var(--space-2xl) 0;
}

.counter-item {
  text-align: center;
  min-width: 140px;
}

.counter-value {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  background: var(--premium-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

.counter-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ==========================================================================
   6. Noise Texture Overlay
   ========================================================================== */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999989;
  pointer-events: none;
  opacity: var(--premium-noise-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ==========================================================================
   6b. Mission Section
   ========================================================================== */
.mission-section {
  background: linear-gradient(180deg,
    var(--bg-page) 0%,
    var(--bg-primary) 15%,
    var(--bg-primary) 85%,
    var(--bg-page) 100%
  );
  padding: 60px 0;
}
.mission-inner {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.mission-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 14px;
  font-weight: 500;
}
.mission-statement {
  font-size: clamp(1.3rem, 3.2vw, 1.9rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}
.mission-statement .gradient-text {
  font-weight: 700;
}
.mission-closer {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 12px 0 0;
  letter-spacing: 0.5px;
}
.mission-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-35), transparent);
  margin: 20px auto 0;
}
.mission-signature {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin: 14px 0 0;
  letter-spacing: 0.5px;
}

/* Light mode */
[data-theme="light"] .mission-section {
  background: linear-gradient(180deg,
    var(--bg-page) 0%,
    var(--bg-secondary) 15%,
    var(--bg-secondary) 85%,
    var(--bg-page) 100%
  );
}

/* ==========================================================================
   7. Section Dividers
   ========================================================================== */
.section-divider-glow {
  position: relative;
  height: 1px;
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-gold),
    var(--accent-orange),
    var(--accent-gold),
    transparent
  );
  opacity: 0.4;
}

.section-divider-glow::after {
  content: '';
  position: absolute;
  inset: -2px 0;
  background: inherit;
  filter: blur(6px);
  opacity: 0.6;
}

.section-divider-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: dividerShimmer 4s ease-in-out infinite;
}

@keyframes dividerShimmer {
  0% { left: -40%; }
  100% { left: 140%; }
}

/* ==========================================================================
   8. Premium Testimonial Cards
   ========================================================================== */
.testimonial-premium {
  position: relative;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.testimonial-premium::before {
  content: '\201C';
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-gold);
  opacity: 0.15;
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
    var(--premium-gradient) border-box;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--accent-gold);
  font-size: 0.9rem;
}

/* ==========================================================================
   9. Floating Decorations
   ========================================================================== */
.float-decoration {
  position: absolute;
  pointer-events: none;
  opacity: 0.04;
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-md);
}

.float-decoration--circle {
  border-radius: var(--radius-full);
}

.float-decoration--1 {
  width: 80px;
  height: 80px;
  animation: floatA 12s ease-in-out infinite;
}

.float-decoration--2 {
  width: 120px;
  height: 120px;
  animation: floatB 16s ease-in-out infinite;
}

.float-decoration--3 {
  width: 60px;
  height: 60px;
  animation: floatC 14s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -20px) rotate(5deg); }
  50% { transform: translate(-10px, -35px) rotate(-3deg); }
  75% { transform: translate(20px, -15px) rotate(7deg); }
}

@keyframes floatB {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-20px, 15px) rotate(-4deg); }
  66% { transform: translate(10px, -25px) rotate(3deg); }
}

@keyframes floatC {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(25px, 20px) rotate(-6deg); }
}

/* ==========================================================================
   10. Text Entrance Animations
   ========================================================================== */
.text-reveal {
  overflow: hidden;
  display: inline-block;
}

.text-reveal > * {
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.text-reveal.is-visible > * {
  transform: translateY(0);
  opacity: 1;
}

.text-highlight {
  position: relative;
  display: inline;
}

.text-highlight::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 0;
  height: 35%;
  background: linear-gradient(90deg, var(--gold-20), rgba(217, 105, 53, 0.15));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.text-highlight.is-visible::after {
  transform: scaleX(1);
}

/* ==========================================================================
   11. Premium Footer
   ========================================================================== */
.footer-premium {
  position: relative;
  padding: var(--space-3xl) 0 var(--space-xl);
  background: var(--bg-primary);
}

.footer-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--premium-grid-gap);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.footer-social-link:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 0 16px var(--gold-20);
}

/* ==========================================================================
   12. Stats Bar
   ========================================================================== */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  padding: var(--space-xl) var(--space-lg);
  background: var(--glass-bg);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}

.stats-bar__item {
  text-align: center;
  min-width: 100px;
}

.stats-bar__number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  line-height: 1.2;
}

.stats-bar__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

.count-up {
  transition: none;
}

/* ==========================================================================
   13. Logo Upgrade
   ========================================================================== */
.logo-premium {
  position: relative;
  transition: filter var(--transition-slow);
}

.logo-premium::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, var(--gold-15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
  z-index: -1;
}

.logo-premium:hover::after {
  opacity: 1;
}

/* ==========================================================================
   15. Scroll Progress Indicator
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--premium-gradient);
  z-index: calc(var(--z-tooltip) + 100);
  transform-origin: left;
  transform: scaleX(var(--scroll, 0));
  pointer-events: none;
  width: 100%;
}

.scroll-progress::after {
  content: '';
  position: absolute;
  right: 0;
  top: -1px;
  width: 80px;
  height: 4px;
  background: radial-gradient(ellipse, var(--accent-gold-light) 0%, transparent 70%);
  filter: blur(2px);
}

/* ==========================================================================
   16. Image Treatment
   ========================================================================== */
.image-premium {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.image-hover-zoom {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-hover-zoom img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-hover-zoom:hover img {
  transform: scale(1.04);
}

/* ==========================================================================
   17. Premium Grid Gaps
   ========================================================================== */
.grid-premium {
  gap: var(--premium-grid-gap);
}

/* ==========================================================================
   Utility: Gradient Text
   ========================================================================== */
.text-gradient {
  background: var(--premium-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Utility: Staggered Animation Delays
   ========================================================================== */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

/* ==========================================================================
   Win³ Framework Section (Venn + Timeline) — ported from stevensolbach.de
   ========================================================================== */

/* Content Grid */
.w3s-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 60px;
  align-items: center;
}

/* ======== VENN DIAGRAM ======== */
.win3-container {
  width: 100%;
}

.win3-section {
  width: 100%;
  background: transparent;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.win3-animation-container {
  position: relative;
  width: 100%;
  max-width: 820px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.win3-circles-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}

.win3-circle {
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 1.5;
}

.win3-label-group {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.win3-label-group.visible {
  opacity: 1;
}

.win3-label-icon {
  font-size: 26px;
  fill: var(--accent-gold);
}

.win3-label-title {
  font-size: 17px;
  font-weight: 600;
  fill: var(--text-primary);
}

.win3-label-desc {
  font-size: 11.5px;
  font-weight: 400;
  fill: var(--text-secondary);
}

.win3-center-symbol {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.win3-center-symbol.visible {
  opacity: 1;
}

/* Center dot: white on dark, dark on light */
.win3-center-dot {
  fill: #FFFFFF;
}
[data-theme="light"] .win3-center-dot {
  fill: #2D2726;
}

.gold-gradient-stop1 { stop-color: #D4A04A; }
.gold-gradient-stop2 { stop-color: var(--accent-gold); }
.gold-gradient-stop3 { stop-color: #8B5E20; }

/* ======== TIMELINE ======== */
#win3-timeline-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.win3-timeline-container {
  position: relative;
  padding-left: 100px;
}

.win3-timeline-line-base,
.win3-timeline-line-progress {
  position: absolute;
  width: 2px;
  border-radius: 1px;
}

.win3-timeline-line-base {
  background: var(--gold-35);
}

.win3-timeline-line-progress {
  background: var(--accent-gold);
  transform-origin: top;
}

.win3-step {
  position: relative;
  margin-bottom: 50px;
  transition: all 0.3s ease;
}

.win3-step:last-child {
  margin-bottom: 0;
}

.win3-step-icon {
  position: absolute;
  left: -80px;
  top: 0;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent-gold);
  z-index: 2;
  transition: all 0.4s ease;
}

.win3-step.active .win3-step-icon {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #2D2726;
  transform: scale(1.05);
}
[data-theme="light"] .win3-step.active .win3-step-icon {
  background: #2D2726;
  border-color: #2D2726;
  color: #FFFFFF;
}

.win3-step-4 .win3-step-icon {
  background: transparent;
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  top: 50%;
  transform: translateY(-50%);
}

.win3-step-icon-svg svg {
  display: block;
}

.win3-step-4.active .win3-step-icon {
  background: transparent !important;
  border: none !important;
  transform: translateY(-50%) scale(1.05);
}

.win3-step-number {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.win3-step.active .win3-step-number {
  opacity: 1;
}

.win3-step-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
  line-height: 1.3;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.win3-step.active .win3-step-title {
  opacity: 1;
}

.win3-step-description {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.45;
  color: var(--text-primary);
  transition: opacity 0.3s ease;
}

.win3-step.active .win3-step-description {
  opacity: 0.85;
}

.win3-step-4 .win3-step-title {
  margin-bottom: 0;
}

/* ======== FRAMEWORK RESPONSIVE ======== */
@media (max-width: 1024px) {
  .w3s-header {
    padding: 0 30px 30px;
  }
  .w3s-grid {
    gap: 20px;
    padding: 0 30px 50px;
  }
  .win3-timeline-container {
    padding-left: 70px;
  }
  .win3-step-icon {
    left: -57px;
  }
}

@media (max-width: 768px) {
  .w3s-header {
    padding: 0 12px 24px;
  }
  .w3s-label {
    font-size: 14px;
  }
  .w3s-subtitle {
    font-size: 22px;
  }
  .w3s-grid {
    grid-template-columns: 1fr;
    padding: 0 12px 40px;
  }
  .win3-section {
    padding: 0;
  }
  .win3-animation-container {
    max-width: 500px;
  }
  #win3-timeline-wrapper {
    padding: 20px 0;
  }
  .win3-timeline-container {
    padding-left: 60px;
  }
  .win3-step {
    margin-bottom: 70px;
  }
  .win3-step-icon {
    left: -52px;
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  .win3-step-4 .win3-step-icon {
    width: auto;
    height: auto;
  }
  .win3-step-icon-svg svg {
    width: 65px;
    height: 65px;
  }
  .win3-step-title {
    font-size: 22px;
  }
  .win3-step-description {
    font-size: 14px;
  }
}

/* ==========================================================================
   Storytelling Flow (ported 1:1 from stevensolbach.de)
   ========================================================================== */

.story-section {
  position: relative;
}

/* Section Header */
.story-header {
  text-align: center;
  padding: 80px 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.story-header-label {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 10px;
  line-height: 24px;
}

.story-header-title {
  font-size: 54px;
  font-weight: 600;
  line-height: 60px;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.story-header-title em {
  font-style: normal;
  color: var(--accent-gold);
}

.story-header-subtitle {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  font-weight: 400;
  color: var(--accent-gold);
  margin: 0;
}

.story-header-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Story Flow Container */
.story-flow {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  position: relative;
}

/* Central Gold Line */
.story-flow-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--gold-25) 40px,
    rgba(188, 128, 52, 0.5) 10%,
    rgba(188, 128, 52, 0.5) 90%,
    var(--gold-25) calc(100% - 40px),
    transparent 100%
  );
  transform: translateX(-50%);
  pointer-events: none;
}

/* Flowing light pulse on line */
.story-flow-line::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 6px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--accent-gold), transparent);
  transform: translateX(-50%);
  animation: storyFlowPulse 4s ease-in-out infinite;
  border-radius: 3px;
}

@keyframes storyFlowPulse {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: calc(100% - 60px); opacity: 0; }
}

/* Story Items Container */
.story-flow-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 2;
}

/* ======== ALTERNATING ITEMS (left/right) ======== */
.story-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  min-height: 120px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.story-item.visible {
  opacity: 1;
}

/* Content Boxes */
.story-content {
  padding: 30px 20px;
}

.story-item.left .story-content {
  grid-column: 1;
  text-align: right;
  padding-right: 30px;
  transform: translateX(-30px);
  transition: transform 0.6s ease;
}

.story-item.right .story-content {
  grid-column: 3;
  text-align: left;
  padding-left: 30px;
  transform: translateX(30px);
  transition: transform 0.6s ease;
}

.story-item.visible .story-content {
  transform: translateX(0);
}

/* Spacer for the opposite side */
.story-spacer {
  display: block;
}

.story-item.left .story-spacer {
  grid-column: 3;
}

.story-item.right .story-spacer {
  grid-column: 1;
}

/* Node - dot on the line */
.story-node {
  grid-column: 2;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.story-node-dot {
  width: 14px;
  height: 14px;
  background: var(--accent-gold);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-item.visible .story-node-dot {
  box-shadow: 0 0 25px rgba(188, 128, 52, 0.6);
}

/* Ripple effect */
.story-node::before {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-25);
  border-radius: 50%;
  animation: storyNodeRipple 2.5s ease-out infinite;
}

.story-item:nth-child(2n) .story-node::before {
  animation-delay: 0.5s;
}

.story-item:nth-child(3n) .story-node::before {
  animation-delay: 1s;
}

@keyframes storyNodeRipple {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ======== TYPOGRAPHY ======== */
.story-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-top: 20px;
  margin-bottom: 30px;
  line-height: 1.3;
}

.story-text {
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--text-primary);
  opacity: 0.9;
  margin: 0;
}

.story-text em {
  font-style: normal;
  color: var(--accent-gold);
  font-weight: 400;
}

.story-subtext {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--accent-gold);
  margin-top: 12px;
  display: block;
}

/* ======== CENTERED BLOCKS (Synthese + Einladung) ======== */
.story-item.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

.story-item.center .story-content {
  text-align: center;
  padding: 0;
  transform: translateY(30px);
  transition: transform 0.6s ease;
  width: 100%;
}

.story-item.center.visible .story-content {
  transform: translateY(0);
}

/* Synthese node (larger) */
.story-item.center .story-node {
  width: auto;
  height: auto;
  margin-bottom: 5px;
}

.story-item.center.story-synthese .story-node-dot {
  width: 20px;
  height: 20px;
}

.story-item.center.story-synthese .story-node::before {
  width: 48px;
  height: 48px;
}

.story-item.center.story-synthese .story-node {
  margin-bottom: 35px;
}

/* Synthese title */
.story-item.center.story-synthese .story-title {
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 30px;
}

/* ======== SYNTHESE TRIANGLE (SVG) ======== */
.story-tri-svg {
  width: 100%;
  max-width: 660px;
  height: auto;
  display: block;
  margin: 0 auto;
  overflow: visible;
}

/* Triangle label text — theme-aware */
.story-tri-label {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 600;
  fill: var(--text-primary);
}

/* Ripple animation on triangle nodes */
@keyframes storyTriRipple {
  0% { r: 12; opacity: 0.6; }
  100% { r: 28; opacity: 0; }
}

.story-tri-ripple {
  fill: none;
  stroke: var(--gold-25);
  stroke-width: 1;
  animation: storyTriRipple 4s ease-out infinite;
}

.story-tri-ripple-2 { animation-delay: 0.5s; }
.story-tri-ripple-3 { animation-delay: 1.0s; }

/* Flowing light dots along triangle path */
@keyframes storyTriFlow {
  0%   { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

.story-tri-dot {
  offset-path: path('M90,410 L470,410 L280,80 Z');
  offset-rotate: 0deg;
  opacity: 0.9;
  animation: storyTriFlow 12s linear infinite;
}

.story-tri-dot-2 { animation-delay: 4s; }
.story-tri-dot-3 { animation-delay: 8s; }

.story-item.center.story-synthese .story-subtext {
  color: var(--accent-gold);
  font-size: 28px;
  margin-top: 18px;
}

/* Closing block (plain, no box) */
.story-item.center.story-closing .story-content {
  padding: 30px 20px;
}

.story-item.center.story-closing .story-text {
  font-size: 20px;
  font-weight: 300;
}

.story-item.center.story-closing .story-subtext {
  font-size: 30px;
  margin-top: 15px;
}

/* ======== BRIDGE TEXT (unified) ======== */
.section-bridge,
.story-bridge,
.testi-bridge,
.dw-bridge {
  padding: 60px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.section-bridge .bridge-caveat,
.story-bridge .bridge-caveat,
.testi-bridge .bridge-caveat,
.dw-bridge .bridge-caveat {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--accent-gold);
  margin: 0 0 8px;
  display: block;
}

.section-bridge .bridge-body,
.story-bridge .bridge-body,
.testi-bridge .bridge-body,
.dw-bridge .bridge-body {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.section-bridge-fade,
.story-bridge-fade,
.testi-bridge-fade,
.dw-bridge-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-bridge-fade.visible,
.story-bridge-fade.visible,
.testi-bridge-fade.visible,
.dw-bridge-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======== STORYTELLING TABLET ======== */
@media (min-width: 769px) and (max-width: 1024px) {
  .story-header {
    padding: 60px 30px 16px;
  }
  .story-header-title {
    font-size: 44px;
    line-height: 50px;
  }
  .story-header-subtitle {
    font-size: 24px;
  }
  .story-item:not(.center) {
    grid-template-columns: 1fr 60px 1fr;
  }
  .story-node {
    width: 60px;
    height: 60px;
  }
  .story-content {
    padding: 20px 15px;
  }
  .story-item.left .story-content {
    padding-right: 20px;
  }
  .story-item.right .story-content {
    padding-left: 20px;
  }
  .story-text {
    font-size: 17px;
  }
  .story-item.center {
    max-width: 100%;
  }
  .story-tri-svg {
    max-width: 440px;
  }
}

/* ======== STORYTELLING MOBILE ======== */
@media (max-width: 768px) {
  .story-header {
    padding: 50px 12px 16px;
  }
  .story-header-label {
    font-size: 14px;
  }
  .story-header-title {
    font-size: 36px;
    line-height: 42px;
  }
  .story-header-subtitle {
    font-size: 22px;
  }
  .story-flow {
    padding: 30px 12px;
  }
  .story-item:not(.center) {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto;
    gap: 0 12px;
    min-height: auto;
    padding: 20px 0;
  }
  .story-node {
    grid-column: 1;
    grid-row: 1;
    width: 50px;
    height: 50px;
    align-self: start;
    margin-top: 5px;
  }
  .story-node-dot {
    width: 12px;
    height: 12px;
  }
  .story-node::before {
    width: 28px;
    height: 28px;
  }
  .story-item.left .story-content,
  .story-item.right .story-content {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding: 0;
    transform: translateX(20px);
  }
  .story-item.visible .story-content {
    transform: translateX(0);
  }
  .story-spacer {
    display: none;
  }
  .story-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .story-text {
    font-size: 16px;
    line-height: 1.65;
  }
  .story-subtext {
    font-size: 22px;
    margin-top: 10px;
  }
  /* Center blocks on mobile */
  .story-item.center {
    max-width: 100%;
    padding: 20px 0;
  }
  .story-item.center .story-node {
    display: none;
  }
  .story-item.center.story-synthese .story-title {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .story-tri-svg {
    max-width: 300px;
  }
  .story-item.center.story-synthese .story-subtext {
    font-size: 24px;
  }
  .story-item.center.story-closing .story-text {
    font-size: 17px;
  }
  .story-item.center.story-closing .story-subtext {
    font-size: 26px;
  }
  .story-bridge {
    padding: 40px 12px;
  }
  .story-bridge .bridge-caveat {
    font-size: 24px;
  }
  .story-bridge .bridge-body {
    font-size: 17px;
  }
}

/* ==========================================================================
   Testimonials (ported 1:1 from stevensolbach.de)
   ========================================================================== */

.testimonial-section {
  width: 100%;
}

.testimonial-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-grid {
  column-count: 3;
  column-gap: 20px;
  width: 100%;
}

/* Title Card */
.testi-title-card {
  background: transparent;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  opacity: 0;
  transform: translateY(30px);
  break-inside: avoid;
  margin-bottom: 20px;
}

.testi-title-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.testi-section-label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.testi-section-title {
  font-size: 54px;
  line-height: 60px;
  color: var(--text-primary);
}

.testi-section-title .light {
  font-weight: 400;
  display: block;
}

.testi-section-title .bold {
  font-weight: 600;
  display: block;
}

/* Animated Arrow */
.testi-title-arrow {
  display: flex;
  align-items: center;
  margin-top: 20px;
  color: var(--accent-gold);
}

.testi-title-arrow svg {
  width: 40px;
  height: 40px;
  animation: testiArrowBounce 1.5s ease-in-out infinite;
}

@keyframes testiArrowBounce {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(10px); opacity: 1; }
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  break-inside: avoid;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-card.visible:hover {
  transform: translateY(-5px);
}

/* Highlighted Card */
.testimonial-card.highlighted {
  background: var(--bg-page, #F4F0EC);
  padding: 35px;
  margin-left: -5px;
  margin-right: -5px;
  position: relative;
  z-index: 1;
}

/* Dark mode: highlighted = cream/light bg */
.testimonial-card.highlighted {
  background: #F4F0EC;
  color: #2C2726;
}

.testimonial-card.highlighted .testimonial-role {
  color: #2C2726;
  opacity: 0.7;
}

.testimonial-card.highlighted .testimonial-quote {
  color: #2C2726;
  opacity: 0.9;
}

.testimonial-card.highlighted .star {
  color: var(--accent-gold);
}

/* Light mode: highlighted stays cream, regular cards get white bg */
[data-theme="light"] .testimonial-card {
  background: #FFFFFF;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .testimonial-card.highlighted {
  background: #F4F0EC;
  color: #2C2726;
  border: 1.5px solid var(--accent-gold);
  box-shadow: 0 4px 20px rgba(188, 128, 52, 0.12);
}

[data-theme="light"] .testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Author */
.testimonial-author {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 150px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--bg-primary);
  flex-shrink: 0;
}

.testimonial-card.highlighted .testimonial-avatar {
  background: #2C2726;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 5px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 16px;
}

.testimonial-role {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.6;
}

/* Stars */
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-top: 8px;
}

.star {
  color: var(--accent-gold);
  width: 18px;
  height: 18px;
}

/* Quote */
.testimonial-quote {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  opacity: 0.85;
}

/* Mobile Swipe Indicator */
.swipe-indicator {
  display: none;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  color: var(--text-primary);
  opacity: 0.6;
  font-size: 14px;
  width: 100%;
}

.swipe-indicator-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.swipe-arrow {
  font-size: 18px;
  width: 24px;
  text-align: center;
  display: inline-block;
}

.swipe-text {
  padding: 0 4px;
}

.swipe-arrow.left {
  animation: swipeOutLeft 1.5s ease-in-out infinite;
}

.swipe-arrow.right {
  animation: swipeOutRight 1.5s ease-in-out infinite;
}

@keyframes swipeOutLeft {
  0%, 100% { transform: translateX(0); opacity: 0.4; }
  50% { transform: translateX(-8px); opacity: 1; }
}

@keyframes swipeOutRight {
  0%, 100% { transform: translateX(0); opacity: 0.4; }
  50% { transform: translateX(8px); opacity: 1; }
}

.swipe-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.swipe-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-secondary);
  transition: background 0.3s ease, transform 0.3s ease;
}

.swipe-dot.active {
  background: var(--accent-gold);
  transform: scale(1.2);
}

/* Bridge Text — now unified in section 7 (story-bridge block) */

/* Tablet */
@media (max-width: 1024px) {
  .testimonial-grid {
    column-count: 2;
  }
  .testi-section-title {
    font-size: 44px;
    line-height: 50px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-container {
    padding: 0 12px;
  }

  .testimonial-grid {
    column-count: unset;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding-bottom: 30px;
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .testi-title-card {
    flex: 0 0 300px;
    scroll-snap-align: center;
    opacity: 1;
    transform: none;
    margin-bottom: 0;
    order: 0;
  }

  .testimonial-card {
    flex: 0 0 300px;
    scroll-snap-align: center;
    opacity: 1;
    transform: none;
    margin-bottom: 0;
  }

  .testimonial-card.highlighted {
    flex: 0 0 310px;
    margin: 0;
    padding: 30px;
  }

  .testi-section-title {
    font-size: 40px;
    line-height: 46px;
  }

  .testimonial-avatar {
    width: 100px;
    height: 100px;
  }

  .swipe-indicator {
    display: flex;
  }

  .swipe-dots {
    display: flex;
  }

  .testi-bridge {
    padding: 40px 12px;
  }

  .testi-bridge .bridge-caveat {
    font-size: 24px;
  }

  .testi-bridge .bridge-body {
    font-size: 17px;
  }
}

/* ==========================================================================
   Die Drei Wege Section (Original Pricing)
   ========================================================================== */

/* Win³ Logo-Text (inline) */
.w3-logo {
  font-family: 'PacificaCondensed', fantasy;
  font-weight: normal;
  font-size: 0.85em;
  letter-spacing: 2px;
  white-space: nowrap;
  color: var(--text-primary);
}

.w3-logo-sup {
  color: var(--accent-gold);
  font-size: 0.7em;
  margin-left: 1px;
  vertical-align: super;
}

/* Section */
.dw-section {
  color: var(--text-primary);
  padding: 60px 0;
  width: 100%;
  position: relative;
  z-index: 5;
}

.dw-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Header */
.dw-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
}

.dw-header.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.dw-label {
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.dw-title {
  font-size: 54px;
  line-height: 60px;
}

.dw-title .light { font-weight: 400; }
.dw-title .bold { font-weight: 600; }

.dw-subtitle {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--accent-gold);
  margin-top: 12px;
}

/* Grid */
.dw-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 50px;
}

/* Card Base */
.dw-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.dw-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.dw-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.dw-card.visible:hover {
  transform: translateY(-5px);
}

/* Highlighted Card */
.dw-card.dw-highlighted {
  background: #F4F0EC;
  color: #2C2726;
  padding: 40px 35px;
  border-top: 3px solid var(--accent-gold);
}

.dw-card.dw-highlighted .dw-card-subtitle,
.dw-card.dw-highlighted .dw-price-note,
.dw-card.dw-highlighted .dw-feature-text {
  color: #2C2726;
}

.dw-card.dw-highlighted .dw-feature-text.excluded {
  color: #2C2726;
  opacity: 0.35;
}

/* Badge */
.dw-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  align-self: flex-start;
  animation: dwBadgePulse 2s ease-in-out infinite;
}

.dw-badge-gold {
  background: var(--accent-gold);
  color: #2C2726;
}

.dw-badge-dark {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.dw-badge-white {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.dw-badge-gold-text {
  background: transparent;
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
}

@keyframes dwBadgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Card Logo */
.dw-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 20px;
}

.dw-card-logo.dw-logo-left {
  justify-content: flex-start;
}

.dw-logo-text {
  font-family: 'PacificaCondensed', fantasy;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--text-primary);
  white-space: nowrap;
}

.dw-card.dw-highlighted .dw-logo-text {
  color: #2C2726;
}

.dw-logo-sup {
  color: var(--accent-gold);
  font-size: 1.15em;
  margin-left: 2px;
}

/* Card Text Label (Starter) */
.dw-card-label {
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 0 0 20px;
}

.dw-card-label .dw-label-circle {
  width: 150px;
  height: 150px;
}

.dw-card-label .dw-label-text {
  font-family: 'PacificaCondensed', fantasy;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Card Content */
.dw-card-subtitle {
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.dw-card-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.dw-price {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.2;
}

.dw-price-note {
  font-size: 13px;
  font-weight: 300;
  opacity: 0.6;
  margin-bottom: 25px;
  color: var(--text-secondary);
}

/* Divider */
.dw-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 25px;
}

.dw-card.dw-highlighted .dw-divider {
  background: rgba(45, 39, 38, 0.12);
}

/* Features */
.dw-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.dw-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.dw-feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.dw-feature-icon.included { color: var(--accent-gold); }

.dw-feature-icon.excluded {
  color: var(--text-primary);
  opacity: 0.5;
}

.dw-card.dw-highlighted .dw-feature-icon.excluded {
  color: #2C2726;
  opacity: 0.5;
}

.dw-feature-text {
  color: var(--text-primary);
}

.dw-feature-text.excluded {
  opacity: 0.5;
  text-decoration: line-through;
}

/* CTA Buttons */
.dw-cta {
  display: flex;
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: auto;
  min-height: 48px;
  line-height: 1;
  align-items: center;
  justify-content: center;
}

.dw-cta:hover {
  transform: translateY(-2px);
}

.dw-cta-primary {
  background: var(--cta-orange, #D96935);
  color: #FFFFFF;
  border: none;
}

.dw-cta-primary:hover {
  box-shadow: 0 10px 30px rgba(217, 105, 53, 0.3);
}

.dw-cta-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.dw-cta-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dw-cta-subtle {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: none;
}

.dw-cta-subtle:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dw-card.dw-highlighted .dw-cta-ghost {
  color: #2C2726;
  border-color: rgba(45, 39, 38, 0.3);
}

.dw-card.dw-highlighted .dw-cta-ghost:hover {
  border-color: rgba(45, 39, 38, 0.6);
}

/* Bridge Text — now unified in section 7 (story-bridge block) */

/* Light Mode */
[data-theme="light"] .dw-card {
  background: #FFFFFF;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .dw-card.dw-highlighted {
  background: #F4F0EC;
  border: 1.5px solid var(--accent-gold);
  border-top: 3px solid var(--accent-gold);
  box-shadow: 0 4px 20px rgba(188, 128, 52, 0.12);
}

[data-theme="light"] .dw-divider {
  background: rgba(45, 39, 38, 0.1);
}

[data-theme="light"] .dw-badge-white {
  border-color: rgba(45, 39, 38, 0.25);
}

[data-theme="light"] .dw-badge-dark {
  background: #2C2726;
  color: #FFFFFF;
}

[data-theme="light"] .dw-cta-ghost {
  border-color: rgba(45, 39, 38, 0.25);
  color: var(--text-primary);
}

[data-theme="light"] .dw-cta-ghost:hover {
  border-color: rgba(45, 39, 38, 0.5);
}

[data-theme="light"] .dw-cta-subtle {
  background: rgba(45, 39, 38, 0.06);
}

[data-theme="light"] .dw-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Tablet */
@media (max-width: 1024px) {
  .dw-title {
    font-size: 44px;
    line-height: 50px;
  }

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

  .dw-card[data-plan="kurs"] { order: 1; }
  .dw-card[data-plan="mentoring"] { order: 2; }
  .dw-card[data-plan="starter"] { order: 3; grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 768px) {
  .dw-section {
    padding: 60px 0;
  }

  .dw-container {
    padding: 0 12px;
  }

  .dw-title {
    font-size: 36px;
    line-height: 42px;
  }

  .dw-subtitle {
    font-size: 22px;
  }

  .dw-header {
    margin-bottom: 40px;
  }

  .dw-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dw-card[data-plan="kurs"] { order: 1; }
  .dw-card[data-plan="mentoring"] { order: 2; }
  .dw-card[data-plan="starter"] { order: 3; }

  .dw-card {
    padding: 28px 20px;
  }

  .dw-card.dw-highlighted {
    padding: 32px 24px;
  }

  .dw-price {
    font-size: 32px;
  }

  .dw-card-title {
    font-size: 20px;
  }

  .dw-bridge {
    padding: 40px 12px;
  }

  .dw-bridge .bridge-caveat {
    font-size: 24px;
  }

  .dw-bridge .bridge-body {
    font-size: 17px;
  }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh,
  .hero-mesh::after {
    animation: none;
  }

  .float-decoration--1,
  .float-decoration--2,
  .float-decoration--3 {
    animation: none;
  }

  .counter-value {
    animation: none;
  }

  .section-divider-glow::before {
    animation: none;
  }

  .btn-primary:hover::before {
    animation: none;
  }

  .text-reveal > * {
    transition-duration: 0.01ms;
  }

  .text-highlight::after {
    transition-duration: 0.01ms;
  }

  .scroll-progress {
    transition: none;
  }

  .image-hover-zoom img {
    transition: none;
  }

  .story-flow-line::after { animation: none; }
  .story-node::before { animation: none; }
  .story-tri-ripple { animation: none; }
  .story-tri-dot { animation: none; }

  .card-premium {
    transition: none;
  }

  .card-premium:hover {
    transform: none;
  }

  .dw-badge { animation: none; }
  .dw-card { transition: none; }
  .dw-card:hover { transform: none; }
  .dw-cta { transition: none; }
}

/* ==========================================================================
   Mobile Adjustments
   ========================================================================== */
@media (max-width: 768px) {
  :root {
    --premium-section-py: clamp(60px, 8vw, 80px);
    --premium-grid-gap: 24px;
  }

  .counter-section {
    gap: var(--space-lg);
  }

  .stats-bar {
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-md);
  }

  .stats-bar__number {
    font-size: 1.4rem;
  }

  .testimonial-premium {
    padding: var(--space-xl) var(--space-lg);
  }

  .testimonial-premium::before {
    font-size: 3.5rem;
  }

  .float-decoration {
    display: none;
  }
}

/* ==========================================================================
   Light Mode Overrides
   ========================================================================== */

/* Glass surface - universal glass card component */
.glass-surface {
  border-radius: var(--radius-xl);
  background: rgba(45, 39, 38, 0.55);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

[data-theme="light"] .glass-surface {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(188, 128, 52, 0.15);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* Hero section */
[data-theme="light"] .hero-mesh {
  opacity: 0;
}

[data-theme="light"] .hero-premium {
  background: transparent;
}

[data-theme="light"] .float-decoration {
  display: none;
}

[data-theme="light"] .ambient-glow {
  opacity: 0 !important;
}

/* Stats bar dividers */
[data-theme="light"] .stats-bar .glass-surface ~ div[style*="width:1px"] {
  background: rgba(188, 128, 52, 0.2) !important;
}

/* Social proof section - keep subtle background */
[data-theme="light"] .counter-label {
  color: var(--text-secondary);
}

/* CTA section */
.section-cta {
  padding-top: 80px;
  background: linear-gradient(180deg,
    var(--bg-page) 0%,
    var(--bg-primary) 25%,
    var(--bg-primary) 85%,
    rgba(30, 26, 25, 1) 100%
  );
}

[data-theme="light"] .section-cta {
  background: linear-gradient(180deg, var(--bg-page) 0%, var(--bg-secondary) 100%);
}

[data-theme="light"] .section-cta .text-muted {
  color: var(--text-secondary);
}

/* Section divider glow */
[data-theme="light"] .section-divider-glow {
  opacity: 0.3;
}

/* Testimonial top border */
[data-theme="light"] .testimonial-premium.glass-surface {
  border-top: 2px solid rgba(188, 128, 52, 0.2);
}

/* Footer */
[data-theme="light"] .footer-premium {
  background: var(--bg-secondary);
}

[data-theme="light"] .footer-premium::before {
  opacity: 0.15;
}

/* Scroll progress - more visible on light */
[data-theme="light"] .scroll-progress {
  box-shadow: 0 1px 3px rgba(188, 128, 52, 0.2);
}

/* Header scrolled on light */

/* Noise overlay lighter in light mode */
[data-theme="light"] .noise-overlay {
  opacity: 0.015;
}

/* ==========================================================================
   Credentials Bar (Hero) - Connected Nodes
   ========================================================================== */
.credentials-bar {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  margin-top: var(--space-xl);
  padding: var(--space-lg) 0;
}

.credentials-bar::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-35), var(--gold-35), transparent);
}

.credential-node {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 8px;
}

.credential-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(188, 128, 52, 0.5);
  background: var(--bg-primary);
  color: var(--accent-gold);
}

.credential-circle svg {
  width: 22px;
  height: 22px;
}

.credential-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.credential-desc {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.4;
}

[data-theme="light"] .credential-circle {
  background: var(--bg-page, #F9F7F4);
}

@media (max-width: 768px) {
  .credentials-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    justify-items: center;
    padding: var(--space-md) 0;
  }

  .credentials-bar::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .credentials-bar {
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }

  .credential-circle {
    width: 40px;
    height: 40px;
  }

  .credential-circle svg {
    width: 18px;
    height: 18px;
  }
}

/* ==========================================================================
   Scroll Indicator
   ========================================================================== */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-lg) 0 var(--space-sm);
  background: transparent;
}

.scroll-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.scroll-circle::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--border-card);
  animation: scrollPulse 2s ease-out infinite;
}

.scroll-arrow {
  animation: scrollBounce 1.5s ease-in-out infinite;
}

.scroll-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes scrollPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

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

@media (max-width: 768px) {
  .scroll-indicator { display: none; }
}
