@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/lato-v24-latin-ext-300.woff2") format("woff2");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/lato-v24-latin-ext-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/lato-v24-latin-ext-700.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/playfair-display-v39-latin-ext-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/playfair-display-v39-latin-ext-500.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/playfair-display-v39-latin-ext-700.woff2") format("woff2");
}

:root {
  --contrast: #212031;
  --contrast-2: #d5d4d2;
  --accent: #c59c93;
  --base: #fffaf9;
  --base-2: #e4bb97;
  --base-3: #ffffff;
  --ink-dark: #150e06;
  --muted: #77726e;
  --line: rgba(197, 156, 147, 0.55);
  --max-width: 1300px;
  --content-width: 980px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--base-3);
  color: var(--muted);
  font-family: "Lato", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--contrast);
  text-decoration-color: rgba(197, 156, 147, 0.65);
  text-underline-offset: 0.18em;
}

a:hover,
a:focus {
  color: var(--accent);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.65em;
  color: var(--contrast);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.18;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

h3 {
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
}

h4 {
  font-size: 1.45rem;
}

h5,
h6,
.eyebrow {
  color: var(--base-2);
  font-family: "Lato", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

p {
  margin: 0 0 1.25em;
}

ul {
  margin: 0 0 1.4em 1.2em;
  padding: 0;
}

li + li {
  margin-top: 0.45em;
}

strong {
  color: inherit;
  font-weight: 700;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--base-3);
  color: var(--contrast);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  border-top: 3px solid transparent;
  background: transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 28px;
  transition: padding 0.25s ease;
}

.brand img {
  width: 250px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease, width 0.25s ease;
}

.site-header.is-stuck {
  border-top-color: var(--contrast);
  background: #fff;
  box-shadow: 0 1px 0 rgba(33, 32, 49, 0.08);
}

.site-header.is-stuck .header-inner {
  padding-top: 7px;
  padding-bottom: 7px;
}

.site-header.is-stuck .brand img {
  width: 150px;
  filter: none;
}

.site-header.is-stuck .nav-links a {
  color: var(--contrast);
  text-shadow: none;
}

.site-header.is-stuck .nav-links a:hover,
.site-header.is-stuck .nav-links a:focus,
.site-header.is-stuck .nav-links a[aria-current="page"] {
  color: var(--accent);
}

.site-header.is-stuck .nav-toggle {
  border-color: rgba(33, 32, 49, 0.25);
  background: rgba(255, 255, 255, 0.75);
  color: var(--contrast);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(21, 14, 6, 0.18);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links li + li {
  margin-top: 0;
}

.nav-links a {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a[aria-current="page"] {
  color: var(--base-2);
}

.hero {
  position: relative;
  display: grid;
  min-height: 500px;
  padding: 0 24px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  place-items: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  content: "";
}

.hero-home {
  min-height: 100vh;
  background-image: url("../img/CentrumEdukacjiWokalnej.webp");
}

.hero-about {
  background-image: url("../img/CentrumEdukacjiWokalnej.webp");
}

.hero-workshops {
  background-image: url("../img/warsztaty.webp");
}

.hero-reviews {
  background-image: url("../img/Opinie_Cew-1.webp");
}

.hero-privacy {
  background-image: url("../img/CentrumEdukacjiWokalnej.webp");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 80px;
  text-align: center;
}

.hero-home .hero-content {
  padding-top: 140px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.55rem);
  font-style: italic;
  text-shadow: 1px 1px 5px #000;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 2rem;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover,
.button:focus {
  background: #b8877d;
  color: #fff;
}

.button-muted {
  background: #bab700;
}

.button-muted:hover,
.button-muted:focus {
  background: #a7a500;
}

.section {
  padding: 92px 24px;
}

.section-compact {
  padding: 62px 24px;
}

.section-soft {
  background: var(--base);
}

#bezplatna-konsultacja {
  position: relative;
  overflow: hidden;
  background: var(--base-3);
}

#bezplatna-konsultacja::before {
  position: absolute;
  top: 34px;
  right: max(24px, calc((100vw - var(--max-width)) / 2 + 16px));
  z-index: 0;
  width: min(300px, 24vw);
  aspect-ratio: 662 / 507;
  background: url("../img/linia1.webp") center / contain no-repeat;
  content: "";
  pointer-events: none;
}

#bezplatna-konsultacja > .container {
  position: relative;
  z-index: 1;
}

#bezplatna-konsultacja .button {
  margin-top: 30px;
}

.feature-section {
  padding-top: 0;
  padding-bottom: 0;
}

.intro-section {
  padding-top: 52px;
  padding-bottom: 20px;
}

.section-dark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #231a13;
  color: #fff;
}

.section-dark::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(21, 14, 6, 0.62), rgba(21, 14, 6, 0.36) 48%, rgba(21, 14, 6, 0.58)), url("../img/NaukaSpiewu.jpg") center 40% / cover no-repeat;
  content: "";
  filter: saturate(0.9) brightness(0.96);
  transform: scale(1.02);
}

.section-dark::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 250, 249, 0.06), rgba(21, 14, 6, 0.1) 46%, rgba(21, 14, 6, 0.26));
  content: "";
  pointer-events: none;
}

.section-dark > .container {
  position: relative;
  z-index: 1;
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p {
  color: #fff;
}

.section-dark .benefit-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 250, 249, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: 0 18px 44px rgba(21, 14, 6, 0.22);
  backdrop-filter: blur(10px);
}

.section-dark .benefit-grid {
  max-width: 1060px;
  margin: 0 auto;
  gap: 1.75rem;
}

.section-dark .benefit-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, calc((1060px - 1.75rem) / 2));
}

.section-dark .benefit-card h4 {
  margin-bottom: 0.55rem;
  text-shadow: 0 1px 12px rgba(21, 14, 6, 0.22);
}

.section-dark .benefit-card p {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.narrow {
  max-width: var(--content-width);
}

.center {
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.split-top {
  align-items: start;
}

.media-panel {
  background: #f1f1f1;
  padding: clamp(28px, 5vw, 72px);
}

.media-panel img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.profile-graphic img {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

.video-frame {
  background: #111;
}

.video-frame video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.rule {
  width: 50px;
  margin: 0 0 30px;
  border-top: 1px solid var(--line);
}

.rule.centered {
  margin-right: auto;
  margin-left: auto;
}

.note-image {
  width: auto;
  height: auto !important;
  max-width: 350px;
  object-fit: contain;
  margin-top: -40px;
  margin-left: auto;
}

.intro-copy {
  position: relative;
}

.intro-copy .note-image {
  width: auto;
  max-width: 350px;
}

.feature-grid,
.offer-grid,
.benefit-grid,
.speaker-grid,
.review-grid {
  display: grid;
  gap: 1.4rem;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-grid,
.benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-grid-single {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.offer-grid-single .offer-card {
  padding: 48px clamp(28px, 4vw, 58px);
  text-align: center;
}

.offer-grid-single .offer-card h3,
.offer-grid-single .offer-card p {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
}

.speaker-grid,
.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.offer-card,
.benefit-card,
.speaker-card,
.review-card {
  padding: 38px 28px;
  border-radius: 4px;
  background: var(--base-3);
}

.section-soft .feature-card,
.section-soft .offer-card,
.section-soft .benefit-card,
.section-soft .speaker-card,
.section-soft .review-card {
  background: #fff;
}

.feature-section .feature-card {
  background: transparent;
  padding: 40px 25px;
}

.feature-card {
  text-align: center;
}

.feature-card img {
  width: 90px;
  height: 90px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.feature-card h4,
.benefit-card h4 {
  margin-bottom: 0.4em;
}

.offer-card {
  border-top: 1px solid var(--line);
}

.price-line {
  display: grid;
  gap: 0.25rem;
  margin: 1.4rem 0;
  color: var(--contrast);
}

.secondary-heading {
  margin-top: 70px;
  text-align: center;
}

.reviews-section .container {
  max-width: 1320px;
}

.google-reviews {
  position: relative;
  margin-top: 48px;
}

.google-review-strip {
  display: flex;
  gap: 42px;
  overflow-x: auto;
  margin: 0 54px;
  padding: 0 0 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  text-align: left;
}

.google-review-strip::-webkit-scrollbar {
  display: none;
}

.google-review-card {
  flex: 0 0 calc((100% - 126px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

.google-review-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 26px;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.google-review-head strong {
  display: block;
  overflow: hidden;
  color: var(--contrast);
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-review-head span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.2;
}

.google-review-head .review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  place-items: center;
}

.avatar-green {
  background: #6ca43b;
}

.avatar-blue {
  background: #0b66a3;
}

.avatar-orange {
  background: #ef7900;
}

.avatar-rose {
  background: #c57087;
}

.avatar-photo {
  background: linear-gradient(135deg, #b8d5e5, #e8b69c);
}

.google-review-head .google-g {
  justify-self: end;
  background: conic-gradient(from -35deg, #4285f4 0 25%, #34a853 25% 45%, #fbbc05 45% 65%, #ea4335 65% 82%, #4285f4 82% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.review-stars {
  margin-bottom: 12px;
  color: #fbbc05;
  font-size: 1.18rem;
  letter-spacing: 1px;
  line-height: 1;
}

.review-verified {
  display: inline-grid;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  border-radius: 50%;
  background: #4285f4;
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0;
  vertical-align: 2px;
  place-items: center;
}

.google-review-card p {
  display: -webkit-box;
  min-height: 6.2em;
  margin-bottom: 0.55rem;
  overflow: hidden;
  color: var(--contrast);
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.google-review-card a {
  color: #8b8580;
  font-size: 0.95rem;
  text-decoration: none;
}

.google-review-card a:hover,
.google-review-card a:focus {
  color: var(--accent);
}

.review-nav {
  position: absolute;
  top: 76px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 18px rgba(33, 32, 49, 0.12);
  color: var(--muted);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  place-items: center;
}

.review-nav:hover,
.review-nav:focus {
  color: var(--contrast);
}

.review-nav-prev {
  left: 0;
}

.review-nav-next {
  right: 0;
}

.reviews-source {
  margin-top: 34px;
  font-size: 0.88rem;
}

.steps {
  display: grid;
  gap: 1.6rem;
  margin-top: 2rem;
}

.step-number {
  color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.6rem 0;
}

.contact-list a {
  color: var(--contrast);
  font-weight: 700;
  text-decoration: none;
}

.contact-label {
  display: inline-block;
  min-width: 86px;
  color: var(--accent);
  font-weight: 700;
}

.contact-branches {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
}

.branch-list {
  display: grid;
  gap: 0.65rem;
}

.branch-card {
  display: grid;
  gap: 0.05rem;
  padding: 0.85rem 1rem;
  border-left: 1px solid var(--line);
  background: var(--base);
}

.branch-card strong {
  color: var(--contrast);
}

.branch-card span {
  color: var(--muted);
  font-weight: 400;
}

.legal-content h4 {
  margin-top: 2.2rem;
}

.legal-content ul {
  max-width: 900px;
}

.site-footer {
  padding: 54px 24px 32px;
  background: var(--ink-dark);
  color: var(--muted);
  text-align: center;
}

.footer-logo {
  width: 250px;
  margin: 0 auto 28px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.footer-nav li + li {
  margin-top: 0;
}

.footer-nav a {
  color: var(--base);
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 26px;
}

.social-links a {
  min-width: 46px;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--muted);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus {
  border-color: var(--accent);
  background: var(--accent);
}

.lesson-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  justify-items: end;
  font-size: 0.95rem;
}

.lesson-float-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.78rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(186, 183, 0, 0.96);
  box-shadow: 0 14px 36px rgba(33, 32, 49, 0.2);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  line-height: 1.15;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lesson-float-button:hover,
.lesson-float-button:focus {
  background: #aaa700;
  box-shadow: 0 18px 42px rgba(33, 32, 49, 0.25);
  transform: translateY(-1px);
}

.lesson-float-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.22);
}

.lesson-float-panel {
  order: -1;
  width: min(300px, calc(100vw - 32px));
  margin-bottom: 12px;
  padding: 1rem;
  border: 1px solid rgba(197, 156, 147, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 44px rgba(33, 32, 49, 0.16);
}

.lesson-float-panel strong,
.lesson-float-panel a {
  display: block;
}

.lesson-float-panel strong {
  margin-bottom: 0.45rem;
  color: var(--contrast);
}

.lesson-float-panel a {
  color: var(--contrast);
  font-weight: 700;
  text-decoration: none;
}

.lesson-float-panel a + a {
  margin-top: 0.4rem;
}

.lesson-float-panel a:hover,
.lesson-float-panel a:focus {
  color: var(--accent);
}

.copyright {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.copyright a {
  color: var(--muted);
}

@media (max-width: 980px) {
  .header-inner {
    padding: 18px 20px;
  }

  .brand img {
    width: 220px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    background: rgba(21, 14, 6, 0.96);
  }

  .site-header.is-open .nav-links {
    display: flex;
  }

  .site-header.is-open .nav-links a {
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  }

  .site-header.is-open .nav-toggle {
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 22;
  }

  .feature-grid,
  .speaker-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .google-review-card {
    flex-basis: calc((100% - 42px) / 2);
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .brand img {
    width: 190px;
  }

  .hero,
  .hero-home {
    min-height: 640px;
  }

  .hero-content,
  .hero-home .hero-content {
    padding-top: 90px;
  }

  .section {
    padding: 70px 20px;
  }

  .section-compact {
    padding: 48px 20px;
  }

  .split,
  .offer-grid,
  .benefit-grid,
  .speaker-grid,
  .review-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .contact-branches {
    grid-template-columns: 1fr;
  }

  .google-reviews {
    margin-top: 38px;
  }

  .google-review-strip {
    gap: 22px;
    margin-right: 36px;
    margin-left: 36px;
  }

  .google-review-card {
    flex-basis: 100%;
  }

  .review-nav {
    top: 72px;
    width: 30px;
    height: 30px;
    font-size: 1.7rem;
  }

  .media-panel {
    padding: 28px;
  }

  .intro-section {
    padding-bottom: 70px;
  }

  .feature-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  #bezplatna-konsultacja::before {
    top: -34px;
    right: -92px;
    width: 190px;
    opacity: 0.55;
  }

  .intro-copy .note-image {
    position: static;
    width: min(300px, 82%);
    margin: 26px 0 0 auto;
  }

  .note-image {
    max-width: 82%;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .header-inner {
    gap: 1rem;
  }

  .brand img {
    width: 165px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .button {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .lesson-float {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .lesson-float-button {
    width: 100%;
    justify-content: center;
    font-size: 0.92rem;
  }

  .lesson-float-panel {
    width: 100%;
  }

  .feature-card,
  .offer-card,
  .benefit-card,
  .speaker-card,
  .review-card {
    padding: 30px 22px;
  }
}
