:root {
  --ink: #102b28;
  --ink-soft: #294842;
  --muted: #65746f;
  --paper: #f7f2e8;
  --surface: #fffdf8;
  --mist: #e8eee7;
  --sage: #7f9d91;
  --gold: #a77720;
  --gold-soft: #e4ca83;
  --coral: #b75b4d;
  --charcoal: #071917;
  --deep: #102b28;
  --line: rgba(16, 43, 40, 0.14);
  --gold-line: rgba(167, 119, 32, 0.34);
  --shadow: 0 22px 60px rgba(16, 43, 40, 0.13);
  --premium-shadow: 0 32px 90px rgba(7, 25, 23, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #f7f2e8 0%, #edf2ed 46%, #fbf8f0 100%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.telegram-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(228, 202, 131, 0.48);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 18px 46px rgba(7, 25, 23, 0.22);
  text-decoration: none;
}

.telegram-float img {
  width: 34px;
  height: 34px;
  display: block;
}

.telegram-float:hover {
  transform: translateY(-1px);
}

.webinar-page .telegram-float {
  background: rgba(7, 25, 23, 0.64);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 36px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 232, 0.9);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(16, 43, 40, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--mist);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 242, 232, 0.98) 0%, rgba(247, 242, 232, 0.86) 48%, rgba(232, 238, 231, 0.78) 100%),
    url("assets/logo-ez.png") right 6% center / min(38vw, 420px) auto no-repeat;
}

.hero-mark {
  display: none;
}

.hero-inner,
.page-hero,
.section,
.band,
.quote-inner,
.site-footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 680px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 72px 0 96px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
.lead,
.button {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 22px;
}

.hero-actions,
.final-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 30px rgba(196, 95, 76, 0.26);
}

.button.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-1px);
}

.page-hero {
  padding: 108px 0 72px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: 56px;
}

.section {
  padding: 86px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.band {
  padding: 78px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.content-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.stack p,
.check-list p,
.item p,
.timeline-item p,
.final-cta p,
.contact-panel p {
  color: var(--muted);
  font-size: 18px;
}

.stack p:last-child,
.check-list p:last-child {
  margin-bottom: 0;
}

.three-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.item {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.number {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.quote-band {
  background: var(--ink);
  color: #fff;
}

.quote-inner {
  padding: 78px 0;
}

.quote {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1.2;
}

.quote-note {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.check-list p {
  position: relative;
  margin-bottom: 16px;
  padding-left: 22px;
}

.check-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.final-cta,
.contact-panel {
  justify-content: space-between;
  padding-top: 64px;
  padding-bottom: 64px;
  border-top: 1px solid var(--line);
}

.final-cta div,
.contact-panel div {
  max-width: 680px;
}

.muted-button {
  background: var(--sage);
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 860px) {
  .telegram-float {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }

  .telegram-float img {
    width: 31px;
    height: 31px;
  }

  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 20px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
  }

  .hero,
  .hero-inner {
    min-height: 620px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(247, 242, 232, 0.97) 0%, rgba(247, 242, 232, 0.88) 100%),
      url("assets/logo-ez.png") center bottom 18px / 210px auto no-repeat;
  }

  .hero-inner,
  .page-hero,
  .section,
  .band,
  .quote-inner,
  .site-footer {
    width: min(680px, calc(100% - 32px));
  }

  h1,
  .page-hero h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 19px;
  }

  .content-grid,
  .split,
  .three-cols,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    gap: 8px;
  }

  .quote {
    font-size: 26px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .site-nav a {
    padding: 8px 10px;
    font-size: 13px;
  }

  .hero,
  .hero-inner {
    min-height: 590px;
  }

  .hero-inner {
    padding-top: 54px;
    padding-bottom: 86px;
    margin-right: 16px;
    margin-left: 16px;
    width: auto;
  }

  h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .lead,
  .hero-actions {
    max-width: 330px;
  }

  .section,
  .band,
  .page-hero {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .button {
    width: 100%;
  }
}

/* Webinar funnel */
.webinar-page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  background: #021b14;
  color: #f7f1e4;
}

.webinar-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(20, 68, 50, 0.72), transparent 34%),
    radial-gradient(circle at 18% 84%, rgba(7, 42, 31, 0.86), transparent 40%),
    linear-gradient(110deg, #031f17 0%, #062a1f 44%, #01150f 100%);
  pointer-events: none;
}

.webinar-page::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    url("assets/wave-lines.svg") 28% 0 / 520px auto no-repeat,
    url("assets/wave-lines.svg") right -120px bottom 20px / 470px auto no-repeat;
  opacity: 0.7;
  pointer-events: none;
}

.webinar-page .telegram-float {
  right: 54px;
  bottom: 44px;
  width: 92px;
  height: 92px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.webinar-page .telegram-float img {
  width: 92px;
  height: 92px;
}

.webinar-main {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  overflow: hidden;
}

.webinar-hero {
  display: grid;
  width: min(1560px, calc(100% - 104px));
  min-height: 100svh;
  max-height: 100svh;
  margin: 0 auto;
  padding: 34px 0 30px;
  grid-template-columns: minmax(360px, 0.42fr) minmax(300px, 0.33fr) minmax(360px, 0.4fr) 100px;
  grid-template-rows: 56px 52px minmax(0, 1fr) 52px 112px;
  grid-template-areas:
    "brand video video video"
    "offer video video video"
    "copy video video video"
    ". expert expert ."
    "card1 card2 next .";
  gap: 12px 28px;
  align-items: center;
}

.lesson-brand {
  display: inline-flex;
  grid-area: brand;
  align-self: start;
  align-items: center;
  gap: 14px;
  color: #fff8e9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
  text-decoration: none;
}

.lesson-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.lesson-offer {
  grid-area: offer;
  align-self: start;
  max-width: 520px;
  margin: 0;
  color: rgba(239, 187, 87, 0.78);
  font-size: 13px;
  line-height: 1.28;
}

.lesson-copy {
  grid-area: copy;
  align-self: start;
}

.lesson-kicker {
  margin: 0 0 14px;
  color: #d99e38;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lesson-kicker::after {
  display: none;
}

.lesson-progress {
  display: block;
  width: 138px;
  height: 2px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(247, 241, 228, 0.18);
}

.lesson-progress span {
  display: block;
  width: var(--lesson-progress);
  height: 100%;
  border-radius: inherit;
  background: #d99e38;
}

.webinar-hero h1 {
  max-width: 470px;
  margin: 0 0 16px;
  color: #fff8e9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
}

[data-page="video3"] .webinar-hero h1 {
  max-width: 520px;
  font-size: 35px;
}

[data-page="video3"] .webinar-hero {
  grid-template-rows: 56px 52px minmax(0, 1fr) 52px 148px;
}

.lesson-duration {
  margin: 0 0 16px;
  color: rgba(247, 241, 228, 0.6);
  font-size: 16px;
}

.lesson-play {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #efbb57;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.play-disc {
  position: relative;
  display: inline-flex;
  width: 60px;
  height: 60px;
  border: 1px solid #d99e38;
  border-radius: 50%;
}

.play-disc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid #efbb57;
  transform: translate(-40%, -50%);
}

.webinar-lead {
  max-width: 470px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(217, 158, 56, 0.86);
  color: rgba(247, 241, 228, 0.72);
  font-size: 16px;
  line-height: 1.5;
}

.lesson-even-if {
  max-width: 470px;
  margin: 10px 0 0;
  color: rgba(255, 248, 233, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

.video-frame {
  grid-area: video;
  position: relative;
  align-self: center;
  width: 100%;
  padding: 8px;
  border: 1px solid #d99e38;
  border-radius: 12px;
  background: rgba(3, 28, 21, 0.64);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 1;
  border-radius: 7px;
  background:
    radial-gradient(circle at 55% 42%, transparent 0 24%, rgba(0, 0, 0, 0.08) 32%, rgba(1, 21, 15, 0.54) 100%),
    linear-gradient(90deg, rgba(1, 21, 15, 0.34), transparent 40%, rgba(1, 21, 15, 0.18));
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.video-frame.is-playing::before,
.video-frame.is-playing .video-play-overlay {
  opacity: 0;
  pointer-events: none;
}

.webinar-video {
  display: block;
  width: 100%;
  max-height: 46svh;
  aspect-ratio: 16 / 9;
  border-radius: 7px;
  background: #01150f;
  object-fit: cover;
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 124px;
  height: 124px;
  border: 2px solid rgba(239, 187, 87, 0.9);
  border-radius: 50%;
  background: rgba(3, 28, 21, 0.18);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.video-play-overlay::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 36px solid #fff;
  transform: translate(-40%, -50%);
}

.expert-signature {
  display: flex;
  grid-area: expert;
  width: min(560px, 100%);
  align-self: start;
  align-items: center;
  gap: 14px;
  color: rgba(255, 248, 233, 0.78);
}

.expert-signature img {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(217, 158, 56, 0.64);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.expert-signature p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.expert-signature strong,
.expert-signature span {
  display: block;
}

.expert-signature strong {
  color: #fff8e9;
  font-size: 15px;
}

.lesson-card {
  display: grid;
  min-height: 112px;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px 22px;
  border: 1px solid rgba(247, 241, 228, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 -2px 0 rgba(217, 158, 56, 0.85);
}

.lesson-card p {
  margin: 0;
  color: rgba(255, 248, 233, 0.88);
  font-size: 15px;
  line-height: 1.45;
}

.card-one {
  grid-area: card1;
}

.card-two {
  grid-area: card2;
}

.lesson-card-icon {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
}

.icon-head::before {
  content: "";
  position: absolute;
  inset: 4px 8px 4px 4px;
  border: 2px solid #d99e38;
  border-radius: 46% 48% 38% 40%;
}

.icon-head::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 4px;
  width: 16px;
  height: 14px;
  border-bottom: 2px solid #d99e38;
  border-right: 2px solid #d99e38;
}

.icon-target {
  border: 2px solid #d99e38;
  border-radius: 50%;
}

.icon-target::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 2px solid #d99e38;
  border-radius: 50%;
}

.icon-target::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -6px;
  width: 28px;
  height: 28px;
  border-top: 2px solid #d99e38;
  border-right: 2px solid #d99e38;
  transform: rotate(-5deg);
}

.lesson-next-wrap {
  display: flex;
  grid-area: next;
  width: 100%;
  min-height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lesson-next {
  display: inline-flex;
  width: 100%;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding: 18px 26px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f2c96d, #d49334);
  color: #081c15;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 18px 54px rgba(217, 158, 56, 0.2);
  text-align: center;
}

.lesson-next-note {
  margin: 0;
  color: rgba(247, 241, 228, 0.58);
  font-size: 12px;
  line-height: 1.28;
  text-align: center;
}

.diagnostic-value {
  grid-column: 1 / 3;
  grid-row: 5;
  align-self: stretch;
  padding: 12px 18px;
  border: 1px solid rgba(247, 241, 228, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 -2px 0 rgba(217, 158, 56, 0.85);
  color: rgba(255, 248, 233, 0.84);
  font-size: 12.2px;
  line-height: 1.28;
}

.diagnostic-value p,
.diagnostic-value ul {
  margin: 0;
}

.diagnostic-value ul {
  display: grid;
  gap: 0;
  margin: 3px 0;
  padding-left: 17px;
}

.diagnostic-title {
  color: #fff8e9;
  font-size: 14px;
}

.diagnostic-note {
  color: rgba(247, 241, 228, 0.6);
}

[data-page="video3"] .lesson-next {
  min-height: 68px;
  gap: 18px;
  padding: 14px 18px;
  font-size: 14px;
}

.diagnostic-scarcity {
  margin: 0;
  color: rgba(247, 241, 228, 0.54);
  font-size: 11px;
  line-height: 1.28;
  text-align: center;
}

.webinar-footer {
  position: relative;
  z-index: 1;
  padding: 30px 52px 44px;
  border-top: 1px solid rgba(247, 241, 228, 0.09);
  background: rgba(1, 21, 15, 0.92);
  color: rgba(247, 241, 228, 0.56);
  font-size: 12px;
}

.webinar-footer-inner {
  display: grid;
  width: min(1560px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 0.8fr);
  gap: 24px;
  align-items: center;
}

.webinar-footer p {
  margin: 0;
}

.webinar-footer a {
  color: rgba(239, 187, 87, 0.88);
  text-decoration: none;
}

.webinar-footer a:hover {
  text-decoration: underline;
}

.webinar-footer-note {
  text-align: right;
}

@media (min-height: 880px) and (min-width: 1181px) {
  .webinar-hero {
    padding-top: 52px;
    padding-bottom: 42px;
    grid-template-rows: 72px 52px minmax(0, 1fr) 58px 124px;
    gap: 18px 28px;
  }

  [data-page="video3"] .webinar-hero {
    grid-template-rows: 72px 52px minmax(0, 1fr) 58px 154px;
  }

  .webinar-hero h1 {
    font-size: 48px;
  }

  .webinar-video {
    max-height: 52svh;
  }

  .lesson-card,
  .lesson-next-wrap {
    min-height: 124px;
  }
}

.lesson-next.is-disabled {
  cursor: default;
}

.next-arrow {
  position: relative;
  width: 36px;
  height: 2px;
  background: #081c15;
}

.next-arrow::before,
.next-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  width: 14px;
  height: 2px;
  background: #081c15;
  transform-origin: right center;
}

.next-arrow::before {
  transform: rotate(42deg);
}

.next-arrow::after {
  transform: rotate(-42deg);
}

@media (max-width: 1180px) {
  .webinar-hero {
    width: min(980px, calc(100% - 56px));
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto auto auto auto auto auto;
    grid-template-areas:
      "brand"
      "offer"
      "copy"
      "video"
      "expert"
      "card1"
      "card2"
      "value"
      "next";
    gap: 16px;
    overflow-y: auto;
    max-height: none;
  }

  .lesson-brand {
    align-self: center;
    justify-self: center;
  }

  .lesson-offer {
    max-width: 720px;
    justify-self: center;
    text-align: center;
  }

  .lesson-copy {
    text-align: center;
  }

  .lesson-progress {
    margin-right: auto;
    margin-left: auto;
  }

  .webinar-hero h1,
  .webinar-lead {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
  }

  .lesson-play {
    justify-content: center;
  }

  .webinar-lead {
    padding-top: 20px;
  }

  .webinar-video {
    max-height: 44svh;
  }

  .expert-signature {
    justify-self: center;
    justify-content: center;
    text-align: left;
  }

  .lesson-card,
  .lesson-next-wrap,
  .diagnostic-value {
    width: min(720px, 100%);
    justify-self: center;
  }

  .diagnostic-value {
    grid-area: value;
    grid-column: auto;
    grid-row: auto;
    font-size: 14px;
  }

  .webinar-page .telegram-float {
    top: auto;
    right: 18px;
    bottom: 18px;
    width: 62px;
    height: 62px;
  }

  .webinar-page .telegram-float img {
    width: 62px;
    height: 62px;
  }
}

@media (max-width: 620px) {
  .webinar-page {
    overflow: auto;
  }

  .webinar-hero {
    width: min(100% - 28px, 520px);
    min-height: auto;
    padding: 22px 0 92px;
    gap: 14px;
  }

  .lesson-brand {
    justify-self: start;
    max-width: calc(100% - 74px);
    font-size: 22px;
  }

  .lesson-brand img {
    width: 42px;
    height: 42px;
  }

  .webinar-page .telegram-float {
    top: 18px;
    right: 14px;
    bottom: auto;
    width: 54px;
    height: 54px;
  }

  .webinar-page .telegram-float img {
    width: 54px;
    height: 54px;
  }

  .lesson-kicker {
    margin-bottom: 14px;
    font-size: 16px;
  }

  .webinar-hero h1 {
    font-size: 34px;
  }

  [data-page="video3"] .webinar-hero h1 {
    font-size: 29px;
  }

  .lesson-offer,
  .lesson-duration,
  .webinar-lead,
  .lesson-even-if {
    font-size: 15px;
  }

  .lesson-play {
    gap: 18px;
    font-size: 22px;
  }

  .play-disc {
    width: 58px;
    height: 58px;
  }

  .video-frame {
    padding: 5px;
  }

  .video-frame::before {
    inset: 5px;
  }

  .webinar-video {
    max-height: none;
  }

  .video-play-overlay {
    width: 82px;
    height: 82px;
  }

  .video-play-overlay::before {
    border-top-width: 17px;
    border-bottom-width: 17px;
    border-left-width: 25px;
  }

  .expert-signature {
    width: 100%;
    align-items: flex-start;
  }

  .expert-signature img {
    width: 48px;
    height: 48px;
  }

  .lesson-card {
    min-height: 92px;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .lesson-card p {
    font-size: 14px;
  }

  .lesson-card-icon {
    width: 46px;
    height: 46px;
  }

  .lesson-next {
    min-height: 78px;
    gap: 18px;
    padding: 18px;
    font-size: 15px;
  }

  [data-page="video3"] .lesson-next {
    min-height: 74px;
    font-size: 13px;
  }

  .lesson-next-wrap {
    min-height: auto;
  }

  .lesson-next-note,
  .diagnostic-scarcity {
    font-size: 12px;
  }

  .diagnostic-value {
    padding: 16px;
  }

  .webinar-footer {
    padding: 26px 18px 92px;
  }

  .webinar-footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }

  .webinar-footer-note {
    text-align: left;
  }
}
