/*
 * JSW v2 — Global CSS
 * Design tokens + reset + utility classes + button kit + page sections
 */

   /* 1. DESIGN TOKENS (CSS Custom Properties) */
/*   ==================================================== */
:root {
  /* Brand colors */
  --red: #df4143;
  --navy: #2d466f;
  --sky: #6fc6e6;
  --yellow: #ffc100;
  --red-d: #b83335;
  --navy-d: #1b2d48;
  --navy-l: #3d5a8a;

  /* Neutral */
  --ink: #0d1520;
  --muted: #68778f;
  --line: #e2e8f2;
  --bg: #f4f7fc;
  --white: #ffffff;

  /* Typography */
  --font-primary: 'Lato', sans-serif;
  --font-size-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 100px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
}

   /* 2. BASE / RESET */
/*   ==================================================== */
html {
  font-size: 17.6px;
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--ink);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--red);
}

   /* 3. UTILITY — .wrap */
/*   ==================================================== */
.wrap {
  width: 100%;
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--space-lg) !important;
  padding-right: var(--space-lg) !important;
}

@media (max-width: 768px) {
  .wrap {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
}

   /* 4. UTILITY — .eyebrow */
/*   ==================================================== */
.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: var(--space-sm);
}

.eyebrow-red {
  color: var(--red);
}

   /* 5. SCROLL REVEAL — [data-reveal] */
/*   ==================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

body.elementor-editor-active [data-reveal],
html.jsw-editor-preview [data-reveal],
body.jsw-editor-preview [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-30px);
}

[data-reveal="left"].revealed {
  transform: translateX(0);
}

[data-reveal="right"] {
  transform: translateX(30px);
}

[data-reveal="right"].revealed {
  transform: translateX(0);
}

[data-reveal="scale"] {
  transform: scale(0.92);
}

[data-reveal="scale"].revealed {
  transform: scale(1);
}

/* Delay classes */
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.40s; }

   /* 6. BUTTON KIT */
/*   ==================================================== */
.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-family: var(--font-primary) !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  line-height: 1 !important;
  text-decoration: none !important;
  border: none !important;
  border-radius: 100px !important;
  cursor: pointer !important;
  transition: all .18s cubic-bezier(.25,.46,.45,.94) !important;
  padding: 14px 28px !important;
  white-space: nowrap !important;
}

.jsw-btn-hit-label {
  pointer-events: none !important;
}

.btn:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

/* Colors */
.btn-red,
a.btn-red,
.jsw-hero .btn-red,
.jsw-hero a.btn-red {
  background: var(--red);
  color: #fff !important;
  box-shadow: 0 2px 0 var(--red-d), 0 6px 24px rgba(223,65,67,.28);
}

.btn-red:hover,
a.btn-red:hover,
.jsw-hero .btn-red:hover,
.jsw-hero a.btn-red:hover {
  background: var(--red-d);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 3px 0 #9a2b2d, 0 12px 32px rgba(223,65,67,.36);
}

.btn-red:active {
  transform: none;
  box-shadow: 0 1px 0 var(--red-d);
}

.btn-yellow,
a.btn-yellow {
  background: var(--yellow);
  color: var(--navy-d) !important;
  box-shadow: 0 2px 0 #c99500, 0 6px 20px rgba(255,193,0,.3);
}

.btn-yellow:hover,
a.btn-yellow:hover {
  background: #e6ae00;
  color: var(--navy-d) !important;
  transform: translateY(-2px);
  box-shadow: 0 3px 0 #a67b00, 0 10px 28px rgba(255,193,0,.38);
}

.btn-navy,
a.btn-navy,
.jsw-hero .btn-navy,
.jsw-hero a.btn-navy {
  background: var(--navy);
  color: #fff !important;
  box-shadow: 0 2px 0 var(--navy-d), 0 4px 14px rgba(45,70,111,.22);
}

.btn-navy:hover,
a.btn-navy:hover,
.jsw-hero .btn-navy:hover,
.jsw-hero a.btn-navy:hover {
  background: var(--navy-d);
  color: #fff !important;
  transform: translateY(-2px);
}

.btn-outline,
a.btn-outline {
  background: transparent;
  color: var(--navy) !important;
  border: 1.5px solid var(--line, #e2e8f2);
}

.btn-outline:hover,
a.btn-outline:hover {
  border-color: var(--navy);
  background: var(--bg);
}

.btn-outline-white,
a.btn-outline-white {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.35);
}

.btn-outline-white:hover,
a.btn-outline-white:hover {
  border-color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.08);
}

.btn-ghost,
a.btn-ghost {
  background: transparent;
  color: var(--muted) !important;
  font-size: .82rem;
  padding: 10px 18px;
}

.btn-ghost:hover,
a.btn-ghost:hover {
  color: var(--navy) !important;
}

.btn-white,
a.btn-white {
  background: #fff;
  color: var(--red) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.14);
}

.btn-white:hover,
a.btn-white:hover {
  background: #f8f0f0;
  color: var(--red) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.btn-pkg,
a.btn-pkg {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,0.4);
}

.btn-pkg:hover,
a.btn-pkg:hover {
  border-color: #fff;
  color: #fff !important;
  transform: translateY(-2px);
}

.btn-dark,
a.btn-dark {
  background: var(--ink);
  color: #fff !important;
  box-shadow: 0 2px 0 rgba(0,0,0,.3), 0 6px 20px rgba(0,0,0,.18);
}

.btn-dark:hover,
a.btn-dark:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 3px 0 rgba(0,0,0,.4), 0 12px 28px rgba(0,0,0,.24);
  color: #fff !important;
}

/* Sizes */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* CTA note under buttons */
.cta-note {
  display: block;
  font-size: .68rem;
  color: var(--muted, #68778f);
  margin-top: 7px;
  text-align: center;
}

   /* 7. TYPOGRAPHY UTILITY CLASSES */
/*   ==================================================== */
.display-xl {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.display-xl em {
  font-style: italic;
  color: var(--red);
}

.display-xl .thin {
  font-weight: 300;
  color: var(--navy-l);
}

.display-lg {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.display-lg em {
  font-style: italic;
  color: var(--red);
}

.sec-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.sec-title em {
  font-style: italic;
  color: var(--red);
}

.section-heading {
  margin-bottom: 40px;
}

/* Section padding */
.section-pad {
  padding-top: 96px;
  padding-bottom: 96px;
}

@media (max-width: 768px) {
  .section-pad {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

   /* 8. NAVIGATION — Header / Sticky Nav */
/*   ==================================================== */
.jsw-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 0;
}

.jsw-header-shell {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 242, 0.7);
  transition: background var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.jsw-header.scrolled .jsw-header-shell {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

/* Nav inner container */
.jsw-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 60px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Logo */
.jsw-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-right: 18px;
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--navy);
  flex-shrink: 0;
  text-decoration: none;
}

.jsw-logo:hover {
  color: var(--navy);
}

.jsw-logo-icon {
  width: 30px;
  height: 30px;
  display: block;
  flex-shrink: 0;
}

.jsw-logo-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* Nav links list */
.jsw-nav-links {
  display: flex;
  align-items: center;
  gap: 1px;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jsw-nav-item {
  position: relative;
}

.jsw-nav-link {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 7px 5px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #3a4560;
  transition: color 0.12s, background 0.12s;
  cursor: pointer;
  text-decoration: none;
  background: none;
  border: none;
  font-family: var(--font-primary);
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  min-height: 0;
  line-height: 1.2;
}

.jsw-nav-links button.jsw-nav-link {
  background: transparent !important;
  color: #3a4560 !important;
  border: 0 !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  padding: 7px 10px !important;
  min-height: 0 !important;
  height: auto !important;
}

.jsw-nav-link:hover {
  color: var(--navy);
  background: var(--bg);
}

.jsw-nav-links button.jsw-nav-link:hover {
  background: var(--bg) !important;
  color: var(--navy) !important;
}

.jsw-nav-link.active {
  color: var(--red);
}

.jsw-nav-chevron {
  font-size: 0.5rem;
  opacity: 0.4;
}

/* Mega Dropdown */
.jsw-mega-drop {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  min-width: 256px;
  padding: 6px;
  display: none;
  z-index: 10;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.jsw-mega-drop::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  height: 8px;
}

.jsw-nav-item:hover .jsw-mega-drop,
.jsw-nav-item:focus-within .jsw-mega-drop {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.jsw-mega-drop a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #3a4560;
  text-decoration: none;
  transition: background 0.1s;
}

.jsw-mega-drop a:hover {
  background: var(--bg);
  color: var(--navy);
}

.jsw-drop-label {
  padding: 8px 12px 3px;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.jsw-drop-sep {
  height: 1px;
  background: var(--line);
  margin: 4px 6px;
}

.jsw-drop-highlight {
  color: var(--red) !important;
  font-weight: 700 !important;
}

/* Right side nav group */
.jsw-nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Cart button */
.jsw-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.12s, color 0.12s;
  position: relative;
  text-decoration: none;
  background: none;
  font-family: var(--font-primary);
  line-height: 1;
  white-space: nowrap;
  min-height: 32px;
  flex-shrink: 0;
}

.jsw-cart-btn:hover {
  border-color: var(--navy, #2d466f);
  color: var(--navy, #2d466f);
}

.jsw-cart-btn svg {
  display: block;
  flex-shrink: 0;
}

.jsw-cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 7px;
  height: 7px;
  background: var(--red, #df4143);
  border-radius: 50%;
  border: 1.5px solid #fff;
}

.jsw-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  background: var(--red, #df4143);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  border: 1.5px solid #fff;
  padding: 0 4px;
}

/* Login / Panel button */
.jsw-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid rgba(45, 70, 111, 0.25);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--navy, #2d466f);
  cursor: pointer;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
  text-decoration: none;
  background: none;
  font-family: var(--font-primary);
  line-height: 1;
  white-space: nowrap;
  min-height: 32px;
  flex-shrink: 0;
}

.jsw-login-btn:hover {
  background: var(--navy, #2d466f);
  color: #fff;
  border-color: var(--navy, #2d466f);
}

.jsw-nav-right .btn.btn-red.btn-sm {
  font-size: 0.76rem !important;
  padding: 6px 13px !important;
  min-height: 32px;
  box-shadow: 0 2px 0 var(--red-d, #b83335), 0 6px 24px rgba(223,65,67,.28) !important;
  flex-shrink: 0;
}

/* Hamburger — mobile toggle */
.jsw-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.12s;
}

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

.jsw-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
}

.jsw-hamburger span + span {
  margin-top: 4px;
}

.jsw-hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.jsw-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.jsw-hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile drawer */
.jsw-mobile-drawer {
  display: none;
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 800;
  padding: var(--space-lg) 20px;
  padding-bottom: calc(var(--space-lg) + env(safe-area-inset-bottom));
  overflow-y: auto;
  overflow-x: hidden;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease-out), visibility 0.2s var(--ease-out);
}

.jsw-mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.jsw-mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jsw-mobile-nav li {
  border-bottom: 1px solid var(--line);
}

.jsw-mobile-nav a,
.jsw-mobile-nav button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-primary);
  cursor: pointer;
}

.jsw-mobile-nav a:hover,
.jsw-mobile-nav button:hover {
  color: var(--red);
}

.jsw-mobile-toggle {
  cursor: default;
}

.jsw-mobile-sub {
  list-style: none;
  margin: 0;
  padding: 0 0 8px 28px;
  display: block;
}

.jsw-mobile-sub.open {
  display: block;
}

.jsw-mobile-sub a {
  padding: 8px 12px 8px 0;
  font-size: 0.85rem;
  font-weight: 400;
  color: #3a4560;
}

.jsw-mobile-cta {
  margin-top: var(--space-lg);
  display: grid;
  gap: 12px;
}

.jsw-mobile-cta .jsw-login-btn,
.jsw-mobile-cta .btn {
  width: 100%;
  justify-content: center;
}

.jsw-mobile-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

   /* 9. FOOTER */
/*   ==================================================== */
.jsw-footer {
  background: var(--navy-d);
  color: #fff;
  padding: 56px 0 28px;
}

.jsw-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.jsw-footer-brand h3 {
  font-size: 0.92rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.jsw-footer-brand p {
  font-size: 0.78rem;
  opacity: 0.4;
  line-height: 1.65;
  font-weight: 300;
}

.jsw-footer-col h4 {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}

.jsw-footer-col a {
  display: block;
  font-size: 0.78rem;
  opacity: 0.48;
  padding: 3px 0;
  transition: opacity 0.1s;
  color: #fff;
  text-decoration: none;
}

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

.jsw-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.jsw-footer-bottom p {
  font-size: 0.7rem;
  opacity: 0.32;
  margin: 0;
}

.jsw-footer-payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.jsw-footer-payments span {
  font-size: 0.7rem;
  opacity: 0.48;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

   /* 10. BREADCRUMB */
/*   ==================================================== */
.jsw-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 12px 0;
  flex-wrap: wrap;
}

.jsw-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.jsw-breadcrumb a:hover {
  color: var(--navy);
}

.jsw-breadcrumb .sep {
  color: var(--line);
  font-size: 0.7rem;
}

.jsw-breadcrumb .current {
  color: var(--navy);
  font-weight: 700;
}

/* Checkout breadcrumb — steps */
.jsw-step-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 0;
}

.jsw-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.jsw-step .step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
  transition: all var(--duration-fast) var(--ease-out);
}

.jsw-step.done .step-num {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.jsw-step.done {
  color: var(--navy);
}

.jsw-step.active .step-num {
  border-color: var(--red);
  color: var(--red);
}

.jsw-step.active {
  color: var(--red);
}

.jsw-step .step-label {
  white-space: nowrap;
}

.jsw-step-sep {
  width: 40px;
  height: 1px;
  background: var(--line);
  margin: 0 12px;
}

   /* 11. ELEMENTOR OVERRIDES — Make Elementor match mockup */
/*   ==================================================== */
.jsw-v2-theme.elementor-default body,
.jsw-v2-theme body {
  font-size: 17.6px !important;
  overflow-x: hidden !important;
}

.jsw-v2-theme a {
  color: inherit;
  text-decoration: none;
}

.jsw-v2-theme svg {
  display: block;
  flex-shrink: 0;
}

/* Kill Elementor boxed container max-width */
.jsw-v2-theme .elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1100px !important;
}

.jsw-v2-theme .elementor-widget:not(:last-child) {
  margin-block-end: 0;
}

/* Kill Elementor Kit font-size override */
.jsw-v2-theme .elementor-kit-211 {
  font-size: 17.6px !important;
}

/* Kill Elementor header padding */
.jsw-v2-theme .elementor-location-header .elementor-section-wrap,
.jsw-v2-theme .elementor-location-header .elementor-section {
  padding: 0 !important;
}

/* Override Elementor heading-title defaults globally — match mockup font stack */
.elementor-heading-title.elementor-size-default {
  font-family: var(--font-primary) !important;
}

/* About section: force grid layout for container */
.jsw-about .elementor-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Fix Elementor .elementor-col-50 forcing width:50% inside grid — columns must fill cells */
.jsw-about .elementor-column {
  width: 100% !important;
}

/* Remove Elementor's 10px column gap padding that shrinks content */
.jsw-about .elementor-widget-wrap {
  padding: 0 !important;
}

/* Section heading overrides — prevent Elementor kit overriding sizes/colors */
.selector .elementor-heading-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -.02em !important;
  color: var(--navy) !important;
}
.selector .elementor-heading-title em {
  font-style: italic;
  color: var(--red) !important;
}

/* Fix stage-selector widget h2 font-weight/size overridden by Elementor */
.jsw-stage-selector h2 {
  font-weight: 700 !important;
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  line-height: 1.15 !important;
  letter-spacing: -.02em !important;
}

/* Fix widget wrapper position context — prevent Elementor relative positioning from breaking absolute children */
.selector .elementor-widget-wrap,
.selector .elementor-widget,
.selector .elementor-element-el16 .elementor-widget-container {
  position: static !important;
}

.jsw-about .elementor-heading-title {
  color: #fff !important;
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -.02em !important;
}
.jsw-about .eyebrow {
  color: var(--sky) !important;
}

/* About eyebrow heading "O autorze kursow" (el28) — force small/sky/uppercase */
.jsw-about .elementor-element-el28 .elementor-heading-title {
  font-size: .68rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: #6fc6e6 !important;
  line-height: 1.3 !important;
}

/* About paragraph text (el30) — force proper color/weight/line-height on dark bg */
.jsw-about .elementor-element-el30,
.jsw-about .elementor-element-el30 .elementor-widget-container,
.jsw-about .elementor-element-el30 p {
  color: rgba(255,255,255,.6) !important;
  font-weight: 300 !important;
  line-height: 1.75 !important;
  font-size: 1rem !important;
}

/* About image placeholder (el26) — match design dashed border + aspect ratio */
.jsw-about .elementor-element-el26 img,
.jsw-about .elementor-element-el26 .elementor-widget-container {
  aspect-ratio: 3/4 !important;
  border-radius: 20px !important;
  background: rgba(255,255,255,.05) !important;
  border: 1.5px dashed rgba(255,255,255,.1) !important;
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
}

/* About button (el31) — transparent bg + white border on dark section */
.jsw-about .elementor-element-el31 .elementor-button {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.35) !important;
  border-radius: 100px !important;
  box-shadow: none !important;
}
.jsw-about .elementor-element-el31 .elementor-button:hover {
  border-color: rgba(255,255,255,.75) !important;
  background: rgba(255,255,255,.08) !important;
}
.jsw-about .elementor-element-el31 .elementor-button .elementor-button-text {
  color: #fff !important;
}

/* Car-nav button arrow centering — ensure SVG is dead center */
.cbtn svg {
  display: block !important;
  margin: 0 !important;
}
.cbtn {
  padding: 0 !important;
  line-height: 0 !important;
}

.jsw-fcta .elementor-heading-title {
  color: #fff !important;
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -.02em !important;
}

.jsw-book .elementor-heading-title {
  color: var(--navy) !important;
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -.02em !important;
}

.jsw-mats .elementor-heading-title {
  color: var(--navy) !important;
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -.02em !important;
}

.jsw-courses-grid .elementor-heading-title {
  color: var(--navy) !important;
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -.02em !important;
}

.jsw-testimonial-slider .wrap h2 {
  font-weight: 700 !important;
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  line-height: 1.15 !important;
  letter-spacing: -.02em !important;
  color: var(--navy) !important;
}

   /* 12. MISC — Global utilities */
/*   ==================================================== */
/* Sticky header backdrop */
.site-header.is-sticky {
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.85) !important;
}

/* Gradient backgrounds */
.grad-navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-l));
}

.grad-red {
  background: linear-gradient(135deg, var(--red), var(--red-d));
}

/* Responsive visibility */
@media (max-width: 900px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 901px) {
  .hide-desktop {
    display: none !important;
  }
}

   /* 12. HOMEPAGE — HERO SECTION (SG-01) */
/*   ==================================================== */
.jsw-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #f0f3fb;
  padding: 80px 0 0;
}

.jsw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(111,198,230,.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255,193,0,.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 80% 10%, rgba(223,65,67,.09) 0%, transparent 55%),
    linear-gradient(155deg, #eef2fc 0%, #f7f9fe 50%, #fdf5f0 100%);
}

/* Force deco to position against hero section, not inner Elementor containers.
   Elementor sets position:relative on columns, widgets, and widget-wrap by default,
   which traps the absolutely-positioned .jsw-hero-deco inside a narrow column.
   We override all of them to static so bottom/right targets the .jsw-hero section. */
.jsw-hero > .elementor-container,
.jsw-hero .elementor-column,
.jsw-hero .elementor-widget-wrap,
.jsw-hero .elementor-widget,
.jsw-hero .elementor-widget-container {
  position: static !important;
}

.jsw-hero-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 1;
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 900;
  line-height: 1;
  color: rgba(45,70,111,.04);
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.jsw-hero-grid > .elementor-container,
#top > .elementor-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
  width: 100%;
  max-width: var(--content-width, 1140px);
  margin: 0 auto;
  flex-wrap: nowrap;
}

.jsw-hero-grid > .elementor-container > .elementor-column,
#top > .elementor-container > .elementor-column {
  width: 100% !important;
}

/* Hero left — tag */
.jsw-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px 14px 5px 7px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.jsw-hero-tag p {
  margin-block-end: 0;
}

.jsw-tag-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(111,198,230,.15);
  border: 1.5px solid rgba(111,198,230,.4);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.jsw-tag-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  animation: jsw-pulse 2s ease infinite;
}

@keyframes jsw-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.55); opacity: .5; }
}

.jsw-hero h1 {
  color: var(--navy);
  margin-bottom: 20px;
}

/* Override Elementor heading-title defaults for hero */
.jsw-hero .elementor-heading-title {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem) !important;
  font-weight: 900 !important;
  line-height: 1.04 !important;
  letter-spacing: -.03em !important;
  color: var(--navy) !important;
}
.jsw-hero .elementor-heading-title em {
  font-style: italic;
  color: var(--red);
}
.jsw-hero .elementor-heading-title .thin {
  font-weight: 300;
  color: var(--navy-l);
}

.jsw-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.72;
  max-width: 420px;
  margin-bottom: 32px;
}

.jsw-hero-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.jsw-hero-proof {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(45,70,111,.08);
}

.jsw-hpr-n {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.jsw-hpr-n span {
  font-size: .85rem;
}

.jsw-hpr-l {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Hero right — floating card stack */
.jsw-hero-right {
  position: relative;
  height: 480px;
}

.jsw-hero-main-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(45,70,111,.16), 0 4px 16px rgba(0,0,0,.06);
  overflow: hidden;
  height: 340px;
}

/* Floating cards */
.jsw-float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.06);
  padding: 12px 14px;
  animation: jsw-float 4s ease-in-out infinite;
}

.jsw-float-card.fc1 {
  bottom: 40px;
  left: -24px;
  min-width: 150px;
  animation-delay: 0s;
}

.jsw-float-card.fc2 {
  bottom: 80px;
  right: -16px;
  min-width: 140px;
  animation-delay: 1.5s;
}

.jsw-float-card.fc3 {
  top: 280px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  animation: jsw-float2 4s ease-in-out infinite;
}

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

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

.jsw-fc-label {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  margin-bottom: 5px;
}

.jsw-fc-val {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.jsw-fc-sub {
  font-size: .6rem;
  color: var(--muted);
  margin-top: 2px;
}

.jsw-fc-stars {
  color: var(--yellow);
  font-size: .7rem;
  letter-spacing: 2px;
}

.jsw-fc-guar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jsw-fc-guar-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(111,198,230,.15);
  display: grid;
  place-items: center;
  color: var(--sky);
  flex-shrink: 0;
}

.jsw-fc-guar-t {
  font-size: .72rem;
  font-weight: 700;
  color: var(--navy);
}

.jsw-fc-guar-s {
  font-size: .62rem;
  color: var(--muted);
}

   /* 13. HOMEPAGE — TRUST STRIP (SG-02) */
/*   ==================================================== */
.jsw-trust-strip {
  background: var(--navy);
  padding: 28px 0;
}

/* Override Elementor boxed container — trust strip must be full-width */
.jsw-v2-theme .jsw-trust-strip.elementor-section > .elementor-container {
  max-width: 100% !important;
  width: 100% !important;
}

/* Remove excess Elementor padding/widget gaps */
.jsw-trust-strip .elementor-widget-wrap {
  padding: 0 !important;
}

.jsw-trust-strip .elementor-widget-container {
  margin: 0 !important;
}

.jsw-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.jsw-ti {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.jsw-ti:last-child {
  border-right: none;
}

.jsw-ti-icon {
  color: var(--sky);
  opacity: .9;
  flex-shrink: 0;
}

.jsw-ti-t strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
}

.jsw-ti-t span {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
}

   /* 14. HOMEPAGE — ABOUT SECTION (SG-07) */
/*   ==================================================== */
.jsw-about {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.jsw-about::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 80% 40%, rgba(45,90,138,.3) 0%, transparent 60%),
    radial-gradient(ellipse 35% 40% at 5% 70%, rgba(111,198,230,.07) 0%, transparent 55%);
}

.jsw-about-deco {
  position: absolute;
  bottom: -30px;
  left: -20px;
  font-size: clamp(100px, 15vw, 180px);
  font-weight: 900;
  color: rgba(255,255,255,.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.jsw-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.jsw-about-img {
  aspect-ratio: 3/4;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.22);
  font-size: .8rem;
  text-align: center;
  border: 1.5px dashed rgba(255,255,255,.1);
}

.jsw-about-c .eyebrow {
  color: var(--sky);
  margin-bottom: 12px;
}

.jsw-about-c h2 {
  color: #fff;
  margin-bottom: 16px;
}

.jsw-about-c p {
  color: rgba(255,255,255,.6);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 14px;
}

.jsw-about-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 26px;
}

.jsw-as-n {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.jsw-as-l {
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
}

   /* 15. HOMEPAGE — BOOK SECTION (SG-08) */
/*   ==================================================== */
.jsw-book {
  background: var(--bg);
  padding: 96px 0;
}

.jsw-book-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}

.jsw-book-copy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,193,0,.1);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: .7rem;
  font-weight: 700;
  color: #916800;
  margin-bottom: 12px;
}

.jsw-book-h {
  color: var(--navy);
  margin-bottom: 12px;
}

.jsw-book-d,
.jsw-book-desc {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.72;
  margin-bottom: 18px;
}

.jsw-book-formats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.jsw-bkf {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .76rem;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
}

.jsw-bkf-icon,
.jsw-bkf-icon .elementor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: currentColor;
}

.jsw-bkf-icon i {
  font-size: 12px;
}

.jsw-bkf-icon svg {
  width: 12px;
  height: 12px;
}

.jsw-book-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.jsw-book-cta-wrap .elementor-widget-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.jsw-book-cta-wrap .elementor-widget-button {
  width: auto !important;
  margin: 0 !important;
}

.jsw-book-cta-wrap .elementor-button-wrapper {
  display: flex;
}

.jsw-book .elementor-widget-button.jsw-book-secondary .elementor-button,
.jsw-book .elementor-widget-button.jsw-book-secondary .elementor-button:focus,
.jsw-book .elementor-widget-button.jsw-book-secondary .elementor-button:active {
  background: transparent !important;
  color: var(--muted) !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 10px 18px !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  transition: all .18s cubic-bezier(.25,.46,.45,.94) !important;
}

.jsw-book .elementor-widget-button.jsw-book-secondary .elementor-button:hover {
  background: transparent !important;
  color: var(--navy) !important;
  box-shadow: none !important;
  border: none !important;
  transform: translateY(-1px) !important;
}

   /* 16. HOMEPAGE — MATERIALS GRID (SG-09) */
/*   ==================================================== */
.jsw-mats {
  background: var(--white);
  padding: 96px 0;
}

.jsw-mg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.jsw-mc {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  cursor: pointer;
  transition: all .18s;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.jsw-mc:hover {
  border-color: transparent;
  box-shadow: 0 10px 32px rgba(45,70,111,.09);
  transform: translateY(-2px);
}

.jsw-mc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--navy);
  transition: .18s;
}

.jsw-mc:hover .jsw-mc-icon {
  background: rgba(45,70,111,.1);
}

.jsw-mc-type {
  font-size: .63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.jsw-mc-title {
  font-size: .87rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
  line-height: 1.35;
}

.jsw-mc-desc {
  font-size: .77rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.jsw-mc-price {
  font-size: .92rem;
  font-weight: 700;
  color: var(--red);
}

.jsw-mc.featured {
  border-color: rgba(111,198,230,.3);
  background: linear-gradient(135deg, rgba(111,198,230,.06), rgba(45,70,111,.03));
}

.jsw-mc.featured .jsw-mc-icon {
  background: rgba(111,198,230,.12);
  color: var(--navy);
}

   17. HOMEPAGE — FINAL CTA (SG-10)
/*   ==================================================== */
.jsw-fcta {
  background: linear-gradient(135deg, #c23537 0%, var(--red, #ee4b4d) 50%, #e85f61 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.elementor-section.jsw-fcta {
  background: linear-gradient(135deg, #c23537 0%, var(--red, #ee4b4d) 50%, #e85f61 100%);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.elementor-section.jsw-fcta > .elementor-container,
.elementor-section.jsw-fcta .elementor-column,
.elementor-section.jsw-fcta .elementor-widget-wrap {
  position: relative;
  z-index: 1;
}

.elementor-section.jsw-fcta > .elementor-container {
  padding: 0 24px;
}

.elementor-section.jsw-fcta .elementor-widget-wrap {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  align-items: start;
  column-gap: 12px;
  row-gap: 0;
  padding: 0 !important;
}

.elementor-section.jsw-fcta .elementor-widget-heading,
.elementor-section.jsw-fcta .elementor-widget-text-editor,
.elementor-section.jsw-fcta .jsw-fcta-proof {
  grid-column: 1 / -1;
  width: 100%;
}

.elementor-section.jsw-fcta .elementor-widget-button {
  width: auto !important;
  max-width: none !important;
  margin: 0;
}

.elementor-section.jsw-fcta .elementor-widget-button .elementor-widget-container,
.elementor-section.jsw-fcta .elementor-button-wrapper {
  height: 100%;
}

.elementor-section.jsw-fcta .elementor-widget-text-editor p {
  margin-bottom: 0;
}

.elementor-section.jsw-fcta .elementor-widget-heading .elementor-widget-container {
  max-width: 760px;
  margin: 0 auto;
}

.elementor-section.jsw-fcta .elementor-widget-text-editor .elementor-widget-container {
  max-width: 700px;
  margin: 0 auto;
}

.elementor-section.jsw-fcta .elementor-widget-text-editor p.jsw-fcta-sub {
  margin-bottom: 42px;
}

.elementor-section.jsw-fcta .elementor-widget-button .elementor-button {
  min-height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.elementor-section.jsw-fcta .elementor-widget-button .elementor-button:hover {
  transform: translateY(-1px);
}

.elementor-section.jsw-fcta .elementor-element-el47 .elementor-button {
  background: #fff;
  color: var(--red, #ee4b4d);
  box-shadow: 0 18px 36px rgba(178, 41, 43, .18);
}

.elementor-section.jsw-fcta .elementor-element-el48 .elementor-button {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}

.elementor-section.jsw-fcta .elementor-element-el48 .elementor-button:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.55);
}

.jsw-fcta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,.06), transparent 65%);
}

.jsw-fcta-deco {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-size: clamp(100px, 16vw, 200px);
  font-weight: 900;
  color: rgba(255,255,255,.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.jsw-fcta h2 {
  color: #fff;
  margin-bottom: 8px;
  position: relative;
}

.jsw-fcta-sub {
  color: rgba(255,255,255,.72);
  font-weight: 300;
  font-size: 1.02rem;
  margin-bottom: 32px;
  position: relative;
}

.jsw-fcta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.jsw-fcta-proof {
  font-size: .72rem;
  color: rgba(255,255,255,.42);
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
}

.elementor-section.jsw-fcta .jsw-fcta-proof {
  width: 100%;
  margin-top: 18px;
}

.elementor-section.jsw-fcta .jsw-fcta-deco {
  z-index: 0;
}

.elementor-section.jsw-fcta .jsw-fcta-sub,
.elementor-section.jsw-fcta .elementor-widget-text-editor,
.elementor-section.jsw-fcta .elementor-widget-text-editor p {
  color: rgba(255,255,255,.72);
}

@media (max-width: 767px) {
  .elementor-section.jsw-fcta {
    padding: 64px 0;
  }

  .elementor-section.jsw-fcta .elementor-widget-wrap {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 12px;
  }

  .elementor-section.jsw-fcta > .elementor-container {
    padding: 0 20px;
  }

  .elementor-section.jsw-fcta .elementor-widget-heading .elementor-widget-container,
  .elementor-section.jsw-fcta .elementor-widget-text-editor .elementor-widget-container {
    max-width: 100%;
  }

  .elementor-section.jsw-fcta .elementor-widget-button,
  .elementor-section.jsw-fcta .elementor-widget-button .elementor-button,
  .elementor-section.jsw-fcta .elementor-button-wrapper {
    width: 100%;
  }

  .elementor-section.jsw-fcta .elementor-widget-button .elementor-button {
    min-height: 50px;
    padding: 0 24px;
  }

  .elementor-section.jsw-fcta .jsw-fcta-proof {
    gap: 6px;
    margin-top: 8px;
  }

  .elementor-section.jsw-fcta .elementor-widget-text-editor p.jsw-fcta-sub {
    margin-bottom: 28px;
  }

  .elementor-section.jsw-fcta .jsw-fcta-deco {
    right: 0;
    bottom: -24px;
    font-size: clamp(84px, 28vw, 140px);
  }
}

.jsw-fps {
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,.25);
  border-radius: 50%;
}

   /* 18. HOMEPAGE — COURSES GRID (pakiet pkg-strip) */
/*   ==================================================== */
.jsw-courses-grid {
  background: var(--white);
  padding: 96px 0;
}

.jsw-cg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.jsw-cc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: all .2s cubic-bezier(.25,.46,.45,.94);
  display: flex;
  flex-direction: column;
  position: relative;
}

.jsw-cc:hover {
  box-shadow: 0 16px 48px rgba(45,70,111,.11);
  transform: translateY(-4px);
  border-color: transparent;
}

.jsw-cc.feat {
  border-color: var(--navy);
}

.jsw-cc.feat:hover {
  box-shadow: 0 20px 60px rgba(45,70,111,.16);
}

.jsw-cc-best {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 0 0 7px 7px;
  letter-spacing: .06em;
  white-space: nowrap;
}

.jsw-cc-stripe {
  height: 3px;
}

.jsw-s-sky {
  background: linear-gradient(90deg, var(--sky), #4ab8d8);
}

.jsw-s-yel {
  background: linear-gradient(90deg, var(--yellow), #e6a800);
}

.jsw-s-red {
  background: linear-gradient(90deg, var(--red), #c23537);
}

.jsw-cc-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.jsw-cc-num {
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 7px;
}

.jsw-cc-title {
  font-size: .96rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.jsw-cc-desc {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.jsw-cc-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: .72rem;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--bg);
}

.jsw-cc-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 14px;
}

.jsw-cc-foot {
  display: flex;
  gap: 8px;
}

.jsw-cc-foot .btn {
  flex: 1;
  font-size: .78rem;
  padding: 10px 8px;
}

   /* 19. COURSE — HERO SECTION (KU-01) */
/*   ==================================================== */
.jsw-course-hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-l) 70%, var(--navy-l) 100%);
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}

.jsw-course-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 75% 50%, rgba(111,198,230,.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(255,193,0,.07) 0%, transparent 55%);
}

.jsw-ch-deco {
  position: absolute;
  right: -30px;
  bottom: -40px;
  font-size: clamp(120px, 18vw, 200px);
  font-weight: 900;
  color: rgba(255,255,255,.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.03em;
}

.jsw-ch-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
  padding-bottom: 56px;
}

.jsw-ch-inner > * {
  min-width: 0;
}

.jsw-ch-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 4px 12px 4px 8px;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
}

.jsw-ch-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky);
  animation: jsw-pulse 2s ease infinite;
}

.jsw-ch-left h1 {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.jsw-ch-left h1 em {
  font-style: italic;
  color: var(--yellow);
}

.jsw-ch-sub {
  color: rgba(255,255,255,.6);
  font-weight: 300;
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 500px;
}

.jsw-ch-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.jsw-ch-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
}

.jsw-ch-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.jsw-ch-list li {
  padding: 6px 0;
  font-size: .84rem;
  color: rgba(255,255,255,.65);
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.jsw-ch-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
  margin-top: 9px;
}

/* Course hero right — image */
.jsw-ch-right {
  position: relative;
}

.jsw-ch-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
}

.jsw-ch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jsw-ch-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #3a5a8a, #2d466f);
  gap: 8px;
  color: rgba(255,255,255,.2);
  font-size: .78rem;
}

   /* 20. COURSE — STICKY BUY CARD (KU-02) */
/*   ==================================================== */
.jsw-sticky-buy {
  position: sticky;
  top: 80px;
  align-self: start;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid var(--line);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
}

.jsw-sb-header {
  padding: 20px 22px 0;
}

.jsw-sb-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.jsw-sb-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.jsw-sb-old {
  font-size: .78rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.jsw-sb-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.jsw-sb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: .78rem;
  color: #3a4560;
}

.jsw-sb-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
}

.jsw-sb-body {
  padding: 0 22px 20px;
}

.jsw-sb-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  font-size: .72rem;
  color: var(--muted);
}

.jsw-sb-guarantee strong {
  color: var(--navy);
}

.jsw-sb-upsell {
  background: linear-gradient(135deg, var(--navy), var(--navy-l));
  padding: 16px 22px;
  color: #fff;
}

.jsw-sb-upsell-label {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--sky);
  margin-bottom: 4px;
}

.jsw-sb-upsell-name {
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.jsw-sb-upsell-price {
  font-size: .72rem;
  opacity: .6;
  margin-bottom: 10px;
}

.jsw-sb-upsell-price strong {
  color: var(--yellow);
}

   /* 21. COURSE — FOR WHOM GRID (KU-05) */
/*   ==================================================== */
.jsw-forwhom {
  background: var(--white);
  padding: 96px 0;
}

.jsw-forwhom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.jsw-fw-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--bg);
  border-radius: 12px;
}

.jsw-fw-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}

.jsw-fw-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.jsw-fw-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
}

   /* 22. COURSE — LEARNING OUTCOMES (KU-06) */
/*   ==================================================== */
.jsw-outcomes {
  padding: 96px 0;
  background: var(--bg);
}

.jsw-outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.jsw-oc {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.jsw-oc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 8px;
}

.jsw-oc-text {
  font-size: .88rem;
  color: #3a4560;
  line-height: 1.5;
}

   /* 23. COURSE — VIDEO PREVIEW (KU-07) */
/*   ==================================================== */
.jsw-video-preview {
  background: var(--navy-d);
  padding: 96px 0;
  position: relative;
}

.jsw-vp-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
}

.jsw-vp-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy-l), var(--navy-d));
}

.jsw-vp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background .2s;
}

.jsw-vp-overlay:hover {
  background: rgba(0,0,0,.2);
}

.jsw-vp-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  transition: transform .2s;
}

.jsw-vp-overlay:hover .jsw-vp-play {
  transform: scale(1.08);
}

.jsw-vp-label {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .08em;
}

   /* 24. COURSE — GUARANTEE (KU-13) */
/*   ==================================================== */
.jsw-guarantee {
  padding: 96px 0;
  background: var(--white);
}

.jsw-guarantee-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}

.jsw-guarantee-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), #4ab0d4);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(111,198,230,.4);
}

.jsw-guarantee h3 {
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.jsw-guarantee p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
}

   /* 25. COURSE — PACKAGES / PRICING (KU-12) */
/*   ==================================================== */
.jsw-packages {
  background: var(--navy-d);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.jsw-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.jsw-pkg-card {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 28px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  transition: all .2s;
}

.jsw-pkg-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-4px);
}

.jsw-pkg-card.feat {
  background: rgba(255,255,255,.14);
  border-color: var(--yellow);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  position: relative;
}

.jsw-pkg-card.feat::before {
  content: 'Najlepszy wybór';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--navy-d);
  font-size: .6rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 0 0 7px 7px;
  letter-spacing: .05em;
  white-space: nowrap;
}

.jsw-pkg-name {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .5;
  margin-bottom: 6px;
}

.jsw-pkg-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}

.jsw-pkg-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  flex: 1;
}

.jsw-pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: .82rem;
  opacity: .65;
  line-height: 1.45;
}

.jsw-pkg-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
  margin-top: 8px;
}

.jsw-pkg-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}

.jsw-pkg-old {
  font-size: .72rem;
  opacity: .35;
  text-decoration: line-through;
  margin-bottom: 14px;
}

   /* 26. COURSE — TESTIMONIAL GRID (KU-09) */
/*   ==================================================== */
.jsw-testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

   /* 27. COURSE — AUTHOR BLOCK (KU-10) */
/*   ==================================================== */
.jsw-author {
  padding: 96px 0;
  background: var(--bg);
}

.jsw-author-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
}

.jsw-author-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-l), var(--navy-d));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
  border: 3px solid var(--line);
}

.jsw-author h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.jsw-author p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

   /* 28. COURSE — BONUS MATERIALS (KU-10+) */
/*   ==================================================== */
.jsw-bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.jsw-bonus-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  color: #fff;
  transition: .2s;
}

.jsw-bonus-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-3px);
}

.jsw-bonus-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: grid;
  place-items: center;
  color: var(--sky);
}

.jsw-bonus-title {
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.jsw-bonus-desc {
  font-size: .75rem;
  opacity: .5;
  line-height: 1.45;
}

   /* 29. BOOK PAGE — NEW EDITION (KS-05) */
/*   ==================================================== */
.jsw-new-edition {
  padding: 96px 0;
  background: var(--white);
}

.jsw-ne-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.jsw-ne-visual {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px;
  color: #fff;
  text-align: center;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.jsw-ne-visual .b3-bdg {
  position: static;
  display: inline-block;
  margin-bottom: 16px;
}

   /* 30. BOOK PAGE — BENEFITS GRID (KS-04) */
/*   ==================================================== */
.jsw-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.jsw-benefit-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: .2s;
}

.jsw-benefit-card:hover {
  box-shadow: 0 12px 32px rgba(45,70,111,.08);
  transform: translateY(-3px);
}

.jsw-benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg);
  display: grid;
  place-items: center;
  color: var(--navy);
  margin-bottom: 14px;
}

.jsw-benefit-card h3 {
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.jsw-benefit-card p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}

   /* 31. ABOUT PAGE — HERO (OM-01) */
/*   ==================================================== */
.jsw-about-page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jsw-about-page-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.jsw-about-page-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.jsw-about-page-hero h1 em {
  font-style: italic;
  color: var(--yellow);
}

   /* 32. ABOUT PAGE — STATS STRIP (OM-02) */
/*   ==================================================== */
.jsw-about-stats-strip {
  background: var(--navy-d);
  padding: 24px 0;
}

.jsw-about-stats-inner {
  display: flex;
  justify-content: center;
  gap: 0;
}

.jsw-about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.jsw-about-stat:last-child {
  border-right: none;
}

   /* 33. ABOUT PAGE — SOCIAL / TIMELINE (OM-03 / OM-05) */
/*   ==================================================== */
.jsw-social-links-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.jsw-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 700;
  color: #3a4560;
  transition: all .15s;
  text-decoration: none;
}

.jsw-social-link:hover {
  background: var(--bg);
  color: var(--navy);
  transform: translateX(4px);
}

   /* 34. KONTAKT — FORM CARD (KT-02) */
/*   ==================================================== */
.jsw-contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(45,70,111,.06);
}

.jsw-contact-form-card .form-row {
  margin-bottom: 18px;
}

.jsw-contact-form-card input[type="text"],
.jsw-contact-form-card input[type="email"],
.jsw-contact-form-card textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-primary);
  font-size: .88rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s;
}

.jsw-contact-form-card input:focus,
.jsw-contact-form-card textarea:focus {
  outline: none;
  border-color: var(--navy);
}

   /* 35. KONTAKT — DIRECT CONTACT SIDEBAR (KT-03) */
/*   ==================================================== */
.jsw-contact-sidebar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
  border-radius: 16px;
  padding: 32px 28px;
  color: #fff;
}

.jsw-contact-sidebar h3 {
  font-size: .95rem;
  color: #fff;
  margin-bottom: 6px;
}

.jsw-contact-sidebar p {
  font-size: .82rem;
  opacity: .6;
  margin-bottom: 20px;
}

   /* 36. KONTAKT — INFO CARD (KT-04) */
/*   ==================================================== */
.jsw-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}

.jsw-info-section {
  padding: 14px 0;
  border-bottom: 1px solid var(--bg);
}

.jsw-info-section:last-child {
  border-bottom: none;
}

.jsw-info-section h4 {
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.jsw-info-section p {
  font-size: .82rem;
  color: var(--muted);
}

   /* 37. DZIENNIK ZMIAN — TIMELINE (DZ-02 / DZ-03) */
/*   ==================================================== */
.jsw-dziennik-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

.jsw-dziennik-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-l) 70%, var(--navy-l) 100%);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.jsw-dziennik-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 80% 40%, rgba(111, 198, 230, 0.12), transparent 60%);
}

.jsw-dziennik-hero .jsw-dziennik-content {
  position: relative;
  z-index: 1;
}

.jsw-dziennik-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: #fff !important;
  margin-bottom: 10px;
}

.jsw-dziennik-hero h1 em {
  font-style: italic;
  color: var(--yellow) !important;
}

.jsw-dziennik-hero p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
}

.jsw-dziennik-page-body {
  padding: 48px 0 80px;
  background: var(--white);
}

.jsw-changelog-year {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 2px;
}

.jsw-timeline-entry {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.jsw-tl-date {
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
}

.jsw-tl-content h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.35;
}

.jsw-tl-meta {
  font-size: .68rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.35;
}

.jsw-tl-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.jsw-tl-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jsw-tl-list li {
  font-size: .8rem;
  color: #3a4560;
  padding: 3px 0;
  display: flex;
  gap: 8px;
}

.jsw-tl-list li::before {
  content: '•';
  color: var(--red);
  flex-shrink: 0;
}

   /* 38. OD CZEGO ZACZĄĆ — STAGE PATH (OC-02) */
/*   ==================================================== */
.jsw-stage-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.jsw-stage-step {
  text-align: center;
  position: relative;
}

.jsw-stage-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
}

/* Connecting line between steps */
.jsw-stage-path::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.jsw-stage-step-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.jsw-stage-step-sub {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.45;
}

   /* 39. PRODUKT CYFROWY — 3-COL HERO (PD-01) */
/*   ==================================================== */
.jsw-pd-hero {
  padding: 56px 0;
  background: var(--white);
}

.jsw-pd-hero-grid {
  display: grid;
  grid-template-columns: 280px 1fr 320px;
  gap: 40px;
  align-items: start;
}

.jsw-pd-cover {
  border-radius: 12px;
  border: 2px dashed var(--line);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--muted);
  position: relative;
  overflow: hidden;
}

.jsw-pd-cover img {
  object-fit: cover;
}

.jsw-pd-cover-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sky);
  color: var(--navy-d);
  font-size: .58rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

   /* 40. RESPONSIVE BREAKPOINTS */
/*   ==================================================== */

/* < 1100px — skalowanie */
@media (max-width: 1100px) {
  .jsw-nav-inner {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .jsw-footer-grid {
    gap: 24px;
  }

  .jsw-pd-hero-grid {
    grid-template-columns: 220px 1fr 280px;
    gap: 24px;
  }
}

/* < 900px — hamburger + mobile */
@media (max-width: 900px) {
  html,
  body,
  .site,
  .site-main {
    overflow-x: clip;
  }

  body.jsw-has-fixed-mobile-header {
    padding-top: 74px;
  }

  .jsw-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  /* Nav */
  .jsw-nav-links {
    display: none;
  }

  .jsw-hamburger {
    display: inline-flex;
  }

  .jsw-mobile-drawer {
    display: block;
    max-width: 100vw;
    height: calc(100dvh - 74px);
    bottom: auto;
  }

  .jsw-nav-right .jsw-cart-btn {
    display: inline-flex;
  }

  .jsw-nav-right .jsw-login-btn {
    display: none !important;
  }

  .jsw-nav-right .btn-red.btn-sm {
    display: none !important;
  }

  .jsw-nav-right {
    gap: 10px;
  }

  .jsw-nav-inner {
    gap: 10px;
  }

  /* Footer */
  .jsw-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .jsw-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Breadcrumb steps */
  .jsw-step .step-label {
    display: none;
  }

  .jsw-step-sep {
    width: 20px;
    margin: 0 6px;
  }

  /* Homepage */
  .jsw-hero-grid > .elementor-container,
  #top > .elementor-container {
    grid-template-columns: 1fr;
  }

  .jsw-hero-right {
    display: none;
  }

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

  .jsw-book-grid {
    grid-template-columns: 1fr;
  }

  .jsw-cg {
    grid-template-columns: 1fr 1fr;
  }

  .jsw-mg {
    grid-template-columns: 1fr 1fr;
  }

  /* Course */
  .jsw-ch-inner {
    grid-template-columns: 1fr;
  }

  .jsw-forwhom-grid {
    grid-template-columns: 1fr;
  }

  .jsw-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .jsw-pkg-grid {
    grid-template-columns: 1fr;
  }

  .jsw-testi-grid {
    grid-template-columns: 1fr;
  }

  .jsw-author-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .jsw-author-img {
    margin: 0 auto;
  }

  /* Book page */
  .jsw-ne-grid {
    grid-template-columns: 1fr;
  }

  .jsw-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Kontakt */
  .jsw-pd-hero-grid {
    grid-template-columns: 1fr;
  }

  /* Od czego zacząć */
  .jsw-stage-path {
    grid-template-columns: 1fr 1fr;
  }

  .jsw-stage-path::before {
    display: none;
  }

  /* Dziennik */
  .jsw-timeline-entry {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .jsw-trust-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 32px;
    gap: 6px;
  }

  .jsw-ti {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 8px 0;
    width: 100%;
  }

  .jsw-ti:last-child {
    border-bottom: none;
  }
}

@media (min-width: 901px) {
  body.jsw-has-fixed-mobile-header {
    padding-top: 0 !important;
  }

  .jsw-header {
    position: sticky !important;
    top: 0;
    left: auto;
    right: auto;
    width: auto;
  }

  .jsw-hamburger,
  .jsw-mobile-drawer {
    display: none !important;
  }
}

/* < 768px — tablet/mobile */
@media (max-width: 768px) {
  .jsw-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .jsw-benefits-grid {
    grid-template-columns: 1fr;
  }

  .jsw-bonus-grid {
    grid-template-columns: 1fr;
  }
}

/* < 540px — phone */
@media (max-width: 540px) {
  .jsw-nav-inner {
    height: 60px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .jsw-mobile-drawer {
    top: 74px;
    padding: var(--space-md) 18px;
  }

  .jsw-logo {
    font-size: 0.72rem;
    margin-right: 0;
    gap: 7px;
    min-width: 0;
  }

  .jsw-logo-icon {
    width: 26px;
    height: 26px;
  }

  .jsw-header-logo-label {
    display: inline;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 132px;
  }

  .jsw-cart-btn {
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  .jsw-cg {
    grid-template-columns: 1fr;
  }

  .jsw-mg {
    grid-template-columns: 1fr;
  }

  .jsw-pkg-grid {
    grid-template-columns: 1fr;
  }

  .jsw-stage-path {
    grid-template-columns: 1fr;
  }

  .jsw-hero-proof {
    gap: 14px;
  }

  .jsw-about-stats-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 32px;
  }

  .jsw-about-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 8px 0;
    width: 100%;
    flex-direction: row;
    gap: 10px;
  }

  .jsw-about-stat:last-child {
    border-bottom: none;
  }
}

   /* 41. ANIMATED COUNTER */
/*   ==================================================== */
.count-up {
  font-variant-numeric: tabular-nums;
}

   /* 42. SECTION BACKGROUND VARIATIONS */
/*   ==================================================== */
.bg-white {
  background: var(--white);
}

.bg-navy {
  background: var(--navy);
}

.bg-navy-d {
  background: var(--navy-d);
}

.bg-light {
  background: var(--bg);
}

   /* 43. GUARANTEE SIDEBAR (rec-side inner cards) */
/*   ==================================================== */
.guar {
  background: linear-gradient(135deg, rgba(111,198,230,.13), rgba(45,70,111,.06));
  border: 1.5px solid rgba(111,198,230,.3);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 2px 16px rgba(111,198,230,.1);
}

.guar-top {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 9px;
}

.guar-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--sky), #4ab0d4);
  display: grid;
  place-items: center;
  box-shadow: 0 3px 10px rgba(111,198,230,.4);
}

.guar-t {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
}

.guar-s {
  font-size: .7rem;
  color: var(--sky);
  font-weight: 700;
}

.guar-p {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.55;
}

.side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
}

.side-lbl {
  font-size: .64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  margin-bottom: 10px;
}

.side-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid var(--bg);
  cursor: pointer;
  transition: .12s;
  border-radius: 6px;
}

.side-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.side-row:hover {
  background: var(--bg);
  padding-left: 6px;
  padding-right: 6px;
  margin: 0 -6px;
}

.sr-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--bg);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--navy);
  transition: .12s;
}

.side-row:hover .sr-icon {
  background: rgba(45,70,111,.1);
}

.sr-name {
  font-size: .83rem;
  font-weight: 700;
  color: #3a4560;
}

.sr-price {
  font-size: .75rem;
  color: var(--muted);
}

/* Package upsell block */
.pkg-upsell {
  background: linear-gradient(135deg, var(--navy), var(--navy-l));
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: .18s;
  box-shadow: 0 6px 24px rgba(45,70,111,.22);
}

.pkg-upsell:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(45,70,111,.32);
}

.pu-label {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--sky);
  margin-bottom: 4px;
}

.pu-name {
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.pu-price {
  font-size: .76rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}

.pu-price strong {
  color: var(--yellow);
}

.pu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 700;
  transition: .14s;
}

.pkg-upsell:hover .pu-btn {
  background: rgba(255,255,255,.22);
}

   /* 44. QUIZ WIDGET — dark section */
/*   ==================================================== */
.jsw-quiz {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.jsw-quiz::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(111,198,230,.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(255,193,0,.07) 0%, transparent 55%);
}

.jsw-quiz-deco {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(160px, 22vw, 280px);
  font-weight: 900;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.quiz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.jsw-quiz .elementor-heading-title {
  color: #fff !important;
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -.02em !important;
  font-family: 'Lato', sans-serif !important;
}

.jsw-quiz .elementor-heading-title em {
  color: var(--red) !important;
  font-style: italic !important;
}

.quiz-left .eyebrow {
  color: var(--sky);
}

.jsw-quiz .quiz-left h2 {
  color: #fff !important;
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -.02em !important;
  margin-bottom: 14px !important;
}

.jsw-quiz .quiz-left h2 em {
  color: var(--red) !important;
  font-style: italic !important;
}

.quiz-left-sub {
  color: rgba(255,255,255,.58);
  font-weight: 300;
  font-size: .95rem;
  line-height: 1.72;
  margin-bottom: 28px;
}

.quiz-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qck {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}

.qck-i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(111,198,230,.18);
  border: 1px solid rgba(111,198,230,.35);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.quiz-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
}

.quiz-card .btn.btn-dark.btn-sm {
  background: var(--ink) !important;
  color: #fff !important;
  box-shadow: 0 2px 0 rgba(0,0,0,.3), 0 6px 20px rgba(0,0,0,.18) !important;
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  line-height: 1;
}

.quiz-card .btn.btn-dark.btn-sm:hover {
  background: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 3px 0 rgba(0,0,0,.4), 0 12px 28px rgba(0,0,0,.24) !important;
}

.quiz-card .btn.btn-dark.btn-sm:disabled {
  opacity: .4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: 0 2px 0 rgba(0,0,0,.3), 0 6px 20px rgba(0,0,0,.18) !important;
}

.q-prog {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.qb {
  height: 3px;
  flex: 1;
  border-radius: 2px;
  background: var(--line);
  transition: background .4s;
}

.qb.fill {
  background: var(--red);
}

.qb.act {
  background: var(--sky);
}

.q-step {
  display: none;
}

.q-step.on {
  display: block;
  animation: fadeUp .35s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.q-kicker {
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 8px;
}

.q-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.4;
}

.q-opts {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.q-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: .86rem;
  font-weight: 700;
  cursor: pointer;
  color: #3a4560;
  transition: all .14s;
  background: #fff;
}

.q-opt-icon {
  color: var(--muted);
  flex-shrink: 0;
  transition: .14s;
  display: grid;
  place-items: center;
}

.q-opt-icon svg {
  display: block;
}

.q-opt:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--bg);
  transform: translateX(4px);
}

.q-opt:hover .q-opt-icon {
  color: var(--navy);
}

.q-opt.sel {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  transform: none;
  box-shadow: 0 4px 16px rgba(45,70,111,.25);
}

.q-opt.sel .q-opt-icon {
  color: rgba(255,255,255,.7);
}

.q-foot {
}

.q-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.q-ct {
  font-size: .7rem;
  color: var(--muted);
}

.q-result {
  display: none;
}

.q-result.on {
  display: flex;
  flex-direction: column;
  animation: fadeUp .4s ease;
}

.qr-check {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(6,95,70,.1);
  border: 1px solid rgba(6,95,70,.2);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.qr-tag {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(6,95,70,1);
  margin-bottom: 5px;
}

.qr-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.35;
}

.qr-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 18px;
}

.qr-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qr-reset {
  font-size: .73rem;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  margin-top: 10px;
  display: inline-block;
}

.qr-reset:hover {
  color: var(--navy);
}

   /* 45. STAGE SELECTOR WIDGET */
/*   ==================================================== */
.selector {
  background: var(--bg);
  padding: 96px 0;
}

.sec-head {
  margin-bottom: 40px;
}

.stage-visual-bar {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.svc {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 22px 18px;
  cursor: pointer;
  transition: all .18s;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  box-shadow: 0 2px 10px rgba(45,70,111,.05);
}

.svc:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(45,70,111,.1);
}

.svc.on {
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 8px 28px rgba(45,70,111,.2);
}

.svc-img {
  color: var(--muted);
  margin-bottom: 4px;
  transition: .18s;
}

.svc.on .svc-img {
  color: rgba(255,255,255,.7);
}

.svc:hover:not(.on) .svc-img {
  color: var(--navy);
}

.svc-num {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--sky);
}

.svc.on .svc-num {
  color: rgba(255,255,255,.5);
}

.svc-label {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.svc.on .svc-label {
  color: #fff;
}

.svc-sub {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.45;
}

.svc.on .svc-sub {
  color: rgba(255,255,255,.6);
}

.rp {
  display: none;
}

.rp.on {
  display: grid;
  grid-template-columns: 1fr 308px;
  gap: 20px;
  align-items: start;
}

.rec-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--navy);
  box-shadow: 0 8px 36px rgba(45,70,111,.1);
}

.rec-head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
  color: #fff;
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.rec-tag {
  background: var(--yellow);
  color: var(--navy-d);
  font-size: .62rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}

.rec-name {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

.rec-body {
  padding: 24px 26px;
}

.rec-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .74rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.rm {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rec-desc {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #3a4560;
}

.rec-list {
  list-style: none;
  margin-bottom: 0;
}

.rec-list li {
  padding: 7px 0;
  border-bottom: 1px solid var(--bg);
  font-size: .85rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #3a4560;
}

.rec-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 8px;
}

.rec-buy {
  padding: 20px 26px;
  background: var(--bg);
  border-top: 1.5px solid var(--line);
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.price-blk .old {
  font-size: .78rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 1px;
}

.price-blk .price {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.cta-blk {
  margin-left: auto;
  text-align: center;
}

.rec-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pkg-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 12px 40px rgba(45,70,111,.2);
}

.ps-tag {
  font-size: .64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--sky);
  margin-bottom: 5px;
}

.ps-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.ps-sub {
  font-size: .78rem;
  opacity: .5;
  color: #fff;
}

.ps-r {
  flex-shrink: 0;
  text-align: right;
}

.ps-old {
  font-size: .78rem;
  opacity: .35;
  text-decoration: line-through;
  color: #fff;
  margin-bottom: 1px;
}

.ps-price {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 10px;
}

   /* 46. TESTIMONIAL SLIDER WIDGET */
/*   ==================================================== */
.jsw-testimonial-slider {
  padding: 96px 0;
  background: linear-gradient(155deg, #f0f4fd 0%, #fdf5f2 100%);
  position: relative;
  overflow: hidden;
}

.jsw-testimonial-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 80% 30%, rgba(111,198,230,.13) 0%, transparent 60%);
}

.tc {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(226,232,242,.7);
  box-shadow: 0 2px 12px rgba(45,70,111,.06);
  display: flex;
  flex-direction: column;
  transition: .2s;
}

.tc:hover {
  box-shadow: 0 12px 36px rgba(45,70,111,.1);
  transform: translateY(-3px);
}

.tc-tf {
  display: flex;
  align-items: stretch;
  gap: 8px;
  background: var(--bg);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
}

.tc-b, .tc-a {
  font-size: .73rem;
  flex: 1;
  line-height: 1.4;
}

.tc-b {
  color: var(--muted);
}

.tc-b strong {
  display: block;
  font-size: .61rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 2px;
}

.tc-a {
  color: var(--navy);
  font-weight: 700;
}

.tc-a strong {
  display: block;
  font-size: .61rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #059669;
  margin-bottom: 2px;
}

.tc-arr {
  color: var(--sky);
  font-size: .8rem;
  padding: 0 2px;
  display: grid;
  place-items: center;
}

.tc-stars {
  color: var(--yellow);
  font-size: .72rem;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.tc-q {
  font-size: .86rem;
  line-height: 1.72;
  color: #3a4560;
  font-style: italic;
  margin-bottom: 14px;
  flex: 1;
}

.tc-who {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
}

.tc-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-l), var(--navy-d));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: .72rem;
  flex-shrink: 0;
}

.tc-nm {
  font-size: .79rem;
  font-weight: 700;
}

.tc-cr {
  font-size: .7rem;
  color: var(--muted);
}

.ttrack-wrap {
  overflow: hidden;
  margin-bottom: 0;
}

.ttrack {
  display: flex;
  gap: 18px;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.car-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.cbtn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .14s;
  color: var(--muted);
}

.cbtn:hover {
  border-color: var(--navy);
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(45,70,111,.1);
}

.cdots {
  display: flex;
  gap: 5px;
}

.cdot {
  height: 6px;
  border-radius: 3px;
  background: var(--line);
  cursor: pointer;
  transition: all .25s;
  width: 6px;
}

.cdot.on {
  background: var(--navy);
  width: 20px;
}

   /* 47. COUNTER WIDGET */
/*   ==================================================== */
.jsw-counter {
  text-align: center;
}

.count-up {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.count-label {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 2px;
}

   /* 48. CURRICULUM ACCORDION WIDGET */
/*   ==================================================== */
.jsw-curriculum {
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.curr-module {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}

.curr-module:last-child {
  margin-bottom: 0;
}

.curr-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 16px;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  cursor: pointer;
  transition: background .15s;
  background: #fff;
}

.curr-header > br,
.curr-lesson > br,
.curr-body > p,
.jsw-curriculum > p {
  display: none !important;
}

.curr-header:hover {
  background: var(--bg);
}

.curr-module.open .curr-header {
  background: var(--navy);
  color: #fff;
}

.curr-head-main {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.curr-num {
  font-size: .7rem;
  font-weight: 700;
  color: var(--muted);
  min-width: 0;
  font-variant-numeric: tabular-nums;
}

.curr-module.open .curr-num {
  color: rgba(255,255,255,.6);
}

.curr-title {
  font-size: .9rem;
  font-weight: 700;
  min-width: 0;
}

.curr-module.open .curr-title {
  color: #fff;
}

.curr-lessons {
  font-size: .73rem;
  color: var(--muted);
}

.curr-module.open .curr-lessons {
  color: rgba(255,255,255,.5);
}

.curr-chevron {
  transition: transform .2s;
  color: var(--muted);
  flex-shrink: 0;
}

.curr-module.open .curr-chevron {
  transform: rotate(180deg);
  color: rgba(255,255,255,.7);
}

.curr-body {
  padding: 0 0 8px;
  background: #fff;
}

.curr-lesson {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-top: 1px solid var(--bg);
  font-size: .845rem;
  color: #3a4560;
}

.curr-lesson:hover {
  background: var(--bg);
}

.curr-lesson:last-child {
  border-bottom: none;
}

.curr-lesson-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
}

.curr-lesson-svg {
  width: 16px;
  height: 16px;
  display: block;
}

.curr-lesson-title {
  flex: 1;
  color: #3a4560;
}

.curr-lesson-badge {
  font-size: .62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.curr-lesson-badge.free {
  background: rgba(6,95,70,.1);
  color: #059669;
}

   /* 49. FAQ ACCORDION WIDGET */
/*   ==================================================== */
.jsw-faq {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item.bg {
  background: var(--bg);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  transition: color .15s;
}

.faq-q:hover {
  color: var(--navy-d);
}

.faq-item.open .faq-q {
  color: var(--red);
}

.faq-chevron {
  font-size: .7rem;
  transition: transform .2s;
  color: var(--muted);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--red);
}

.faq-a {
  padding: 0 20px 16px;
  font-size: .88rem;
  line-height: 1.7;
  color: #3a4560;
}

.faq-a p {
  margin-bottom: 10px;
}

.faq-a p:last-child {
  margin-bottom: 0;
}

   /* 50. 3D BOOK WIDGET */
/*   ==================================================== */
.book-3d {
  width: 170px;
  aspect-ratio: 2/3;
  border-radius: 5px;
  position: relative;
  box-shadow: 10px 14px 32px rgba(0,0,0,.22), -2px -2px 0 rgba(0,0,0,.1);
  padding: 18px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: .35s cubic-bezier(.25,.46,.45,.94);
}

.book-3d:hover {
  transform: rotate(-3deg) scale(1.04);
  box-shadow: 16px 20px 44px rgba(0,0,0,.28);
}

.jsw-book-cover-real img {
  width: 170px !important;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 5px;
  box-shadow: 10px 14px 32px rgba(0,0,0,.22), -2px -2px 0 rgba(0,0,0,.1);
  transition: .35s cubic-bezier(.25,.46,.45,.94);
}

.jsw-book-cover-real img:hover {
  transform: rotate(-3deg) scale(1.04);
  box-shadow: 16px 20px 44px rgba(0,0,0,.28);
}

.b3-bdg {
  position: absolute;
  top: -9px;
  right: -9px;
  background: var(--red);
  color: #fff;
  font-size: .56rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 5px;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 3px 10px rgba(223,65,67,.4);
}

.b3-ed {
  font-size: .46rem;
  opacity: .45;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.b3-t {
  font-size: .7rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 14px;
}

.b3-a {
  font-size: .56rem;
  opacity: .5;
}

   /* 51. SUBNAV WIDGET */
/*   ==================================================== */
.jsw-subnav {
  position: sticky;
  top: 60px;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.jsw-subnav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.jsw-subnav-inner::-webkit-scrollbar {
  display: none;
}

.csn-link {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}

.csn-link:hover {
  color: var(--navy);
}

.csn-link.on {
  color: var(--red);
  border-bottom-color: var(--red);
}

.csn-buy {
  margin-left: auto;
  color: var(--red) !important;
  font-weight: 900 !important;
}

.csn-buy:hover {
  color: var(--red-d) !important;
}

   /* 52. TOPIC TAGS WIDGET */
/*   ==================================================== */
.topic-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 700;
  color: #3a4560;
  cursor: pointer;
  transition: all .15s;
  background: #fff;
}

.topic-chip:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--bg);
}

.topic-chip.sel {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

   /* 53. COPY CLIPBOARD WIDGET */
/*   ==================================================== */
.copy-display {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.copy-text {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  flex: 1;
}

.copy-btn.copied {
  background: #059669 !important;
  border-color: #059669 !important;
  color: #fff !important;
}

   /* 54. MOBILE BUY BAR WIDGET */
/*   ==================================================== */
.jsw-mobile-buy-bar {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 12px var(--space-md);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  animation: mbb-slideUp .3s ease-out;
}

@keyframes mbb-slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.mbb-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mbb-left {
  flex-shrink: 0;
}

.mbb-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.mbb-note {
  font-size: .62rem;
  color: var(--muted);
  margin-top: 2px;
}

@media (min-width: 901px) {
  .jsw-mobile-buy-bar {
    display: none !important;
  }
}

   /* 55. OD CZEGO ZACZAC PAGE — jsw_od_czego_zaczac_v2.html */
/*   ==================================================== */

/* ━━━━ HERO ━━━━ */
.jsw-ocz-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-l) 70%, var(--navy-l) 100%) !important;
  padding: 64px 0 56px !important;
  position: relative !important;
  overflow: hidden !important;
}
.jsw-ocz-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 75% 40%, rgba(111,198,230,.13) 0%, transparent 60%),
              radial-gradient(ellipse 40% 50% at 10% 90%, rgba(255,193,0,.07) 0%, transparent 55%);
  z-index: 0;
}
.jsw-ocz-hero .jsw-ocz-hero-deco {
  position: absolute !important;
  right: -20px !important;
  bottom: -50px !important;
  font-size: clamp(100px, 16vw, 180px) !important;
  font-weight: 900 !important;
  color: rgba(255,255,255,.025) !important;
  line-height: 1 !important;
  pointer-events: none !important;
  user-select: none !important;
  z-index: 1;
}
.jsw-ocz-hero .jsw-ocz-hero-inner {
  max-width: 680px !important;
  margin: 0 auto !important;
  text-align: center !important;
  position: relative !important;
  z-index: 2;
}
/* Force all Elementor wrappers in hero to static */
.jsw-ocz-hero .elementor-container,
.jsw-ocz-hero .elementor-row,
.jsw-ocz-hero .elementor-column,
.jsw-ocz-hero .elementor-widget-wrap,
.jsw-ocz-hero .elementor-widget,
.jsw-ocz-hero .elementor-widget-container {
  position: static !important;
}
.jsw-ocz-hero .elementor-container {
  max-width: none !important;
}
.jsw-ocz-hero .elementor-widget-wrap {
  display: block !important;
  padding: 0 !important;
}

/* Badge */
.jsw-ocz-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  background: rgba(255,255,255,.1) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 100px !important;
  padding: 5px 14px 5px 8px !important;
  font-size: .75rem !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,.85) !important;
  margin-bottom: 22px !important;
}
.jsw-ocz-badge-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: var(--sky) !important;
  animation: jsw-ocz-pulse 2s ease infinite;
}
@keyframes jsw-ocz-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.6); }
}

/* Hero h1 */
.jsw-ocz-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: -.025em !important;
  color: #fff !important;
  margin-bottom: 18px !important;
}
.jsw-ocz-hero h1 em,
.jsw-ocz-hero h1 i {
  font-style: italic !important;
  color: var(--yellow) !important;
}

/* Hero subtitle */
.jsw-ocz-hero-sub {
  font-size: 1.02rem !important;
  color: rgba(255,255,255,.7) !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
  margin-bottom: 36px !important;
  max-width: 520px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Hero chips */
.jsw-ocz-hero-chips {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}
.jsw-ocz-chip {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(255,255,255,.09) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 100px !important;
  padding: 6px 13px !important;
  font-size: .76rem !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,.82) !important;
  white-space: nowrap !important;
}

/* ━━━━ STEPS SECTION ━━━━ */
.jsw-ocz-steps-section {
  background: var(--bg) !important;
  padding: 64px 0 !important;
}
.jsw-ocz-steps-section .wrap {
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
}
.jsw-ocz-steps-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  position: relative !important;
}
.jsw-ocz-steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--navy-l), var(--red));
  opacity: .25;
  pointer-events: none;
}
.jsw-ocz-step-card {
  text-align: center !important;
  padding: 0 16px !important;
  position: relative !important;
}
.jsw-ocz-step-circle {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  margin: 0 auto 14px !important;
  display: grid !important;
  place-items: center !important;
  position: relative !important;
  z-index: 1 !important;
  border: 2px solid var(--line) !important;
  background: var(--white) !important;
  transition: .2s !important;
}
.jsw-ocz-step-circle svg {
  display: block !important;
}
.jsw-ocz-step-icon {
  color: var(--muted) !important;
  transition: .2s !important;
}
.jsw-ocz-step-num {
  position: absolute !important;
  top: -6px !important;
  right: -2px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: var(--bg) !important;
  border: 1.5px solid var(--line) !important;
  font-size: .6rem !important;
  font-weight: 700 !important;
  color: var(--muted) !important;
  display: grid !important;
  place-items: center !important;
  transition: .2s !important;
  line-height: 1 !important;
}
.jsw-ocz-step-label {
  font-size: .82rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin-bottom: 4px !important;
}
.jsw-ocz-step-sub {
  font-size: .74rem !important;
  color: var(--muted) !important;
  line-height: 1.4 !important;
}

/* Eyebrow + h2 override in steps */
.jsw-ocz-steps-section .eyebrow {
  font-size: .68rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: var(--sky) !important;
  display: block !important;
  margin-bottom: 8px !important;
}
.jsw-ocz-steps-section h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -.02em !important;
  color: var(--navy) !important;
}
.jsw-ocz-steps-section h2 em,
.jsw-ocz-steps-section h2 i {
  font-style: italic !important;
  color: var(--red) !important;
}

/* ━━━━ QUIZ SECTION ━━━━ */
.jsw-ocz-quiz-section {
  background: var(--white) !important;
  padding: 56px 0 80px !important;
}
.jsw-ocz-quiz-section .wrap {
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
}
/* Quiz progress bar */
.jsw-ocz-qp-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 10px !important;
}
.jsw-ocz-qp-label {
  font-size: .78rem !important;
  font-weight: 700 !important;
  color: var(--muted) !important;
}
.jsw-ocz-qp-step {
  font-size: .78rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
}
.jsw-ocz-qp-track {
  height: 6px !important;
  background: var(--line) !important;
  border-radius: 100px !important;
  overflow: hidden !important;
  margin-bottom: 32px !important;
}
.jsw-ocz-qp-fill {
  height: 100% !important;
  background: linear-gradient(90deg, var(--sky), var(--navy-l)) !important;
  border-radius: 100px !important;
  transition: width .4s cubic-bezier(.25,.46,.45,.94) !important;
}
/* Quiz question card */
.jsw-ocz-q-card {
  background: var(--white) !important;
  border: 1.5px solid var(--line) !important;
  border-radius: 18px !important;
  padding: 36px !important;
  box-shadow: 0 4px 24px rgba(45,70,111,.07) !important;
  max-width: 760px !important;
  margin: 0 auto !important;
}
.jsw-ocz-q-step-label {
  font-size: .66rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .1em !important;
  color: var(--muted) !important;
  margin-bottom: 6px !important;
}
.jsw-ocz-q-question {
  font-size: 1.18rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  line-height: 1.4 !important;
  margin-bottom: 24px !important;
}
/* Answer options grid */
.jsw-ocz-q-options {
  display: grid !important;
  gap: 10px !important;
  margin-bottom: 24px !important;
}
.jsw-ocz-q-options.cols-2 {
  grid-template-columns: 1fr 1fr !important;
}
.jsw-ocz-q-opt {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 18px !important;
  border: 1.5px solid var(--line) !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  transition: all .15s !important;
  background: var(--white) !important;
  text-align: left !important;
  text-decoration: none !important;
  color: inherit !important;
}
.jsw-ocz-q-opt:hover {
  border-color: var(--navy) !important;
  background: var(--bg) !important;
  transform: translateX(3px) !important;
}
.jsw-ocz-q-opt:hover .jsw-ocz-q-opt-title,
.jsw-ocz-q-opt:hover .jsw-ocz-q-opt-sub {
  color: var(--navy) !important;
}
.jsw-ocz-q-opt-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
  background: var(--bg) !important;
  border: 1px solid var(--line) !important;
  display: grid !important;
  place-items: center !important;
  flex-shrink: 0 !important;
  color: var(--muted) !important;
  transition: .15s !important;
}
.jsw-ocz-q-opt-title {
  font-size: .92rem !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  line-height: 1.2 !important;
  margin-bottom: 2px !important;
}
.jsw-ocz-q-opt-sub {
  font-size: .76rem !important;
  color: var(--muted) !important;
}
/* Quiz nav */
.jsw-ocz-q-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.jsw-ocz-q-hint {
  font-size: .72rem !important;
  color: var(--muted) !important;
}

/* ━━━━ RESULT SECTION ━━━━ */
.jsw-ocz-result-section {
  display: none;
}
.jsw-ocz-result-section.show {
  display: block !important;
  animation: jsw-ocz-fadeUp .5s ease !important;
}
@keyframes jsw-ocz-fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.jsw-ocz-result-section .jsw-ocz-result-wrap {
  max-width: 900px !important;
  margin: 0 auto !important;
}
/* Result header card */
.jsw-ocz-result-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-l)) !important;
  border-radius: 18px !important;
  padding: 40px 48px !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 32px !important;
  align-items: center !important;
  margin-bottom: 24px !important;
  position: relative !important;
  overflow: hidden !important;
}
.jsw-ocz-result-header::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(111,198,230,.12), transparent 65%) !important;
  pointer-events: none !important;
}
.jsw-ocz-rh-tag {
  font-size: .65rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .1em !important;
  color: var(--sky) !important;
  margin-bottom: 8px !important;
  position: relative !important;
}
.jsw-ocz-rh-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem) !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1.15 !important;
  margin-bottom: 8px !important;
  letter-spacing: -.02em !important;
  position: relative !important;
}
.jsw-ocz-rh-title em,
.jsw-ocz-rh-title i {
  font-style: italic !important;
  color: var(--yellow) !important;
}
.jsw-ocz-rh-sub {
  font-size: .92rem !important;
  color: rgba(255,255,255,.65) !important;
  font-weight: 300 !important;
  line-height: 1.65 !important;
  position: relative !important;
  max-width: 460px !important;
}
.jsw-ocz-rh-price-box {
  background: rgba(255,255,255,.1) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 14px !important;
  padding: 22px 28px !important;
  text-align: center !important;
  flex-shrink: 0 !important;
  min-width: 160px !important;
  position: relative !important;
}
.jsw-ocz-rhp-label {
  font-size: .65rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .09em !important;
  color: rgba(255,255,255,.5) !important;
  margin-bottom: 6px !important;
}
.jsw-ocz-rhp-old {
  font-size: .82rem !important;
  color: rgba(255,255,255,.3) !important;
  text-decoration: line-through !important;
  margin-bottom: 2px !important;
}
.jsw-ocz-rhp-price {
  font-size: 2.2rem !important;
  font-weight: 900 !important;
  color: var(--yellow) !important;
  line-height: 1 !important;
  margin-bottom: 12px !important;
}

/* Result includes */
.jsw-ocz-ri {
  background: var(--bg) !important;
  border-radius: 14px !important;
  padding: 24px 28px !important;
  margin-bottom: 20px !important;
  border: 1px solid var(--line) !important;
}
.jsw-ocz-ri-title {
  font-size: .72rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .09em !important;
  color: var(--muted) !important;
  margin-bottom: 14px !important;
}
.jsw-ocz-ri-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
}
.jsw-ocz-ri-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 9px !important;
  font-size: .865rem !important;
  color: #3a4560 !important;
  padding: 7px 0 !important;
  border-bottom: 1px solid var(--line) !important;
}
.jsw-ocz-ri-check {
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: rgba(111,198,230,.15) !important;
  border: 1px solid rgba(111,198,230,.3) !important;
  display: grid !important;
  place-items: center !important;
  flex-shrink: 0 !important;
  margin-top: 1px !important;
}

/* Result why */
.jsw-ocz-ry-title {
  font-size: .85rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin-bottom: 12px !important;
}
.jsw-ocz-ry-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
}
.jsw-ocz-ry-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 9px !important;
  font-size: .875rem !important;
  color: var(--muted) !important;
  padding: 6px 0 !important;
  border-bottom: 1px solid var(--bg) !important;
}
.jsw-ocz-ry-list li:last-child {
  border-bottom: none !important;
}
.jsw-ocz-ry-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: var(--red) !important;
  flex-shrink: 0 !important;
  margin-top: 8px !important;
}

/* Result upsell */
.jsw-ocz-result-upsell {
  background: linear-gradient(135deg, var(--navy), var(--navy-l)) !important;
  border-radius: 14px !important;
  padding: 22px 26px !important;
  margin-bottom: 24px !important;
  cursor: pointer !important;
  transition: .18s !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
  text-decoration: none !important;
  color: inherit !important;
}
.jsw-ocz-ru-label {
  font-size: .62rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .09em !important;
  color: var(--sky) !important;
  margin-bottom: 4px !important;
}
.jsw-ocz-ru-title {
  font-size: .95rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 3px !important;
  line-height: 1.3 !important;
}
.jsw-ocz-ru-savings {
  font-size: .8rem !important;
  color: rgba(255,255,255,.6) !important;
}
.jsw-ocz-ru-savings strong {
  color: var(--yellow) !important;
}
.jsw-ocz-ru-cta {
  flex-shrink: 0 !important;
}

/* Restart link */
.jsw-ocz-restart-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: .8rem !important;
  color: var(--muted) !important;
  cursor: pointer !important;
  transition: .12s !important;
  margin-top: 6px !important;
  text-decoration: none !important;
}
.jsw-ocz-restart-link:hover {
  color: var(--navy) !important;
}

/* Guarantee note */
.jsw-ocz-guarantee-note {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: var(--white) !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  border: 1px solid var(--line) !important;
  margin-bottom: 24px !important;
}

/* ━━━━ ALL COURSES STRIP ━━━━ */
.jsw-ocz-courses-strip {
  background: var(--bg) !important;
  padding: 64px 0 !important;
}
.jsw-ocz-courses-strip .wrap {
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
}
.jsw-ocz-courses-strip .eyebrow {
  font-size: .68rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: var(--sky) !important;
  display: block !important;
  margin-bottom: 8px !important;
}
.jsw-ocz-courses-strip h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -.02em !important;
  color: var(--navy) !important;
}
.jsw-ocz-courses-strip h2 em,
.jsw-ocz-courses-strip h2 i {
  font-style: italic !important;
  color: var(--red) !important;
}
/* Course cards grid */
.jsw-ocz-cs-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  margin-bottom: 16px !important;
}
.jsw-ocz-csc {
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: 14px !important;
  padding: 22px !important;
  transition: .18s !important;
  cursor: pointer !important;
  text-decoration: none !important;
  color: inherit !important;
  display: flex !important;
  flex-direction: column !important;
}
.jsw-ocz-csc:hover {
  box-shadow: 0 10px 32px rgba(45,70,111,.09) !important;
  transform: translateY(-3px) !important;
  border-color: transparent !important;
}
.jsw-ocz-csc.highlighted {
  border-color: var(--navy) !important;
  box-shadow: 0 6px 24px rgba(45,70,111,.12) !important;
}
.jsw-ocz-csc-num {
  font-size: .62rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .09em !important;
  color: var(--muted) !important;
  margin-bottom: 6px !important;
}
.jsw-ocz-csc-stripe {
  height: 3px !important;
  border-radius: 2px !important;
  margin-bottom: 14px !important;
}
.jsw-ocz-csc-stripe.s1 {
  background: linear-gradient(90deg, var(--sky), #4ab8d8) !important;
}
.jsw-ocz-csc-stripe.s2 {
  background: linear-gradient(90deg, var(--yellow), #e6a800) !important;
}
.jsw-ocz-csc-stripe.s3 {
  background: linear-gradient(90deg, var(--red), var(--red-d)) !important;
}
.jsw-ocz-csc-title {
  font-size: .95rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin-bottom: 6px !important;
  line-height: 1.35 !important;
}
.jsw-ocz-csc-desc {
  font-size: .82rem !important;
  color: var(--muted) !important;
  line-height: 1.6 !important;
  margin-bottom: 14px !important;
  flex: 1 !important;
}
.jsw-ocz-csc-price {
  font-size: 1.2rem !important;
  font-weight: 900 !important;
  color: var(--red) !important;
  margin-bottom: 12px !important;
}
.jsw-ocz-csc-foot {
  display: flex !important;
  gap: 8px !important;
}
.jsw-ocz-csc-foot .btn {
  flex: 1 !important;
  font-size: .78rem !important;
  padding: 10px 8px !important;
}

/* Package row */
.jsw-ocz-pkg-row {
  background: linear-gradient(135deg, var(--navy), var(--navy-l)) !important;
  border-radius: 14px !important;
  padding: 24px 28px !important;
  margin-top: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
  box-shadow: 0 8px 28px rgba(45,70,111,.18) !important;
  text-decoration: none !important;
  color: inherit !important;
}
.jsw-ocz-pr-tag {
  font-size: .62rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .09em !important;
  color: var(--sky) !important;
  margin-bottom: 4px !important;
}
.jsw-ocz-pr-title {
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 3px !important;
}
.jsw-ocz-pr-sub {
  font-size: .78rem !important;
  color: rgba(255,255,255,.5) !important;
}
.jsw-ocz-pr-r {
  flex-shrink: 0 !important;
  text-align: right !important;
}
.jsw-ocz-pr-old {
  font-size: .78rem !important;
  color: rgba(255,255,255,.3) !important;
  text-decoration: line-through !important;
  margin-bottom: 1px !important;
}
.jsw-ocz-pr-price {
  font-size: 1.9rem !important;
  font-weight: 900 !important;
  color: var(--yellow) !important;
  line-height: 1 !important;
  margin-bottom: 10px !important;
}

/* ━━━━ ABOUT STRIP ━━━━ */
.jsw-ocz-about-strip {
  background: var(--navy) !important;
  padding: 56px 0 !important;
  position: relative !important;
  overflow: hidden !important;
}
.jsw-ocz-about-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(45,90,138,.3), transparent 60%);
}
.jsw-ocz-about-strip .wrap {
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
  position: relative !important;
  z-index: 1 !important;
}
.jsw-ocz-as-grid {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: 40px !important;
  align-items: center !important;
  position: relative !important;
  z-index: 1 !important;
}
.jsw-ocz-as-photo {
  width: 80px !important;
  height: 96px !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,.05) !important;
  border: 1.5px dashed rgba(255,255,255,.12) !important;
  display: grid !important;
  place-items: center !important;
  color: rgba(255,255,255,.2) !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
}
.jsw-ocz-as-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top center !important;
  display: block !important;
}
.jsw-ocz-as-text h3 {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 6px !important;
}
.jsw-ocz-as-text p {
  font-size: .875rem !important;
  color: rgba(255,255,255,.58) !important;
  line-height: 1.7 !important;
  font-weight: 300 !important;
}
.jsw-ocz-as-stats {
  display: flex !important;
  gap: 24px !important;
  margin-top: 14px !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(255,255,255,.07) !important;
}
.jsw-ocz-as-stat-n {
  font-size: 1.3rem !important;
  font-weight: 900 !important;
  color: var(--yellow) !important;
  line-height: 1 !important;
}
.jsw-ocz-as-stat-l {
  font-size: .68rem !important;
  color: rgba(255,255,255,.38) !important;
  margin-top: 2px !important;
}

   /* ====================================================
   /* 56. RESPONSIVE — OD CZEGO ZACZAC */
/*   ==================================================== */
@media (max-width: 860px) {
  .jsw-ocz-steps-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  .jsw-ocz-steps-grid::before {
    display: none !important;
  }
  .jsw-ocz-result-header {
    grid-template-columns: 1fr !important;
  }
  .jsw-ocz-ri-grid,
  .jsw-ocz-cs-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .jsw-ocz-q-options.cols-2 {
    grid-template-columns: 1fr !important;
  }
  .jsw-ocz-as-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 540px) {
  .jsw-ocz-ri-grid,
  .jsw-ocz-cs-grid {
    grid-template-columns: 1fr !important;
  }
  .jsw-ocz-result-upsell {
    flex-direction: column !important;
  }
  .jsw-ocz-pkg-row {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .jsw-ocz-pr-r {
    text-align: left !important;
  }
}

   /* 55. RESPONSIVE — WIDGET OVERRIDES (continued) */
/*   ==================================================== */
@media (max-width: 900px) {
  .quiz-grid {
    grid-template-columns: 1fr;
  }

  .quiz-left {
    display: none;
  }

  .stage-visual-bar {
    grid-template-columns: 1fr 1fr;
  }

  .rp.on {
    grid-template-columns: 1fr;
  }

  .rec-side {
    display: none;
  }

  /* Course section responsive */
  .jsw-ch-pills {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .stage-visual-bar {
    grid-template-columns: 1fr;
  }
}

   /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
   /*  COURSE PAGE — ZAKUP DZIAŁKI (post 118)                     */
   /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

   /* --- Section wrappers inside course-main --- */
.jsw-sec {
  margin-bottom: 52px;
}
.jsw-sec:last-child {
  margin-bottom: 0;
}
.jsw-sec-head {
  margin-bottom: 24px;
}
.jsw-sec-head h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -.02em !important;
  color: var(--navy) !important;
}
.jsw-sec-head h2 em {
  font-style: italic;
  color: var(--red) !important;
}

   /* --- Course Hero proof row --- */
.jsw-ch-proof {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.jsw-chp-val {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.jsw-chp-lbl {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
}
.jsw-chl-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(111,198,230,.2);
  border: 1px solid rgba(111,198,230,.35);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

   /* --- Course hero image --- */
.jsw-ch-img .jsw-ch-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #3a5a8a, #2d466f);
  gap: 8px;
  color: rgba(255,255,255,.2);
  font-size: .78rem;
}

   /* --- Stats strip --- */
.jsw-course-stats {
  background: var(--navy) !important;
  padding: 18px 0 !important;
  border-top: 1px solid rgba(255,255,255,.06);
}
.jsw-cs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}
.jsw-csi {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 22px;
  border-right: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}
.jsw-csi:last-child {
  border-right: none;
}
.jsw-csi strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.jsw-csi span {
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
}

   /* --- Course subnav --- */
.jsw-course-subnav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.jsw-csn-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}
.jsw-csn-inner::-webkit-scrollbar {
  display: none;
}
.jsw-csn-a {
  display: flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  transition: .12s;
  flex-shrink: 0;
  text-decoration: none;
}
.jsw-csn-a:hover {
  color: var(--navy);
  background: rgba(45,70,111,.06);
}
.jsw-csn-a.on {
  color: var(--red);
}
.jsw-csn-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--line);
  flex-shrink: 0;
  margin: 0 2px;
}
.jsw-csn-buy {
  margin-left: 0;
  color: var(--red) !important;
  background: rgba(223,65,67,.06) !important;
  gap: 5px;
}
.jsw-csn-buy:hover {
  background: rgba(223,65,67,.12) !important;
}

   /* --- Course body layout --- */
.jsw-course-body-wrap .elementor-container {
  display: grid !important;
  grid-template-columns: 1fr 360px !important;
  gap: 48px !important;
  align-items: start !important;
}
.jsw-course-body-wrap {
  padding: 56px 0 !important;
}
.jsw-course-main {
  min-width: 0;
}
.jsw-course-sidebar-col > .elementor-widget-wrap {
  position: sticky !important;
  top: 80px !important;
}

   /* --- Sidebar buy card --- */
.jsw-course-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}
.jsw-buy-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.jsw-buy-hdr {
  background: linear-gradient(135deg, var(--navy), var(--navy-l));
  padding: 18px 20px;
  color: #fff;
  min-width: 0;
}
.jsw-buy-tag {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--sky);
  margin-bottom: 4px;
}
.jsw-buy-name {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.3;
  word-break: break-word;
}
.jsw-buy-body {
  padding: 20px 20px 4px;
  min-width: 0;
}
.jsw-buy-price-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--red);
}
.jsw-buy-price-row .jsw-buy-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.jsw-buy-access {
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 14px;
}
.jsw-buy-inc {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.jsw-buy-inc li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .82rem;
  color: #3a4560;
  padding: 5px 0;
  border-bottom: 1px solid var(--bg);
}
.jsw-buy-inc li:last-child {
  border-bottom: none;
}
.jsw-bi-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--sky);
  margin-top: 1px;
}
.jsw-buy-body .btn {
  margin-bottom: 8px;
}
.jsw-buy-guar {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(111,198,230,.08);
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(111,198,230,.2);
  margin-top: 12px;
  margin-bottom: 0;
}
.jsw-buy-guar-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(111,198,230,.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--sky);
}
.jsw-buy-guar-t {
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
}
.jsw-buy-guar-s {
  font-size: .68rem;
  color: var(--muted);
}
.jsw-buy-upsell {
  background: linear-gradient(135deg, var(--navy-d), var(--navy-l));
  padding: 16px 20px 18px;
  cursor: pointer;
  transition: .15s;
  border-top: 1px solid rgba(255,255,255,.08);
  border-radius: 0 0 16px 16px;
}
.jsw-buy-upsell:hover {
  background: linear-gradient(135deg, #0f1e32, var(--navy));
}
.jsw-buy-us-lbl {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sky);
  margin-bottom: 4px;
}
.jsw-buy-us-text {
  font-size: .86rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  line-height: 1.35;
}
.jsw-buy-us-save {
  font-size: .76rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}
.jsw-buy-us-save strong {
  color: var(--yellow);
}
.jsw-buy-us-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 8px 14px;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  transition: .14s;
}
.jsw-buy-upsell:hover .jsw-buy-us-arrow {
  background: rgba(255,255,255,.2);
  gap: 9px;
}

   /* --- Bonus cards grid --- */
.jsw-bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.jsw-bonus-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.jsw-bonus-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(111,198,230,.08), rgba(45,70,111,.04));
  border: 1px solid rgba(111,198,230,.25);
}
.jsw-bc-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--navy);
  --jsw-course-icon-size: 16px;
}
.jsw-bc-icon-feat {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(111,198,230,.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--sky);
  --jsw-course-icon-size: 16px;
}
.jsw-bc-title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.jsw-bc-desc {
  font-size: .78rem;
  color: var(--muted);
}

   /* --- For whom grid --- */
.jsw-fw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.jsw-fwc {
  background: var(--bg);
  border-radius: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: .15s;
}
.jsw-fwc:hover {
  border-color: var(--sky);
  box-shadow: 0 4px 14px rgba(45,70,111,.07);
}
.jsw-fwc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--navy);
  --jsw-course-icon-size: 16px;
}
.jsw-fwc-t {
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.jsw-fwc-s {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.45;
}

   /* --- Outcomes grid --- */
.jsw-outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.jsw-oc {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--line);
}
.jsw-oc-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(111,198,230,.15);
  border: 1px solid rgba(111,198,230,.35);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  --jsw-course-icon-size: 12px;
}
.jsw-course-icon-asset,
.jsw-course-icon-image {
  display: block;
  width: var(--jsw-course-icon-size, 16px);
  height: var(--jsw-course-icon-size, 16px);
  flex-shrink: 0;
}
.jsw-course-icon-asset svg,
.jsw-course-icon-image {
  display: block;
  width: 100%;
  height: 100%;
}
.jsw-course-icon-image {
  object-fit: contain;
}
.jsw-oc-text {
  font-size: .855rem;
  color: #3a4560;
  line-height: 1.45;
}

   /* --- Video preview --- */
.jsw-video-preview {
  background: var(--navy);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .18s;
}
.jsw-video-preview img {
  height: 100% !important;
}
.jsw-video-preview:hover {
  transform: scale(1.01);
}
.jsw-vp-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-l));
  opacity: .9;
}
.jsw-vp-play {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.4);
  display: grid;
  place-items: center;
  transition: .15s;
}
.jsw-video-preview:hover .jsw-vp-play {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}
.jsw-vp-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 1;
  color: #fff;
}
.jsw-vp-title {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.jsw-vp-sub {
  font-size: .72rem;
  opacity: .65;
}

   /* --- Curriculum accordion --- */
.jsw-curriculum {
  /* wrapper — individual modules are .jsw-curr-mod */
}
.jsw-curr-mod {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}
.jsw-curr-hdr {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: .12s;
  gap: 10px;
}
.jsw-curr-hdr:hover {
  background: var(--bg);
}
.jsw-curr-mod.open .jsw-curr-hdr {
  background: var(--navy);
  color: #fff;
}
.jsw-curr-mod.open .jsw-curr-hdr:hover {
  background: var(--navy);
}
.jsw-cmh-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.jsw-cmh-num {
  font-size: .68rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--bg);
  border-radius: 4px;
  padding: 3px 7px;
  transition: .12s;
}
.jsw-curr-mod.open .jsw-cmh-num {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
}
.jsw-cmh-title {
  font-size: .9rem;
  font-weight: 700;
}
.jsw-cmh-count {
  font-size: .75rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: .12s;
}
.jsw-curr-mod.open .jsw-cmh-count {
  color: rgba(255,255,255,.6);
}
.jsw-curr-chev {
  transition: transform .2s;
  flex-shrink: 0;
}
.jsw-curr-mod.open .jsw-curr-chev {
  transform: rotate(180deg);
}
.jsw-curr-lessons {
  display: none;
  padding: 0 0 8px;
}
.jsw-curr-mod.open .jsw-curr-lessons {
  display: block;
}
.jsw-curr-lesson {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-top: 1px solid var(--bg);
  font-size: .845rem;
  color: #3a4560;
}
.jsw-curr-lesson:hover {
  background: var(--bg);
}
.jsw-cl-icon {
  width: 16px;
  height: 16px;
  color: var(--muted);
  flex-shrink: 0;
}

   /* --- Effects grid --- */
.jsw-effects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.jsw-eff-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.jsw-eff-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--navy);
  --jsw-course-icon-size: 18px;
}
.jsw-eff-t {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.jsw-eff-s {
  font-size: .8rem;
  color: var(--muted);
}

   /* --- Testimonial grid --- */
.jsw-testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.jsw-tc {
  background: var(--bg);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--line);
}
.jsw-tc-stars {
  color: var(--yellow);
  font-size: .72rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.jsw-tc-q {
  font-size: .875rem;
  line-height: 1.7;
  color: #3a4560;
  font-style: italic;
  margin-bottom: 12px;
}
.jsw-tc-who {
  display: flex;
  align-items: center;
  gap: 9px;
}
.jsw-tc-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-l), var(--navy-d));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: .72rem;
  flex-shrink: 0;
}
.jsw-tc-nm {
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink);
}
.jsw-tc-cr {
  font-size: .7rem;
  color: var(--muted);
}

   /* --- Author block --- */
.jsw-author-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  background: var(--bg);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--line);
}
.jsw-author-photo {
  width: 100px;
  height: 120px;
  border-radius: 10px;
  background: var(--navy-d);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: .7rem;
  text-align: center;
  gap: 6px;
  border: 1.5px dashed rgba(45,70,111,.2);
}
.jsw-author-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.jsw-author-bio {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7;
}

   /* --- FAQ list --- */
.jsw-faq-list {
  /* wrapper */
}
.jsw-faq-item {
  border-bottom: 1px solid var(--line);
}
.jsw-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  transition: .12s;
}
.jsw-faq-q:hover {
  color: var(--red);
}
.jsw-faq-chev {
  flex-shrink: 0;
  transition: transform .2s;
  color: var(--muted);
}
.jsw-faq-item.open .jsw-faq-chev {
  transform: rotate(180deg);
  color: var(--red);
}
.jsw-faq-a {
  display: none;
  padding: 0 0 16px;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7;
}
.jsw-faq-item.open .jsw-faq-a {
  display: block;
}

   /* --- Guarantee section --- */
.jsw-guarantee-section {
  background: var(--bg) !important;
  padding: 56px 0 !important;
}
.jsw-guar-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(45,70,111,.07);
}
.jsw-guar-big-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sky), #4ab0d4);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(111,198,230,.4);
}
.jsw-guar-h {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.jsw-guar-p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 560px;
}

   /* --- Packages section --- */
.jsw-packages-section {
  background: var(--navy) !important;
  padding: 72px 0 !important;
  position: relative;
  overflow: hidden;
}
.jsw-packages-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 80% 40%, rgba(111,198,230,.09) 0%, transparent 60%);
}
.jsw-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
  align-items: stretch;
}
.jsw-pkg-grid.jsw-pkg-grid--count-2 {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}
.jsw-pkg-card-tech {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 24px;
  transition: .18s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.jsw-pkg-card-tech:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-3px);
}
.jsw-pkg-card-tech.featured {
  background: rgba(255,255,255,.1);
  border-color: var(--yellow);
  box-shadow: 0 0 0 1px var(--yellow);
}
.jsw-pkg-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--navy-d);
  font-size: .62rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 0 0 6px 6px;
  letter-spacing: .05em;
  white-space: nowrap;
}
.jsw-pkg-name {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 6px;
}
.jsw-pkg-title {
  font-size: .98rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 12px;
}
.jsw-pkg-save {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,193,0,.12);
  border: 1px solid rgba(255,193,0,.25);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 16px;
}
.jsw-pkg-list {
  list-style: none;
  margin-bottom: 0;
  flex: 1;
  padding: 0;
}
.jsw-pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.68);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.jsw-pkg-list li:last-child {
  border-bottom: none;
}
.jsw-pkg-li-icon {
  color: var(--sky);
  flex-shrink: 0;
  margin-top: 2px;
}
.jsw-pkg-pricing {
  padding-top: 20px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.1);
}
.jsw-pkg-old {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.jsw-pkg-price {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 12px;
}
.jsw-pkg-card-tech.featured .btn-yellow {
  box-shadow: 0 4px 20px rgba(255,193,0,.4);
}

   /* --- Final CTA strip --- */
.jsw-final-strip {
  background: linear-gradient(135deg, var(--red-d), var(--red)) !important;
  padding: 60px 0 !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.jsw-final-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(255,255,255,.05), transparent 65%);
}
.jsw-final-strip .elementor-heading-title {
  color: #fff !important;
  margin-bottom: 8px;
}
.jsw-final-strip p {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  margin-bottom: 28px;
  position: relative;
}
.jsw-final-strip .btn-white,
.jsw-final-strip a.btn-white {
  color: var(--navy-d) !important;
}
.jsw-final-strip .btn-white:hover,
.jsw-final-strip a.btn-white:hover {
  color: var(--navy-d) !important;
}
.jsw-fs-proof {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
}
.jsw-final-strip .wrap > p:empty,
.jsw-final-strip .elementor-widget-wrap > p:empty,
.jsw-final-strip .elementor-widget-container > p:empty,
.jsw-final-strip .jsw-fs-proof > p:empty {
  display: none !important;
}
.jsw-final-strip .jsw-fs-proof > span,
.jsw-final-strip .jsw-fs-proof > p {
  color: rgba(255,255,255,.4) !important;
  font-size: .72rem !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}
.jsw-final-strip .jsw-fs-proof > p {
  display: inline !important;
}
.jsw-fps-dot {
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,.25);
  border-radius: 50%;
}

   /* --- Heading overrides for course page sections --- */
.jsw-packages-section .elementor-heading-title {
  color: #fff !important;
}
.jsw-packages-section h2 em {
  font-style: italic;
  color: var(--yellow) !important;
}
.jsw-packages-section .eyebrow {
  color: var(--sky) !important;
}

   /* --- Breadcrumb --- */
.jsw-breadcrumb .elementor-widget-wrap {
  padding: 10px 0 !important;
}
.jsw-breadcrumb .wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.jsw-breadcrumb .wrap,
.jsw-breadcrumb .wrap a {
  font-size: .78rem;
  color: var(--muted);
}
.jsw-breadcrumb .wrap a:hover {
  color: var(--navy);
}
.jsw-breadcrumb .wrap span {
  margin: 0 6px;
  opacity: .5;
}

   /* --- Course hero section overrides --- */
.jsw-course-hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-l) 70%, var(--navy-l) 100%) !important;
  padding: 56px 0 0 !important;
  position: relative;
  overflow: hidden;
}
.jsw-course-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 75% 50%, rgba(111,198,230,.14) 0%, transparent 60%),
              radial-gradient(ellipse 40% 50% at 10% 80%, rgba(255,193,0,.07) 0%, transparent 55%);
}
.jsw-course-hero .elementor-container {
  display: grid !important;
  grid-template-columns: 1fr 360px !important;
  gap: 48px !important;
  align-items: start !important;
}
.jsw-course-hero .elementor-container > * {
  min-width: 0;
}
.jsw-course-hero .jsw-ch-left .elementor-heading-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: -.025em !important;
  color: #fff !important;
}
.jsw-course-hero .jsw-ch-left .elementor-heading-title em {
  font-style: italic;
  color: var(--yellow) !important;
}

   /* --- Responsive --- */
@media (max-width: 900px) {
  .jsw-course-hero .elementor-container {
    grid-template-columns: 1fr !important;
  }
  .jsw-course-body-wrap .elementor-container {
    grid-template-columns: 1fr !important;
  }
  .jsw-buy-card,
  .jsw-course-sidebar {
    position: static;
  }
  .jsw-buy-card {
    display: none;
  }
  .jsw-bonus-grid,
  .jsw-fw-grid,
  .jsw-outcomes-grid,
  .jsw-testi-grid,
  .jsw-effects-grid,
  .jsw-pkg-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .jsw-cs-row {
    flex-wrap: wrap;
  }
  .jsw-csi {
    padding: 4px 12px;
  }
}

@media (max-width: 540px) {
  .jsw-bonus-grid,
  .jsw-fw-grid,
  .jsw-outcomes-grid,
  .jsw-testi-grid,
  .jsw-effects-grid,
  .jsw-pkg-grid {
    grid-template-columns: 1fr !important;
  }
  .jsw-csn-inner {
    padding: 0 12px;
  }
  .jsw-ch-proof {
    flex-direction: column;
    gap: 12px;
  }
  .jsw-guar-inner {
    grid-template-columns: 1fr;
  }
  .jsw-author-block {
    grid-template-columns: 1fr;
  }
  .jsw-ch-deco {
    display: none;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OD CZEGO ZACZĄĆ — HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.jsw-od-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-l) 70%, var(--navy-l) 100%) !important;
  padding: 64px 0 56px !important;
  position: relative !important;
  overflow: hidden !important;
  text-align: center !important;
}
.jsw-od-hero::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background: radial-gradient(ellipse 60% 70% at 75% 40%, rgba(111,198,230,.13) 0%, transparent 60%),
              radial-gradient(ellipse 40% 50% at 10% 90%, rgba(255,193,0,.07) 0%, transparent 55%) !important;
}
.jsw-od-hero .elementor-widget-wrap {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* Hero kicker badge */
.jsw-od-hero .jsw-ch-kicker {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  background: rgba(255,255,255,.1) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 100px !important;
  padding: 5px 14px 5px 8px !important;
  font-size: .75rem !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,.85) !important;
  margin-bottom: 22px !important;
}
.jsw-od-hero .jsw-ch-kicker .ch-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: var(--sky) !important;
  animation: sqPulse 2s ease infinite !important;
}
@keyframes sqPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.6); }
}

/* Hero H1 */
.jsw-od-hero .elementor-heading-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: -.025em !important;
  color: #fff !important;
  max-width: 680px !important;
  margin: 0 auto 18px !important;
}
.jsw-od-hero .elementor-heading-title em,
.jsw-od-hero .elementor-heading-title i {
  font-style: italic !important;
  color: var(--yellow) !important;
}

/* Hero sub */
.jsw-od-hero .sq-hero-sub {
  font-size: 1.02rem !important;
  color: rgba(255,255,255,.7) !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
  margin-bottom: 36px !important;
  max-width: 520px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Hero chips (pills widget) */
.jsw-od-hero .jsw-ch-pills {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  margin-bottom: 0 !important;
}
.jsw-od-hero .jsw-ch-pill {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(255,255,255,.09) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 100px !important;
  padding: 6px 13px !important;
  font-size: .76rem !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,.82) !important;
}

.jsw-od-hero .jsw-ch-pill-icon,
.jsw-od-hero .jsw-ch-pill svg {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OD CZEGO ZACZĄĆ — STEPS VISUAL
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.jsw-stage-quiz-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.sq-steps-section {
  background: var(--bg) !important;
  padding: 64px 0 !important;
}

.sq-steps-header {
  text-align: center !important;
  margin-bottom: 40px !important;
}

.sq-steps-h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -.02em !important;
  color: var(--navy) !important;
}

.sq-steps-h2 em {
  font-style: italic !important;
  color: var(--red) !important;
}

.sq-steps-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  position: relative !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}

.sq-steps-grid::before {
  content: '' !important;
  position: absolute !important;
  top: 28px !important;
  left: 12.5% !important;
  right: 12.5% !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--sky), var(--navy-l), var(--red)) !important;
  opacity: .25 !important;
  pointer-events: none !important;
}

.sq-step-card {
  text-align: center !important;
  padding: 0 16px !important;
  position: relative !important;
}

.sq-step-circle {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  margin: 0 auto 14px !important;
  display: grid !important;
  place-items: center !important;
  position: relative !important;
  z-index: 1 !important;
  border: 2px solid var(--line) !important;
  background: var(--white) !important;
  transition: .2s !important;
}

.sq-step-card.active .sq-step-circle {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  box-shadow: 0 6px 20px rgba(45,70,111,.25) !important;
}

.sq-step-card.done .sq-step-circle {
  background: var(--sky) !important;
  border-color: var(--sky) !important;
  box-shadow: 0 4px 14px rgba(111,198,230,.3) !important;
}

.sq-step-icon {
  color: var(--muted) !important;
  transition: .2s !important;
}

.sq-step-card.active .sq-step-icon,
.sq-step-card.done .sq-step-icon {
  color: #fff !important;
}

.sq-step-num {
  position: absolute !important;
  top: -6px !important;
  right: -2px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: var(--bg) !important;
  border: 1.5px solid var(--line) !important;
  font-size: .6rem !important;
  font-weight: 700 !important;
  color: var(--muted) !important;
  display: grid !important;
  place-items: center !important;
  transition: .2s !important;
}

.sq-step-num-house {
  font-size: .7rem !important;
  line-height: 1 !important;
}

.sq-step-card.active .sq-step-num {
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: #fff !important;
}

.sq-step-card.done .sq-step-num {
  background: var(--sky) !important;
  border-color: var(--sky) !important;
  color: #fff !important;
}

.sq-step-label {
  font-size: .82rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin-bottom: 4px !important;
  transition: .2s !important;
}

.sq-step-card.active .sq-step-label {
  color: var(--red) !important;
}

.sq-step-sub {
  font-size: .74rem !important;
  color: var(--muted) !important;
  line-height: 1.4 !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OD CZEGO ZACZĄĆ — QUIZ
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sq-quiz-wrap {
  background: var(--white) !important;
  padding: 56px 0 !important;
}

.sq-quiz-progress {
  max-width: 760px !important;
  margin: 0 auto 32px !important;
}

.sq-qp-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 10px !important;
}

.sq-qp-label {
  font-size: .78rem !important;
  font-weight: 700 !important;
  color: var(--muted) !important;
}

.sq-qp-step {
  font-size: .78rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
}

.sq-qp-track {
  height: 6px !important;
  background: var(--line) !important;
  border-radius: 100px !important;
  overflow: hidden !important;
}

.sq-qp-fill {
  height: 100% !important;
  background: linear-gradient(90deg, var(--sky), var(--navy-l)) !important;
  border-radius: 100px !important;
  transition: width .4s cubic-bezier(.25,.46,.45,.94) !important;
}

/* Question card */
.sq-q-card {
  background: var(--white) !important;
  border: 1.5px solid var(--line) !important;
  border-radius: 18px !important;
  padding: 36px !important;
  box-shadow: 0 4px 24px rgba(45,70,111,.07) !important;
  max-width: 760px !important;
  margin: 0 auto !important;
}

.sq-q-card-header {
  margin-bottom: 24px !important;
}

.sq-q-step-label {
  font-size: .66rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .1em !important;
  color: var(--muted) !important;
  margin-bottom: 6px !important;
}

.sq-q-question {
  font-size: 1.18rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  line-height: 1.4 !important;
}

/* Answer options */
.sq-q-options {
  display: grid !important;
  gap: 10px !important;
  margin-bottom: 24px !important;
}

.sq-q-options-cols-2 {
  grid-template-columns: 1fr 1fr !important;
}

.sq-q-opt {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 18px !important;
  border: 1.5px solid var(--line) !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  transition: all .15s !important;
  background: var(--white) !important;
  text-align: left !important;
}

.sq-q-opt:hover {
  border-color: var(--navy) !important;
  background: var(--bg) !important;
  transform: translateX(3px) !important;
}

.sq-q-opt.sel {
  border-color: var(--navy) !important;
  background: var(--navy) !important;
  box-shadow: 0 4px 16px rgba(45,70,111,.22) !important;
  transform: none !important;
}

.sq-q-opt-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
  background: var(--bg) !important;
  border: 1px solid var(--line) !important;
  display: grid !important;
  place-items: center !important;
  flex-shrink: 0 !important;
  color: var(--muted) !important;
  transition: .15s !important;
}

.sq-q-opt:hover .sq-q-opt-icon {
  background: rgba(45,70,111,.1) !important;
  color: var(--navy) !important;
  border-color: transparent !important;
}

.sq-q-opt.sel .sq-q-opt-icon {
  background: rgba(255,255,255,.15) !important;
  border-color: rgba(255,255,255,.2) !important;
  color: rgba(255,255,255,.8) !important;
}

.sq-q-opt-title {
  font-size: .92rem !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  line-height: 1.2 !important;
  margin-bottom: 2px !important;
  transition: .12s !important;
}

.sq-q-opt-sub {
  font-size: .76rem !important;
  color: var(--muted) !important;
  transition: .12s !important;
}

.sq-q-opt:hover .sq-q-opt-title,
.sq-q-opt:hover .sq-q-opt-sub {
  color: var(--navy) !important;
}

.sq-q-opt.sel .sq-q-opt-title,
.sq-q-opt.sel .sq-q-opt-sub {
  color: #fff !important;
}

/* Quiz navigation */
.sq-q-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.sq-q-back {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  color: var(--muted) !important;
  cursor: pointer !important;
  transition: .12s !important;
}

.sq-q-back:hover {
  color: var(--navy) !important;
}

.sq-q-back svg {
  flex-shrink: 0 !important;
}

.sq-q-hint {
  font-size: .72rem !important;
  color: var(--muted) !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OD CZEGO ZACZĄĆ — RESULT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sq-result-section {
  display: none !important;
}

.sq-result-section.show {
  display: block !important;
  animation: sqFadeUp .5s ease !important;
}

@keyframes sqFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.sq-result-section {
  background: var(--bg) !important;
  padding: 0 0 80px !important;
}

.sq-result-wrap {
  max-width: 900px !important;
  margin: 0 auto !important;
}

.sq-result-confirmation {
  text-align: center !important;
  padding: 48px 0 32px !important;
}

.sq-rc-check {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, rgba(6,95,70,.15), rgba(6,95,70,.08)) !important;
  border: 2px solid rgba(6,95,70,.2) !important;
  display: grid !important;
  place-items: center !important;
  margin: 0 auto 14px !important;
}

.sq-rc-label {
  font-size: .72rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .1em !important;
  color: #059669 !important;
  margin-bottom: 6px !important;
}

.sq-rc-headline {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem) !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  line-height: 1.15 !important;
  letter-spacing: -.02em !important;
}

.sq-result-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-l)) !important;
  border-radius: 18px !important;
  padding: 40px 48px !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 32px !important;
  align-items: center !important;
  margin-bottom: 24px !important;
  position: relative !important;
  overflow: hidden !important;
}

.sq-result-header::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(111,198,230,.12), transparent 65%) !important;
  pointer-events: none !important;
}

.sq-rh-tag {
  font-size: .65rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .1em !important;
  color: var(--sky) !important;
  margin-bottom: 8px !important;
  position: relative !important;
}

.sq-rh-title {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem) !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1.15 !important;
  margin-bottom: 8px !important;
  letter-spacing: -.02em !important;
  position: relative !important;
}

.sq-rh-title em {
  font-style: italic !important;
  color: var(--yellow) !important;
}

.sq-rh-sub {
  font-size: .92rem !important;
  color: rgba(255,255,255,.65) !important;
  font-weight: 300 !important;
  line-height: 1.65 !important;
  position: relative !important;
  max-width: 460px !important;
}

.sq-rh-price-box {
  background: rgba(255,255,255,.1) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 14px !important;
  padding: 22px 28px !important;
  text-align: center !important;
  flex-shrink: 0 !important;
  min-width: 160px !important;
  position: relative !important;
}

.sq-rhp-label {
  font-size: .65rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .09em !important;
  color: rgba(255,255,255,.5) !important;
  margin-bottom: 6px !important;
}

.sq-rhp-old {
  font-size: .82rem !important;
  color: rgba(255,255,255,.3) !important;
  text-decoration: line-through !important;
  margin-bottom: 2px !important;
}

.sq-rhp-price {
  font-size: 2.2rem !important;
  font-weight: 900 !important;
  color: var(--yellow) !important;
  line-height: 1 !important;
  margin-bottom: 12px !important;
}

.sq-rhp-price .btn-yellow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  padding: 10px 20px !important;
  border-radius: 100px !important;
  border: none !important;
  cursor: pointer !important;
  font-family: 'Lato', sans-serif !important;
  font-size: .8rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  transition: all .18s cubic-bezier(.25,.46,.45,.94) !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  background: var(--yellow) !important;
  color: var(--navy-d) !important;
  box-shadow: 0 2px 0 #c99500, 0 4px 14px rgba(255,193,0,.3) !important;
  width: 100% !important;
}

.sq-rhp-price .btn-yellow:hover {
  transform: translateY(-2px) !important;
}

.sq-result-includes {
  background: var(--bg) !important;
  border-radius: 14px !important;
  padding: 24px 28px !important;
  margin-bottom: 20px !important;
  border: 1px solid var(--line) !important;
}

.sq-ri-title {
  font-size: .72rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .09em !important;
  color: var(--muted) !important;
  margin-bottom: 14px !important;
}

.sq-ri-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
}

.sq-ri-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 9px !important;
  font-size: .865rem !important;
  color: #3a4560 !important;
  padding: 7px 0 !important;
  border-bottom: 1px solid var(--line) !important;
}

.sq-ri-item:last-child,
.sq-ri-item:nth-last-child(2):nth-child(odd) {
  border-bottom: none !important;
}

.sq-ri-check {
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: rgba(111,198,230,.15) !important;
  border: 1px solid rgba(111,198,230,.3) !important;
  display: grid !important;
  place-items: center !important;
  flex-shrink: 0 !important;
  margin-top: 1px !important;
}

.sq-result-why {
  margin-bottom: 24px !important;
}

.sq-ry-title {
  font-size: .85rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin-bottom: 12px !important;
}

.sq-ry-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sq-ry-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 9px !important;
  font-size: .875rem !important;
  color: var(--muted) !important;
  padding: 6px 0 !important;
  border-bottom: 1px solid var(--bg) !important;
}

.sq-ry-list li:last-child {
  border-bottom: none !important;
}

.sq-ry-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: var(--red) !important;
  flex-shrink: 0 !important;
  margin-top: 8px !important;
}

.sq-result-upsell {
  background: linear-gradient(135deg, var(--navy), var(--navy-l)) !important;
  border-radius: 14px !important;
  padding: 22px 26px !important;
  margin-bottom: 24px !important;
  cursor: pointer !important;
  transition: .18s !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
}

.sq-result-upsell:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 32px rgba(45,70,111,.3) !important;
}

.sq-ru-label {
  font-size: .62rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .09em !important;
  color: var(--sky) !important;
  margin-bottom: 4px !important;
}

.sq-ru-title {
  font-size: .95rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 3px !important;
  line-height: 1.3 !important;
}

.sq-ru-savings {
  font-size: .8rem !important;
  color: rgba(255,255,255,.6) !important;
}

.sq-ru-savings strong {
  color: var(--yellow) !important;
}

.sq-ru-cta {
  flex-shrink: 0 !important;
}

.sq-ru-cta .btn-yellow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 10px 20px !important;
  border-radius: 100px !important;
  border: none !important;
  cursor: pointer !important;
  font-family: 'Lato', sans-serif !important;
  font-size: .8rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  transition: all .18s cubic-bezier(.25,.46,.45,.94) !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  background: var(--yellow) !important;
  color: var(--navy-d) !important;
  box-shadow: 0 2px 0 #c99500, 0 4px 14px rgba(255,193,0,.3) !important;
}

.sq-ru-cta .btn-yellow:hover {
  transform: translateY(-2px) !important;
}

.sq-result-guarantee {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: #fff !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  border: 1px solid var(--line) !important;
  margin-bottom: 24px !important;
}

.sq-rg-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 9px !important;
  background: linear-gradient(135deg, var(--sky), #4ab0d4) !important;
  display: grid !important;
  place-items: center !important;
  flex-shrink: 0 !important;
  box-shadow: 0 3px 10px rgba(111,198,230,.35) !important;
}

.sq-rg-title {
  font-size: .88rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
}

.sq-rg-sub {
  font-size: .78rem !important;
  color: var(--muted) !important;
}

.sq-restart-wrap {
  text-align: center !important;
}

.sq-restart-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: .8rem !important;
  color: var(--muted) !important;
  cursor: pointer !important;
  transition: .12s !important;
  margin-top: 6px !important;
}

.sq-restart-link:hover {
  color: var(--navy) !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OD CZEGO ZACZĄĆ — COURSES GRID & ABOUT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Use the existing .jsw-courses-grid styles + add about section */
.jsw-about-author {
  background: var(--navy) !important;
  padding: 56px 0 !important;
}

.jsw-about-author .jsw-author-block {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OD CZEGO ZACZĄĆ — COURSE CARDS (text-editor widget)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.jsw-od-courses {
  background: var(--bg) !important;
  padding: 64px 0 !important;
}
.jsw-od-cs-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  margin-bottom: 16px !important;
}
.jsw-od-csc {
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  border-radius: 14px !important;
  padding: 22px !important;
  transition: .18s !important;
  cursor: pointer !important;
}
.jsw-od-csc:hover {
  box-shadow: 0 10px 32px rgba(45,70,111,.09) !important;
  transform: translateY(-3px) !important;
  border-color: transparent !important;
}
.jsw-od-csc.highlighted {
  border-color: var(--navy) !important;
  box-shadow: 0 6px 24px rgba(45,70,111,.12) !important;
}
.jsw-od-csc-num {
  font-size: .62rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .09em !important;
  color: var(--muted) !important;
  margin-bottom: 6px !important;
}
.jsw-od-csc-stripe {
  height: 3px !important;
  border-radius: 2px !important;
  margin-bottom: 14px !important;
}
.jsw-od-s1 { background: linear-gradient(90deg, var(--sky), #4ab8d8) !important; }
.jsw-od-s2 { background: linear-gradient(90deg, var(--yellow), #e6a800) !important; }
.jsw-od-s3 { background: linear-gradient(90deg, var(--red), var(--red-d)) !important; }
.jsw-od-csc-title {
  font-size: .95rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin-bottom: 6px !important;
  line-height: 1.35 !important;
}
.jsw-od-csc-desc {
  font-size: .82rem !important;
  color: var(--muted) !important;
  line-height: 1.6 !important;
  margin-bottom: 14px !important;
}
.jsw-od-csc-price {
  font-size: 1.2rem !important;
  font-weight: 900 !important;
  color: var(--red) !important;
  margin-bottom: 12px !important;
}
.jsw-od-csc-foot {
  display: flex !important;
  gap: 8px !important;
}
.jsw-od-csc-foot .btn {
  flex: 1 !important;
  font-size: .78rem !important;
  padding: 10px 8px !important;
}
/* Package row */
.jsw-od-pkg-row {
  background: linear-gradient(135deg, var(--navy), var(--navy-l)) !important;
  border-radius: 14px !important;
  padding: 24px 28px !important;
  margin-top: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
  box-shadow: 0 8px 28px rgba(45,70,111,.18) !important;
}
.jsw-od-pr-tag {
  font-size: .62rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .09em !important;
  color: var(--sky) !important;
  margin-bottom: 4px !important;
}
.jsw-od-pr-title {
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 3px !important;
}
.jsw-od-pr-sub {
  font-size: .78rem !important;
  color: rgba(255,255,255,.5) !important;
}
.jsw-od-pr-r {
  flex-shrink: 0 !important;
  text-align: right !important;
}
.jsw-od-pr-old {
  font-size: .78rem !important;
  color: rgba(255,255,255,.3) !important;
  text-decoration: line-through !important;
  margin-bottom: 1px !important;
}
.jsw-od-pr-price {
  font-size: 1.9rem !important;
  font-weight: 900 !important;
  color: var(--yellow) !important;
  line-height: 1 !important;
  margin-bottom: 10px !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OD CZEGO ZACZĄĆ — ABOUT SECTION OVERRIDES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.jsw-about-author .jsw-author-block {
  grid-template-columns: auto 1fr !important;
  gap: 40px !important;
}
.jsw-about-author .jsw-author-name,
.jsw-about-author .jsw-author-bio,
.jsw-about-author .jsw-author-btn {
  color: #fff !important;
}
.jsw-about-author .jsw-author-bio {
  color: rgba(255,255,255,.6) !important;
  font-weight: 300 !important;
}

/* Responsive */
@media(max-width:860px) {
  .sq-steps-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  .sq-steps-grid::before {
    display: none !important;
  }
  .sq-result-header {
    grid-template-columns: 1fr !important;
  }
  .sq-ri-grid {
    grid-template-columns: 1fr !important;
  }
  .sq-q-options-cols-2 {
    grid-template-columns: 1fr !important;
  }
}

@media(max-width:540px) {
  .sq-result-upsell {
    flex-direction: column !important;
  }
}
