@font-face {
  font-family: "Addington CF";
  src: url("fonts/AddingtonCF-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Addington CF";
  src: url("fonts/AddingtonCF-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Addington CF";
  src: url("fonts/AddingtonCF-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Addington CF";
  src: url("fonts/AddingtonCF-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Addington CF";
  src: url("fonts/AddingtonCF-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Addington CF";
  src: url("fonts/AddingtonCF-DemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Addington CF";
  src: url("fonts/AddingtonCF-DemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Addington CF";
  src: url("fonts/AddingtonCF-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("fonts/LufgaLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("fonts/LufgaLightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("fonts/LufgaRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("fonts/LufgaItalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("fonts/LufgaMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("fonts/LufgaMediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("fonts/LufgaSemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("fonts/LufgaSemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("fonts/LufgaBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("fonts/LufgaBoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Lufga";
  src: url("fonts/LufgaExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-ink: #4d3829;
  --color-ink-soft: #806d5f;
  --color-cream: #f7f1e5;
  --color-light: #fffaf1;
  --color-tan: #e9ddc7;
  --color-card: #fffdf8;
  --color-border: #d9c9b2;
  --color-primary: #563620;
  --color-primary-hover: #3f2819;
  --color-lilac: #bd8eab;
  --color-olive: #858d66;
  --color-red: #a9342e;
  --shadow-soft: 0 18px 50px rgba(75, 55, 41, 0.12);
  --font-heading: "Addington CF", Georgia, serif;
  --font-body: "Lufga", Arial, sans-serif;
  --container: 1140px;
  --section-padding: 120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: 40px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 27px;
}

p {
  color: var(--color-ink-soft);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  max-width: 900px;
  text-align: center;
}

.section-cream {
  background: var(--color-cream);
}

.section-light {
  background: var(--color-light);
}

.section-tan {
  background: var(--color-tan);
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--color-light);
  border-bottom: 1px solid rgba(90, 59, 40, 0.12);
}

.announcement {
  padding: 14px 16px;
  color: var(--color-light);
  background: var(--color-primary);
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 5px;
  text-align: center;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 73px;
  gap: 32px;
}

.brand,
.pricing-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
}

.brand img {
  display: block;
  width: 238px;
  height: auto;
}

.brand small,
.pricing-logo small {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 2px solid currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 600;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 5px;
  color: var(--color-light);
  background: var(--color-primary);
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta {
  min-height: 44px;
}

.button:hover,
.nav-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.button-primary span {
  margin-left: 12px;
}

.hero .button-primary {
  width: 398px;
  min-height: 49px;
  margin-top: 18px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
}

.button-full {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--color-border);
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--color-primary);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  padding: 52px 0 34px;
  background-color: var(--color-cream);
  background-image: url("assets/Hero.png");
  background-repeat: no-repeat;
  background-position: center -42px;
  background-size: auto 112%;
}

.method::before,
.guarantee::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(90, 59, 40, 0.09);
  border-radius: 50%;
  transform: rotate(20deg);
  pointer-events: none;
}

.hero-grid,
.split-layout,
.support-grid,
.teacher-grid,
.guarantee-grid,
.pricing-layout {
  display: grid;
  align-items: center;
  gap: 78px;
}

.hero-grid {
  grid-template-columns: 604px;
  justify-content: start;
  align-items: start;
}

.hero-content {
  display: grid;
  gap: 27px;
}

.student-proof {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 300px;
  min-height: 44px;
  gap: 7px;
  padding: 0 22px;
  border: 1px solid rgba(166, 120, 149, 0.88);
  border-radius: 999px;
  background: transparent;
}

.student-proof strong {
  color: var(--color-lilac);
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 800;
}

.student-proof span,
.hero-badges li,
.eyebrow,
.module-card span,
.pricing-label,
.secure-note,
.installment-note {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-content p {
  max-width: 560px;
  color: var(--color-ink);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.35;
}

.hero-content p strong {
  color: var(--color-ink);
  font-weight: 700;
}

.hero-title {
  max-width: 604px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 300;
  line-height: 0.98;
}

.hero-title em {
  color: #a77f96;
  font-style: italic;
  font-weight: 700;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--color-ink-soft);
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9f9084;
  font-size: 11px;
}

.hero-badges img {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  object-fit: contain;
}

.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px dashed rgba(90, 59, 40, 0.26);
  color: rgba(75, 55, 41, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.72), rgba(244, 234, 216, 0.22)),
    repeating-linear-gradient(-45deg, rgba(90, 59, 40, 0.045) 0 10px, transparent 10px 20px);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.image-placeholder-portrait {
  width: 400px;
  min-height: 480px;
  margin-left: auto;
  border-radius: 230px 230px 18px 18px;
}

.floating-note {
  position: absolute;
  max-width: 165px;
  padding: 18px;
  color: var(--color-primary);
  background: #efe0d4;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.25;
  text-align: center;
  transform: rotate(-8deg);
}

.note-one {
  left: 0;
  top: 88px;
}

.note-two {
  right: -12px;
  top: 130px;
  transform: rotate(8deg);
}

.note-three {
  right: 24px;
  bottom: 70px;
}

.social-proof {
  min-height: 255px;
  padding: 50px 0 48px;
  text-align: center;
}

.social-proof .container {
  width: min(1370px, calc(100% - 48px));
}

.social-proof h2 {
  margin-bottom: 34px;
  color: var(--color-primary);
  font-size: 34px;
  font-weight: 400;
}

.student-list {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  gap: 44px;
  align-items: center;
}

.student-card {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.avatar-placeholder,
.student-photo {
  flex: 0 0 103px;
  width: 103px;
  height: 103px;
  border: 2px solid #9f7b8b;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
}

.student-card h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.student-card p {
  margin-top: 3px;
  color: #8c7a6a;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

.problem {
  position: relative;
  min-height: 480px;
  padding: 100px 0 104px;
  overflow: visible;
  z-index: 2;
}

.problem h2 {
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: 42px;
  line-height: 1.15;
}

.problem p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.35;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 34px auto 30px;
  color: #9f7b8b;
}

.section-divider span {
  width: 110px;
  height: 1px;
  background: #9f7b8b;
}

.problem .problem-callout {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}

.problem .problem-callout strong {
  color: #a77f96;
  font-weight: 700;
}

.problem-heart {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.problem-heart-top {
  z-index: 1;
}

.problem-heart-top {
  top: 60px;
  right: max(72px, calc((100vw - 1120px) / 2 + 80px));
  width: 148px;
}

.problem-heart-bottom {
  left: max(72px, calc((100vw - 1120px) / 2 + 86px));
  bottom: 0;
  margin-bottom: -108px;
  width: 220px;
  z-index: 5;
  transform: rotate(-14deg);
}

.problem .container {
  position: relative;
  z-index: 1;
}

.about,
.how-it-works,
.course,
.method,
.audience,
.support,
.teacher,
.pricing,
.guarantee,
.faq {
  position: relative;
  padding: var(--section-padding) 0;
}

.course,
.support,
.teacher,
.pricing,
.guarantee,
.faq {
  padding-top: 96px;
  padding-bottom: 96px;
}

.about {
  padding: 82px 0 84px;
  overflow: hidden;
}

.about .split-layout {
  grid-template-columns: minmax(0, 760px) minmax(360px, 520px);
  gap: 58px;
}

.split-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
}

.split-layout-reverse {
  grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
}

.how-it-works {
  padding: 36px 0 34px;
  background-color: var(--color-tan);
  background-image: url("assets/Dobra 5.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.how-it-works .eyebrow {
  color: #9f7b8b;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.how-it-works .eyebrow::before {
  width: 38px;
}

.how-it-works .copy-block p strong {
  color: var(--color-primary);
  font-weight: 700;
}

.copy-block {
  display: grid;
  gap: 24px;
}

.copy-block p {
  font-size: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--color-primary);
  letter-spacing: 0;
}

.about .eyebrow {
  color: #9f7b8b;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
}

.about .eyebrow::before {
  width: 38px;
}

.about h2 {
  color: var(--color-primary);
  font-size: 42px;
  line-height: 1.08;
}

.about h2 em {
  color: #a77f96;
  font-style: italic;
  font-weight: 400;
}

.about .copy-block {
  gap: 28px;
}

.about .copy-block p:not(.eyebrow) {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.52;
}

.about ~ section .copy-block p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.52;
}

.about .copy-block p strong {
  color: var(--color-primary);
  font-weight: 700;
}

.eyebrow::before,
.eyebrow.centered::after {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.centered {
  justify-content: center;
}

.decorative-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  overflow: visible;
}

.about-art {
  display: block;
  width: min(760px, 120%);
  height: auto;
  object-fit: contain;
  transform: translateX(18px) scale(1.32);
  transform-origin: center center;
}

.paper-placeholder {
  width: min(390px, 100%);
  min-height: 360px;
  box-shadow: var(--shadow-soft);
  transform: rotate(6deg);
}

.paper-stack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.paper-art {
  display: block;
  width: auto;
  max-width: min(760px, 125%);
  height: 550px;
  object-fit: contain;
  transform: translateX(-18px);
}

.workbook-placeholder {
  min-height: 500px;
  background-color: var(--color-card);
  box-shadow: var(--shadow-soft);
}

.feature-list {
  position: absolute;
  left: -34px;
  bottom: -52px;
  display: grid;
  gap: 16px;
  width: 360px;
  padding: 26px;
  margin: 0;
  list-style: none;
  background: rgba(251, 247, 238, 0.94);
  box-shadow: var(--shadow-soft);
}

.feature-list li {
  display: grid;
  gap: 6px;
}

.feature-list span {
  color: var(--color-ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.course .section-heading {
  margin-bottom: 34px;
}

@media screen and (min-width: 1025px) {
  .about {
    min-height: 705px;
  }

  .how-it-works {
    min-height: 0;
  }

  .course {
    min-height: 0;
  }

  .method {
    min-height: 0;
  }

  .audience {
    min-height: 0;
    padding-top: 70px;
  }

  .support {
    min-height: 0;
  }

  .teacher {
    min-height: 0;
  }

  .pricing {
    min-height: 0;
  }

  .guarantee {
    min-height: 0;
  }

  .faq {
    min-height: 0;
  }
}

.section-heading.wide {
  max-width: 980px;
}

.section-heading h2 {
  margin: 24px 0 18px;
  text-transform: uppercase;
}

.course .eyebrow {
  color: #9f7b8b;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.course .section-heading > p:not(.eyebrow) {
  color: var(--color-ink-soft);
  font-size: 18px;
}

.course .section-heading > p strong {
  color: var(--color-primary);
  font-weight: 700;
}

.module-list {
  display: grid;
  gap: 44px;
  max-width: 1001px;
  margin: 0 auto;
}

.module-card {
  display: grid;
  grid-template-columns: 262px 1fr;
  align-items: center;
  min-height: 378px;
  border: 3px solid #ded1b4;
  border-radius: 16px;
  background: var(--color-card);
  box-shadow: none;
  overflow: hidden;
}

.module-placeholder {
  width: 100%;
  height: 100%;
  min-height: 378px;
  border-width: 0 1px 0 0;
}

.module-cover {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 378px;
  object-fit: cover;
  object-position: center center;
  border-right: 1px solid #ded1b4;
}
.module-cover {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
}

.module-card div:last-child {
  display: grid;
  gap: 20px;
  padding: 72px 74px;
}

.module-card span {
  color: #9f7b8b;
  font-size: 14px;
  font-weight: 700;
}

.module-card h3 {
  color: var(--color-primary);
  font-size: 38px;
  line-height: 1.08;
}

.module-card p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.45;
}

.method {
  padding-top: 70px;
  padding-bottom: 18px;
  overflow: hidden;
  background-color: var(--color-tan);
  background-image: url("assets/dobra7.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.method .eyebrow {
  color: #9f7b8b;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.method .eyebrow::before,
.method .eyebrow::after {
  width: 38px;
}

.method .section-heading h2 {
  text-transform: none;
}

.method .section-heading p:not(.eyebrow) {
  max-width: 664px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.45;
}

.method .section-heading p:nth-of-type(2) {
  margin-bottom: 27px;
}

.method .section-heading p strong {
  color: var(--color-primary);
  font-weight: 700;
}

.method::before {
  left: -120px;
  top: 60px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 203px);
  justify-content: center;
  gap: 24px;
  max-width: 940px;
  margin: 54px auto 36px;
}

.method-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  min-height: 0;
  width: 203px;
  padding: 20px;
  border: 2px solid var(--color-border);
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.7);
  text-align: center;
}

.method-grid img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.method-grid span {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 125px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.18;
}

.method-grid span::before {
  content: "";
  width: 100%;
  max-width: 150px;
  height: 1px;
  margin: 18px 0 16px;
  background: rgba(159, 123, 139, 0.22);
}

.method-callout {
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 27px;
  line-height: 1.25;
  text-align: center;
}

.method-callout strong {
  color: #9f7b8b;
  font-family: var(--font-heading);
  font-weight: 700;
}

.method-divider {
  margin: 34px auto 0;
}

.comparison {
  max-width: 1030px;
  margin: 0 auto;
  text-align: center;
}

.audience {
  padding-top: 16px;
  padding-bottom: 70px;
  background-color: var(--color-tan);
  background-image: url("assets/dobra8.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.comparison h2 {
  margin-bottom: 36px;
  font-size: 34px;
}

.comparison-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: stretch;
}

.comparison-card {
  overflow: hidden;
  border-radius: 10px;
  background: #fffdf5;
  text-align: left;
}

.comparison-card h3 {
  margin: 0;
  min-height: 70px;
  padding: 22px 72px;
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 300;
  line-height: 1.12;
  text-align: center;
  text-transform: none;
}

.comparison-card h3 strong {
  font-weight: 700;
}

.comparison-card ul {
  display: grid;
  padding: 32px 64px 52px;
  margin: 0;
  list-style: none;
  font-size: 19px;
  line-height: 1.12;
}

.comparison-card li {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 22px 0;
}

.comparison-card li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.negative li + li {
  border-top-color: rgba(159, 144, 132, 0.18);
}

.comparison-card li::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-top: 3px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.negative h3 {
  margin-top: 62px;
  color: #fff;
  background: #a80f14;
}

.positive h3 {
  color: var(--color-primary);
  background: #dce4aa;
}

.positive {
  background: #8a906b;
}

.positive::before {
  content: "";
  display: block;
  height: 62px;
  background: #8a906b;
}

.negative ul {
  color: #8f8173;
}

.positive ul {
  color: #fffaf1;
}

.negative li::before {
  background-image: url("assets/denied.svg");
}

.positive li::before {
  background-image: url("assets/checkbox.svg");
}

.support-grid {
  grid-template-columns: minmax(0, 420px) minmax(0, 590px);
  align-items: center;
  gap: 34px;
  max-width: 1120px;
}

.support {
  background: #f7f3e7;
}

.support .copy-block {
  position: relative;
  gap: 26px;
  padding-right: 34px;
}

.support .copy-block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(90, 59, 40, 0.13);
}

.support .eyebrow {
  color: #9f7b8b;
  letter-spacing: 4px;
}

.support .copy-block p:not(.eyebrow) {
  color: var(--color-primary);
  max-width: 330px;
}

.support-list {
  display: grid;
  gap: 18px;
}

.support-list article {
  display: grid;
  grid-template-columns: 42px 32px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 66px;
  padding: 12px 24px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(90, 59, 40, 0.08);
}

.support-list span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--color-primary);
  background: var(--color-cream);
  font-weight: 800;
}

.support-icon {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  justify-self: center;
}

.support-list p {
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 400;
}

.teacher-grid {
  grid-template-columns: 405px 1fr;
  max-width: 1080px;
}

.teacher {
  background-color: #fbf8f0;
}

.teacher .eyebrow {
  color: #9f7b8b;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.teacher .eyebrow::before {
  width: 38px;
}

.teacher .copy-block p strong {
  color: var(--color-primary);
  font-weight: 700;
}

.teacher-photo {
  display: block;
  width: min(405px, 100%);
  height: auto;
  box-shadow: var(--shadow-soft);
}

.pricing {
  overflow: hidden;
  background-color: #fbf8f0;
  background-image: url("assets/BG.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.pricing-layout {
  grid-template-columns: minmax(0, 430px);
  justify-content: center;
}

.pricing-side {
  min-height: 420px;
  opacity: 0.75;
}

.pricing-card {
  display: flex;
  z-index: 10;
  flex-direction: column;
  gap: 10px;
  position: relative;
  width: 100%;
  padding: 10px 24px 40px 24px;
  max-width: 700px;
  background-color: transparent;
  background-image: url("assets/Inf.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  box-shadow: none;
  text-align: center;
}

.tape-pricing {
  position: absolute;
  top: 75%;
  right: 0;
  width: 201px;
  margin-right: -72px;
}
.tape-pricing1 {
  position: absolute;
  top: -20%;
  left: 0;
  width: 221px;
  transform: rotate(180deg);
  margin-left: -95px;
  z-index: 1 !important;
}
.pricing-label {
  font-size: 16px;
  margin: 0;
  padding: 13px 10px;
  color: var(--color-primary);
  background: transparent;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.pricing-logo {
  display: grid;
  justify-items: center;
  gap: 0;
  padding: 12px 0 14px;
  font-size: 56px;
  line-height: 1;
}

.pricing-logo img {
  display: block;
  width: min(220px, 100%);
  height: auto;
}

.pricing-logo p {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
}

.price {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: var(--color-primary);
  text-transform: uppercase;
}

.aligner-price {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.aligner-price small {
  margin-top: 30px;
}

.adjust-font {
  display: block;
  margin-bottom: -30px;
}

.old-price,
.cash-price,
.secure-note,
.installment-note {
  font-weight: 400;
}

.old-price strong,
.old-price {
  color: var(--color-primary);
}

.old-price {
  letter-spacing: 0.2px;
  margin-bottom: -30px;
  margin-top: 30px;
}

.old-price s {
  color: var(--color-ink-soft);
  text-decoration-thickness: 1px;
}

.price strong {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 86px;
  line-height: 1;
}

.price small {
  margin-right: 8px;
  font-size: 36px;
}

.price-divider {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-ink-soft);
  text-transform: uppercase;
  font-size: 15px;

}

.price-divider::before,
.price-divider::after {
  content: "";
  width: 120px;
  height: 2px;
  background: rgba(90, 59, 40, 0.34);
}

.pricing-card .button {
  width: 100%;
  margin: 0 auto;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.secure-note,
.installment-note {
  color: var(--color-ink-soft);
  line-height: 1.2;
}

.secure-note {
  margin-bottom: -10px;
}

.guarantee {
  overflow: hidden;
  background-color: #fbf8f0;
  background-image: url("assets/guarantee.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 82px 0 86px;
}

.guarantee::after {
  display: none;
}

.guarantee-grid {
  grid-template-columns: minmax(0, 520px) minmax(380px, 1fr);
  max-width: 1120px;
  gap: 118px;
}

.guarantee .copy-block {
  max-width: 520px;
}

.guarantee .eyebrow {
  margin-bottom: 22px;
  color: #9f7b8b;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.guarantee .eyebrow::before {
  width: 38px;
}

.guarantee h2 {
  max-width: 500px;
  margin-bottom: 24px;
  color: var(--color-primary);
  font-size: 46px;
  line-height: 1.08;
}

.guarantee .copy-block p:not(.eyebrow) {
  max-width: 510px;
  color: var(--color-ink-soft);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.guarantee .copy-block p:not(.eyebrow) strong {
  color: var(--color-primary);
  font-weight: 700;
}

.faq-container {
  max-width: 840px;
}

.faq h2 {
  margin-bottom: 56px;
  text-align: center;
}

.faq-item {
  border-top: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 74px;
  padding: 0;
  border: 0;
  color: var(--color-ink);
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  flex: 0 0 auto;
  padding-left: 18px;
  color: var(--color-primary);
  font-size: 28px;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  overflow: hidden;
  max-width: 660px;
  padding-bottom: 0;
  font-size: 15px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 28px;
}

.site-footer {
  padding: 30px 0;
  color: var(--color-light);
  background: #a67895;
  border-radius: 300px 300px 0 0;
  overflow: hidden;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  color: inherit;
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.social-links img {
  display: block;
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

@media screen and (min-width: 1600px) {
  :root {
    --container: 1140px;
  }
}

@media screen and (max-width: 1024px) {
  :root {
    --section-padding: 90px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-grid,
  .split-layout,
  .split-layout-reverse,
  .support-grid,
  .teacher-grid,
  .guarantee-grid,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .support-grid {
    gap: 34px;
  }

  .support .copy-block {
    padding-right: 0;
  }

  .support .copy-block::after {
    display: none;
  }

  .hero-visual {
    width: min(457px, 100%);
    min-height: 520px;
    justify-self: center;
  }

  .hero-person {
    width: min(457px, 100%);
  }

  .image-placeholder-portrait {
    width: min(460px, 100%);
    margin: 0 auto;
  }

  .student-list,
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-list {
    position: static;
    width: auto;
    margin-top: 22px;
  }

  .pricing-side {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: var(--color-light);
    border: 1px solid var(--color-border);
  }

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

  .nav-links a {
    padding: 14px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .student-list,
  .method-grid,
  .comparison-columns {
    grid-template-columns: 1fr;
  }

  .module-card {
    grid-template-columns: 1fr;
  }

  .module-placeholder {
    border-width: 0 0 1px;
  }

  .support-list article {
    grid-template-columns: 48px 36px 1fr;
    padding: 14px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  :root {
    --section-padding: 68px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 40px, var(--container));
  }

  .announcement {
    font-size: 10px;
  }

  .brand {
    gap: 5px;
    font-size: 22px;
  }

  .brand small {
    font-size: 11px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .hero {
    min-height: auto;
    padding: 291px 0 72px;
    background-position: left -354px top -10px;
    background-size: auto 352px;
  }

  .hero-content {
    max-width: 100%;
    gap: 22px;
  }

  .student-proof {
    min-width: 0;
    width: 100%;
    justify-content: center;
    min-height: 38px;
    padding: 8px 10px;
  }

  .student-proof span {
    font-size: 10px;
  }

  .hero-content p,
  .copy-block p,
  .problem p {
    font-size: 16px;
  }

  .hero-content p {
    max-width: 330px;
  }

  .hero-title {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.08;
  }

  .button,
  .nav-cta {
    width: 100%;
    padding: 0 18px;
  }

  .hero .button-primary {
    width: 100%;
  }

  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
    max-width: 100%;
  }

  .hero-badges li {
    flex: 0 0 auto;
    gap: 6px;
    font-size: 10px;
    white-space: nowrap;
  }

  .hero-badges img {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .hero-visual {
    width: 100%;
    min-height: 410px;
  }

  .hero-person {
    left: 50%;
    width: 315px;
    transform: translateX(-50%);
  }

  .hero-card-purpose {
    top: 28px;
    left: 0;
    width: 108px;
  }

  .hero-card-routine {
    top: 46px;
    left: auto;
    right: 0;
    width: 118px;
  }

  .hero-card-real-life {
    top: 268px;
    left: auto;
    right: 14px;
    width: 112px;
  }

  .image-placeholder-portrait {
    min-height: 430px;
  }

  .social-proof {
    padding: 44px 0;
  }

  .student-card {
    gap: 14px;
  }

  .problem {
    min-height: 440px;
    padding: 78px 0 86px;
  }

  .problem h2 {
    font-size: 32px;
  }

  .problem p {
    font-size: 16px;
  }

  .problem-heart-top {
    top: 24px;
    right: 18px;
    width: 92px;
  }

  .problem-heart-bottom {
    left: 18px;
    bottom: 0;
    margin-bottom: -72px;
    width: 150px;
  }

  .section-divider span {
    width: 86px;
  }

  .about {
    padding: 66px 0 72px;
  }

  .about .split-layout,
  .how-it-works .split-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about .copy-block {
    gap: 18px;
  }

  .about h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  .about .copy-block p:not(.eyebrow) {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.48;
  }

  .decorative-visual {
    width: 100%;
    max-width: 340px;
    min-height: 0;
    justify-self: center;
  }

  .about-art {
    width: 100%;
    max-width: 382px;
    transform: scale(1.7);
  }
  #topo > nav > button > span:nth-child(1) {
    margin-top: 1px;
  }

  .how-it-works {
    padding: 66px 0 72px;
  }

  .paper-stack {
    width: 100%;
    justify-self: center;
  }

  .paper-art {
    width: 100%;
    max-width: 390px;
    height: auto;
    transform: none;
  }

  .paper-placeholder,
  .workbook-placeholder,
  .teacher-placeholder {
    min-height: 330px;
  }

  .paper-placeholder {
    transform: rotate(2deg);
  }

  .module-card {
    min-height: 0;
    overflow: hidden;
  }

  .module-placeholder {
    min-height: 190px;
  }

  .module-card div:last-child {
    padding: 28px 24px 32px;
  }

  .module-card h3 {
    font-size: 30px;
    line-height: 1.08;
  }

  .module-card p {
    font-size: 15px;
  }

  .method {
    padding-top: 68px;
    padding-bottom: 26px;
  }

  .method .section-heading h2 {
    font-size: 31px;
    line-height: 1.12;
  }

  .method .section-heading > p:not(.eyebrow) {
    max-width: 330px;
  }

  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    max-width: 340px;
    margin: 34px auto 30px;
  }

  .method-grid article {
    width: 100%;
    min-height: 130px;
    padding: 16px;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
  }

  .method-grid img {
    width: 34px;
    height: 34px;
  }

  .method-grid span {
    min-height: 38px;
    font-size: 15px;
    line-height: 1.08;
  }

  .method-callout {
    max-width: 335px;
    font-size: 24px;
    line-height: 1.14;
  }

  .method-divider {
    margin-top: 28px;
  }

  .comparison-card ul {
    padding: 24px 20px 28px;
  }

  .comparison-card h3 {
    font-size: 22px;
  }

  .support-list article {
    grid-template-columns: 34px 28px 1fr;
    gap: 12px;
    min-height: 58px;
    padding: 11px 14px;
    text-align: left;
  }

  .support-list span {
    width: 30px;
    height: 30px;
    justify-self: start;
    font-size: 12px;
  }

  .support-icon {
    width: 28px;
    height: 28px;
  }

  .support-list p {
    font-size: 15px;
    line-height: 1.25;
  }

  .support,
  .teacher,
  .faq {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .support-grid,
  .teacher-grid {
    gap: 36px;
  }

  .support .copy-block {
    gap: 20px;
  }

  .teacher-photo {
    width: min(100%, 330px);
    margin: 0 auto;
  }

  .teacher .copy-block {
    gap: 18px;
  }

  .teacher .copy-block p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.5;
  }

  .pricing-logo {
    font-size: 40px;
  }

  .pricing {
    overflow: hidden;
    padding: 68px 0 72px;
  }

  .pricing-card {
    max-width: 340px;
    margin-inline: auto;
    padding: 10px 18px 34px;
  }

  .pricing-label,
  .pricing-logo,
  .price,
  .pricing-card .button,
  .secure-note,
  .installment-note {
    position: relative;
    z-index: 1;
  }

  .pricing-label {
    font-size: 13px;
    line-height: 1.25;
    padding: 10px 12px;
  }

  .secure-note {
    font-size: 12px;
  }

  .pricing-logo img {
    width: 185px;
  }

  .price strong {
    font-size: 58px;
  }

  .price-divider::before,
  .price-divider::after {
    width: 70px;
  }

  .pricing-card .button {
    width: calc(100% - 36px);
  }

  .tape-pricing {
    display: none;
  }

  .tape-pricing1 {
    display: none;
  }

  .guarantee {
    min-height: 0;
    padding: 72px 0 310px;
    background-position: 81% bottom;
    background-size: 1032px auto;
  }

  .guarantee .copy-block {
    max-width: 100%;
    gap: 10px;
  }

  .guarantee h2 {
    font-size: 35px;
    margin-bottom: 10px;
  }

  .guarantee .copy-block p:not(.eyebrow) {
    font-size: 16px;
  }

  .faq h2 {
    margin-bottom: 34px;
  }

  .faq-container {
    max-width: 347px;
  }

  .faq-item button {
    align-items: flex-start;
    min-height: 64px;
    padding: 18px 0;
    line-height: 1.45;
  }

  .footer-inner {
    gap: 18px;
  }

  .site-footer {
    padding: 48px 0 34px;
    border-radius: 60px 60px 0 0;
  }

  .footer-inner p {
    max-width: 300px;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1.45;
  }

  .social-links a {
    width: 49px;
    height: 49px;
  }

  .social-links img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
  }
}
