/* =====================================================================
   Balans Zdravia — style.css
   Wellness paleta: šalviová zelená / krémová / medová
   Display: Fraunces (organický serif) · Body: Karla (čistý sans)
   ===================================================================== */

:root {
  --color-primary: #3F6B4F;
  --color-primary-dark: #2C4D39;
  --color-accent: #C98F4E;
  --color-bg: #F7F4EE;
  --color-bg-alt: #EFEAE0;
  --color-text: #26332B;
  --color-text-muted: #5C6B5F;
  --color-ring: #A9C9A4;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-lg: 24px;
  --radius-md: 14px;
  --max-width: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; color-scheme: light only; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

/* ---------------------------------------------------------------------
   HERO + odpočet
   --------------------------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 24px 70px;
  background: radial-gradient(ellipse at 50% 0%, #EEF3EA 0%, var(--color-bg) 55%);
}

.breathing-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--color-ring);
  opacity: 0.35;
  animation: breathe 8s ease-in-out infinite;
}

.ring-1 { width: 420px; height: 420px; animation-delay: 0s; }
.ring-2 { width: 620px; height: 620px; animation-delay: 1.2s; opacity: 0.25; }
.ring-3 { width: 840px; height: 840px; animation-delay: 2.4s; opacity: 0.15; }

@keyframes breathe {
  0%, 100% { transform: scale(0.94); opacity: 0.15; }
  50% { transform: scale(1.04); opacity: 0.35; }
}

@media (prefers-reduced-motion: reduce) {
  .ring { animation: none; }
  html { scroll-behavior: auto; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

/* ---------------------------------------------------------------------
   Nové rozloženie hero: horná lišta, dvojfarebný nadpis, karta, médiá
   --------------------------------------------------------------------- */

.hero-topbar {
  background: var(--color-primary-dark);
  color: #ffffff;
  text-align: center;
  padding: 12px 20px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-headline--centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 18px;
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  line-height: 1.12;
}

.hero-headline--centered .accent-part {
  color: var(--color-accent);
}

.hero-card {
  max-width: 640px;
  margin: 0 auto 28px;
  background: #ffffff;
  border: 1px solid #E6E1D6;
  border-radius: 18px;
  padding: 24px 28px;
  text-align: center;
  box-shadow: 0 20px 40px -26px rgba(44, 77, 57, 0.3);
}

.hero-card-text {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0 0 14px;
}

.hero-card-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-card-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-bg-alt);
  color: var(--color-primary-dark);
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
}

.hero-media {
  max-width: 720px;
  margin: 0 auto 28px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.4);
}

.hero-media-img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-media-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.hero-media-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.hero-trust-line {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 4px 0 0;
}

@media (max-width: 640px) {
  .hero-topbar { padding: 10px 14px; font-size: 11px; }
  .hero-headline--centered { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero-card { padding: 20px 20px; }
}

.hero-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 18px;
  width: 100%;
  box-sizing: border-box;
}

.hero-header-copy {
  text-align: left;
  max-width: 420px;
  flex: 1;
  min-width: 0;
}
.hero-header-copy .eyebrow,
.hero-header-copy .hero-headline { margin-bottom: 0; }
.hero-header-copy .eyebrow { margin-bottom: 14px; }

.hero-figure-wrap {
  position: relative;
}

.hero-figure-wrap::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(201, 143, 78, 0.35) 0%, rgba(201, 143, 78, 0.12) 45%, transparent 72%);
  z-index: -1;
  filter: blur(2px);
}

.hero-figure-img {
  width: 190px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(44, 77, 57, 0.2));
}

/* ---------------------------------------------------------------------
   Padajúce listy (dekoratívna vrstva v hero sekcii)
   --------------------------------------------------------------------- */

.falling-leaves {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.leaf {
  position: absolute;
  top: -12%;
  left: var(--x);
  width: var(--size);
  height: var(--size);
  opacity: 0;
  animation: leaf-fall var(--duration) ease-in var(--delay) infinite;
}

.leaf svg {
  width: 100%;
  height: 100%;
  display: block;
}

.leaf--sage  { color: #86AD8A; }
.leaf--gold  { color: var(--color-accent); }
.leaf--olive { color: #A3B18A; }

/* Vietor odnáša listy do strany (--drift), padajú pomaly a strácajú sa
   ešte nad odznakom s dátumom (okolo polovice výšky hero sekcie) */
@keyframes leaf-fall {
  0%   { top: -12%; opacity: 0;    transform: translateX(0) rotate(0deg); }
  12%  { opacity: 0.7; }
  35%  { transform: translateX(calc(var(--drift) * 0.45)) rotate(calc(var(--rotate) * 0.4)); }
  50%  { opacity: 0.55; transform: translateX(calc(var(--drift) * 0.75)) rotate(calc(var(--rotate) * 0.7)); }
  60%  { top: 54%; opacity: 0; transform: translateX(var(--drift)) rotate(var(--rotate)); }
  100% { top: 54%; opacity: 0; transform: translateX(var(--drift)) rotate(var(--rotate)); }
}

/* Jemné trblietavé bodky pre luxusnejší nádych */
.sparkle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: radial-gradient(circle, #F3D9AE 0%, rgba(243, 217, 174, 0) 70%);
  box-shadow: 0 0 6px 1px rgba(243, 217, 174, 0.7);
  animation: sparkle-twinkle 3.2s ease-in-out var(--delay) infinite;
}

@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50% { opacity: 0.9; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .leaf, .sparkle { display: none; }
  .hero-headline { animation: none !important; }
}

@media (max-width: 640px) {
  .hero { padding: 32px 26px 50px; }
  .hero-header { gap: 16px; align-items: flex-end; }
  .hero-header-copy { text-align: left; }
  .hero-figure-img { width: 160px; }
}

@media (max-width: 400px) {
  .hero-figure-img { width: 130px; }
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 18px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.12;
  margin: 0 0 20px;
  color: var(--color-primary-dark);
  letter-spacing: -0.01em;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-headline {
    background-image: linear-gradient(
      100deg,
      var(--color-primary-dark) 0%,
      var(--color-primary-dark) 42%,
      #EFDFB8 50%,
      var(--color-primary-dark) 58%,
      var(--color-primary-dark) 100%
    );
    background-size: 250% 100%;
    background-position: 200% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: headline-shine 7s ease-in-out 1.2s infinite;
  }
}

@keyframes headline-shine {
  0%   { background-position: 220% 0; }
  22%  { background-position: -60% 0; }
  100% { background-position: -60% 0; }
}

.hero-subheadline {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 540px;
  margin: 0 auto 32px;
}

.webinar-badge {
  display: inline-block;
  background: #ffffff;
  border: 1.5px solid var(--color-accent);
  color: var(--color-text);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 36px;
  box-shadow: 0 0 0 3px rgba(201, 143, 78, 0.15), 0 10px 22px -12px rgba(201, 143, 78, 0.45);
}
.webinar-badge strong { color: var(--color-primary-dark); }

.countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.countdown-unit {
  background: #ffffff;
  border: 1px solid #E6E1D6;
  border-radius: var(--radius-md);
  padding: 18px 14px;
  min-width: 84px;
  box-shadow: 0 8px 24px -12px rgba(44, 77, 57, 0.18);
}

.countdown-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--color-primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.hero-quick-form {
  max-width: 560px;
  margin: 0 auto;
}

.quick-form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.quick-form-row input {
  flex: 1 1 160px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid #DDD6C8;
  font-family: var(--font-body);
  font-size: 15px;
  background: #FBFAF6;
  min-width: 0;
}

.quick-form-row input:focus {
  border-color: var(--color-primary);
  outline: none;
}

.quick-form-row .btn {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 14px 26px;
}

.register-form--compact .hp-field { position: absolute; left: -9999px; opacity: 0; }

.hero-quick-form .form-message {
  text-align: left;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
}
.hero-quick-form .form-message.success { color: var(--color-primary-dark); }
.hero-quick-form .form-message.error { color: #B3261E; }

.spots-progress {
  margin-top: 18px;
  max-width: 400px;
}

.spots-progress--bottom {
  max-width: none;
  margin: 0 0 20px;
}

.spots-progress-label {
  font-size: 13px;
  font-weight: 700;
  color: #8a1414;
  margin: 0 0 8px;
}

.spots-progress-track {
  width: 100%;
  height: 9px;
  background: #E6E1D6;
  border-radius: 999px;
  overflow: hidden;
}

.spots-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #8a1414, #1a0000);
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 640px) {
  .quick-form-row { flex-direction: column; }
  .quick-form-row input,
  .quick-form-row .btn { width: 100%; flex: 1 1 auto; }
}

/* ---------------------------------------------------------------------
   Tlačidlá
   --------------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 10px 24px -10px rgba(44, 77, 57, 0.55);
}
.btn-primary:hover { background: var(--color-primary-dark); }

.btn-accent {
  background: var(--color-accent);
  color: #ffffff;
  width: 100%;
  box-shadow: 0 10px 24px -10px rgba(201, 143, 78, 0.55);
}
.btn-accent:hover { filter: brightness(0.94); }

/* ---------------------------------------------------------------------
   Registračná sekcia
   --------------------------------------------------------------------- */

.register {
  padding: 90px 24px;
  background: var(--color-bg-alt);
}

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

.register-inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  color: var(--color-primary-dark);
  margin: 0 0 12px;
}

.register-sub {
  color: var(--color-text-muted);
  margin: 0 0 32px;
  line-height: 1.6;
}

.register-form {
  max-width: 520px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #E6E1D6;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  box-shadow: 0 20px 40px -24px rgba(44, 77, 57, 0.2);
}

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

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

.form-row input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1.5px solid #DDD6C8;
  font-family: var(--font-body);
  font-size: 15px;
  background: #FBFAF6;
  transition: border-color 0.15s ease;
}

.form-row input:focus {
  border-color: var(--color-primary);
  outline: none;
}

.hp-field { position: absolute; left: -9999px; opacity: 0; }

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 14px 0 0;
  cursor: pointer;
}

.consent-checkbox input {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.consent-checkbox a {
  color: var(--color-primary-dark);
  text-decoration: underline;
}
.consent-checkbox a:hover { color: var(--color-primary); }

.form-benefits {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-benefits li {
  position: relative;
  padding-left: 26px;
  font-size: 13.5px;
  color: var(--color-text);
  line-height: 1.4;
}

.form-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3F8A4E;
}

.form-benefits li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 6px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.order-payment-box {
  background: #ffffff;
  border: 1.5px solid var(--color-accent);
  border-radius: 14px;
  padding: 22px 24px;
  margin-top: 16px;
  box-shadow: 0 16px 30px -20px rgba(201, 143, 78, 0.5);
}

.order-payment-box h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-primary-dark);
  margin: 0 0 8px;
}

.order-payment-box p {
  font-size: 13.5px;
  color: var(--color-text-muted);
  margin: 0 0 16px;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #EFEAE0;
  font-size: 14.5px;
}
.payment-row:first-of-type { border-top: none; }
.payment-row span { color: var(--color-text-muted); }
.payment-row strong { color: var(--color-primary-dark); font-family: var(--font-display); }

.form-note {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 14px 0 0;
  line-height: 1.5;
}

.form-message {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 600;
  min-height: 22px;
}
.form-message.success { color: var(--color-primary-dark); }
.form-message.error { color: #B3261E; }

/* ---------------------------------------------------------------------
   Sekcia "Máte niektorý z týchto problémov?"
   --------------------------------------------------------------------- */

.problems {
  padding: 80px 24px;
  background: #EEF2EA;
}

.problems-inner {
  max-width: 800px;
  margin: 0 auto;
}

.problems-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  color: var(--color-primary-dark);
  text-align: center;
  line-height: 1.35;
  margin: 0 0 40px;
}

.balance-cta {
  text-align: center;
  margin-top: 36px;
}

.balance-cta p {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin: 0 0 14px;
}

.balance-cta-result {
  margin-top: 14px !important;
  color: var(--color-accent) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  min-height: 20px;
}

.problems-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
  margin: 0 auto;
}

.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1.5px solid #E6E1D6;
  border-radius: 16px;
  padding: 20px 22px;
  text-align: left;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Kým sa JS nenačíta, karty sú rovno viditeľné (pravidlo vyššie).
   Po pridaní js-ready štartujú skryté a postupne sa objavia počas scrollovania. */
.problems-cards.js-ready .problem-card {
  opacity: 0;
  transform: translateY(14px);
}

.problems-cards.js-ready .problem-card.is-checked {
  opacity: 1;
  transform: translateY(0);
}

.problem-check-circle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.problem-check-circle svg { width: 16px; height: 16px; }

.problems-cards.js-ready .problem-check-circle {
  transform: scale(0.6);
  opacity: 0;
}

.problems-cards.js-ready .problem-card.is-checked .problem-check-circle {
  transform: scale(1);
  opacity: 1;
}

.problem-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--color-primary-dark);
  margin: 0 0 4px;
  position: relative;
  display: inline-block;
}

.problem-card-title::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  height: 2px;
  width: 0;
  background: var(--color-primary-dark);
  transition: width 0.5s ease;
}

.problem-card.is-struck .problem-card-title::after {
  width: 100%;
}

.problem-card-desc {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 640px) {
  .problems { padding: 56px 26px; }
  .problem-card { padding: 16px 18px; gap: 12px; }
  .problem-card-title { font-size: 15px; }
  .problem-card-desc { font-size: 13px; }
}

/* ---------------------------------------------------------------------
   Sekcia "Čo získam?"
   --------------------------------------------------------------------- */

.get {
  padding: 80px 24px 90px;
  background: var(--color-bg-alt);
}

.get-inner {
  max-width: 800px;
  margin: 0 auto;
}

.get-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  color: var(--color-primary-dark);
  text-align: center;
  margin: 0 0 20px;
}

.get-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}

.get-item {
  position: relative;
  background: #ffffff;
  border: 1px solid #E6E1D6;
  border-radius: 14px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  box-shadow: 0 16px 30px -22px rgba(44, 77, 57, 0.3);
  opacity: 0;
  transform: translateY(-60px) rotate(0deg);
  transition: transform 0.75s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.get-item.is-visible {
  opacity: 1;
  transform: translateY(var(--offset, 0px)) rotate(var(--rot, 0deg));
}

.get-item.is-floating {
  animation: get-item-float 4.2s ease-in-out infinite;
}

@keyframes get-item-float {
  0%, 100% { transform: translateY(var(--offset, 0px)) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(calc(var(--offset, 0px) - 8px)) rotate(var(--rot, 0deg)); }
}

.get-icon {
  font-size: 26px;
  line-height: 1;
}

.get-text {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.35;
}

.get-item--bonus {
  background: linear-gradient(160deg, #FBF3E6 0%, #ffffff 75%);
  border: 1.5px solid var(--color-accent);
  box-shadow: 0 18px 34px -20px rgba(201, 143, 78, 0.55);
}

.get-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -6px rgba(201, 143, 78, 0.7);
}

@media (max-width: 900px) {
  .get { padding: 56px 16px 70px; }
  .get-grid { grid-template-columns: repeat(2, 1fr); }
}

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

@media (prefers-reduced-motion: reduce) {
  .get-item {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .get-item.is-floating { animation: none; }
}

/* ---------------------------------------------------------------------
   Recenzie
   --------------------------------------------------------------------- */

.testimonials {
  padding: 80px 24px;
  background: var(--color-bg-alt);
}

.testimonials-inner {
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  color: var(--color-primary-dark);
  text-align: center;
  margin: 0 0 36px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #E6E1D6;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 16px 30px -24px rgba(44, 77, 57, 0.28);
}

.testimonial-quote {
  margin: 0 0 14px;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.6;
  font-size: 15px;
}

.testimonial-name {
  margin: 0;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--color-primary-dark);
}

/* ---------------------------------------------------------------------
   Ako to funguje
   --------------------------------------------------------------------- */

.how {
  padding: 70px 24px 90px;
  background: var(--color-bg);
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
}

.how-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  color: var(--color-primary-dark);
  text-align: center;
  margin: 0 0 40px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.how-step {
  text-align: center;
  padding: 0 12px;
}

.how-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 14px;
}

.how-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-primary-dark);
  margin: 0 0 8px;
}

.how-step p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 720px) {
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------------------------------------------------------------------
   Varovanie o miestach + bezpečnostná poznámka
   --------------------------------------------------------------------- */

.spots-warning {
  background: #FFF3E0;
  color: #9A6700;
  border: 1px solid #F0D9A8;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 700;
  margin: 0 0 12px;
  text-align: center;
}

.hero-quick-form .spots-warning { text-align: left; }

.form-safety-note {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin: 10px 0 0;
}

.hero-quick-form .form-safety-note { text-align: left; }

/* ---------------------------------------------------------------------
   Sticky CTA tlačidlo
   --------------------------------------------------------------------- */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 12px 16px;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(6px);
  border-top: 1px solid #E6E1D6;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta-btn {
  display: block;
  text-align: center;
  width: 100%;
}

@media (min-width: 900px) {
  .sticky-cta {
    left: auto;
    right: 24px;
    bottom: 24px;
    padding: 0;
    background: none;
    border-top: none;
    backdrop-filter: none;
    transform: translateY(140%);
    width: auto;
  }
  .sticky-cta.is-visible { transform: translateY(0); }
  .sticky-cta-btn {
    box-shadow: 0 16px 32px -14px rgba(201, 143, 78, 0.6);
  }
}

/* ---------------------------------------------------------------------
   Upozornenie o registrácii (reálne, anonymizované)
   --------------------------------------------------------------------- */

.signup-toast {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 45;
  max-width: 280px;
  background: #ffffff;
  border: 1px solid #E6E1D6;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 20px 40px -20px rgba(44, 77, 57, 0.4);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.4;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.signup-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.signup-toast-icon {
  font-size: 18px;
  line-height: 1;
}

.signup-toast-time {
  color: var(--color-text-muted);
  font-size: 11.5px;
}

@media (min-width: 900px) {
  .signup-toast { bottom: 24px; left: 24px; }
}

@media (max-width: 899px) {
  /* Na mobile necháme priestor pre sticky CTA lištu dole */
  .signup-toast { bottom: 78px; }
}

/* ---------------------------------------------------------------------
   Sekcia "Prečo by to malo fungovať?"
   --------------------------------------------------------------------- */

.why {
  padding: 80px 24px;
  background: var(--color-bg);
}

.why-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.why-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  color: var(--color-primary-dark);
  margin: 0 0 24px;
}

.why-body {
  text-align: left;
}

.why-body p {
  margin: 0 0 16px;
  line-height: 1.75;
  color: var(--color-text);
  font-size: 16px;
}

.why-program-badge {
  display: inline-block;
  margin: 20px 0 0;
  padding: 12px 28px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  border-radius: 999px;
  box-shadow: 0 14px 28px -14px rgba(201, 143, 78, 0.6);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.why-program-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -14px rgba(201, 143, 78, 0.7);
}

.why--inline {
  padding: 8px 0 4px;
  background: none;
}

.why--inline .why-inner {
  max-width: 560px;
}

.navyk1-callout {
  max-width: 480px;
  margin: 8px auto 28px;
  text-align: center;
}

.navyk1-callout-img {
  width: 150px;
  height: auto;
  margin: 0 auto 14px;
  border-radius: 8px;
  box-shadow: 0 20px 34px -18px rgba(0, 0, 0, 0.4);
}

.navyk1-callout-text {
  font-size: 14.5px;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ---------------------------------------------------------------------
   Štatistiky + darček zdarma
   --------------------------------------------------------------------- */

.stats {
  padding: 20px 24px 90px;
  background: var(--color-bg);
}

.stats-inner {
  max-width: 800px;
  margin: 0 auto;
}

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

.stat-box {
  background: #ffffff;
  border: 1px solid #E6E1D6;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 16px 32px -24px rgba(44, 77, 57, 0.3);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: var(--color-accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.stat-box--gift {
  background: linear-gradient(160deg, #FBF3E6 0%, #ffffff 70%);
  border-color: var(--color-accent);
}

.stat-gift-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 6px;
}

.stat-gift-heading {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-primary-dark);
}

.stat-gift-text {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
}

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

/* ---------------------------------------------------------------------
   Právne stránky (GDPR, obchodné podmienky)
   --------------------------------------------------------------------- */

.legal-page {
  padding: 70px 24px 90px;
  background: var(--color-bg);
}

.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal-inner h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--color-primary-dark);
  margin: 0 0 32px;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--color-primary-dark);
  margin: 32px 0 12px;
}
.legal-body h2:first-child { margin-top: 0; }

.legal-body p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: var(--color-text);
  font-size: 15.5px;
}

.legal-body ul {
  margin: 0 0 14px;
  padding-left: 22px;
  color: var(--color-text);
  line-height: 1.7;
  font-size: 15.5px;
}

/* ---------------------------------------------------------------------
   Ubezpečenie (ikony s prečiarknutím) — "žiadne diéty, žiadne kalórie..."
   --------------------------------------------------------------------- */

.reassure {
  padding: 50px 24px 60px;
  background: var(--color-bg);
}

.reassure--inline {
  padding: 28px 0 8px;
  background: none;
}

.reassure-collage-img {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px -24px rgba(44, 77, 57, 0.3);
}

.reassure-inner {
  max-width: 780px;
  margin: 0 auto;
}

.reassure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.reassure-item {
  text-align: center;
}

.reassure-icon-wrap {
  position: relative;
  width: 74px;
  height: 74px;
  margin: 0 auto 12px;
  background: #ffffff;
  border: 1px solid #E6E1D6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px -16px rgba(44, 77, 57, 0.3);
}

.reassure-icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

.reassure-strike {
  position: absolute;
  width: 150%;
  height: 150%;
  left: -25%;
  top: -25%;
  overflow: visible;
  pointer-events: none;
  transform: rotate(var(--strike-rot, 0deg));
}

.reassure-strike path {
  fill: none;
  stroke: #C6402B;
  transition: stroke-dashoffset 0.6s ease;
}

.reassure-strike .strike-b { transition-delay: 0.28s; }

.reassure-strike .strike-a,
.reassure-strike .strike-b {
  stroke-width: 1.5;
  stroke-linecap: round;
  opacity: 0.95;
}

.reassure-strike .strike-thin {
  stroke-width: 0.7;
  stroke-linecap: round;
  opacity: 0.55;
}

.reassure-item p {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .reassure { padding: 40px 20px 50px; }
  .reassure-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .reassure-icon-wrap { width: 64px; height: 64px; }
  .reassure-icon { width: 28px; height: 28px; }
}

/* ---------------------------------------------------------------------
   Sekcia "Koľko vás môže stáť..."
   --------------------------------------------------------------------- */

.cost {
  padding: 70px 24px 80px;
  background: var(--color-bg-alt);
}

.cost-inner {
  max-width: 800px;
  margin: 0 auto;
}

.cost-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.15rem);
  color: var(--color-primary-dark);
  text-align: center;
  line-height: 1.3;
  margin: 0 0 14px;
}

.cost-subheading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--color-text-muted);
  font-size: 15.5px;
  line-height: 1.6;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.cost-card {
  background: #ffffff;
  border: 1px solid #E6E1D6;
  border-radius: 16px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 16px 30px -22px rgba(44, 77, 57, 0.28);
}

.cost-card-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}

.cost-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-primary-dark);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cost-card-items {
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0 0 14px;
  min-height: 38px;
}

.cost-card-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  color: #B3402A;
  margin: 0;
}

.cost-total {
  text-align: center;
  background: #ffffff;
  border: 1.5px solid var(--color-accent);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 20px 40px -24px rgba(201, 143, 78, 0.4);
}

.cost-total-label {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 0 0 8px;
}

.cost-total-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  color: #B3402A;
  margin: 0;
}

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

@media (max-width: 480px) {
  .cost { padding: 50px 18px 60px; }
  .cost-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------
   Blok "Platobný formulár" (naviazaný na konkrétny kurz)
   --------------------------------------------------------------------- */

.payment-block {
  padding: 50px 24px;
  background: var(--color-bg);
}

.payment-block-inner {
  max-width: 520px;
  margin: 0 auto;
}

.payment-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  line-height: 1.2;
  text-align: center;
  color: var(--color-primary-dark);
  margin: 0 0 20px;
}
.payment-heading .accent-part {
  color: var(--color-accent);
  font-style: italic;
}

.pf-items-card {
  background: #ffffff;
  border: 1px solid #E6E1D6;
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}
.pf-items-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid #F1EEE5;
  font-size: 13.5px;
}
.pf-items-row:last-child { border-bottom: none; font-weight: 700; }
.pf-items-name { color: var(--color-text); }
.pf-items-value { color: var(--color-text-muted); white-space: nowrap; }

.pf-items-card + .payment-summary {
  border-radius: 0 0 14px 14px;
  border-top: none;
}

.payment-below-text {
  text-align: center;
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
  margin: 16px 0 0;
}
.payment-below-text .accent-part {
  color: var(--color-accent);
  font-style: normal;
}

.payment-summary {
  background: #ffffff;
  border: 1.5px solid #E6E1D6;
  border-radius: 16px;
  padding: 24px 28px;
  text-align: center;
  box-shadow: 0 20px 40px -26px rgba(44, 77, 57, 0.3);
}

.pf-items-card + .payment-summary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
}
.pf-items-card + .payment-summary .payment-summary-title,
.pf-items-card + .payment-summary .payment-summary-price {
  color: #ffffff;
}

.payment-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.payment-summary-title { font-weight: 700; font-size: 15px; color: var(--color-text); }
.payment-summary-price { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--color-primary-dark); }

.payment-open-btn { width: 100%; }

.pf-items-card + .payment-summary .payment-open-btn {
  background: #ffffff;
  color: var(--color-primary-dark);
}

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Sekcie so sivou hlavičkou, ako pri reálnych platobných formulároch */
.pf-card {
  background: #ffffff;
  border: 1px solid #E6E1D6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 32px -26px rgba(44, 77, 57, 0.25);
}

.pf-card-header {
  background: var(--color-bg-alt);
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 20px;
  border-bottom: 1px solid #E6E1D6;
}

.pf-card-body { padding: 18px 20px; }
.pf-card-body .wp-field:last-child,
.pf-card-body .wp-field-row:last-child { margin-bottom: 0; }

.pf-line-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pf-radio-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 5px solid var(--color-primary);
  flex-shrink: 0;
}
.pf-item-name { flex: 1; font-weight: 600; font-size: 14.5px; color: var(--color-text); }
.pf-item-price { font-weight: 700; font-size: 14.5px; color: var(--color-text); }

/* Zvýraznený box s cenou - v akcentovej (druhej) farbe dizajnu */
.pf-total-box {
  background: var(--color-accent);
  color: #ffffff;
  border-radius: 14px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 20px 36px -18px rgba(0, 0, 0, 0.35);
}
.pf-total-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin-bottom: 6px;
}
.pf-total-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 5vw, 2.1rem);
}
.pf-total-sub {
  display: block;
  font-size: 12px;
  margin-top: 6px;
  opacity: 0.95;
}

.payment-coupon-row { display: flex; gap: 8px; }
.payment-coupon-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid #DDD6C8;
  font-size: 14px;
}
.payment-coupon-msg { font-size: 12.5px; margin: 10px 0 0; min-height: 16px; }

.pf-payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--color-primary);
  background: var(--color-bg-alt);
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary-dark);
}
.pf-payment-method-icon { font-size: 18px; }
.pf-payment-method-check {
  margin-left: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.pf-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.pf-summary-row--total {
  padding-top: 12px;
  border-top: 1px solid #F1EEE5;
  font-size: 17px;
  color: var(--color-text);
  margin-bottom: 18px;
}
.pf-summary-row--total strong:last-child { color: var(--color-primary-dark); }

.payment-submit-btn { width: 100%; margin-top: 4px; }
.payment-form-message { margin-top: 14px; font-size: 13.5px; line-height: 1.5; }

@media (max-width: 480px) {
  .payment-summary { padding: 20px 20px; }
  .pf-card-body { padding: 16px 16px; }
}

.countdown-block-section {
  padding: 60px 24px;
  background: var(--color-bg);
  text-align: center;
}

.countdown-block-inner {
  max-width: 600px;
  margin: 0 auto;
}

/* ---------------------------------------------------------------------
   Vlastné bloky (text / video) z builderu stránky
   --------------------------------------------------------------------- */

.custom-block {
  padding: 60px 24px;
  background: var(--color-bg);
}

.custom-block-inner {
  max-width: 720px;
  margin: 0 auto;
}

.custom-block-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.15rem);
  color: var(--color-primary-dark);
  text-align: center;
  margin: 0 0 24px;
}

.custom-block-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
}
.custom-block-content p { margin: 0 0 16px; }

.custom-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
.custom-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.about {
  padding: 80px 24px;
  background: var(--color-bg);
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-header-block {
  padding: 70px 24px 40px;
  background: var(--color-bg);
  text-align: center;
}

.page-header-inner {
  max-width: 780px;
  margin: 0 auto;
}

.page-header-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-primary-dark);
  margin: 0 0 12px;
}

.page-header-subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.about-profile-card {
  max-width: 620px;
  margin: 0 auto 32px;
  background: #ffffff;
  border: 1.5px solid #E6E1D6;
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 20px 40px -26px rgba(44, 77, 57, 0.3);
}

.about-profile-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.about-profile-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.3);
}

.about-profile-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  font-size: 28px;
}

.about-profile-nametitle { text-align: left; min-width: 0; }

.about-profile-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary-dark);
  margin: 0 0 8px;
}

.about-profile-stats {
  display: flex;
  gap: 20px;
}
.about-profile-stats div { display: flex; flex-direction: column; }
.about-profile-stats strong { font-size: 15px; color: var(--color-text); font-weight: 700; }
.about-profile-stats span { font-size: 11.5px; color: var(--color-text-muted); }

.about-profile-bullets {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid #F1EEE5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.about-profile-bullets li { font-size: 14px; color: var(--color-text); }

.about-bignums {
  max-width: 620px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

.about-bignum-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--color-accent);
  margin-bottom: 4px;
}

.about-bignum-label {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

@media (max-width: 560px) {
  .about-profile-card { padding: 20px 20px; }
  .about-profile-top { flex-wrap: wrap; }
  .about-profile-stats { gap: 14px; }
}

.about-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  color: var(--color-primary-dark);
  margin: 0 0 24px;
  text-align: center;
}

.about-body p {
  margin: 0 0 16px;
  line-height: 1.75;
  color: var(--color-text);
  font-size: 16px;
}

.about-note {
  margin: 28px 0 0;
  padding: 16px 20px;
  background: #fff;
  border: 1.5px solid var(--color-accent);
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  color: var(--color-primary-dark);
  box-shadow: 0 10px 24px -16px rgba(201, 143, 78, 0.5);
}

/* ---------------------------------------------------------------------
   Sekcia "Bez nutnosti cvičiť" (obrázok + rečová bublina)
   --------------------------------------------------------------------- */

.clarify {
  padding: 70px 24px 90px;
  background: var(--color-bg-alt);
}

.clarify-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.clarify-video-wrap {
  position: relative;
  flex-shrink: 0;
  width: 260px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 30px -14px rgba(44, 77, 57, 0.3);
  background: #000;
}

.clarify-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  cursor: pointer;
}

.clarify-video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-primary-dark);
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.clarify-video-play:hover {
  transform: scale(1.08);
}

.clarify-video-play svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.clarify-video-play.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
}

.clarify-bubble {
  position: relative;
  background: #ffffff;
  border: 1px solid #E6E1D6;
  border-radius: 22px;
  padding: 28px 32px;
  box-shadow: 0 20px 40px -26px rgba(44, 77, 57, 0.3);
}

.clarify-bubble::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-right: 18px solid #ffffff;
  filter: drop-shadow(-3px 0 2px rgba(44, 77, 57, 0.06));
}

.clarify-bubble p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
}

@media (max-width: 760px) {
  .clarify { padding: 56px 18px 70px; }
  .clarify-inner { flex-direction: column; gap: 16px; text-align: center; }
  .clarify-video-wrap { width: 190px; }
  .clarify-bubble::before {
    left: 50%;
    top: -14px;
    transform: translateX(-50%);
    border-top: none;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 18px solid #ffffff;
  }
  .clarify-bubble p { font-style: normal; }
}

/* ---------------------------------------------------------------------
   FAQ
   --------------------------------------------------------------------- */

.faq {
  padding: 80px 24px 96px;
  background: var(--color-bg-alt);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* ---------------------------------------------------------------------
   Stránka spätnej väzby / ankety (feedback.php)
   --------------------------------------------------------------------- */

.feedback-page {
  padding: 70px 24px 90px;
  background: var(--color-bg);
}

.feedback-inner {
  max-width: 640px;
  margin: 0 auto;
}

.feedback-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: var(--color-primary-dark);
  text-align: center;
  margin: 0 0 10px;
}

.feedback-sub {
  text-align: center;
  color: var(--color-text-muted);
  margin: 0 0 36px;
  font-size: 15px;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 100%;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.feedback-question {
  background: #ffffff;
  border: 1px solid #E6E1D6;
  border-radius: 14px;
  padding: 20px 24px;
}

.feedback-question-text {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text);
  margin: 0 0 16px;
}

.feedback-scale {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.feedback-scale-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border: 1.5px solid #DDD6C8;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-text);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.feedback-scale-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.feedback-scale-option:has(input:checked) {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

.feedback-scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--color-text-muted);
  margin-top: 6px;
}

.feedback-question textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #DDD6C8;
  font-family: var(--font-body);
  font-size: 14px;
  resize: vertical;
  box-sizing: border-box;
}

.feedback-yesno {
  display: flex;
  gap: 24px;
}
.feedback-yesno label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

@media (max-width: 480px) {
  .feedback-scale-option { height: 38px; font-size: 13px; }
  .feedback-question { padding: 16px 18px; }
}

.faq-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  color: var(--color-primary-dark);
  margin: 0 0 32px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  background: none;
  border: none;
  border-bottom: 1px solid #E6E1D6;
  border-radius: 0;
  padding: 0;
}
.faq-item:first-child { border-top: 1px solid #E6E1D6; }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 32px 18px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text);
  position: relative;
  text-align: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--color-primary-dark);
  border-bottom: 2px solid var(--color-primary-dark);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-item p {
  margin: 0 0 20px;
  color: var(--color-text-muted);
  line-height: 1.6;
  font-size: 14.5px;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------------------------------------------------------------
   Päta
   --------------------------------------------------------------------- */

.site-footer {
  padding: 48px 24px;
  text-align: center;
  background: var(--color-primary-dark);
  color: #EAF0E7;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 8px;
}

.footer-text {
  font-size: 14px;
  color: #C9DAC9;
  margin: 0 0 16px;
}

.footer-copy {
  font-size: 12px;
  color: #93AC96;
  margin: 0;
}

.footer-member-link {
  font-size: 12px;
  color: #C9DAC9;
  text-decoration: underline;
}
.footer-member-link:hover { color: #fff; }

@media (max-width: 480px) {
  .countdown { gap: 8px; }
  .countdown-unit { min-width: 68px; padding: 14px 8px; }
  .register-form { padding: 24px; }
}
