:root {
  --sl-bg: #f6f7fb;
  --sl-ink: #0f172a;
  --sl-muted: #64748b;
  --sl-line: rgba(15, 23, 42, 0.08);
  --sl-teal: #14b8a6;
  --sl-teal-2: #0d9488;
  --sl-mark: #5eead4;
  --sl-hot: #f43f5e;
  --sl-danger: #e11d48;
  --sl-ok: #0f766e;
  --sl-max: 1180px;
  --sl-radius: 24px;
  --sl-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --sl-shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.14);
}

html,
body.sl-page {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
  margin: 0;
  background: var(--sl-bg);
  color: var(--sl-ink);
  font-family: Manrope, system-ui, sans-serif;
}

.sl-page h1,
.sl-page h2,
.sl-page h3,
.sl-head__logo {
  font-family: Sora, Manrope, sans-serif;
}

.sl-wrap {
  width: min(var(--sl-max), calc(100% - 40px));
  margin: 0 auto;
}

.sl-head {
  position: sticky;
  top: 12px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--sl-max), calc(100% - 40px));
  margin: 12px auto 0;
  padding: 10px 14px 10px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
}

.sl-head.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
}

.sl-head__logo img,
.sl-foot img {
  height: 26px;
  width: auto;
  filter: invert(1);
}

.sl-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.sl-nav a {
  color: #475569;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.sl-nav a:hover {
  color: var(--sl-ink);
}

.sl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(20, 184, 166, 0.35);
}

.sl-nav a.sl-btn,
.sl-nav a.sl-btn:hover,
.sl-bar a.sl-btn,
.sl-bar a.sl-btn:hover {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.sl-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(20, 184, 166, 0.42);
}

.sl-btn--ghost {
  background: #fff;
  color: var(--sl-ink);
  box-shadow: none;
  border: 1px solid var(--sl-line);
}

.sl-btn--ghost:hover {
  background: #f8fafc;
  box-shadow: none;
}

.sl-btn--dark {
  background: #0f172a;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
}

.sl-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: #fff;
  color: var(--sl-ink);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.sl-hero {
  position: relative;
  padding: 56px 0 40px;
  overflow: hidden;
}

.sl-hero::before,
.sl-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.sl-hero::before {
  width: 420px;
  height: 420px;
  left: -80px;
  top: -60px;
  background: rgba(94, 234, 212, 0.45);
}

.sl-hero::after {
  width: 360px;
  height: 360px;
  right: 8%;
  top: 40px;
  background: rgba(56, 189, 248, 0.22);
}

.sl-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 400px);
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}

.sl-hero__form {
  width: 100%;
  justify-self: center;
}

.sl-include {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.sl-include li {
  padding: 12px 16px 12px 18px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  font-size: 15px;
  line-height: 1.45;
  color: var(--sl-muted);
}

.sl-include strong {
  color: var(--sl-ink);
  font-weight: 700;
}

.sl-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.sl-kicker li {
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.8);
  color: #0f766e;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}

.sl-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.sl-hero h1 em {
  font-style: normal;
  color: var(--sl-teal-2);
}

.sl-lead {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--sl-muted);
  max-width: 40rem;
}

.sl-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.sl-proof div {
  padding: 20px 18px 18px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  box-shadow: var(--sl-shadow);
  backdrop-filter: blur(10px);
}

.sl-proof strong {
  display: block;
  font-size: 30px;
  font-family: Sora, sans-serif;
  letter-spacing: -0.04em;
  color: var(--sl-teal-2);
  margin-bottom: 6px;
}

.sl-proof span {
  font-size: 13px;
  line-height: 1.4;
  color: var(--sl-muted);
}

.sl-form {
  background: #fff;
  border-radius: 28px;
  padding: 28px 26px 24px;
  box-shadow: var(--sl-shadow-lg);
}

.sl-form__badge {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(244, 63, 94, 0.1);
  color: var(--sl-hot);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sl-form h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.sl-form > p,
.sl-form .sl-hint {
  color: var(--sl-muted);
  font-size: 14px;
  margin: 0 0 16px;
  line-height: 1.5;
}

.sl-form .form-group {
  margin-bottom: 10px;
}

.sl-form input,
.sl-form textarea {
  width: 100%;
  box-sizing: border-box;
  background: #f8fafc;
  border: 1px solid transparent;
  color: var(--sl-ink);
  border-radius: 14px;
  padding: 13px 15px;
  font-size: 15px;
  font-family: inherit;
}

.sl-form input:focus,
.sl-form textarea:focus {
  outline: 0;
  background: #fff;
  border-color: rgba(20, 184, 166, 0.45);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15);
}

.sl-form .consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--sl-muted);
  font-size: 12px;
  line-height: 1.45;
  margin: 8px 0 16px;
}

.sl-form .consent input {
  width: auto;
  margin-top: 3px;
}

.sl-form .consent a {
  color: var(--sl-teal-2);
}

.sl-form .hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.sl-form .form-status {
  display: none;
  margin-top: 12px;
  font-size: 14px;
}

.sl-form .form-status.is-ok {
  display: block;
  color: var(--sl-ok);
}

.sl-form .form-status.is-err {
  display: block;
  color: var(--sl-danger);
}

.sl-form.is-success .sam-start-form__fields {
  display: none;
}

.sl-partner {
  padding: 8px 0 24px;
}

.sl-partner .sl-wrap {
  background: linear-gradient(135deg, #0f766e 0%, #134e4a 48%, #0f172a 100%);
  color: #fff;
  border-radius: 32px;
  padding: 36px 40px;
  box-shadow: var(--sl-shadow-lg);
}

.sl-partner__row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 24px;
  align-items: center;
}

.sl-partner .tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  color: var(--sl-mark);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
}

.sl-partner h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.25;
  color: #fff;
}

.sl-partner p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  max-width: 46rem;
  color: rgba(255, 255, 255, 0.78);
}

.sl-partner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sl-partner .sl-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.sl-partner .sl-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.sl-sec {
  padding: 64px 0;
}

.sl-sec h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.sl-sec .sub {
  display: inline-block;
  color: var(--sl-teal-2);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 800;
}

.sl-sec > .sl-wrap > p,
.sl-note {
  color: var(--sl-muted);
  max-width: 42rem;
}

.sl-days {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.sl-days article {
  position: relative;
  background: #fff;
  border-radius: var(--sl-radius);
  padding: 22px 20px 24px;
  min-height: 188px;
  box-shadow: var(--sl-shadow);
}

.sl-days article:nth-child(4) {
  background: linear-gradient(180deg, #0f766e, #115e59);
  color: #fff;
  box-shadow: 0 18px 40px rgba(15, 118, 110, 0.28);
}

.sl-days article:nth-child(4) p {
  color: rgba(255, 255, 255, 0.78);
}

.sl-days .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 14px;
  background: rgba(20, 184, 166, 0.12);
  color: var(--sl-teal-2);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
}

.sl-days article:nth-child(4) .num {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.sl-days h3 {
  margin: 18px 0 8px;
  font-size: 18px;
}

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

.sl-packs,
.sl-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.sl-prices--two {
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
}

.sl-footnote {
  margin: 20px auto 0;
  max-width: 46rem;
  text-align: center;
  color: var(--sl-muted);
  font-size: 14px;
  line-height: 1.55;
}

.sl-footnote a {
  color: var(--sl-teal-2);
  font-weight: 600;
}

.sl-cases-wrap {
  position: relative;
  margin-top: 28px;
}

.sl-cases {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  padding: 6px 2px 22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sl-cases::-webkit-scrollbar {
  display: none;
}

.sl-cases__nav {
  position: absolute;
  top: 38%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--sl-ink);
  box-shadow: var(--sl-shadow-lg);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sl-cases__nav:hover {
  background: #ecfdf5;
  color: var(--sl-teal-2);
}

.sl-cases__nav:disabled {
  opacity: 0.35;
  cursor: default;
  box-shadow: var(--sl-shadow);
}

.sl-cases__nav--prev {
  left: -8px;
}

.sl-cases__nav--next {
  right: -8px;
}

.sl-case {
  flex: 0 0 min(360px, 78vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border-radius: var(--sl-radius);
  box-shadow: var(--sl-shadow);
  color: inherit;
  text-decoration: none;
}

.sl-case:hover {
  transform: translateY(-3px);
  box-shadow: var(--sl-shadow-lg);
}

.sl-case__shot {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
}

.sl-case__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.sl-case__body {
  padding: 18px 18px 20px;
}

.sl-case__body span {
  display: block;
  color: var(--sl-teal-2);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-bottom: 6px;
}

.sl-case__body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.sl-case__body p {
  margin: 0;
  color: var(--sl-muted);
  font-size: 14px;
  line-height: 1.5;
}

.sl-card {
  background: #fff;
  border-radius: var(--sl-radius);
  padding: 24px 22px;
  box-shadow: var(--sl-shadow);
}

.sl-card.is-main {
  background: linear-gradient(165deg, #134e4a 0%, #0f172a 100%);
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.sl-card.is-main .cap,
.sl-card.is-main li,
.sl-card.is-main .sl-note,
.sl-card.is-main .sl-note a {
  color: rgba(255, 255, 255, 0.78);
}

.sl-card.is-main .tag {
  background: var(--sl-mark);
  color: #134e4a;
}

.sl-card.is-main .price {
  color: #fff;
}

.sl-card .tag {
  display: inline-block;
  background: #ecfdf5;
  color: var(--sl-teal-2);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
}

.sl-card h3 {
  margin: 14px 0 6px;
  font-size: 20px;
}

.sl-card .cap {
  color: var(--sl-muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.sl-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sl-card li {
  padding: 8px 0;
  color: var(--sl-muted);
  font-size: 14px;
  line-height: 1.45;
}

.sl-card .price {
  margin: 16px 0 12px;
  font-size: 30px;
  font-family: Sora, sans-serif;
  letter-spacing: -0.03em;
}

.sl-card .price small {
  font-size: 14px;
  color: var(--sl-muted);
  font-weight: 500;
}

.table-responsive {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.sl-table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 24px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sl-shadow);
}

.sl-table th,
.sl-table td {
  padding: 16px 18px;
  text-align: left;
  font-size: 15px;
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.sl-table th {
  background: #f8fafc;
  color: #64748b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sl-table td {
  border-top: 1px solid var(--sl-line);
}

.sl-table tr.is-hi td {
  background: #ecfdf5;
  color: var(--sl-ink);
  font-weight: 700;
}

.sl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.sl-split .sl-card:first-child {
  background: linear-gradient(180deg, #ecfdf5, #fff);
}

.sl-quiz__steps {
  display: flex;
  gap: 8px;
  margin: 20px 0;
}

.sl-quiz__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e2e8f0;
  box-shadow: inset 0 0 0 2px #e2e8f0;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sl-quiz__dot.is-current {
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--sl-teal);
}

.sl-quiz__dot.is-on {
  background: var(--sl-teal);
  box-shadow: none;
  transform: scale(1.08);
}

.sl-quiz__q {
  display: none;
}

.sl-quiz__q.is-on {
  display: block;
}

.sl-quiz__options {
  display: grid;
  gap: 8px;
}

.sl-quiz__options button {
  text-align: left;
  background: #fff;
  border: 0;
  color: var(--sl-ink);
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  font-weight: 600;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.sl-quiz__options button.is-picked,
.sl-quiz__options button:hover {
  background: #ecfdf5;
  color: var(--sl-teal-2);
}

.sl-quiz__result {
  display: none;
}

.sl-quiz__result.is-on {
  display: block;
}

.sl-faq details {
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  margin-top: 10px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.sl-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
}

.sl-faq p {
  margin: 10px 0 0;
  color: var(--sl-muted);
  line-height: 1.55;
}

.sl-foot {
  padding: 40px 0 88px;
  color: var(--sl-muted);
  font-size: 14px;
}

.sl-foot a {
  color: var(--sl-ink);
}

.sl-foot__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 24px;
}

.sl-foot ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.sl-foot li {
  margin: 6px 0;
}

.sl-tg {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2aabee;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(42, 171, 238, 0.35);
}

.sl-sticky {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 24;
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  border-radius: 18px;
  padding: 10px 12px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  backdrop-filter: blur(12px);
}

.sl-prices-2 {
  display: none;
}

@media (max-width: 991px) {
  .sl-head {
    width: calc(100% - 24px);
    border-radius: 20px;
  }

  .sl-menu-btn {
    display: block;
  }

  .sl-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--sl-shadow-lg);
  }

  .sl-nav.is-open {
    display: flex;
  }

  .sl-hero__grid,
  .sl-days,
  .sl-packs,
  .sl-split,
  .sl-proof,
  .sl-prices,
  .sl-prices--two,
  .sl-foot__grid {
    grid-template-columns: 1fr;
  }

  .sl-cases__nav--prev {
    left: 0;
  }

  .sl-cases__nav--next {
    right: 0;
  }

  .sl-table th,
  .sl-table td {
    padding: 10px 8px;
    font-size: 12px;
    line-height: 1.35;
  }

  .sl-table th {
    font-size: 10px;
    letter-spacing: 0.02em;
  }

  .sl-hero__form {
    max-width: 420px;
    margin: 0 auto;
  }

  .sl-card.is-main {
    transform: none;
  }

  .sl-sticky {
    display: flex;
  }

  .sl-tg {
    bottom: 78px;
  }
}
