@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");

#wsk-sveikatos-klubas {
  --color-brand-strong: #0f2f2d;
  --color-brand: #163f3c;
  --color-brand-soft: #2c5c57;
  --color-accent: #67d1c8;
  --color-accent-strong: #44b8b0;
  --color-page-top: #f6f0e7;
  --color-page-mid: #edf6f1;
  --color-page-bottom: #fbfdfb;
  --color-text-main: #1d3331;
  --color-text-muted: #526966;
  --shadow-xs: 0 10px 24px rgba(15, 47, 45, 0.05);
  --shadow-md: 0 28px 64px rgba(15, 47, 45, 0.12);
  --container-max: 1240px;
  --container-padding: 24px;
  position: relative;
  display: block;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: clip;
  color: var(--color-text-main);
  background:
    radial-gradient(circle at 14% 0%, rgba(103, 209, 200, 0.10), transparent 0 24%),
    linear-gradient(180deg, var(--color-page-top) 0%, var(--color-page-mid) 40%, var(--color-page-bottom) 100%);
  font-family: 'Ubuntu', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

#wsk-sveikatos-klubas,
#wsk-sveikatos-klubas * {
  box-sizing: border-box;
}

#wsk-sveikatos-klubas img {
  display: block;
  max-width: 100%;
  height: auto;
}

#wsk-sveikatos-klubas a {
  color: inherit;
  text-decoration: none;
}

#wsk-sveikatos-klubas a:focus-visible,
#wsk-sveikatos-klubas button:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(103, 209, 200, 0.18);
}

#wsk-sveikatos-klubas .btn:focus-visible,
#wsk-sveikatos-klubas .header__link:focus-visible,
#wsk-sveikatos-klubas .hero__support-link:focus-visible,
#wsk-sveikatos-klubas .experts-toggle:focus-visible,
#wsk-sveikatos-klubas .header__toggle:focus-visible {
  transform: none;
}

#wsk-sveikatos-klubas .header__link:focus-visible,
#wsk-sveikatos-klubas .hero__support-link:focus-visible,
#wsk-sveikatos-klubas .footer__links a:focus-visible {
  border-radius: 14px;
}

#wsk-sveikatos-klubas .footer__links a:focus-visible {
  padding-left: 12px;
  padding-right: 12px;
  transform: none;
}

#wsk-sveikatos-klubas h1,
#wsk-sveikatos-klubas h2,
#wsk-sveikatos-klubas h3,
#wsk-sveikatos-klubas h4 {
  margin: 0;
  color: var(--color-brand-strong);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

#wsk-sveikatos-klubas h1 {
  font-size: clamp(2.7rem, 5vw, 5.1rem);
}

#wsk-sveikatos-klubas h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

#wsk-sveikatos-klubas h3 {
  font-size: 1.18rem;
}

#wsk-sveikatos-klubas p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1rem;
}

#wsk-sveikatos-klubas .container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

#wsk-sveikatos-klubas .section {
  position: relative;
  padding: 88px 0;
}

#wsk-sveikatos-klubas .section-header {
  display: grid;
  gap: 16px;
  max-width: 780px;
}

#wsk-sveikatos-klubas .section-header--center {
  margin: 0 auto 36px;
  text-align: center;
  justify-items: center;
}

#wsk-sveikatos-klubas .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(22, 63, 60, 0.08);
  color: var(--color-brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#wsk-sveikatos-klubas .eyebrow--light {
  background: rgba(255, 255, 255, 0.12);
  color: #e9fffc;
}

#wsk-sveikatos-klubas .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 58px;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
  cursor: pointer;
}

#wsk-sveikatos-klubas .btn:hover {
  transform: translateY(-2px);
}

#wsk-sveikatos-klubas .btn--block {
  width: 100%;
}

#wsk-sveikatos-klubas .btn--primary {
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-strong) 100%);
  color: #0f2f2d;
  box-shadow: 0 18px 34px rgba(86, 194, 188, 0.24);
}

#wsk-sveikatos-klubas .btn--primary:hover {
  box-shadow: 0 22px 38px rgba(86, 194, 188, 0.30);
}

#wsk-sveikatos-klubas .btn--secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.995) 0%, rgba(243, 250, 247, 0.98) 100%);
  border-color: rgba(22, 63, 60, 0.18);
  box-shadow: 0 14px 28px rgba(15, 47, 45, 0.10);
  color: var(--color-brand-strong);
}

#wsk-sveikatos-klubas .btn--secondary:hover {
  background: linear-gradient(180deg, #ffffff 0%, rgba(236, 248, 244, 0.98) 100%);
  border-color: rgba(22, 63, 60, 0.26);
  box-shadow: 0 18px 32px rgba(15, 47, 45, 0.13);
}

#wsk-sveikatos-klubas .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}


#wsk-sveikatos-klubas .header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  padding: 16px 0;
}

#wsk-sveikatos-klubas .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px 10px 16px;
  border-radius: 999px;
  background: rgba(8, 27, 25, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

#wsk-sveikatos-klubas .header__inner.is-scrolled {
  background: rgba(8, 27, 25, 0.78);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

#wsk-sveikatos-klubas .header__inner.is-menu-open {
  background: rgba(10, 31, 29, 0.96);
  border-color: rgba(255, 255, 255, 0.20);
}

#wsk-sveikatos-klubas .header__logo img {
  width: auto;
  height: 32px;
}

#wsk-sveikatos-klubas .header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

#wsk-sveikatos-klubas .header__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
}

#wsk-sveikatos-klubas .header__link--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

#wsk-sveikatos-klubas .header__link--solid {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,255,253,0.92) 100%);
  color: var(--color-brand-strong);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 10px 20px rgba(7, 25, 24, 0.12);
}

#wsk-sveikatos-klubas .header__link--cta {
  white-space: nowrap;
}

@media (min-width: 768px) {
  #wsk-sveikatos-klubas .header__inner {
    gap: 18px;
    padding: 10px 16px 10px 18px;
    background: rgba(8, 27, 25, 0.40);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  }

  #wsk-sveikatos-klubas .header__inner.is-scrolled {
    background: rgba(8, 27, 25, 0.80);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
  }

  #wsk-sveikatos-klubas .header__actions {
    gap: 14px;
  }

  #wsk-sveikatos-klubas .header__link--ghost {
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: none;
  }

  #wsk-sveikatos-klubas .header__link--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
  }

  #wsk-sveikatos-klubas .header__link--cta {
    margin-left: 0;
    max-width: 0;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
    border-width: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    transform: translateX(6px);
    transition: max-width 0.22s ease, padding 0.22s ease, opacity 0.18s ease, transform 0.22s ease, margin 0.22s ease, border-width 0.22s ease, visibility 0s linear 0.22s;
  }

  #wsk-sveikatos-klubas .header__inner.is-scrolled .header__link--cta {
    margin-left: 2px;
    max-width: 220px;
    padding-left: 16px;
    padding-right: 16px;
    border-width: 1px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }
}

#wsk-sveikatos-klubas .header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10);
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

#wsk-sveikatos-klubas .header__toggle svg {
  width: 20px;
  height: 20px;
}

#wsk-sveikatos-klubas .header__toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.16);
}

#wsk-sveikatos-klubas .section--hero {
  position: relative;
  min-height: clamp(660px, 92svh, 900px);
  display: flex;
  align-items: center;
  padding-top: 136px;
  padding-bottom: 56px;
  background: #0f2f2d;
  isolation: isolate;
  overflow: hidden;
}

#wsk-sveikatos-klubas .section--hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: 100%;
}

#wsk-sveikatos-klubas .hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
}

#wsk-sveikatos-klubas .hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(92deg, rgba(7, 22, 21, 0.90) 0%, rgba(7, 22, 21, 0.78) 22%, rgba(7, 22, 21, 0.46) 48%, rgba(7, 22, 21, 0.22) 70%, rgba(7, 22, 21, 0.56) 100%),
    linear-gradient(180deg, rgba(10, 27, 26, 0.12) 0%, rgba(10, 27, 26, 0.18) 18%, rgba(10, 27, 26, 0.52) 68%, rgba(10, 27, 26, 0.88) 100%),
    radial-gradient(circle at 14% 20%, rgba(103, 209, 200, 0.22), transparent 0 24%);
  z-index: 1;
  pointer-events: none;
}

#wsk-sveikatos-klubas .hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  padding: 20px 0 10px;
}

#wsk-sveikatos-klubas .hero__copy {
  display: grid;
  gap: 18px;
  align-content: center;
  max-width: 680px;
  padding: 0;
}

#wsk-sveikatos-klubas .hero__copy > h1,
#wsk-sveikatos-klubas .hero__lead,
#wsk-sveikatos-klubas .hero__badge,
#wsk-sveikatos-klubas .hero__support-link {
  color: #ffffff;
}

#wsk-sveikatos-klubas .hero__copy > h1 {
  max-width: 9.8ch;
}

#wsk-sveikatos-klubas .hero__lead {
  max-width: 47ch;
  font-size: clamp(1.08rem, 1.62vw, 1.22rem);
  line-height: 1.64;
  color: rgba(255, 255, 255, 0.92);
}

#wsk-sveikatos-klubas .hero__actions {
  display: grid;
  grid-template-columns: minmax(280px, 340px);
  gap: 12px;
  justify-content: start;
  justify-items: start;
  align-items: start;
}

#wsk-sveikatos-klubas .hero__actions .btn {
  width: 100%;
  min-width: 0;
  min-height: 60px;
}

#wsk-sveikatos-klubas .hero__actions .btn--primary {
  box-shadow: 0 24px 42px rgba(86, 194, 188, 0.30);
}

#wsk-sveikatos-klubas .hero__support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-width: 0;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

#wsk-sveikatos-klubas .hero__support-link::after {
  content: "\2192 ";
  font-size: 0.98rem;
  line-height: 1;
}

#wsk-sveikatos-klubas .hero__support-link:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  transform: translateY(-1px);
}

#wsk-sveikatos-klubas .hero__badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px 12px;
  max-width: 520px;
}

#wsk-sveikatos-klubas .hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.80rem;
  font-weight: 700;
}

#wsk-sveikatos-klubas .hero__badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-accent);
}

#wsk-sveikatos-klubas .section--pricing {
  padding-top: 44px;
  padding-bottom: 84px;
  background:
    radial-gradient(circle at 14% 12%, rgba(103, 209, 200, 0.18), transparent 0 26%),
    radial-gradient(circle at 84% 18%, rgba(22, 63, 60, 0.08), transparent 0 22%),
    linear-gradient(180deg, #fbfdfc 0%, #eef7f2 48%, #e6f0ea 100%);
}

#wsk-sveikatos-klubas .pricing-anchor {
  scroll-margin-top: 120px;
}

#wsk-sveikatos-klubas .pricing-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(22, 63, 60, 0.08);
  color: var(--color-brand);
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

#wsk-sveikatos-klubas .section--pricing .container {
  display: grid;
  gap: 28px;
}

#wsk-sveikatos-klubas .section--pricing .section-header {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto 4px;
}

#wsk-sveikatos-klubas .section--pricing .section-header--center {
  gap: 14px;
}

#wsk-sveikatos-klubas .pricing-subtitle {
  max-width: 48ch;
  font-size: 1.02rem;
  line-height: 1.7;
}

#wsk-sveikatos-klubas .pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

#wsk-sveikatos-klubas .pricing-includes {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
  padding: 30px 28px 26px;
  border-radius: 34px;
  border: 1px solid rgba(22, 63, 60, 0.10);
  background:
    radial-gradient(circle at 10% 18%, rgba(103, 209, 200, 0.12), transparent 0 24%),
    linear-gradient(180deg, rgba(249, 253, 251, 0.99) 0%, rgba(240, 248, 243, 0.96) 100%);
  box-shadow: 0 20px 42px rgba(15, 47, 45, 0.07);
}

#wsk-sveikatos-klubas .pricing-includes__head {
  display: grid;
  gap: 10px;
  max-width: 42ch;
  align-content: start;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(22, 63, 60, 0.10);
}

#wsk-sveikatos-klubas .pricing-includes__head .eyebrow {
  background: rgba(22, 63, 60, 0.08);
  color: var(--color-brand);
}

#wsk-sveikatos-klubas .pricing-includes__head h3 {
  color: var(--color-brand-strong);
  font-size: clamp(1.5rem, 2.2vw, 2.02rem);
  line-height: 1.18;
}

#wsk-sveikatos-klubas .pricing-includes__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

#wsk-sveikatos-klubas .pricing-includes .feature-item {
  min-height: 100%;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 63, 60, 0.08);
  border-radius: 22px;
  box-shadow: none;
}

#wsk-sveikatos-klubas .pricing-includes .feature-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 1.08rem;
  box-shadow: none;
}

#wsk-sveikatos-klubas .pricing-includes .feature-item h3 {
  font-size: 1rem;
}

#wsk-sveikatos-klubas .pricing-includes .feature-item p {
  font-size: 0.94rem;
  line-height: 1.56;
}

#wsk-sveikatos-klubas .pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  padding: 0;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 251, 248, 0.98) 100%);
  border: 1px solid rgba(22, 63, 60, 0.08);
  box-shadow: 0 18px 42px rgba(15, 47, 45, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

#wsk-sveikatos-klubas .pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(15, 47, 45, 0.12);
  border-color: rgba(22, 63, 60, 0.14);
}

#wsk-sveikatos-klubas .pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, rgba(22, 63, 60, 0.05) 0%, rgba(86, 194, 188, 0.18) 50%, rgba(22, 63, 60, 0.05) 100%);
  opacity: 0.9;
}


#wsk-sveikatos-klubas .pricing-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #a3ece4 0%, #71d1c8 100%);
  color: #0f2f2d;
  font-size: 0.70rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 14px 28px rgba(86, 194, 188, 0.22);
}


#wsk-sveikatos-klubas .pricing-card__img {
  display: block;
  width: calc(100% - 32px);
  margin: 16px auto 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
}

#wsk-sveikatos-klubas .pricing-card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 28px 28px;
}

#wsk-sveikatos-klubas .pricing-card__title {
  margin: 0 0 12px;
  color: var(--color-brand-soft);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

#wsk-sveikatos-klubas .pricing-card__price {
  margin: 0 0 16px;
  color: var(--color-brand-strong);
  font-size: clamp(2rem, 2.65vw, 2.58rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

#wsk-sveikatos-klubas .pricing-card__meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0 0 24px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(22, 63, 60, 0.05);
  border: 1px solid rgba(22, 63, 60, 0.10);
  color: var(--color-brand);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

#wsk-sveikatos-klubas .pricing-card__summary {
  width: 100%;
  max-width: 22ch;
  min-height: 3.2em;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(22, 63, 60, 0.10);
  color: var(--color-brand-strong) !important;
  font-size: 1rem;
  line-height: 1.46;
  font-weight: 700;
}

#wsk-sveikatos-klubas .pricing-card__note {
  width: 100%;
  max-width: 28ch;
  min-height: 5.2em;
  margin: 12px auto 24px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: #4f6764 !important;
  font-size: 0.94rem;
  line-height: 1.58;
}

#wsk-sveikatos-klubas .pricing-card .btn {
  width: 100%;
  min-height: 60px;
  margin-top: auto;
}

#wsk-sveikatos-klubas .pricing-card--featured {
  transform: translateY(-8px);
  background:
    radial-gradient(circle at 18% 10%, rgba(103, 209, 200, 0.20), transparent 0 30%),
    linear-gradient(180deg, rgba(242, 252, 247, 0.995) 0%, rgba(231, 246, 240, 0.98) 100%);
  border-color: rgba(86, 194, 188, 0.46);
  box-shadow: 0 28px 62px rgba(15, 47, 45, 0.16);
}

#wsk-sveikatos-klubas .pricing-card--featured .pricing-card__meta {
  background: rgba(22, 63, 60, 0.08);
  border-color: rgba(86, 194, 188, 0.22);
}

#wsk-sveikatos-klubas .pricing-card--featured .btn--primary {
  box-shadow: 0 22px 40px rgba(86, 194, 188, 0.28);
}

#wsk-sveikatos-klubas .pricing-decision-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 10px;
  padding: 6px 0 0;
  border-top: 0;
  background: none;
  box-shadow: none;
}

#wsk-sveikatos-klubas .pricing-value-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
}

#wsk-sveikatos-klubas .pricing-value-stage .offer-stage__intro {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 100%;
  padding: 34px 32px 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 14%, rgba(103, 209, 200, 0.16), transparent 0 28%),
    linear-gradient(180deg, #173f3c 0%, #10312e 100%);
  border: 1px solid rgba(22, 63, 60, 0.14);
  box-shadow: 0 18px 40px rgba(15, 47, 45, 0.14);
}

#wsk-sveikatos-klubas .pricing-value-stage .offer-stage__intro .eyebrow {
  background: rgba(255,255,255,0.10);
  color: #dcfbf8;
}

#wsk-sveikatos-klubas .pricing-value-stage .offer-stage__intro h2 {
  color: #ffffff;
}

#wsk-sveikatos-klubas .pricing-value-stage .offer-stage__intro p {
  max-width: 62ch;
  color: rgba(255,255,255,0.88);
  font-size: 1.02rem;
  line-height: 1.74;
}

#wsk-sveikatos-klubas .pricing-value-stage .offer-stage__topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 4px;
}

#wsk-sveikatos-klubas .pricing-value-stage .offer-stage__topics .focus-card:last-child {
  grid-column: 1 / -1;
}

#wsk-sveikatos-klubas .pricing-value-stage .focus-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 6px;
  align-items: start;
  min-height: 100%;
  padding: 18px 16px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

#wsk-sveikatos-klubas .pricing-value-stage .focus-card h3 {
  color: #ffffff;
  font-size: 1rem;
}

#wsk-sveikatos-klubas .pricing-value-stage .focus-card p {
  color: rgba(255,255,255,0.86);
  font-size: 0.94rem;
  line-height: 1.55;
}

#wsk-sveikatos-klubas .pricing-value-stage .focus-card__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(180deg, #98e6de 0%, #70cbc3 100%);
  box-shadow: none;
}

#wsk-sveikatos-klubas .pricing-decision-stage .pricing-includes {
  height: 100%;
  padding: 26px;
  border-radius: 34px;
  border: 1px solid rgba(22, 63, 60, 0.10);
  background:
    radial-gradient(circle at 10% 18%, rgba(103, 209, 200, 0.10), transparent 0 24%),
    linear-gradient(180deg, rgba(249, 253, 251, 0.99) 0%, rgba(240, 248, 243, 0.96) 100%);
  box-shadow: 0 20px 42px rgba(15, 47, 45, 0.07);
}

#wsk-sveikatos-klubas .pricing-decision-stage .pricing-includes .pricing-includes__head {
  max-width: none;
}
#wsk-sveikatos-klubas .pricing-decision-stage .pricing-includes__list {
  grid-template-columns: 1fr;
  gap: 12px;
}

#wsk-sveikatos-klubas .pricing-decision-stage .pricing-includes .feature-item {
  padding: 18px 18px 16px;
  border-radius: 22px;
}

#wsk-sveikatos-klubas .feature-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 8px;
  align-content: start;
  padding: 24px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(247,251,249,0.97) 100%);
  border: 1px solid rgba(22, 63, 60, 0.08);
  box-shadow: var(--shadow-xs);
}

#wsk-sveikatos-klubas .feature-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(180deg, #225d57 0%, #133d39 100%);
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1;
  box-shadow: 0 14px 24px rgba(19, 61, 57, 0.18);
}

#wsk-sveikatos-klubas .feature-item__body {
  display: grid;
  gap: 8px;
}

#wsk-sveikatos-klubas .section--credibility {
  padding-top: 12px;
  padding-bottom: 64px;
  background:
    radial-gradient(circle at 14% 10%, rgba(103, 209, 200, 0.10), transparent 0 22%),
    radial-gradient(circle at 84% 14%, rgba(22, 63, 60, 0.05), transparent 0 22%),
    linear-gradient(180deg, #eff7f2 0%, #f5faf7 38%, #f2f8f4 100%);
}

#wsk-sveikatos-klubas .section--credibility .container {
  display: grid;
  gap: 28px;
}

#wsk-sveikatos-klubas .credibility-stage {
  display: grid;
  gap: 24px;
  padding: 32px;
  border-radius: 40px;
  box-shadow: 0 24px 54px rgba(15, 47, 45, 0.10);
}

#wsk-sveikatos-klubas .credibility-stage__intro {
  display: grid;
  gap: 10px;
  align-content: start;
  max-width: 860px;
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

#wsk-sveikatos-klubas .credibility-stage__intro p {
  font-size: 0.98rem;
  line-height: 1.62;
}

#wsk-sveikatos-klubas .credibility-stage--experts {
  grid-template-columns: 1fr;
  align-items: start;
  border: 1px solid rgba(22, 63, 60, 0.14);
  background:
    radial-gradient(circle at 10% 14%, rgba(103, 209, 200, 0.18), transparent 0 28%),
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.05), transparent 0 24%),
    linear-gradient(180deg, #173f3c 0%, #0f302d 100%);
}

#wsk-sveikatos-klubas .credibility-stage--experts .credibility-stage__intro {
  max-width: 720px;
}

#wsk-sveikatos-klubas .credibility-stage--experts .eyebrow {
  background: rgba(255,255,255,0.10);
  color: #dcfbf8;
}

#wsk-sveikatos-klubas .credibility-stage--experts h2,
#wsk-sveikatos-klubas .credibility-stage--experts p {
  color: #ffffff;
}

#wsk-sveikatos-klubas .credibility-stage--founders {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

#wsk-sveikatos-klubas .credibility-stage--founders .credibility-stage__intro {
  max-width: 720px;
  padding-top: 0;
}

#wsk-sveikatos-klubas .founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

#wsk-sveikatos-klubas .experts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  gap: 18px;
  align-items: stretch;
}

#wsk-sveikatos-klubas .experts-grid.is-collapsed::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 72px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15,48,45,0) 0%, rgba(15,48,45,0.70) 54%, rgba(15,48,45,0.96) 100%);
}

#wsk-sveikatos-klubas .founder-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(22, 63, 60, 0.10);
  box-shadow: none;
  min-height: 100%;
}

#wsk-sveikatos-klubas .expert-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(22, 63, 60, 0.08);
  box-shadow: var(--shadow-xs);
  min-height: 100%;
}

#wsk-sveikatos-klubas .founder-card__media {
  width: 96px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18px;
  background: #e3ece9;
}

#wsk-sveikatos-klubas .expert-card__media {
  width: 104px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
  background: #e3ece9;
}

#wsk-sveikatos-klubas .founder-card__media img,
#wsk-sveikatos-klubas .expert-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

#wsk-sveikatos-klubas .founder-card__body,
#wsk-sveikatos-klubas .expert-card__body {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
}

#wsk-sveikatos-klubas .founder-card__body h3 {
  font-size: 1.08rem;
  line-height: 1.24;
}

#wsk-sveikatos-klubas .founder-card__body p,
#wsk-sveikatos-klubas .expert-card__body p {
  color: var(--color-text-main);
}

#wsk-sveikatos-klubas .founder-card__body p {
  font-size: 0.95rem;
  line-height: 1.58;
}

#wsk-sveikatos-klubas .expert-card__body h3 {
  font-size: 1.04rem;
  line-height: 1.24;
}

#wsk-sveikatos-klubas .expert-card__body p {
  font-size: 0.93rem;
  line-height: 1.56;
}

#wsk-sveikatos-klubas .expert-card[hidden] {
  display: none !important;
}

#wsk-sveikatos-klubas .experts-stage__actions {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 18px;
  margin-top: 8px;
}

#wsk-sveikatos-klubas .experts-stage__actions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(180px, calc(100% - 32px));
  height: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.14);
}

#wsk-sveikatos-klubas .experts-toggle {
  display: none;
  min-width: 304px;
  min-height: 58px;
  justify-content: center;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.92);
  color: var(--color-brand-strong) !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

#wsk-sveikatos-klubas .experts-toggle:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
}

#wsk-sveikatos-klubas .experts-toggle::after {
  content: "\2193 ";
  margin-left: 10px;
  font-size: 0.95rem;
  line-height: 1;
}

#wsk-sveikatos-klubas .experts-toggle[aria-expanded="true"]::after {
  content: "\2191 ";
}

#wsk-sveikatos-klubas .experts-toggle.is-ready {
  display: inline-flex;
}

#wsk-sveikatos-klubas .credibility-conclusion {
  padding: 2px 0 0;
}

#wsk-sveikatos-klubas .credibility-conclusion .final-cta-panel {
  box-shadow: 0 24px 54px rgba(10, 32, 30, 0.16);
}

#wsk-sveikatos-klubas .final-cta-panel {
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, #18433f 0%, #10312e 100%);
}

#wsk-sveikatos-klubas .final-cta-panel--closing {
  max-width: 920px;
  margin: 0 auto;
}

#wsk-sveikatos-klubas .final-cta__action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
  padding: 34px 30px;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#wsk-sveikatos-klubas .final-cta__copy {
  display: grid;
  gap: 12px;
  align-content: center;
  max-width: 520px;
}

#wsk-sveikatos-klubas .final-cta__action h3 {
  color: #ffffff;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  line-height: 1.12;
}

#wsk-sveikatos-klubas .final-cta__action .btn-group--final-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  max-width: 420px;
  justify-self: end;
  align-self: center;
  justify-items: start;
}

#wsk-sveikatos-klubas .final-cta__action .btn-group--final-cta .btn {
  min-width: 0;
}

#wsk-sveikatos-klubas .final-cta__action .btn-group--final-cta .final-cta__btn--primary {
  width: 100%;
  min-height: 62px;
  font-size: 1rem;
}

#wsk-sveikatos-klubas .final-cta__action .btn-group--final-cta .final-cta__btn--secondary {
  width: fit-content;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.96) !important;
  text-decoration: none;
  box-shadow: none;
  justify-self: start;
}

#wsk-sveikatos-klubas .final-cta__action .btn-group--final-cta .final-cta__btn--secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.30);
  color: #ffffff !important;
}

#wsk-sveikatos-klubas .footer {
  padding: 44px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 14% 18%, rgba(103, 209, 200, 0.12), transparent 0 26%),
    linear-gradient(180deg, #143c38 0%, #0d2826 100%);
}

#wsk-sveikatos-klubas .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(200px, 1fr));
  gap: 28px 30px;
  align-items: start;
}

#wsk-sveikatos-klubas .footer__brand {
  display: grid;
  align-content: start;
  gap: 16px;
  padding-right: 18px;
}

#wsk-sveikatos-klubas .footer__brand img {
  height: 48px;
  width: auto;
  margin-bottom: 4px;
}

#wsk-sveikatos-klubas .footer p {
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.72;
}

#wsk-sveikatos-klubas .footer__nav-group {
  display: grid;
  align-content: start;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

#wsk-sveikatos-klubas .footer__title {
  margin-bottom: 18px;
  color: #98e1db;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

#wsk-sveikatos-klubas .footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

#wsk-sveikatos-klubas .footer__links li {
  margin: 0;
}

#wsk-sveikatos-klubas .footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  width: 100%;
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

#wsk-sveikatos-klubas .footer__links a:hover {
  color: #ffffff;
  border-color: rgba(152, 225, 219, 0.38);
  transform: translateX(2px);
}

@media (max-width: 1180px) {
  #wsk-sveikatos-klubas .pricing-decision-stage {
    grid-template-columns: 1fr;
  }

  #wsk-sveikatos-klubas .section {
    padding: 80px 0;
  }

  #wsk-sveikatos-klubas .hero__content {
    max-width: 720px;
  }

  #wsk-sveikatos-klubas .pricing-decision-stage {
    gap: 18px;
    padding-top: 24px;
  }

  #wsk-sveikatos-klubas .pricing-decision-stage .pricing-includes {
    padding: 22px;
  }

  #wsk-sveikatos-klubas .pricing-includes__list,
  #wsk-sveikatos-klubas .pricing-value-stage .offer-stage__topics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #wsk-sveikatos-klubas .credibility-stage--experts,
  #wsk-sveikatos-klubas .credibility-stage--founders {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  #wsk-sveikatos-klubas .founders-grid,
  #wsk-sveikatos-klubas .experts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #wsk-sveikatos-klubas .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 980px;
    margin: 0 auto;
    gap: 20px;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }

  #wsk-sveikatos-klubas .pricing-card--featured {
    order: -1;
    grid-column: 1 / -1;
  }

  #wsk-sveikatos-klubas .pricing-card--featured .pricing-card__img {
    width: calc(100% - 32px);
    margin: 16px auto 0;
  }

  #wsk-sveikatos-klubas .pricing-card--featured .pricing-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 28px 28px;
  }

  #wsk-sveikatos-klubas .pricing-card--featured .pricing-card__title {
    margin-bottom: 12px;
    align-self: auto;
  }

  #wsk-sveikatos-klubas .pricing-card--featured .pricing-card__price {
    margin-bottom: 16px;
    white-space: nowrap;
    align-self: auto;
  }

  #wsk-sveikatos-klubas .pricing-card--featured .pricing-card__meta {
    margin-bottom: 24px;
    justify-self: center;
    align-self: auto;
  }

  #wsk-sveikatos-klubas .pricing-card--featured .pricing-card__summary {
    min-height: 0;
    margin-bottom: 0;
    max-width: 22ch;
  }

  #wsk-sveikatos-klubas .pricing-card--featured .pricing-card__note {
    min-height: 0;
    margin-bottom: 24px;
    max-width: 28ch;
  }

  #wsk-sveikatos-klubas .pricing-card--featured .btn {
    margin-top: auto;
    align-self: stretch;
  }

  #wsk-sveikatos-klubas .pricing-decision-stage {
    padding-top: 22px;
  }

  #wsk-sveikatos-klubas .pricing-value-stage .offer-stage__intro {
    padding: 30px 26px 26px;
  }

  #wsk-sveikatos-klubas .credibility-stage {
    padding: 24px 22px 22px;
  }

  #wsk-sveikatos-klubas .pricing-includes {
    padding: 24px 22px 22px;
  }

  #wsk-sveikatos-klubas .pricing-includes__head {
    padding-bottom: 10px;
  }

  #wsk-sveikatos-klubas .pricing-card__content {
    padding: 28px 24px 24px;
  }

  #wsk-sveikatos-klubas .credibility-stage__intro {
    max-width: none;
  }

  #wsk-sveikatos-klubas .credibility-stage--founders {
    gap: 18px;
  }

  #wsk-sveikatos-klubas .final-cta__action {
    grid-template-columns: 1fr;
    align-items: start;
  }

  #wsk-sveikatos-klubas .final-cta__action .btn-group--final-cta {
    max-width: 480px;
    justify-self: stretch;
  }

  #wsk-sveikatos-klubas .final-cta__action .btn-group--final-cta .final-cta__btn--secondary {
    justify-self: start;
  }
}

@media (max-width: 920px) {
  #wsk-sveikatos-klubas .section--hero {
    min-height: auto;
    align-items: flex-end;
    padding-top: 108px;
    padding-bottom: 28px;
  }

  #wsk-sveikatos-klubas .hero__content {
    max-width: 680px;
    padding: 0;
  }

  #wsk-sveikatos-klubas .hero__actions {
    grid-template-columns: minmax(250px, 340px);
  }

  #wsk-sveikatos-klubas .hero__badges {
    max-width: none;
  }

  #wsk-sveikatos-klubas .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }

  #wsk-sveikatos-klubas .pricing-card--featured {
    grid-column: auto;
  }

  #wsk-sveikatos-klubas .pricing-card--featured .pricing-card__img {
    width: calc(100% - 36px);
    max-width: none;
    margin: 18px auto 0;
  }

  #wsk-sveikatos-klubas .pricing-card--featured .pricing-card__content {
    padding: 28px 24px 24px;
  }

  #wsk-sveikatos-klubas .pricing-includes__list {
    grid-template-columns: 1fr;
  }

  #wsk-sveikatos-klubas .pricing-value-stage .offer-stage__intro {
    padding: 24px 20px 20px;
  }

    #wsk-sveikatos-klubas .founders-grid {
    grid-template-columns: 1fr;
  }

  #wsk-sveikatos-klubas .experts-grid {
    grid-template-columns: 1fr;
  }


  #wsk-sveikatos-klubas .pricing-decision-stage .pricing-includes {
    padding: 20px 18px 18px;
  }

  #wsk-sveikatos-klubas .pricing-includes__head {
    padding-bottom: 8px;
  }

  #wsk-sveikatos-klubas .pricing-includes .feature-item,
  #wsk-sveikatos-klubas .pricing-value-stage .focus-card {
    padding: 16px 14px 14px;
    border-radius: 18px;
  }

  #wsk-sveikatos-klubas .pricing-card--featured {
    order: -1;
    grid-column: auto;
    transform: none;
  }

  #wsk-sveikatos-klubas .pricing-card--featured .pricing-card__content {
    display: flex;
    grid-template-columns: none;
    grid-template-areas: none;
    gap: 0;
    padding: 28px 24px 24px;
  }

  #wsk-sveikatos-klubas .pricing-card--featured:hover {
    transform: none;
  }

  #wsk-sveikatos-klubas .founder-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  #wsk-sveikatos-klubas .founder-card__media {
    width: 96px;
  }
}

@media (max-width: 767px) {
  #wsk-sveikatos-klubas .section {
    padding: 68px 0;
  }

  #wsk-sveikatos-klubas .header {
    padding: 12px;
  }

  #wsk-sveikatos-klubas .header__inner {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 0;
    padding: 11px 14px;
    border-radius: 24px;
    background: rgba(12, 35, 33, 0.84);
  }

  #wsk-sveikatos-klubas .header__logo img {
    height: 26px;
  }

  #wsk-sveikatos-klubas .header__toggle {
    display: inline-flex;
    flex: 0 0 auto;
    align-self: center;
  }

  #wsk-sveikatos-klubas .header__actions {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    gap: 8px;
  }

  #wsk-sveikatos-klubas .header__actions.is-open {
    display: flex;
  }

  #wsk-sveikatos-klubas .header__link {
    width: 100%;
  }

  #wsk-sveikatos-klubas .header__link--cta {
    order: -1;
    background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-strong) 100%);
    color: var(--color-brand-strong);
    border: 0;
    box-shadow: 0 16px 30px rgba(86, 194, 188, 0.24);
  }

  #wsk-sveikatos-klubas .header__link--ghost {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  #wsk-sveikatos-klubas .section--hero {
    padding-top: 92px;
    padding-bottom: 22px;
  }

  #wsk-sveikatos-klubas .hero__overlay {
    background:
      linear-gradient(180deg, rgba(10, 27, 26, 0.20) 0%, rgba(10, 27, 26, 0.34) 18%, rgba(10, 27, 26, 0.76) 68%, rgba(10, 27, 26, 0.95) 100%),
      radial-gradient(circle at 18% 24%, rgba(103, 209, 200, 0.15), transparent 0 24%);
  }

  #wsk-sveikatos-klubas .hero__content {
    max-width: 100%;
    padding: 0;
    border-radius: 0;
  }

  #wsk-sveikatos-klubas .hero__copy > h1 {
    max-width: none;
  }

  #wsk-sveikatos-klubas .hero__badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  #wsk-sveikatos-klubas .hero__actions {
    display: grid;
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  #wsk-sveikatos-klubas .hero__actions .btn {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  #wsk-sveikatos-klubas .hero__support-link {
    width: fit-content;
    min-width: 0;
    max-width: 100%;
    padding: 12px 18px;
  }

  #wsk-sveikatos-klubas .hero__badge {
    width: 100%;
    max-width: none;
  }

  #wsk-sveikatos-klubas .experts-toggle {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  #wsk-sveikatos-klubas .final-cta__action .btn-group--final-cta {
    max-width: none;
    justify-self: stretch;
  }

  #wsk-sveikatos-klubas .final-cta__action .btn-group--final-cta .final-cta__btn--secondary {
    width: fit-content;
    justify-self: start;
  }

  #wsk-sveikatos-klubas .pricing-decision-stage {
    margin-top: 12px;
    padding-top: 18px;
    gap: 16px;
  }

  #wsk-sveikatos-klubas .pricing-decision-stage .pricing-includes {
    padding-top: 20px;
  }

  #wsk-sveikatos-klubas .pricing-includes__list,
  #wsk-sveikatos-klubas .pricing-value-stage .offer-stage__topics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #wsk-sveikatos-klubas .pricing-value-stage .offer-stage__topics .focus-card:last-child {
    grid-column: auto;
  }

  #wsk-sveikatos-klubas .pricing-includes .feature-item,
  #wsk-sveikatos-klubas .pricing-value-stage .focus-card {
    padding: 16px 14px 14px;
  }

  #wsk-sveikatos-klubas .section--pricing {
    padding-top: 24px;
  }

  #wsk-sveikatos-klubas .section--pricing .container {
    gap: 24px;
  }

  #wsk-sveikatos-klubas .pricing-value-stage .offer-stage__intro {
    padding: 22px 18px 20px;
    border-radius: 24px;
  }

  #wsk-sveikatos-klubas .pricing-card__badge {
    top: 14px;
    left: 14px;
    font-size: 0.72rem;
  }

  #wsk-sveikatos-klubas .pricing-card {
    border-radius: 24px;
  }

  #wsk-sveikatos-klubas .focus-card {
    border-radius: 24px;
  }

  #wsk-sveikatos-klubas .feature-item {
    border-radius: 24px;
  }

  #wsk-sveikatos-klubas .founder-card {
    border-radius: 24px;
  }

  #wsk-sveikatos-klubas .expert-card {
    border-radius: 24px;
  }

  #wsk-sveikatos-klubas .final-cta-panel {
    border-radius: 24px;
  }

  #wsk-sveikatos-klubas .credibility-stage {
    padding: 18px;
    border-radius: 28px;
  }


  #wsk-sveikatos-klubas .pricing-value-stage .offer-stage__intro,
  #wsk-sveikatos-klubas .pricing-includes {
    padding: 20px 18px 18px;
    border-radius: 24px;
  }

  #wsk-sveikatos-klubas .founder-card {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  #wsk-sveikatos-klubas .founder-card__media {
    width: 84px;
  }

  #wsk-sveikatos-klubas .expert-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  #wsk-sveikatos-klubas .expert-card__media {
    width: 72px;
    border-radius: 18px;
  }

  #wsk-sveikatos-klubas .final-cta__action {
    padding: 18px 16px;
  }

  #wsk-sveikatos-klubas .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #wsk-sveikatos-klubas .footer__brand {
    padding-right: 0;
  }

  #wsk-sveikatos-klubas .footer__nav-group {
    padding-top: 14px;
  }
}

@media (max-width: 560px) {
  #wsk-sveikatos-klubas {
    --container-padding: 16px;
  }

  #wsk-sveikatos-klubas h1 {
    font-size: clamp(2.25rem, 10vw, 2.8rem);
  }

  #wsk-sveikatos-klubas h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  #wsk-sveikatos-klubas .pricing-card {
    border-radius: 28px;
  }

  #wsk-sveikatos-klubas .pricing-card__content {
    align-items: center;
    text-align: center;
    padding: 24px 18px 22px;
  }

  #wsk-sveikatos-klubas .pricing-card__summary {
    min-height: 0;
    max-width: 22ch;
    padding-top: 18px;
  }

  #wsk-sveikatos-klubas .pricing-card__note {
    min-height: 0;
    max-width: 28ch;
    margin-bottom: 22px;
  }

  #wsk-sveikatos-klubas .pricing-card--featured {
    transform: none;
  }

  #wsk-sveikatos-klubas .pricing-decision-stage {
    gap: 16px;
    padding-top: 18px;
  }

  #wsk-sveikatos-klubas .pricing-value-stage .offer-stage__intro,
  #wsk-sveikatos-klubas .pricing-decision-stage .pricing-includes {
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  #wsk-sveikatos-klubas .pricing-value-stage .offer-stage__topics {
    gap: 12px;
    margin-top: 2px;
  }

  #wsk-sveikatos-klubas .pricing-includes .feature-item {
    padding: 16px 14px;
  }

  #wsk-sveikatos-klubas .founder-card,
  #wsk-sveikatos-klubas .expert-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  #wsk-sveikatos-klubas .founder-card__media,
  #wsk-sveikatos-klubas .expert-card__media {
    width: 96px;
    justify-self: start;
    border-radius: 18px;
  }

  #wsk-sveikatos-klubas .founder-card__body,
  #wsk-sveikatos-klubas .expert-card__body {
    gap: 8px;
  }

  #wsk-sveikatos-klubas .founder-card__body h3,
  #wsk-sveikatos-klubas .expert-card__body h3 {
    font-size: 1rem;
  }

  #wsk-sveikatos-klubas .founder-card__body p,
  #wsk-sveikatos-klubas .expert-card__body p {
    font-size: 0.92rem;
    line-height: 1.56;
  }
}

#wsk-sveikatos-klubas .pricing-value-stage {
  align-self: start;
}

#wsk-sveikatos-klubas .pricing-value-stage .offer-stage__intro {
  min-height: auto;
  height: auto;
}

#wsk-sveikatos-klubas .pricing-value-stage .offer-stage__topics {
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 10px;
}

#wsk-sveikatos-klubas .pricing-value-stage .offer-stage__topics .focus-card:last-child {
  grid-column: auto;
}

#wsk-sveikatos-klubas .pricing-value-stage .focus-card {
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 6px;
  align-items: start;
  padding: 18px 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 24px rgba(0, 0, 0, 0.08);
}

#wsk-sveikatos-klubas .pricing-value-stage .focus-card h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.22;
}

#wsk-sveikatos-klubas .pricing-value-stage .focus-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

#wsk-sveikatos-klubas .pricing-value-stage .focus-card__marker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #98e6de;
}

#wsk-sveikatos-klubas .pricing-value-stage .focus-card__marker::before {
  content: none;
}

#wsk-sveikatos-klubas .pricing-value-stage .focus-card__marker svg {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 6px rgba(60, 140, 132, 0.25));
}

#wsk-sveikatos-klubas .pricing-value-stage .focus-card__marker svg .focus-icon__fill {
  fill: rgba(152, 230, 222, 0.16);
  stroke: none;
}

#wsk-sveikatos-klubas .pricing-value-stage .focus-card__marker svg .focus-icon__stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

#wsk-sveikatos-klubas .pricing-value-stage .focus-card__marker svg .focus-icon__detail {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  opacity: 0.9;
}

@media (max-width: 767px) {
  #wsk-sveikatos-klubas .pricing-value-stage .focus-card {
    grid-template-columns: 50px minmax(0, 1fr);
    column-gap: 14px;
    padding: 16px 14px;
  }

  #wsk-sveikatos-klubas .pricing-value-stage .focus-card__marker {
    width: 50px;
    height: 50px;
    border-radius: 0;
  }

  #wsk-sveikatos-klubas .pricing-value-stage .focus-card__marker svg {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 1100px) {
  #wsk-sveikatos-klubas .pricing-decision-stage {
    grid-template-columns: minmax(0, 0.90fr) minmax(0, 1.10fr);
    gap: 24px;
    align-items: stretch;
  }

  #wsk-sveikatos-klubas .pricing-value-stage {
    display: flex;
    align-self: stretch;
  }

  #wsk-sveikatos-klubas .pricing-value-stage .offer-stage__intro {
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 34px 29px 30px;
  }

  #wsk-sveikatos-klubas .pricing-decision-stage .pricing-includes {
    height: 100%;
  }
}