@media(max-width:768px){
  body{overflow-x:hidden;overflow-wrap:break-word}
  img,video,iframe{max-width:100%!important}
  [style*="grid-template-columns"]{grid-template-columns:1fr!important}
  section [style*="justify-content:space-between"]{flex-direction:column!important;align-items:center!important;gap:0.5rem!important}
  footer [style*="display:flex"]{flex-wrap:wrap!important}
}
@media(max-width:480px){
  .email-capture>div{flex-wrap:wrap!important}
  .email-capture>div>*{flex:1 1 100%!important}
}

/* === katsman base styles (moved from Layout Default) === */
:root {
  /* Katsman brand tokens (nebiswera-style minimal) */
  --katsman-sage-green: #87A96B;
  --katsman-deep-forest: #243419;
  --katsman-sage-hover: #6E8C58;
  --katsman-warm-cream: #fafaf9;
  --katsman-warm-beige: #f5f5f4;
  --katsman-soft-lavender: #C8B5DB;
  --katsman-gentle-rose: #E8C4C4;
  --katsman-golden: #F4D03F;
  --katsman-border: hsl(40 15% 88%);
  --katsman-muted-fg: hsl(95 35% 15% / 0.6);
  --katsman-radius: 0.5rem;

  /* Neomorphic surface tokens */
  --neu-base: #F7F6F8;
  --neu-dark: #E8E6EB;
  --neu-shadow: #B8B4BD;

  --katsman-gradient-transformation: linear-gradient(135deg, #87A96B, #C8B5DB);
  --katsman-gradient-wisdom: linear-gradient(135deg, #243419, #87A96B);
  --katsman-gradient-card: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);

  --katsman-shadow-peaceful: 0 25px 50px -12px rgba(36, 52, 25, 0.1);
  --katsman-shadow-elevation: 0 10px 30px rgba(36, 52, 25, 0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans Georgian", system-ui, -apple-system, sans-serif;
  background: var(--katsman-warm-cream);
  color: var(--katsman-deep-forest);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Header ───────────────────────────────────────── */
.k-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--neu-base);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.k-header__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
@media (min-width: 640px) { .k-header__inner { padding: 0 1.5rem; } }
@media (min-width: 768px) { .k-header__inner { height: 64px; } }
@media (min-width: 1024px) { .k-header__inner { padding: 0 2rem; } }

.k-header__logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--katsman-sage-green);
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.k-header__logo:hover { color: var(--katsman-sage-hover); }
@media (min-width: 768px) { .k-header__logo { font-size: 1.25rem; } }

/* Desktop nav */
.k-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) { .k-nav { display: flex; } }

.k-nav__link {
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--katsman-deep-forest);
  border-radius: 0.375rem;
  transition: color 0.15s ease, background 0.15s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.k-nav__link:hover {
  color: var(--katsman-sage-green);
  background: rgba(135, 169, 107, 0.08);
}

/* Dropdown */
.k-nav__group {
  position: relative;
}
.k-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.k-nav__trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.k-nav__group[data-open="true"] .k-nav__trigger {
  color: var(--katsman-sage-green);
  background: rgba(135, 169, 107, 0.08);
  border: 1px solid rgba(135, 169, 107, 0.4);
  padding: calc(0.5rem - 1px) calc(0.75rem - 1px);
}
.k-nav__group[data-open="true"] .k-nav__trigger svg { transform: rotate(180deg); }
.k-nav__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 12rem;
  background: var(--neu-base);
  border: 1px solid rgba(135, 169, 107, 0.15);
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(36, 52, 25, 0.1);
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0.125rem;
  z-index: 50;
}
.k-nav__group[data-open="true"] .k-nav__menu { display: flex; }
.k-nav__menu-item {
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--katsman-deep-forest);
  border-radius: 0.375rem;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.k-nav__menu-item:hover {
  color: var(--katsman-sage-green);
  background: rgba(135, 169, 107, 0.08);
}

/* Mobile burger */
.k-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--katsman-deep-forest);
  cursor: pointer;
  padding: 0;
  border-radius: 0.375rem;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s ease;
}
.k-burger:hover { background: rgba(135, 169, 107, 0.08); }
@media (min-width: 768px) { .k-burger { display: none; } }
.k-burger svg { width: 22px; height: 22px; }

/* Mobile menu panel */
.k-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85%, 320px);
  background: var(--neu-base);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
  padding: 4rem 1rem 2rem;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 60;
  overflow-y: auto;
}
.k-mobile[data-open="true"] { transform: translateX(0); }
.k-mobile__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--katsman-deep-forest);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  transition: background 0.15s ease;
}
.k-mobile__close:hover { background: rgba(135, 169, 107, 0.08); }
.k-mobile__close svg { width: 22px; height: 22px; }
.k-mobile__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
}
.k-mobile__link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.625rem 0.875rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--katsman-deep-forest);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  border-radius: 0.375rem;
  transition: background 0.15s ease, color 0.15s ease;
  font-family: inherit;
}
.k-mobile__link:hover {
  color: var(--katsman-sage-green);
  background: rgba(135, 169, 107, 0.08);
}
.k-mobile__sublabel {
  padding: 0.625rem 0.875rem 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--katsman-sage-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.k-mobile__sublink {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0.5rem 0.875rem 0.5rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--katsman-deep-forest);
  border-radius: 0.375rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.k-mobile__sublink:hover {
  color: var(--katsman-sage-green);
  background: rgba(135, 169, 107, 0.08);
}
.k-mobile__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.k-mobile__backdrop[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

/* === katsman shared rules (extracted from pages) ====================== */

.benefit__hook {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 600;
    color: var(--katsman-sage-green);
    margin: 0 0 1.1rem;
    line-height: 1.5; }
.benefits__head {
    text-align: center;
    margin-bottom: 3rem; }
.benefits__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto; }
.bookend {
    background: linear-gradient(135deg, hsl(95 25% 48% / 0.07), hsl(95 35% 15% / 0.07));
    border: 2px solid hsl(95 25% 48% / 0.25);
    border-radius: 1.25rem;
    padding: 1.5rem; }
.bookend__row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem; }
.bookend__row svg {
    flex-shrink: 0;
    width: 24px; height: 24px;
    color: var(--katsman-sage-green);
    margin-top: 0.25rem; }
.bookend__sub {
    color: hsl(95 35% 15% / 0.7);
    margin: 0; }
.bookend__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--katsman-deep-forest);
    margin: 0 0 0.5rem; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--katsman-warm-cream);
    background: linear-gradient(135deg, hsl(95 25% 48%), hsl(95 35% 15%));
    border: none;
    border-radius: 0.85rem;
    padding: 0.85rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 12px 30px hsl(95 25% 48% / 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    animation: gdPulse 2s ease-in-out infinite alternate; }
.btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 18px 40px hsl(95 25% 48% / 0.5); }
.card--p4 .card__icon { background: linear-gradient(135deg, hsl(48 90% 55%), var(--katsman-deep-forest)); }
.card--prob1 .card__icon { background: linear-gradient(135deg, hsl(0 75% 55%), hsl(28 95% 55%)); }
.card--prob2 .card__icon { background: linear-gradient(135deg, hsl(28 95% 55%), hsl(48 90% 55%)); }
.card--sol .card__icon svg { width: 40px; height: 40px; }
.container--medium { max-width: 64rem; }
.container--wide { max-width: 72rem; }
.cta__row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap; }
.cta--green {
    background: linear-gradient(90deg, hsl(140 70% 45%), hsl(140 70% 35%)); }
.cta--green:hover { box-shadow: 0 18px 40px hsl(140 70% 45% / 0.5); }
.cta--orange {
    background: linear-gradient(90deg, hsl(28 95% 55%), hsl(28 95% 45%)); }
.cta--outline {
    color: var(--katsman-warm-cream);
    background: transparent;
    border: 2px solid var(--katsman-warm-cream); }
.cta-group { display: flex; flex-direction: column; align-items: flex-start; gap: 0.65rem; }
.cta-note {
    font-size: 0.92rem;
    color: hsl(95 35% 15% / 0.65);
    margin: 0; }
.curriculum {
    background: var(--katsman-warm-cream);
    padding: 4rem 0; }
.curriculum__head { text-align: center; margin-bottom: 3rem; }
.curriculum__list {
    display: flex;
    flex-direction: column;
    gap: 2rem; }
.curriculum__title {
    font-size: clamp(1.85rem, 5vw, 3.75rem);
    font-weight: 800;
    color: var(--katsman-deep-forest);
    margin: 0 0 1.5rem;
    line-height: 1.15; }
.details {
    background: var(--katsman-warm-beige);
    padding: 4rem 0; }
.details__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; }
.details__head { text-align: center; margin-bottom: 3rem; }
.details__title {
    font-size: clamp(1.85rem, 5vw, 3.75rem);
    font-weight: 800;
    color: var(--katsman-deep-forest);
    margin: 0 0 1.5rem;
    line-height: 1.15; }
.extras {
    background: linear-gradient(to right, hsl(95 25% 48% / 0.06), hsl(274 20% 75% / 0.1), hsl(95 35% 15% / 0.05));
    border: 2px solid hsl(95 25% 48% / 0.2);
    border-radius: 1.25rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem; }
.extras__arrow {
    width: 18px; height: 18px;
    color: var(--katsman-sage-green);
    animation: gdBounce 1.4s ease-in-out infinite; }
.extras__main {
    font-size: 1.05rem;
    color: var(--katsman-deep-forest);
    font-weight: 500;
    margin: 0; }
.extras__row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem; }
.extras__row svg {
    flex-shrink: 0;
    width: 22px; height: 22px;
    color: var(--katsman-sage-green);
    margin-top: 0.25rem; }
.extras__sub {
    font-size: 0.95rem;
    color: hsl(95 35% 15% / 0.7);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap; }
.final__cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 40px hsl(0 0% 0% / 0.4); }
.finalcta {
    background: linear-gradient(to bottom, var(--katsman-warm-cream), hsl(95 25% 92%));
    padding: 4rem 0 5rem; }
.finalcta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1.15rem 2.75rem;
    background: var(--katsman-sage-green);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(135, 169, 107, 0.4);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit; }
.finalcta__btn svg { width: 22px; height: 22px; }
.finalcta__btn:hover {
    background: #6E8C58;
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(135, 169, 107, 0.55); }
.finalcta__inner {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto; }
.finalcta__sub {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: hsl(95 35% 15% / 0.72);
    margin: 0 0 2.5rem;
    line-height: 1.6; }
.finalcta__title {
    font-size: clamp(1.85rem, 4vw, 2.85rem);
    font-weight: 800;
    color: var(--katsman-deep-forest);
    margin: 0 0 0.85rem;
    line-height: 1.2; }
.format {
    background: #fff;
    border: 1px solid hsl(95 25% 85%);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--katsman-shadow-elevation);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative; }
.format__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: hsl(95 35% 15% / 0.72);
    margin: 0; }
.format__icon svg { width: 32px; height: 32px; }
.format__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--katsman-deep-forest);
    margin: 0 0 1rem; }
.format:hover {
    box-shadow: 0 20px 50px hsl(95 35% 15% / 0.15);
    transform: translateY(-4px); }
.formats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto 3rem; }
.grid--3 { max-width: 72rem; }
.guest__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
    color: #fff; }
.guest__video {
    position: relative;
    width: 100%;
    margin: 0 auto 2rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid hsl(0 0% 100% / 0.2);
    background: hsl(0 0% 0% / 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 25px 60px hsl(0 0% 0% / 0.4);
    aspect-ratio: 16 / 9; }
.guest__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0; }
.hero__float:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero__float:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.hero__float:nth-child(3) { top: 80%; left: 20%; animation-delay: 4s; }
.hero__float:nth-child(4) { top: 30%; left: 70%; animation-delay: 1s; }
.hero__float:nth-child(5) { top: 70%; left: 50%; animation-delay: 3s; }
.hero__floats {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 1;
    display: none; }
.hero__image {
    border-radius: 1.5rem;
    overflow: hidden;
    max-width: 22rem;
    margin: 0 auto;
    box-shadow: 0 25px 60px hsl(95 35% 15% / 0.25);
    position: relative; }
.hero__image img {
    width: 100%;
    height: auto;
    display: block; }
.hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, hsl(95 35% 15% / 0.15), transparent);
    pointer-events: none; }
.hero__img-wrap {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(36, 52, 25, 0.2), 0 0 0 1px rgba(135, 169, 107, 0.18);
    background: var(--katsman-warm-cream); }
.hero__img-wrap img {
    width: 100%;
    height: auto;
    display: block; }
.hero__milestone {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1; }
.hero__scroll-frame {
    width: 24px;
    height: 40px;
    border: 2px solid var(--katsman-warm-cream);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    padding-top: 8px; }
.hero__video iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0; }
.hero::before,
  .hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    opacity: 0.2; }
.intro {
    background: var(--katsman-warm-cream);
    padding: 4rem 0;
    overflow: hidden; }
.intro__head { text-align: center; margin-bottom: 3rem; }
.intro__lead {
    font-size: 1.05rem;
    line-height: 1.85;
    color: hsl(95 35% 15% / 0.78);
    text-align: center;
    margin: 0 0 3rem;
    position: relative;
    z-index: 1; }
.intro__panel {
    background: var(--katsman-warm-cream);
    border: 1px solid var(--katsman-border);
    border-radius: 1.25rem;
    box-shadow: var(--katsman-shadow-peaceful);
    padding: 2.5rem 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden; }
.intro__panel::after {
    bottom: -2.5rem; left: -2.5rem;
    width: 6rem; height: 6rem;
    background: radial-gradient(circle, hsl(95 25% 48% / 0.4), transparent 70%); }
.intro__panel::before {
    top: -3rem; right: -3rem;
    width: 8rem; height: 8rem;
    background: radial-gradient(circle, hsl(274 20% 75% / 0.5), transparent 70%); }
.intro__panel::before,
  .intro__panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.4; }
.intro__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.85rem);
    font-weight: 500;
    color: hsl(95 35% 15% / 0.65);
    margin: 0 0 2rem; }
.intro__title {
    font-size: clamp(1.85rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--katsman-deep-forest);
    margin: 0 0 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em; }
.journey {
    padding: 4rem 1rem;
    background: var(--katsman-warm-cream); }
.journey__bar {
    width: 6rem;
    height: 4px;
    background: linear-gradient(90deg, hsl(270 70% 50%), hsl(330 75% 55%));
    border-radius: 999px;
    margin: 0 auto; }
.journey__card {
    background: #fff;
    border: 1px solid hsl(95 25% 88%);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 6px 18px hsl(95 35% 15% / 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease; }
.journey__card--1 .journey__card-icon { background: linear-gradient(135deg, hsl(330 75% 60%), hsl(355 75% 60%)); }
.journey__card--2 .journey__card-icon { background: linear-gradient(135deg, hsl(270 70% 60%), hsl(240 70% 50%)); }
.journey__card--3 .journey__card-icon { background: linear-gradient(135deg, hsl(240 70% 60%), hsl(220 75% 55%)); }
.journey__card--4 .journey__card-icon { background: linear-gradient(135deg, hsl(280 70% 65%), hsl(270 70% 55%)); }
.journey__card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #fff;
    box-shadow: 0 8px 20px hsl(0 0% 0% / 0.15); }
.journey__card-icon svg { width: 32px; height: 32px; }
.journey__card-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: hsl(95 35% 15% / 0.75);
    margin: 0; }
.journey__card-title {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--katsman-deep-forest);
    margin: 0 0 0.85rem; }
.journey__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px hsl(95 35% 15% / 0.15); }
.journey__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto; }
.journey__head { text-align: center; margin-bottom: 3rem; }
.journey__title {
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(90deg, hsl(160 70% 40%), hsl(180 70% 40%) 50%, hsl(200 75% 45%));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    padding: 0.5rem 0; }
.lecture {
    background: #fff;
    border: 1px solid hsl(95 25% 85%);
    border-radius: 0.85rem;
    padding: 0;
    box-shadow: 0 4px 12px hsl(0 0% 0% / 0.05);
    transition: box-shadow 0.3s ease; }
.lecture summary {
    list-style: none;
    cursor: pointer;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem; }
.lecture summary::-webkit-details-marker { display: none; }
.lecture__body {
    padding: 0 1.5rem 1.5rem 5rem;
    color: hsl(95 35% 15% / 0.7);
    line-height: 1.7; }
.lecture__caret {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: hsl(95 35% 15% / 0.5);
    transition: transform 0.3s ease; }
.lecture__title {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--katsman-deep-forest);
    line-height: 1.45; }
.lecture[open] .lecture__caret { transform: rotate(180deg); }
.lecture[open], .lecture:hover { box-shadow: 0 8px 24px hsl(0 0% 0% / 0.1); }
.lectures {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem; }
.list__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem; }
.list__item svg {
    flex-shrink: 0;
    width: 22px; height: 22px;
    color: var(--katsman-sage-green);
    margin-top: 0.125rem; }
.list__item--info svg { color: hsl(274 30% 50%); }
.list__item-text {
    font-size: 0.95rem;
    color: hsl(95 35% 15% / 0.7);
    line-height: 1.65; }
.list__sub {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem; }
.list__sub li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.9rem;
    color: hsl(95 35% 15% / 0.7);
    line-height: 1.55; }
.list__sub li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--katsman-sage-green);
    font-weight: 700; }
.list--tight { gap: 0.85rem; }
.modal {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    max-width: 26rem;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: scale(0.95);
    transition: transform 0.25s ease; }
.modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.5rem;
    background: var(--katsman-sage-green);
    color: #fff;
    border: none;
    border-radius: 0.65rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, transform 0.2s ease; }
.modal__btn:hover {
    background: var(--katsman-sage-hover, #6E8C58);
    transform: translateY(-1px); }
.modal__icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: rgba(135, 169, 107, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--katsman-sage-green); }
.modal__icon svg { width: 28px; height: 28px; }
.modal__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--katsman-deep-forest);
    line-height: 1.4;
    margin: 0 0 2rem; }
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.25s ease; }
.modal-backdrop[data-open="true"] {
    display: flex;
    opacity: 1; }
.modal-backdrop[data-open="true"] .modal {
    transform: scale(1); }
.month-card {
    background: var(--katsman-warm-cream);
    border: 1px solid var(--katsman-border);
    border-radius: 1.25rem;
    box-shadow: var(--katsman-shadow-elevation);
    padding: 2rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease; }
.month-card__desc {
    color: hsl(95 35% 15% / 0.7);
    margin: 0 0 1.5rem;
    line-height: 1.7; }
.month-card__weeks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    list-style: none;
    padding: 0;
    margin: 0; }
.month-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: var(--katsman-shadow-peaceful); }
.month-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--katsman-deep-forest);
    margin: 0 0 1rem; }
.nav-preview__head {
    text-align: center;
    margin-bottom: 3rem; }
.pain {
    padding: 4rem 1rem;
    background: var(--katsman-warm-cream); }
.pain__card {
    position: relative;
    background: #fff;
    border: 1px solid hsl(28 95% 55% / 0.2);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 6px 20px hsl(95 35% 15% / 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.pain__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px hsl(28 95% 55% / 0.15);
    border-color: hsl(28 95% 55% / 0.4); }
.pain__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto; }
.pain__head {
    text-align: center;
    margin-bottom: 3rem; }
.pain__icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(28 95% 55%), hsl(28 95% 45%));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 16px hsl(28 95% 55% / 0.4); }
.pain__icon svg { width: 28px; height: 28px; }
.pain__text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: hsl(95 35% 15% / 0.85);
    margin: 0; }
.pain__title {
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--katsman-deep-forest);
    margin: 0;
    line-height: 1.2; }
.pain__title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap; }
.pain__title-row svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: hsl(28 95% 55%); }
.partnership__ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: stretch; }
.pkg {
    background: var(--katsman-warm-cream);
    border: 1px solid var(--katsman-border);
    border-radius: 1.25rem;
    box-shadow: var(--katsman-shadow-elevation);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative; }
.pkg__badge {
    position: absolute;
    top: -0.85rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--katsman-soft-lavender);
    color: var(--katsman-deep-forest);
    padding: 0.25rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600; }
.pkg__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: hsl(95 35% 15% / 0.72);
    line-height: 1.55; }
.pkg__feature > svg {
    flex-shrink: 0;
    width: 20px; height: 20px;
    color: var(--katsman-sage-green);
    margin-top: 0.125rem; }
.pkg__feature details {
    margin-top: 0; }
.pkg__feature details[open] summary::after { content: "დახურე"; }
.pkg__feature summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem; }
.pkg__feature summary::-webkit-details-marker { display: none; }
.pkg__feature summary::after {
    content: "ჩამოშალე";
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 500;
    color: hsl(95 25% 35%);
    background: hsl(95 10% 88%);
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    transition: background 0.2s ease;
    align-self: flex-start; }
.pkg__feature summary:hover::after { background: hsl(95 15% 82%); }
.pkg__feature--head {
    margin-top: 0.5rem;
    padding-left: 0;
    color: var(--katsman-deep-forest);
    font-size: 1rem; }
.pkg__feature--head .pkg__feature-body { color: var(--katsman-deep-forest); }
.pkg__feature--head strong { font-weight: 700; }
.pkg__feature-body { flex: 1; }
.pkg__features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem; }
.pkg__name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--katsman-deep-forest);
    margin: 0 0 1.5rem;
    text-align: center; }
.pkg__sub {
    list-style: none;
    margin: 0.75rem 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem; }
.pkg__sub li {
    font-size: 0.85rem;
    color: hsl(95 35% 15% / 0.75);
    position: relative;
    padding-left: 0.85rem;
    line-height: 1.55; }
.pkg__sub li::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: hsl(95 25% 35%); }
.pkg--popular {
    border: 2px solid var(--katsman-soft-lavender);
    box-shadow: 0 4px 30px hsl(274 20% 75% / 0.35); }
.pkg:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--katsman-shadow-peaceful); }
.pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem; }
.pricing__head { text-align: center; margin-bottom: 3rem; }
.pricing__heading {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 1.5rem;
    line-height: 1.3; }
.pricing__icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1rem;
    background: hsl(0 0% 100% / 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff; }
.pricing__icon svg { width: 40px; height: 40px; }
.pricing__list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem; }
.pricing__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--katsman-deep-forest);
    font-size: 1.05rem; }
.pricing__list li svg {
    flex-shrink: 0;
    color: hsl(140 70% 40%);
    width: 22px;
    height: 22px; }
.pricing__list-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--katsman-deep-forest);
    margin: 0 0 1.25rem;
    text-align: center; }
.pricing__old {
    font-size: 1.4rem;
    color: hsl(95 35% 15% / 0.55);
    text-decoration: line-through;
    margin-bottom: 0.4rem;
    display: block; }
.pricing__safety {
    text-align: center;
    font-size: 0.9rem;
    color: hsl(95 35% 15% / 0.65);
    margin: 1.5rem 0 0; }
.result p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--katsman-deep-forest);
    margin: 0;
    line-height: 1.6; }
.section--cream { background: var(--katsman-warm-cream); }
.section--gradient { background: linear-gradient(to bottom, var(--katsman-warm-cream), hsl(95 25% 92%)); }
.whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 0.85rem 1.5rem;
    border-radius: 0.85rem;
    box-shadow: 0 4px 12px hsl(140 70% 40% / 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; }
.whatsapp__icon {
    background: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease; }
.whatsapp__icon svg { width: 20px; height: 20px; color: #25D366; }
.whatsapp__sub { font-size: 0.78rem; opacity: 0.9; }
.whatsapp__text { display: flex; flex-direction: column; line-height: 1.3; }
.whatsapp__title {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem; }
.whatsapp__title svg { width: 13px; height: 13px; opacity: 0.7; }
.whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 24px hsl(140 70% 40% / 0.4); }
.whatsapp:hover .whatsapp__icon { transform: scale(1.1); }
.why__inner { position: relative; z-index: 1; max-width: 64rem; margin: 0 auto; }