@font-face {
  font-family: 'Sharp Grotesk';
  src:
    url('../fonts/SharpGroteskLight-20.woff2') format('woff2'),
    url('../fonts/SharpGroteskLight-20.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sharp Grotesk';
  src:
    url('../fonts/SharpGroteskBook-20.woff2') format('woff2'),
    url('../fonts/SharpGroteskBook-20.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --pw-orange: #E84A1C;
  --pw-dark: #1a1a1a;
  --pw-text: #333333;
  --pw-text-light: #666666;
  --pw-bg: #ffffff;
  --pw-bg-warm: #faf9f7;
  --pw-border: #e5e5e5;
  --pw-footer: #4a4a4a;
  --font: 'Sharp Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--pw-text);
  background: var(--pw-bg);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pw-border);
  transition: background 0.28s ease, backdrop-filter 0.28s ease, -webkit-backdrop-filter 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  will-change: background, backdrop-filter, box-shadow;
}
.nav.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: rgba(229,229,229,0.62);
  box-shadow: 0 10px 34px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  height: 80px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--pw-dark);
  transition: transform 0.22s ease;
}
.nav-logo:hover { transform: translateY(-1px); }
.nav-logo-img { display: block; height: 42px; width: auto; }
.nav-logo-sub {
  font-size: 14px; line-height: 1; font-weight: 400; color: var(--pw-orange);
  letter-spacing: 0.5px;
}
.nav-links { display: flex; gap: 32px; align-items: center; transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease; }
.nav-links a {
  text-decoration: none; color: var(--pw-text); font-size: 14px;
  font-weight: 400; letter-spacing: 0.2px; transition: color 0.2s ease, transform 0.2s ease;
}
.nav-links a:hover { color: var(--pw-orange); transform: translateY(-1px); }
.nav-cta {
  background: var(--pw-orange) !important; color: #fff !important;
  padding: 10px 24px; border-radius: 2px; font-weight: 400 !important;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}
.nav-cta:hover { background: #d4410f !important; box-shadow: 0 8px 20px rgba(232,74,28,0.24); }
.mobile-toggle {
  display: none; align-items: center; justify-content: center; flex-direction: column;
  min-width: 48px; min-height: 48px; background: none; border: none; cursor: pointer; padding: 8px;
}
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--pw-dark); margin: 5px 0; transition: 0.3s; }
.mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  padding: 180px 48px 120px; max-width: 1280px; margin: 0 auto;
  position: relative; min-height: 85vh;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-circle {
  position: absolute; top: 120px; right: -120px;
  width: 520px; height: 520px; border-radius: 50%;
  background: var(--pw-orange); opacity: 0; z-index: -1;
  animation: circleIn 1s ease-out 0.3s forwards;
  will-change: transform;
}
@keyframes circleIn {
  from { opacity: 0; transform: translate3d(40px, 0, 0) scale(0.8); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes circleInTablet {
  from { opacity: 0; transform: translate3d(52%, 0, 0) scale(0.8); }
  to { opacity: 1; transform: translate3d(36%, 0, 0) scale(1); }
}
@keyframes circleInMobile {
  from { opacity: 0; transform: translate3d(58%, 0, 0) scale(0.8); }
  to { opacity: 1; transform: translate3d(44%, 0, 0) scale(1); }
}
.hero h1 {
  font-size: clamp(42px, 5.5vw, 72px); font-weight: 300; line-height: 1.1;
  color: var(--pw-dark); max-width: 700px; letter-spacing: 0;
  opacity: 0; animation: fadeUp 0.8s ease-out 0.1s forwards;
}
.hero h1 em { font-style: normal; font-weight: 400; }
.hero-sub {
  margin-top: 28px; font-size: 20px; font-weight: 300;
  color: var(--pw-text-light); max-width: 560px; line-height: 1.6;
  opacity: 0; animation: fadeUp 0.8s ease-out 0.3s forwards;
}
.hero-actions {
  margin-top: 48px; display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease-out 0.5s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--pw-orange); color: #fff; padding: 16px 36px;
  font-size: 15px; font-weight: 400; text-decoration: none;
  border-radius: 2px; transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
  font-family: var(--font); border: none; cursor: pointer;
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--pw-dark); padding: 16px 36px;
  font-size: 15px; font-weight: 400; text-decoration: none;
  border: 1.5px solid var(--pw-dark); border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease; font-family: var(--font);
}
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px) scale(1.01);
}
.btn-primary:hover { background: #d4410f; box-shadow: 0 10px 24px rgba(232,74,28,0.22); }
.btn-secondary:hover { background: var(--pw-dark); color: #fff; box-shadow: 0 10px 24px rgba(26,26,26,0.12); }
.btn-primary:active,
.btn-secondary:active,
.filter-btn:active {
  transform: translateY(0) scale(0.98);
}
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.filter-btn:focus-visible,
.nav-links a:focus-visible,
.mobile-toggle:focus-visible {
  outline: 2px solid var(--pw-orange);
  outline-offset: 3px;
}
.btn-primary,
.btn-secondary { min-height: 48px; }

section { padding: 100px 48px; }
.container { max-width: 1280px; width: 100%; margin: 0 auto; }
.section-label {
  font-size: 12px; font-weight: 400; letter-spacing: 2px;
  text-transform: uppercase; color: var(--pw-orange); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(30px, 3.5vw, 44px); font-weight: 300;
  color: var(--pw-dark); line-height: 1.15; letter-spacing: 0; max-width: 640px;
}
.section-title em { font-style: normal; font-weight: 400; }

.why { background: var(--pw-bg); }
.why-intro, .academy-intro {
  font-size: 18px; color: var(--pw-text-light);
  max-width: 640px; margin-top: 20px; line-height: 1.7;
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px; margin-top: 64px;
}
.why-card { border-top: 2px solid var(--pw-orange); padding-top: 28px; transition: transform 0.22s ease, border-color 0.22s ease; }
.why-card h3 { font-size: 18px; font-weight: 400; color: var(--pw-dark); margin-bottom: 12px; }
.why-card p { font-size: 15px; color: var(--pw-text-light); line-height: 1.65; }

.academy { background: var(--pw-bg-warm); }
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 40px; margin-bottom: 32px;
}
.filter-btn {
  min-height: 44px; padding: 8px 20px; font-size: 13px; font-weight: 400;
  font-family: var(--font); border: 1.5px solid var(--pw-border);
  background: #fff; color: var(--pw-text-light); border-radius: 2px;
  cursor: pointer; transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease; letter-spacing: 0.2px;
}
.filter-btn:hover { border-color: var(--pw-orange); color: var(--pw-orange); transform: translateY(-1px); }
.filter-btn.active { background: var(--pw-orange); color: #fff; border-color: var(--pw-orange); box-shadow: 0 8px 18px rgba(232,74,28,0.16); }
.academy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.academy-card {
  background: #fff; padding: 36px 40px; border: 1px solid var(--pw-border);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}
.academy-card:hover,
.format-card:hover,
.why-card:hover {
  transform: translateY(-4px);
}
.academy-card:hover { border-color: var(--pw-orange); box-shadow: 0 12px 34px rgba(0,0,0,0.07); }
.academy-card.hidden { display: none; }
.academy-tag {
  display: inline-block; font-size: 11px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--pw-orange); margin-bottom: 14px;
}
.academy-card h3 {
  font-size: 20px; font-weight: 400; color: var(--pw-dark);
  line-height: 1.3; margin-bottom: 10px;
}
.academy-card p { font-size: 14.5px; color: var(--pw-text-light); line-height: 1.65; margin-bottom: 18px; }
.academy-meta {
  display: flex; gap: 20px; flex-wrap: wrap; font-size: 12.5px;
  color: var(--pw-text-light); padding-top: 14px;
  border-top: 1px solid var(--pw-border);
}

.formate { background: var(--pw-bg); }
.formate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 56px; }
.format-card { text-align: left; transition: transform 0.22s ease; }
.format-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--pw-bg-warm); border: 1.5px solid var(--pw-border);
  margin-bottom: 20px; font-size: 22px;
}
.format-card h3 { font-size: 17px; font-weight: 400; color: var(--pw-dark); margin-bottom: 8px; }
.format-card p { font-size: 14px; color: var(--pw-text-light); line-height: 1.6; }
.format-price { margin-top: 12px; font-size: 14px; font-weight: 400; color: var(--pw-orange); }

.trust { background: var(--pw-bg-warm); }
.trust-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 48px; margin-top: 56px; padding-top: 56px;
  border-top: 1px solid var(--pw-border);
}
.trust-item .trust-num { font-size: 42px; font-weight: 300; color: var(--pw-dark); letter-spacing: 0; }
.trust-item .trust-num span { color: var(--pw-orange); }
.trust-item p { font-size: 14px; color: var(--pw-text-light); margin-top: 4px; }

.lead-cta { background: var(--pw-dark); color: #fff; position: relative; overflow: hidden; }
.lead-cta .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lead-cta-circle {
  position: absolute; right: 0; top: 0; transform: translate3d(34%, calc(-34% + var(--parallax-y)), 0);
  width: 400px; height: 400px; border-radius: 50%;
  background: var(--pw-orange); opacity: 0.15;
  --parallax-y: 0px;
  will-change: transform;
}
.lead-cta h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 300; line-height: 1.2; letter-spacing: 0; position: relative; }
.lead-cta h2 em { font-style: normal; font-weight: 400; }
.lead-cta p { margin-top: 16px; font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.65; position: relative; }
.lead-form { position: relative; display: flex; flex-direction: column; gap: 14px; }
.lead-form input, .lead-form select {
  width: 100%; min-height: 52px; padding: 16px 20px; font-size: 16px;
  font-family: var(--font); font-weight: 300;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06); color: #fff;
  border-radius: 2px; outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.lead-form input::placeholder { color: rgba(255,255,255,0.4); }
.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--pw-orange);
  box-shadow: 0 0 0 3px rgba(232,74,28,0.16);
  background: rgba(255,255,255,0.09);
}
.lead-form select { appearance: none; cursor: pointer; }
.lead-form select option { background: var(--pw-dark); color: #fff; }
.lead-form .btn-primary { width: 100%; padding: 18px; }
.form-message {
  min-height: 20px; margin: -2px 0 0; font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.form-message.error { color: #ffd2c7; }
.form-note { font-size: 12.5px !important; margin-top: -2px !important; color: rgba(255,255,255,0.58) !important; }
.form-note a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.form-note a:hover { color: var(--pw-orange); }

.kontakt { background: var(--pw-bg-warm); }
.kontakt-layout { margin-top: 48px; max-width: 640px; }
.kontakt-layout h3 { font-size: 20px; font-weight: 400; color: var(--pw-dark); margin-bottom: 16px; }
.kontakt-layout p { font-size: 15px; color: var(--pw-text-light); line-height: 1.7; margin-bottom: 24px; }
.kontakt-detail { display: flex; flex-direction: column; gap: 8px; font-size: 15px; }
.kontakt-detail a { color: var(--pw-dark); text-decoration: none; font-weight: 400; transition: color 0.2s; }
.kontakt-detail a:hover { color: var(--pw-orange); }

.footer { background: var(--pw-footer); color: rgba(255,255,255,0.6); padding: 56px 48px 40px; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand {
  font-size: 18px; font-weight: 400; color: #fff;
  margin-bottom: 16px; display: flex; align-items: center;
}
.footer-logo-img { display: block; height: 54px; width: auto; }
.footer-desc { font-size: 14px; line-height: 1.65; max-width: 320px; }
.footer h4 {
  font-size: 13px; font-weight: 400; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer a:hover { color: #fff; }
.footer-location { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-bottom {
  max-width: 1280px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.pwwl-tagline { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.3); font-style: normal; }

.site-page { padding-top: 140px; min-height: 70vh; }
.site-page article { max-width: 760px; margin: 0 auto; }
.site-page h1 { font-size: clamp(34px, 4vw, 48px); font-weight: 300; color: var(--pw-dark); line-height: 1.15; }
.site-page h2 { margin-top: 36px; font-size: 20px; font-weight: 400; color: var(--pw-dark); }
.site-page p { margin-top: 16px; color: var(--pw-text-light); }
.site-page a { color: var(--pw-orange); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.is-visible.academy-card:hover,
.reveal.is-visible.format-card:hover,
.reveal.is-visible.why-card:hover {
  transform: translateY(-4px);
}
[data-parallax-section] > .container {
  --section-parallax-y: 0px;
  transform: translate3d(0, var(--section-parallax-y), 0);
  will-change: transform;
}

.academy-card,
.format-card,
.why-card,
.trust-item,
.kontakt-layout,
.site-page article {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero h1,
  .hero-sub,
  .hero-actions,
  .hero-circle,
  .reveal {
    opacity: 1;
    transform: none;
  }
  [data-parallax-section] > .container {
    transform: none;
  }
}

@media (max-width: 1024px) {
  section { padding: 80px 32px; }
  .nav-inner { padding: 0 32px; }
  .hero { padding: 160px 32px 80px; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .academy-grid { grid-template-columns: 1fr; }
  .academy-card { padding: 32px; }
  .formate-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .lead-cta .container { grid-template-columns: 1fr; gap: 44px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-circle { width: 360px; height: 360px; right: 0; top: 120px; animation-name: circleInTablet; }
}
@media (max-width: 768px) {
  section { padding: 64px 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-logo-img { height: 40px; }
  .nav-links {
    display: flex; position: absolute; left: 0; right: 0; top: 80px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,0.99); border-bottom: 1px solid var(--pw-border);
    box-shadow: 0 16px 28px rgba(0,0,0,0.07);
    max-height: calc(100vh - 80px); overflow-y: auto; -webkit-overflow-scrolling: touch;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-10px);
  }
  .nav-links.mobile-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .nav-links a { min-height: 52px; padding: 16px 24px; border-top: 1px solid var(--pw-border); }
  .nav-cta { display: flex; margin: 12px 24px 18px; text-align: center; justify-content: center; }
  .mobile-toggle { display: flex; }
  .hero { padding: 140px 24px 64px; min-height: auto; }
  .hero-circle { width: 260px; height: 260px; right: 0; top: 108px; animation-name: circleInMobile; }
  .hero h1 { font-size: 42px; }
  .hero-sub { margin-top: 24px; font-size: 18px; line-height: 1.55; }
  .hero-actions { flex-direction: column; margin-top: 36px; gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; }
  .section-title { font-size: 32px; }
  .why-intro, .academy-intro { font-size: 16px; line-height: 1.65; }
  .why-grid { margin-top: 44px; }
  .academy-card { padding: 28px 24px; }
  .academy-meta { gap: 10px; flex-direction: column; }
  .formate-grid { grid-template-columns: 1fr; }
  .formate-grid, .trust-bar { margin-top: 40px; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .lead-cta .container { gap: 32px; }
  .lead-cta h2 { font-size: 31px; }
  .lead-cta p { font-size: 15px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 48px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-legal { gap: 16px; }
  .filter-bar { gap: 6px; }
  .filter-btn { padding: 9px 14px; font-size: 12px; }
  .site-page { padding: 120px 24px 64px; }
}
@media (max-width: 480px) {
  section { padding: 52px 18px; }
  .nav-inner { height: 72px; padding: 0 18px; }
  .nav-logo { gap: 10px; }
  .nav-logo-img { height: 34px; }
  .nav-logo-sub { font-size: 12px; }
  .nav-links { top: 72px; max-height: calc(100vh - 72px); }
  .nav-links a { padding: 15px 18px; }
  .nav-cta { margin: 10px 18px 16px; }
  .hero { padding: 120px 18px 56px; }
  .hero h1 { font-size: 38px; line-height: 1.08; }
  .hero-sub { font-size: 16px; }
  .hero-circle { width: 220px; height: 220px; right: 0; top: 96px; }
  .section-title { font-size: 29px; }
  .section-label { letter-spacing: 1.4px; }
  .academy-card { padding: 24px 20px; }
  .academy-card h3 { font-size: 19px; }
  .filter-bar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filter-btn { width: 100%; padding: 9px 10px; }
  .trust-bar { grid-template-columns: 1fr; gap: 24px; padding-top: 36px; }
  .lead-cta h2 { font-size: 28px; }
  .lead-form input, .lead-form select { padding: 14px 16px; }
  .kontakt-layout { margin-top: 36px; }
  .footer { padding: 44px 18px 28px; }
  .footer-legal { flex-direction: column; gap: 8px; }
  .site-page { padding: 112px 18px 56px; }
  .site-page h1 { font-size: 34px; }
}
