/* ==========================================================================
   Vidupu Zogovi — global stylesheet
   ========================================================================== */

:root {
  --vz-ink: #1b1a17;
  --vz-ink-soft: #4a463c;
  --vz-ink-faint: #7a7568;
  --vz-paper: #f8f4ec;
  --vz-paper-alt: #efe8d8;
  --vz-surface: #ffffff;
  --vz-line: #e3dbc7;

  --vz-primary: #2f6f5e;
  --vz-primary-dark: #1e4a3d;
  --vz-primary-light: #6fa392;

  --vz-accent: #d8743a;
  --vz-accent-dark: #a85a2a;
  --vz-accent-light: #f2b787;

  --vz-radius-sm: 10px;
  --vz-radius-md: 18px;
  --vz-radius-lg: 28px;
  --vz-radius-xl: 44px;
  --vz-radius-pill: 999px;

  --vz-shadow-sm: 0 1px 2px rgba(27,26,23,.06), 0 1px 1px rgba(27,26,23,.05);
  --vz-shadow-md: 0 10px 26px -10px rgba(27,26,23,.2), 0 3px 8px rgba(27,26,23,.08);
  --vz-shadow-lg: 0 28px 54px -16px rgba(27,26,23,.28), 0 10px 20px -6px rgba(27,26,23,.14);
  --vz-glow-primary: 0 14px 34px -10px rgba(47,111,94,.45);
  --vz-glow-accent: 0 14px 34px -10px rgba(216,116,58,.45);

  --vz-space-3xs: 0.4rem;
  --vz-space-2xs: 0.7rem;
  --vz-space-xs: 1.1rem;
  --vz-space-sm: 1.7rem;
  --vz-space-md: 2.6rem;
  --vz-space-lg: 4rem;
  --vz-space-xl: 6.2rem;
  --vz-space-2xl: 9rem;

  --vz-text-hero: clamp(2.6rem, 4.6vw + 1rem, 4.6rem);
  --vz-text-h2: clamp(1.9rem, 2.6vw + 1rem, 2.9rem);
  --vz-text-h3: clamp(1.25rem, 1vw + 1rem, 1.6rem);
  --vz-text-lead: clamp(1.05rem, .4vw + .9rem, 1.25rem);

  --vz-font: 'Outfit', sans-serif;
  --vz-max: 1180px;
  --vz-max-narrow: 720px;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--vz-font);
  color: var(--vz-ink);
  background: var(--vz-paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--vz-font); font-weight: 700; margin: 0 0 .6em; color: var(--vz-ink); line-height: 1.15; }
p { margin: 0 0 1em; }
button { font-family: var(--vz-font); cursor: pointer; }
input, select, textarea { font-family: var(--vz-font); font-size: 1rem; }

.global-eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--vz-primary);
  margin-bottom: var(--vz-space-2xs);
}
.global-eyebrow--light { color: var(--vz-accent-light); }

.global-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.7rem;
  border-radius: var(--vz-radius-pill);
  font-weight: 600;
  font-size: .98rem;
  border: 2px solid transparent;
  transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease, color .3s ease, border-color .3s ease;
  min-height: 48px;
  white-space: nowrap;
}
.global-btn--primary {
  background: var(--vz-primary);
  color: var(--vz-paper);
  box-shadow: var(--vz-glow-primary);
}
.global-btn--primary:hover { background: var(--vz-primary-dark); transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(47,111,94,.55); }
.global-btn--ghost {
  background: transparent;
  color: var(--vz-ink);
  border-color: var(--vz-line);
}
.global-btn--ghost:hover { border-color: var(--vz-primary); color: var(--vz-primary); transform: translateY(-2px); }


.global-iso {
  --size: 120px;
  --face-top: var(--vz-primary-light);
  --face-left: var(--vz-primary);
  --face-right: var(--vz-primary-dark);
  position: relative;
  width: var(--size);
  height: var(--size);
}
.global-iso__face { position: absolute; inset: 0; }
.global-iso__face--top { background: var(--face-top); clip-path: polygon(50% 0%, 100% 25%, 50% 50%, 0% 25%); }
.global-iso__face--left { background: var(--face-left); clip-path: polygon(0% 25%, 50% 50%, 50% 100%, 0% 75%); }
.global-iso__face--right { background: var(--face-right); clip-path: polygon(50% 50%, 100% 25%, 100% 75%, 50% 100%); }
.global-iso--sm { --size: 62px; }
.global-iso--md { --size: 150px; }
.global-iso--lg { --size: 300px; }
.global-iso--accent { --face-top: var(--vz-accent-light); --face-left: var(--vz-accent); --face-right: var(--vz-accent-dark); }
.global-iso--primary { --face-top: var(--vz-primary-light); --face-left: var(--vz-primary); --face-right: var(--vz-primary-dark); }
.global-iso--float { animation: vzFloat 7s ease-in-out infinite; }
.global-iso--float-slow { animation: vzFloat 10s ease-in-out infinite; animation-delay: -3s; }
@keyframes vzFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}


.global-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.global-reveal.is-visible { opacity: 1; transform: translateY(0); }


.global-header { background: var(--vz-paper); position: relative; z-index: 100; padding: var(--vz-space-xs) var(--vz-space-sm); }
.global-header__scene { max-width: var(--vz-max); margin: 0 auto; perspective: 1600px; }
.global-header__card { position: relative; transform-style: preserve-3d; transition: transform .8s cubic-bezier(.4,.1,.2,1); }
.global-header__card.is-flipped-marker {}
.global-header.is-flipped .global-header__card { transform: rotateX(180deg); }
.global-header__face { backface-visibility: hidden; }
.global-header__face--front { position: relative; z-index: 2; }
.global-header__row { display: flex; align-items: center; justify-content: space-between; gap: var(--vz-space-sm); }
.global-header__logo { display: flex; align-items: center; gap: .6rem; }
.global-header__logo-text { font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; }
.global-header__nav-desktop { display: none; gap: var(--vz-space-md); }
.global-header__nav-desktop a { font-weight: 500; font-size: .96rem; color: var(--vz-ink-soft); padding: .4rem 0; border-bottom: 2px solid transparent; transition: color .25s ease, border-color .25s ease; }
.global-header__nav-desktop a:hover, .global-header__nav-desktop a.is-current { color: var(--vz-primary); border-color: var(--vz-primary); }
.global-header__toggle { width: 48px; height: 48px; border: 1px solid var(--vz-line); border-radius: var(--vz-radius-md); background: var(--vz-surface); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; transition: border-color .3s ease, box-shadow .3s ease; }
.global-header__toggle:hover { border-color: var(--vz-primary); box-shadow: var(--vz-shadow-sm); }
.global-header__toggle span { width: 20px; height: 2px; background: var(--vz-ink); border-radius: 2px; }
.global-header__face--back {
  position: absolute; inset: 0; z-index: 1;
  transform: rotateX(180deg);
  background: var(--vz-ink);
  border-radius: var(--vz-radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: var(--vz-space-lg) var(--vz-space-sm);
  min-height: 260px;
}
.global-header__close { position: absolute; top: var(--vz-space-sm); right: var(--vz-space-sm); width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(248,244,236,.3); background: transparent; color: var(--vz-paper); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background-color .3s ease; }
.global-header__close:hover { background: rgba(248,244,236,.12); }
.global-header__nav-mobile { display: flex; flex-direction: column; align-items: center; gap: var(--vz-space-sm); }
.global-header__nav-mobile a { color: var(--vz-paper); font-size: 1.5rem; font-weight: 600; transition: color .3s ease, transform .3s ease; }
.global-header__nav-mobile a:hover { color: var(--vz-accent-light); transform: translateX(4px); }
.global-no-scroll { overflow: hidden; }

@media (min-width: 860px) {
  .global-header__nav-desktop { display: flex; }
  .global-header__toggle { display: none; }
  .global-header__face--back { display: none; }
}


.global-backtotop {
  position: fixed; right: var(--vz-space-sm); bottom: var(--vz-space-sm);
  width: 52px; height: 52px; border-radius: 50%; border: none;
  background: var(--vz-ink); color: var(--vz-paper);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--vz-shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease, background-color .3s ease;
  z-index: 90; font-size: 1.1rem;
}
.global-backtotop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.global-backtotop:hover { background: var(--vz-primary); }


.global-cta { position: relative; background: var(--vz-ink); color: var(--vz-paper); padding: var(--vz-space-xl) var(--vz-space-sm); overflow: hidden; }
.global-cta__inner { max-width: var(--vz-max-narrow); margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.global-cta h2 { color: var(--vz-paper); font-size: var(--vz-text-h2); }
.global-cta p { color: rgba(248,244,236,.78); font-size: var(--vz-text-lead); max-width: 540px; margin: 0 auto var(--vz-space-sm); }
.global-cta__iso { position: absolute; top: -40px; right: -20px; opacity: .5; z-index: 1; }


.global-footer { background: var(--vz-ink); padding: var(--vz-space-xl) var(--vz-space-sm) var(--vz-space-md); }
.global-footer__inner {
  max-width: var(--vz-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: var(--vz-space-sm);
}
.global-footer__card {
  background: #26241f;
  border-radius: var(--vz-radius-lg);
  padding: var(--vz-space-sm);
  box-shadow: var(--vz-shadow-md);
}
.global-footer__card h3 { color: var(--vz-paper); font-size: 1.05rem; margin-bottom: var(--vz-space-xs); }
.global-footer__card p { color: rgba(248,244,236,.72); font-size: .95rem; }
.global-footer__card nav { display: flex; flex-direction: column; gap: .7rem; }
.global-footer__card nav a { color: rgba(248,244,236,.72); font-size: .95rem; transition: color .3s ease; }
.global-footer__card nav a:hover { color: var(--vz-accent-light); }
.global-footer__logo { display: flex; align-items: center; gap: .5rem; margin-bottom: var(--vz-space-xs); }
.global-footer__logo span { color: var(--vz-paper); font-weight: 700; font-size: 1.1rem; }
.global-footer__card--contact p { display: flex; align-items: center; gap: .55rem; }
.global-footer__card--contact a { color: rgba(248,244,236,.85); transition: color .3s ease; }
.global-footer__card--contact a:hover { color: var(--vz-accent-light); }
.global-footer__bottom { max-width: var(--vz-max); margin: var(--vz-space-md) auto 0; text-align: center; }
.global-footer__bottom p { color: rgba(248,244,236,.5); font-size: .82rem; }

@media (min-width: 720px) {
  .global-footer__inner { grid-template-columns: 1.2fr 1fr 1fr 1.2fr; }
}


.global-cookie {
  position: fixed; top: var(--vz-space-sm); left: -420px;
  max-width: 340px; background: var(--vz-surface);
  border-radius: var(--vz-radius-lg); box-shadow: var(--vz-shadow-lg);
  padding: var(--vz-space-sm); z-index: 300;
  transition: left .6s cubic-bezier(.4,.1,.2,1);
  border: 1px solid var(--vz-line);
}
.global-cookie.is-visible { left: var(--vz-space-sm); }
.global-cookie__icon { width: 42px; height: 42px; border-radius: 50%; background: var(--vz-paper-alt); color: var(--vz-primary); display: flex; align-items: center; justify-content: center; margin-bottom: var(--vz-space-2xs); font-size: 1.1rem; }
.global-cookie__text { font-size: .87rem; color: var(--vz-ink-soft); margin-bottom: var(--vz-space-xs); }
.global-cookie__actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.global-cookie__btn { border-radius: var(--vz-radius-pill); padding: .6rem 1.1rem; font-size: .82rem; font-weight: 600; border: 1px solid var(--vz-line); background: transparent; transition: all .3s ease; min-height: 40px; }
.global-cookie__btn--accept { background: var(--vz-primary); color: var(--vz-paper); border-color: var(--vz-primary); box-shadow: var(--vz-glow-primary); }
.global-cookie__btn--accept:hover { background: var(--vz-primary-dark); }
.global-cookie__btn--settings:hover { border-color: var(--vz-primary); color: var(--vz-primary); }

.global-cookie-modal { position: fixed; inset: 0; z-index: 400; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease; padding: var(--vz-space-sm); }
.global-cookie-modal.is-visible { opacity: 1; visibility: visible; }
.global-cookie-modal__overlay { position: absolute; inset: 0; background: rgba(27,26,23,.55); backdrop-filter: blur(3px); }
.global-cookie-modal__dialog { position: relative; background: var(--vz-surface); border-radius: var(--vz-radius-lg); padding: var(--vz-space-md); max-width: 480px; width: 100%; max-height: 86vh; overflow-y: auto; box-shadow: var(--vz-shadow-lg); }
.global-cookie-modal__close { position: absolute; top: var(--vz-space-xs); right: var(--vz-space-xs); width: 36px; height: 36px; border-radius: 50%; border: none; background: var(--vz-paper-alt); font-size: 1.3rem; line-height: 1; }
.global-cookie-modal__row { display: flex; align-items: center; justify-content: space-between; gap: var(--vz-space-xs); padding: var(--vz-space-xs) 0; border-bottom: 1px solid var(--vz-line); }
.global-cookie-modal__row p { font-size: .84rem; color: var(--vz-ink-faint); margin: 0; }
.global-cookie-modal__locked { font-size: .78rem; color: var(--vz-primary); font-weight: 600; white-space: nowrap; }
.global-cookie-modal__switch { position: relative; display: inline-block; width: 44px; height: 26px; flex-shrink: 0; }
.global-cookie-modal__switch input { opacity: 0; width: 0; height: 0; }
.global-cookie-modal__switch span { position: absolute; inset: 0; background: var(--vz-line); border-radius: var(--vz-radius-pill); transition: background-color .3s ease; }
.global-cookie-modal__switch span::before { content: ""; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: var(--vz-surface); border-radius: 50%; transition: transform .3s ease; box-shadow: var(--vz-shadow-sm); }
.global-cookie-modal__switch input:checked + span { background: var(--vz-primary); }
.global-cookie-modal__switch input:checked + span::before { transform: translateX(18px); }
.global-cookie-modal__actions { display: flex; gap: .7rem; margin-top: var(--vz-space-sm); flex-wrap: wrap; }

/* ==========================================================================
   HOME PAGE
   ========================================================================== */
.home-hero { position: relative; padding: var(--vz-space-md) var(--vz-space-sm) var(--vz-space-xl); overflow: hidden; }
.home-hero__inner { max-width: var(--vz-max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--vz-space-lg); align-items: center; position: relative; z-index: 2; }
.home-hero__title { font-size: var(--vz-text-hero); letter-spacing: -.02em; }
.home-hero__lead { font-size: var(--vz-text-lead); color: var(--vz-ink-soft); max-width: 52ch; }
.home-hero__actions { display: flex; gap: var(--vz-space-xs); flex-wrap: wrap; margin: var(--vz-space-sm) 0; }
.home-hero__stats { display: flex; gap: var(--vz-space-md); flex-wrap: wrap; }
.home-hero__stat { display: flex; flex-direction: column; }
.home-hero__stat-num { font-size: 1.6rem; font-weight: 700; color: var(--vz-primary); }
.home-hero__stat-label { font-size: .82rem; color: var(--vz-ink-faint); }
.home-hero__figure { position: relative; }
.home-hero__img { border-radius: var(--vz-radius-xl); box-shadow: var(--vz-shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.home-hero__card {
  position: absolute; bottom: -24px; left: -20px;
  background: var(--vz-surface); border-radius: var(--vz-radius-lg);
  padding: var(--vz-space-sm); max-width: 220px;
  box-shadow: var(--vz-shadow-lg);
}
.home-hero__card-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--vz-accent); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: var(--vz-space-2xs); box-shadow: var(--vz-glow-accent); }
.home-hero__card-title { font-weight: 700; font-size: .95rem; margin-bottom: .2rem; }
.home-hero__card-text { font-size: .82rem; color: var(--vz-ink-faint); margin: 0; }
.home-hero__iso { position: absolute; z-index: 1; }
.home-hero__iso--one { top: 4%; right: 6%; opacity: .8; }
.home-hero__iso--two { bottom: 8%; left: 2%; opacity: .6; }

@media (min-width: 900px) {
  .home-hero__inner { grid-template-columns: 45% 55%; }
  .home-hero__card { left: -50px; bottom: -30px; }
}

.home-philosophy {
  position: relative; background: var(--vz-ink); color: var(--vz-paper);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  padding: var(--vz-space-2xl) var(--vz-space-sm);
  margin: -50px 0;
}
.home-philosophy__inner { max-width: var(--vz-max-narrow); margin: 0 auto; }
.home-philosophy__title { color: var(--vz-paper); font-size: var(--vz-text-h2); }
.home-philosophy__text { color: rgba(248,244,236,.78); font-size: var(--vz-text-lead); }
.home-philosophy__grid { display: grid; grid-template-columns: 1fr; gap: var(--vz-space-sm); margin-top: var(--vz-space-md); }
.home-philosophy__point { display: flex; gap: var(--vz-space-xs); align-items: flex-start; }
.home-philosophy__point i { color: var(--vz-accent-light); font-size: 1.3rem; margin-top: .2rem; }
.home-philosophy__point p { color: rgba(248,244,236,.8); font-size: .96rem; margin: 0; }

@media (min-width: 720px) {
  .home-philosophy__grid { grid-template-columns: 1fr 1fr; }
}

.home-services { padding: var(--vz-space-2xl) var(--vz-space-sm) var(--vz-space-xl); }
.home-services__inner { max-width: var(--vz-max); margin: 0 auto; }
.home-services__title { font-size: var(--vz-text-h2); max-width: 20ch; }
.home-services__lead { max-width: 60ch; color: var(--vz-ink-soft); font-size: var(--vz-text-lead); }
.home-services__grid { display: grid; grid-template-columns: 1fr; gap: var(--vz-space-sm); margin-top: var(--vz-space-md); }
.home-services__card {
  background: var(--vz-surface); border-radius: var(--vz-radius-lg);
  padding: var(--vz-space-sm); box-shadow: var(--vz-shadow-md);
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid var(--vz-line);
}
.home-services__card:hover { transform: translateY(-6px); box-shadow: var(--vz-shadow-lg); }
.home-services__icon { position: relative; width: 62px; height: 62px; margin-bottom: var(--vz-space-xs); display: flex; align-items: center; justify-content: center; }
.home-services__icon i { position: relative; z-index: 2; color: #fff; font-size: 1.3rem; }
.home-services__card h3 { font-size: 1.15rem; }
.home-services__card p { font-size: .93rem; color: var(--vz-ink-soft); margin: 0; }

@media (min-width: 640px) {
  .home-services__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .home-services__grid { grid-template-columns: repeat(3, 1fr); }
}

.home-process { padding: var(--vz-space-xl) var(--vz-space-sm); background: var(--vz-paper-alt); }
.home-process__inner { max-width: var(--vz-max); margin: 0 auto; }
.home-process__title { font-size: var(--vz-text-h2); max-width: 22ch; }
.home-process__steps { display: grid; grid-template-columns: 1fr; gap: var(--vz-space-md); margin-top: var(--vz-space-md); position: relative; }
.home-process__step { position: relative; padding-left: var(--vz-space-md); border-left: 2px dashed var(--vz-line); }
.home-process__num { font-size: 1.6rem; font-weight: 800; color: var(--vz-primary); opacity: .5; }
.home-process__step h3 { font-size: 1.1rem; margin-top: .3rem; }
.home-process__step p { font-size: .93rem; color: var(--vz-ink-soft); margin: 0; }

@media (min-width: 800px) {
  .home-process__steps { grid-template-columns: repeat(4, 1fr); }
  .home-process__step { border-left: none; border-top: 2px dashed var(--vz-line); padding-left: 0; padding-top: var(--vz-space-xs); }
}

.home-tabs { padding: var(--vz-space-xl) var(--vz-space-sm); }
.home-tabs__inner { max-width: var(--vz-max-narrow); margin: 0 auto; }
.home-tabs__title { font-size: var(--vz-text-h2); }
.home-tabs__list { display: flex; gap: .6rem; flex-wrap: wrap; margin: var(--vz-space-sm) 0; }
.home-tabs__btn {
  border: 1px solid var(--vz-line); background: var(--vz-surface);
  border-radius: var(--vz-radius-pill); padding: .7rem 1.3rem; font-size: .9rem; font-weight: 600;
  color: var(--vz-ink-soft); transition: all .3s ease; min-height: 44px;
}
.home-tabs__btn:hover { border-color: var(--vz-primary); color: var(--vz-primary); }
.home-tabs__btn.is-active { background: var(--vz-primary); border-color: var(--vz-primary); color: #fff; box-shadow: var(--vz-glow-primary); }
.home-tabs__panels { background: var(--vz-surface); border-radius: var(--vz-radius-lg); padding: var(--vz-space-md); box-shadow: var(--vz-shadow-md); border: 1px solid var(--vz-line); }
.home-tabs__panel { display: none; animation: vzFadeIn .5s ease; }
.home-tabs__panel.is-active { display: block; }
.home-tabs__panel h3 { font-size: 1.3rem; }
.home-tabs__panel ul { display: flex; flex-direction: column; gap: .6rem; margin-top: var(--vz-space-xs); }
.home-tabs__panel li { position: relative; padding-left: 1.6rem; font-size: .96rem; color: var(--vz-ink-soft); }
.home-tabs__panel li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--vz-primary); font-size: .8rem; top: .2rem; }
@keyframes vzFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   JAK MYSLIMY PAGE
   ========================================================================== */
.myslimy-hero { padding: var(--vz-space-2xl) var(--vz-space-sm) var(--vz-space-lg); text-align: center; }
.myslimy-hero__inner { max-width: var(--vz-max-narrow); margin: 0 auto; }
.myslimy-hero__title { font-size: var(--vz-text-hero); }
.myslimy-hero__lead { font-size: var(--vz-text-lead); color: var(--vz-ink-soft); }

.myslimy-not { padding: var(--vz-space-xl) var(--vz-space-sm); background: var(--vz-paper-alt); }
.myslimy-not__inner { max-width: var(--vz-max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--vz-space-md); align-items: center; }
.myslimy-not__figure img { border-radius: var(--vz-radius-lg); box-shadow: var(--vz-shadow-md); object-fit: cover; width: 100%; aspect-ratio: 4/3; }
.myslimy-not__text p { color: var(--vz-ink-soft); }

@media (min-width: 860px) {
  .myslimy-not__inner { grid-template-columns: 1.1fr .9fr; }
}

.myslimy-assumptions { padding: var(--vz-space-xl) var(--vz-space-sm); }
.myslimy-assumptions__inner { max-width: var(--vz-max); margin: 0 auto; }
.myslimy-assumptions__grid { display: grid; grid-template-columns: 1fr; gap: var(--vz-space-sm); margin-top: var(--vz-space-md); }
.myslimy-assumptions__item { background: var(--vz-surface); border-radius: var(--vz-radius-lg); padding: var(--vz-space-sm); box-shadow: var(--vz-shadow-sm); border: 1px solid var(--vz-line); }
.myslimy-assumptions__num { font-size: 1.4rem; font-weight: 800; color: var(--vz-accent); }
.myslimy-assumptions__item h3 { margin-top: .3rem; font-size: 1.1rem; }
.myslimy-assumptions__item p { color: var(--vz-ink-soft); font-size: .93rem; margin: 0; }

@media (min-width: 700px) {
  .myslimy-assumptions__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1050px) {
  .myslimy-assumptions__grid { grid-template-columns: repeat(4, 1fr); }
}

.myslimy-method { padding: var(--vz-space-xl) var(--vz-space-sm); background: var(--vz-ink); color: var(--vz-paper); clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 96%); }
.myslimy-method__inner { max-width: var(--vz-max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--vz-space-md); align-items: center; }
.myslimy-method__figure img { border-radius: var(--vz-radius-lg); box-shadow: var(--vz-shadow-lg); object-fit: cover; width: 100%; aspect-ratio: 3/4; }
.myslimy-method__text h2 { color: var(--vz-paper); }
.myslimy-method__text p { color: rgba(248,244,236,.78); }

@media (min-width: 860px) {
  .myslimy-method__inner { grid-template-columns: .8fr 1.2fr; }
}

.myslimy-for-whom { padding: var(--vz-space-xl) var(--vz-space-sm); text-align: center; }
.myslimy-for-whom__inner { max-width: var(--vz-max-narrow); margin: 0 auto; }
.myslimy-for-whom__inner p { color: var(--vz-ink-soft); }

/* ==========================================================================
   KURSY PAGE
   ========================================================================== */
.kursy-hero { padding: var(--vz-space-2xl) var(--vz-space-sm) var(--vz-space-lg); text-align: center; }
.kursy-hero__inner { max-width: var(--vz-max-narrow); margin: 0 auto; }
.kursy-hero__title { font-size: var(--vz-text-hero); }
.kursy-hero__lead { font-size: var(--vz-text-lead); color: var(--vz-ink-soft); }

.kursy-sessions { padding: var(--vz-space-lg) var(--vz-space-sm) var(--vz-space-xl); }
.kursy-sessions__inner { max-width: var(--vz-max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--vz-space-sm); }
.kursy-sessions__card { background: var(--vz-surface); border-radius: var(--vz-radius-lg); padding: var(--vz-space-md); box-shadow: var(--vz-shadow-md); border: 1px solid var(--vz-line); transition: transform .3s ease, box-shadow .3s ease; }
.kursy-sessions__card:hover { transform: translateY(-4px); box-shadow: var(--vz-shadow-lg); }
.kursy-sessions__meta { display: flex; align-items: center; gap: .5rem; color: var(--vz-primary); font-size: .85rem; font-weight: 600; margin-bottom: var(--vz-space-2xs); }
.kursy-sessions__card h2 { font-size: 1.3rem; }
.kursy-sessions__card p { color: var(--vz-ink-soft); font-size: .95rem; }
.kursy-sessions__for { font-size: .85rem; color: var(--vz-ink-faint); font-style: italic; margin: 0; }

@media (min-width: 720px) {
  .kursy-sessions__inner { grid-template-columns: 1fr 1fr; }
}

.kursy-format { padding: var(--vz-space-xl) var(--vz-space-sm); background: var(--vz-paper-alt); clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%); }
.kursy-format__inner { max-width: var(--vz-max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--vz-space-md); align-items: center; }
.kursy-format__figure img { border-radius: var(--vz-radius-lg); box-shadow: var(--vz-shadow-md); object-fit: cover; width: 100%; aspect-ratio: 4/3; }
.kursy-format__text p { color: var(--vz-ink-soft); }

@media (min-width: 860px) {
  .kursy-format__inner { grid-template-columns: .9fr 1.1fr; }
}

.kursy-faq { padding: var(--vz-space-xl) var(--vz-space-sm); }
.kursy-faq__inner { max-width: var(--vz-max-narrow); margin: 0 auto; }
.kursy-faq__list { margin-top: var(--vz-space-md); display: flex; flex-direction: column; gap: var(--vz-space-2xs); }
.kursy-faq__item { background: var(--vz-surface); border: 1px solid var(--vz-line); border-radius: var(--vz-radius-md); padding: var(--vz-space-xs) var(--vz-space-sm); }
.kursy-faq__item summary { cursor: pointer; font-weight: 600; font-size: 1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.kursy-faq__item summary::after { content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: .8rem; color: var(--vz-primary); transition: transform .3s ease; }
.kursy-faq__item[open] summary::after { transform: rotate(180deg); }
.kursy-faq__item p { margin: var(--vz-space-xs) 0 0; color: var(--vz-ink-soft); font-size: .93rem; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-hero { padding: var(--vz-space-2xl) var(--vz-space-sm) var(--vz-space-lg); text-align: center; }
.contact-hero__inner { max-width: var(--vz-max-narrow); margin: 0 auto; }
.contact-hero__title { font-size: var(--vz-text-hero); }
.contact-hero__lead { font-size: var(--vz-text-lead); color: var(--vz-ink-soft); }

.contact-quote { padding: 0 var(--vz-space-sm) var(--vz-space-lg); }
.contact-quote__inner { max-width: var(--vz-max-narrow); margin: 0 auto; background: var(--vz-ink); color: var(--vz-paper); border-radius: var(--vz-radius-lg); padding: var(--vz-space-md); text-align: center; box-shadow: var(--vz-shadow-lg); }
.contact-quote__inner i { color: var(--vz-accent-light); font-size: 1.4rem; margin-bottom: var(--vz-space-xs); }
.contact-quote__inner p { font-size: 1.15rem; font-style: italic; color: rgba(248,244,236,.9); max-width: 46ch; margin: 0 auto var(--vz-space-xs); }
.contact-quote__inner span { font-size: .85rem; color: rgba(248,244,236,.6); }

.contact-form-section { padding: var(--vz-space-lg) var(--vz-space-sm) var(--vz-space-xl); }
.contact-form-section__inner { max-width: var(--vz-max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--vz-space-lg); }
.contact-form-section__info { display: flex; flex-direction: column; gap: var(--vz-space-sm); }
.contact-form-section__img { border-radius: var(--vz-radius-lg); box-shadow: var(--vz-shadow-md); object-fit: cover; width: 100%; aspect-ratio: 4/5; }
.contact-form-section__details h2 { font-size: 1.4rem; }
.contact-form-section__details p { display: flex; align-items: center; gap: .6rem; color: var(--vz-ink-soft); }
.contact-form-section__details i { color: var(--vz-primary); width: 20px; }
.contact-form-section__note { font-size: .85rem; color: var(--vz-ink-faint); }

.contact-form-section__form { background: var(--vz-surface); border-radius: var(--vz-radius-lg); padding: var(--vz-space-md); box-shadow: var(--vz-shadow-lg); border: 1px solid var(--vz-line); }
.contact-form-section__form h2 { font-size: 1.4rem; }
.contact-form-section__row { margin-bottom: var(--vz-space-xs); display: flex; flex-direction: column; gap: .4rem; }
.contact-form-section__row label { font-size: .88rem; font-weight: 600; color: var(--vz-ink-soft); }
.contact-form-section__row input, .contact-form-section__row select, .contact-form-section__row textarea {
  padding: .85rem 1rem; border-radius: var(--vz-radius-sm); border: 1px solid var(--vz-line);
  background: var(--vz-paper); color: var(--vz-ink); transition: border-color .3s ease, box-shadow .3s ease;
  min-height: 48px;
}
.contact-form-section__row textarea { min-height: 130px; resize: vertical; }
.contact-form-section__row input:focus, .contact-form-section__row select:focus, .contact-form-section__row textarea:focus {
  outline: none; border-color: var(--vz-primary); box-shadow: 0 0 0 3px rgba(47,111,94,.18);
}
.contact-form-section__row input.is-invalid, .contact-form-section__row select.is-invalid, .contact-form-section__row textarea.is-invalid { border-color: #b0392c; }
.contact-form-section__checkbox { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: var(--vz-space-sm); }
.contact-form-section__checkbox input { margin-top: .3rem; width: 20px; height: 20px; accent-color: var(--vz-primary); flex-shrink: 0; }
.contact-form-section__checkbox label { font-size: .84rem; color: var(--vz-ink-faint); }
.contact-form-section__checkbox.is-invalid label { color: #b0392c; }
.contact-form-section__form button { width: 100%; }

@media (min-width: 900px) {
  .contact-form-section__inner { grid-template-columns: .85fr 1.15fr; }
}

.contact-map { padding: 0 var(--vz-space-sm) var(--vz-space-xl); }
.contact-map__inner { max-width: var(--vz-max); margin: 0 auto; }
.contact-map__frame { border-radius: var(--vz-radius-lg); overflow: hidden; box-shadow: var(--vz-shadow-md); height: 380px; border: 1px solid var(--vz-line); }

/* ==========================================================================
   THANKS PAGE
   ========================================================================== */
.thanks-main {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  padding: var(--vz-space-2xl) var(--vz-space-sm);
  background:
    radial-gradient(circle at 15% 20%, rgba(47,111,94,.08), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(216,116,58,.1), transparent 45%),
    var(--vz-paper-alt);
}
.thanks-card {
  background: var(--vz-surface); border-radius: var(--vz-radius-xl);
  padding: var(--vz-space-lg); text-align: center; max-width: 480px;
  box-shadow: var(--vz-shadow-lg);
}
.thanks-card__icon { width: 74px; height: 74px; border-radius: 50%; background: var(--vz-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.9rem; margin: 0 auto var(--vz-space-sm); box-shadow: var(--vz-glow-primary); }
.thanks-card p { color: var(--vz-ink-soft); }

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-main { padding: var(--vz-space-xl) var(--vz-space-sm) var(--vz-space-2xl); }
.legal-doc { max-width: 820px; margin: 0 auto; }
.legal-doc h1 { font-size: clamp(2rem, 3vw + 1rem, 2.8rem); }
.legal-doc__updated { color: var(--vz-ink-faint); font-size: .9rem; margin-bottom: var(--vz-space-md); }
.legal-doc h2 { font-size: 1.3rem; margin-top: var(--vz-space-md); }
.legal-doc p { color: var(--vz-ink-soft); }
.legal-doc ul { margin: var(--vz-space-xs) 0; padding-left: 1.4rem; list-style: disc; }
.legal-doc ul li { color: var(--vz-ink-soft); margin-bottom: .5rem; }

.legal-table { width: 100%; border-collapse: collapse; margin: var(--vz-space-sm) 0; font-size: .9rem; }
.legal-table th, .legal-table td { border: 1px solid var(--vz-line); padding: .75rem .9rem; text-align: left; vertical-align: top; }
.legal-table th { background: var(--vz-paper-alt); font-weight: 700; }
.legal-table tr:nth-child(even) td { background: rgba(239,232,216,.4); }

.legal-dl { margin: var(--vz-space-sm) 0; }
.legal-dl dt { font-weight: 700; color: var(--vz-ink); margin-top: var(--vz-space-xs); }
.legal-dl dd { margin: .3rem 0 0; color: var(--vz-ink-soft); }

@media (max-width: 640px) {
  .legal-table { font-size: .82rem; }
  .legal-table th, .legal-table td { padding: .55rem .6rem; }
}