/* ==========================================================================
   Refresh Studio Kadaň — Inner Pages Shared Styles
   Page hero banners, content blocks, features, steps, FAQ, galleries,
   video reviews, price list, voucher, contact forms, map, CTA band.
   ========================================================================== */

/* --- PAGE HERO BANNER (dark block, fixed-nav aware) --- */
.page-hero {
  background-color: var(--black);
  color: var(--pure-white);
  padding: calc(var(--nav-height) + 5rem) 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    var(--lime-glow) 0%,
    transparent 65%
  );
  top: -100px;
  right: -50px;
  pointer-events: none;
  opacity: 0.6;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(160, 200, 20, 0.08) 0%,
    transparent 65%
  );
  bottom: -80px;
  left: 10%;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  color: var(--pure-white);
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 6vw, 4.375rem);
}

.page-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

/* Small top tag above H1 on page heroes */
.page-hero__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid rgba(160, 200, 20, 0.35);
  padding: 0.375rem 1.25rem;
  margin-bottom: 1.25rem;
}

/* --- CONTENT BLOCKS --- */
.content-block {
  padding: var(--section-padding-mobile);
}

@media (min-width: 768px) {
  .content-block {
    padding: var(--section-padding);
  }
}

.content-block--beige {
  background-color: var(--cream);
}

.content-block--dark {
  background-color: var(--black);
  color: var(--pure-white);
}

.content-block--dark h2,
.content-block--dark h3 {
  color: var(--pure-white);
}

.content-block--dark p {
  color: var(--text-on-dark);
}

.content-block__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .content-block__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
}

.content-block__grid--reverse .content-block__media {
  order: 0;
}

@media (min-width: 768px) {
  .content-block__grid--reverse .content-block__media {
    order: 1;
  }
}

.content-block__media {
  position: relative;
}

.content-block__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Nu Skin produktové fotky mají různá native AR — neoříznout, ukázat celé. */
.content-block__media--natural img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  max-height: 520px;
}

/* Thin lime frame offset behind content block images */
.content-block__media--framed {
  position: relative;
}

.content-block__media--framed::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -1rem;
  right: 1rem;
  bottom: 1rem;
  border: 1.5px solid var(--lime);
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

.content-block__media--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(160, 200, 20, 0.08);
  padding: 3rem;
  aspect-ratio: 4 / 3;
  position: relative;
}

.content-block__media--icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(160, 200, 20, 0.35);
  pointer-events: none;
}

.content-block__media--icon img {
  width: 380px;
  height: 380px;
  object-fit: contain;
  aspect-ratio: auto;
  /* brightness(0) sjednotí barvy Šárčiny sady → černá silueta na tint-lime panelu */
  filter: brightness(0);
}

.content-block__body h2 {
  margin-bottom: 1.25rem;
}

.content-block__body p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}

.cta-button-wrapper {
  margin-top: 2rem;
}

/* --- BADGE (exclusive / highlight tag) --- */
.hr-feature__badge {
  display: inline-block;
  background-color: var(--lime);
  color: var(--black);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.25rem;
}

.content-block--dark .hr-feature__badge {
  background-color: var(--lime);
  color: var(--black);
}

/* --- BENEFITS LIST (vertical checked list) --- */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.benefits-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.875rem;
  line-height: 1.7;
  font-size: 1rem;
}

.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.625em;
  width: 10px;
  height: 10px;
  background-color: var(--lime);
  border-radius: 50%;
  transform: translateY(-50%);
}

.content-block--dark .benefits-list li,
.section--dark .benefits-list li,
.section--charcoal .benefits-list li {
  color: var(--text-on-dark);
}

/* --- FEATURES GRID (icons + text) --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 3rem 0 0;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2.5rem;
  }
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-item__icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--lime);
  border-radius: 50%;
  box-shadow: 0 4px 16px var(--lime-glow);
}

.feature-item__icon img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  /* Lime line-art ikony invertované na černé pro max kontrast na lime kruhu. */
  filter: brightness(0);
}

.feature-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature-item p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0;
}

.section--beige .feature-item h3 {
  color: var(--text);
}

/* --- STEPS (numbered process) --- */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  line-height: 1.7;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
}

.section--beige .steps li {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.steps li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--lime-dark);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  border: 1.5px solid var(--lime);
}

/* --- FAQ ACCORDION --- */
.faq {
  max-width: 820px;
  margin: 2rem auto 0;
}

.faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.section--beige .faq__item {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition-base);
  background: none;
  border: none;
  cursor: pointer;
}

.faq__question > span:first-child {
  flex: 1;
}

.faq__question:hover {
  color: var(--lime-dark);
}

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform var(--transition-base);
  color: var(--lime-dark);
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.faq__icon::before {
  top: 50%;
  left: 2px;
  right: 2px;
  height: 2px;
  transform: translateY(-50%);
}

.faq__icon::after {
  left: 50%;
  top: 2px;
  bottom: 2px;
  width: 2px;
  transform: translateX(-50%);
}

.faq__item.is-open .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-body);
}

/* --- PHOTO GALLERY --- */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 2.5rem 0 0;
}

.photo-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.photo-gallery a,
.photo-gallery picture,
.photo-gallery img {
  display: block;
}

.photo-gallery img:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}

@media (min-width: 768px) {
  .photo-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* VIDEO REVIEWS rules byly přesunuty do css/style.css (global), aby fungovaly
   i na homepage, která pages.css nenačítá. */

/* --- PRICE LIST --- */
.price-section {
  margin-bottom: 3.5rem;
}

.price-section:last-child {
  margin-bottom: 0;
}

.price-section__title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--lime);
  color: var(--text);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background-color var(--transition-base);
}

.price-table tr:hover {
  background-color: rgba(160, 200, 20, 0.04);
}

.price-table tr:last-child {
  border-bottom: none;
}

.price-table td {
  padding: 1rem 0.5rem;
  vertical-align: middle;
}

.price-table__name {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
}

.price-table__duration {
  color: var(--text-secondary);
  font-size: 0.875rem;
  white-space: nowrap;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}

.price-table__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--lime-dark);
  white-space: nowrap;
  text-align: right;
}

.price-highlight td {
  padding: 1.25rem 0.5rem;
}

.price-highlight .price-table__name {
  font-weight: 600;
}

.price-highlight .price-table__price {
  color: var(--lime-dark);
}

.price-note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 2rem;
  line-height: 1.6;
}

/* --- VOUCHER BANNER --- */
.voucher-banner {
  text-align: center;
  padding: 3.5rem 2rem;
  background-color: var(--pure-white);
  border: 1.5px solid var(--lime);
  position: relative;
}

.voucher-banner::before {
  content: '';
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  bottom: 0.625rem;
  left: 0.625rem;
  border: 1px solid rgba(160, 200, 20, 0.15);
  pointer-events: none;
}

.voucher-banner h3 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.voucher-banner p {
  max-width: 560px;
  margin: 0 auto 1.125rem;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.75;
}

.voucher-banner .btn {
  margin-top: 1rem;
}

/* --- CONTACT PAGE LAYOUT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.contact-info h2,
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.contact-info > p,
.contact-form-wrap > p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 2rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  align-items: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1.5px solid var(--lime);
  color: var(--lime-dark);
}

.contact-info__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
}

.contact-info__item > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}

.contact-info__item a {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--lime-dark);
}

.contact-info__item a:hover {
  color: var(--lime);
}

.contact-info__item span {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- CONTACT FORM --- */
.contact-form-wrap {
  background-color: var(--charcoal);
  padding: 2.5rem 2rem;
  color: var(--pure-white);
}

.contact-form-wrap h2 {
  color: var(--pure-white);
}

.contact-form-wrap > p {
  color: rgba(255, 255, 255, 0.65);
}

.contact-form .form-group {
  margin-bottom: 1.125rem;
}

.contact-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.04);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--pure-white);
  transition: border-color var(--transition-base), background-color var(--transition-base);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--lime);
  background-color: rgba(255, 255, 255, 0.06);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--lime) 50%),
                    linear-gradient(135deg, var(--lime) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(1em + 2px),
                       calc(100% - 13px) calc(1em + 2px);
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.contact-form select option {
  background-color: var(--charcoal);
  color: var(--pure-white);
}

.contact-form button[type="submit"] {
  margin-top: 0.5rem;
  width: 100%;
}

/* --- MAP --- */
.section--map {
  padding: 0;
}

.map-wrapper {
  margin: 0;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
  filter: grayscale(0.5) brightness(0.95);
  transition: filter 0.5s;
}

.map-wrapper iframe:hover {
  filter: grayscale(0) brightness(1);
}

@media (min-width: 768px) {
  .map-wrapper iframe {
    height: 480px;
  }
}

/* --- SECTION CTA HELPER --- */
.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* --- CTA BAND (full-bleed section, used on multiple pages) --- */
.cta-band {
  text-align: center;
  padding: 4rem 0;
  background-color: var(--black);
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    var(--lime-glow) 0%,
    transparent 60%
  );
  border-radius: 50%;
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  margin-bottom: 1rem;
  color: var(--pure-white);
  font-size: clamp(1.875rem, 4vw, 3rem);
}

.cta-band__text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto 2.25rem;
  max-width: 520px;
  line-height: 1.7;
}

.cta-band__phone {
  display: block;
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.cta-band__phone:hover {
  color: var(--lime);
}

/* Green variant of CTA band (solid lime background) */
.cta-band--green {
  background-color: var(--lime);
  color: var(--black);
}

.cta-band--green h2 {
  color: var(--black);
}

.cta-band--green .cta-band__text {
  color: rgba(0, 0, 0, 0.65);
}

.cta-band--green::before {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 60%
  );
}

/* --- CTA BAND — varianta s fotkou na pozadí (index.html) --- */
.cta-band--photo {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 0;
  background-color: var(--black);
  overflow: hidden;
}
.cta-band--photo::before { display: none; }
.cta-band--photo .cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-band--photo .cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(20%);
}
.cta-band--photo .cta-band__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(14, 14, 14, 0.5) 0%, rgba(14, 14, 14, 0.85) 100%);
}
.cta-band--photo .cta-band__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.cta-band--photo .cta-band__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.25rem;
}
.cta-band--photo h2 {
  color: var(--pure-white);
  margin-bottom: 1.25rem;
}
.cta-band--photo .cta-band__text {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2.5rem;
}
.btn--cta-photo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(160, 200, 20, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn--cta-photo svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.btn--cta-photo:hover,
.btn--cta-photo:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(160, 200, 20, 0.32);
}
.btn--cta-photo:hover svg {
  transform: translateX(3px);
}
@media (max-width: 600px) {
  .cta-band--photo {
    min-height: 420px;
    padding: 4rem 0;
  }
}

/* --- Cenik — Human Regenerator zvýrazněná sekce + Nuskin note + featured borders --- */
.price-section--featured {
  border: 2px solid var(--lime);
  border-radius: 6px;
  padding: 2.25rem 2rem;
  background: linear-gradient(180deg, rgba(160, 200, 20, 0.05) 0%, transparent 100%);
  box-shadow: 0 8px 30px rgba(160, 200, 20, 0.08);
  margin-bottom: 3rem;
  position: relative;
}
.price-section--featured::before {
  content: 'Novinka 2026';
  position: absolute;
  top: -0.65rem;
  left: 1.5rem;
  background-color: var(--lime);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}
.price-section--featured .price-section__title {
  color: var(--lime-dark);
}
.price-section--note {
  background-color: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  padding: 1.5rem 2rem;
}
.price-section--note .price-section__text {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* === Nu Skin: PILLAR GRID — doplňky stravy obecný přehled (4 cards) === */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 600px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .pillar-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.pillar-card {
  background-color: var(--pure-white);
  padding: 2rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}
.pillar-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: var(--text);
}
.pillar-card p {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* === Nu Skin: JVi GRID — 6 nutrients cards === */
.jvi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .jvi-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .jvi-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.jvi-card {
  background: linear-gradient(180deg, rgba(160, 200, 20, 0.04) 0%, transparent 100%);
  border-top: 3px solid var(--lime);
  padding: 1.75rem 1.5rem;
  border-radius: 4px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.jvi-card:hover {
  transform: translateY(-3px);
  border-color: var(--lime-dark);
}
.jvi-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.jvi-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.jvi-card li {
  position: relative;
  padding-left: 1.125rem;
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 0.4rem;
}
.jvi-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--lime);
}

/* === Nu Skin: WHY GRID — proč si vybrat (4 cards centrované) === */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 600px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.why-card {
  text-align: left;
  padding: 1.75rem 1.5rem;
  border-left: 3px solid var(--lime);
  background-color: var(--cream);
  border-radius: 0 6px 6px 0;
}
.why-card__num {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--lime-dark);
  margin-bottom: 0.5rem;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.why-card p {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* === CTA banner: eyebrow tag === */
.cta-band__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
}

/* === Nu Skin: video grid (4 click-to-modal tiles, uniform 16:9) ===
   Tiles jsou stejně velké aspect-ratio 16/9 → konzistentní kompozice
   bez ohledu na intrinsic AR jednotlivých videí. Žádný preload — videa
   se stáhnou až po kliknutí v modálu (mobile data + Safari autoplay
   restrictions). */
.nuskin-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}
@media (min-width: 768px) {
  .nuskin-video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    max-width: 980px;
  }
}
.nuskin-video-grid__item {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.nuskin-video-trigger {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--charcoal);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font: inherit;
  color: inherit;
}
.nuskin-video-trigger::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.nuskin-video-trigger:hover,
.nuskin-video-trigger:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
  outline: none;
}
.nuskin-video-trigger__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 2;
}
.nuskin-video-trigger:hover .nuskin-video-trigger__play,
.nuskin-video-trigger:focus-visible .nuskin-video-trigger__play {
  transform: translate(-50%, -50%) scale(1.08);
}
.nuskin-video-trigger__play svg {
  width: 26px;
  height: 26px;
  fill: var(--charcoal);
  margin-left: 4px;
}
.nuskin-video-grid__item figcaption {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}

/* === Video modal (sdílený, na nuskin.html i jinde použitelný) === */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.video-modal.is-active {
  display: flex;
}
.video-modal__inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
}
.video-modal__inner video {
  display: block;
  width: 100%;
  max-height: 80vh;
  background: #000;
  border-radius: 4px;
}
.video-modal__close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.video-modal__close:hover,
.video-modal__close:focus-visible {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  outline: none;
}

/* === Benefits list — center variant pro homepage / sekce s textem dosaď === */
.benefits-list--center {
  max-width: 600px;
  margin: 1.5rem auto 0;
  text-align: left;
}

/* --- EMS Kegel — video ukázka --- */
.ems-video-wrapper {
  max-width: 900px;
  margin: 2rem auto 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  background-color: var(--black);
}
.ems-video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
}

/* --- Voucher gallery (cenik.html — Dárkové poukazy) --- */
.voucher-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.voucher-gallery__item {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background-color: var(--pure-white);
}
.voucher-gallery__item:hover {
  transform: translateY(-4px);
}
.voucher-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 600px) {
  .voucher-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* --- Cenik — mobile responsive table layout (C5) --- */
@media (max-width: 600px) {
  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td {
    display: block;
    width: 100%;
  }
  .price-table tr {
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .price-table tr:last-child {
    border-bottom: none;
  }
  .price-table__name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
  }
  .price-table__duration {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
  }
  .price-table__price {
    font-weight: 700;
    color: var(--lime-dark);
    text-align: left;
  }
  .price-section--featured {
    padding: 2rem 1.25rem;
  }

  /* CTA band — menší padding + font na mobilu */
  .cta-band {
    padding: 3rem 0;
  }
  .cta-band h2 {
    font-size: 1.625rem;
  }
  .cta-band__text {
    font-size: 0.9375rem;
  }
  .cta-band--photo {
    min-height: 360px;
  }
  .cta-band--photo h2 {
    font-size: 1.625rem;
  }

  /* Page hero — menší typografie na mobilu, ale top padding musí počítat
     s fixed navbar (78 px) + safe gap, jinak page-hero__tag mizí pod navbarem. */
  .page-hero {
    padding: calc(var(--nav-height) + 2rem) 0 3rem;
  }
  .page-hero h1 {
    font-size: 2.25rem;
  }
  .page-hero__subtitle {
    font-size: 0.9375rem;
  }

  /* Voucher banner — méně padding */
  .voucher-banner {
    padding: 1.75rem 1.25rem;
  }

  /* Section labels readable */
  .section-label {
    font-size: 0.625rem;
  }

  /* Sekce s velkými marginama — zúžit container padding */
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
