:root {
  --blue: #0ea5e9;
  --blue-deep: #0c4a6e;
  --blue-light: #e0f2fe;
  --green-light: #eef7dd;
  --purple-light: #f1ecfd;
  --gray-light: #f4f5f9;
  --ink: #16162c;
  --white: #ffffff;
  --bg: #ffffff;
  --text-muted: #5c5f75;
  --text-muted-light: #b9bce0;
  --radius: 26px;
  --radius-sm: 16px;
  --shadow: 0 20px 50px rgba(30, 30, 90, 0.10);
  --shadow-sm: 0 10px 26px rgba(30, 30, 90, 0.07);
  font-size: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Eyebrow chips */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.eyebrow--light { color: #c2c3ff; background: rgba(255, 255, 255, 0.1); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(22, 22, 44, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo { font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.logo span { color: var(--blue); }

.nav { display: flex; gap: 28px; }

.nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span { width: 24px; height: 2px; border-radius: 2px; background: var(--ink); display: block; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(55, 48, 224, 0.32);
}

.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(55, 48, 224, 0.4); }

.btn--outline {
  background: var(--white);
  color: var(--blue);
  border: 1.5px solid var(--blue-light);
  box-shadow: var(--shadow-sm);
}

.btn--outline:hover { background: var(--blue-light); transform: translateY(-2px); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #eef1ff 0%, #ffffff 65%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero__text { text-align: left; }

.hero__greeting {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--ink);
}

.hero h1 .hl { color: var(--blue); }

.hero__subtitle {
  font-size: 1.13rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__photo { position: relative; display: flex; justify-content: center; }

.hero__photo img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__badge {
  position: absolute;
  left: -20px;
  bottom: 28px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  box-shadow: var(--shadow);
}

.hero__badge-num { color: var(--blue); font-weight: 800; font-size: 1.3rem; }
.hero__badge-label { color: var(--text-muted); font-weight: 600; font-size: 0.8rem; }

/* Outcomes */
.outcomes { padding: 90px 0 0; background: var(--bg); }

.outcomes__card {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  border-radius: var(--radius);
  padding: 48px 40px;
  color: #fff;
  box-shadow: var(--shadow);
}

.outcomes__title { font-size: clamp(1.4rem, 3vw, 1.7rem); font-weight: 800; margin-bottom: 26px; }

.outcomes__list { display: flex; flex-direction: column; gap: 16px; }

.outcomes__list li {
  padding-left: 34px;
  position: relative;
  color: #e2e3ff;
  font-weight: 500;
  line-height: 1.5;
}

.outcomes__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Positioning */
.positioning { padding: 90px 0 20px; background: var(--bg); text-align: center; }

.positioning__title {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.3;
  max-width: 760px;
  margin: 0 auto;
}

.positioning__title .hl { color: var(--blue); }

.positioning .section-subtitle { max-width: 560px; margin-left: auto; margin-right: auto; }

.differentiators {
  max-width: 640px;
  margin: 8px auto 0;
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: left;
}

.differentiators__title { font-weight: 800; font-size: 1.15rem; color: var(--ink); margin-bottom: 18px; }

.differentiators__list { display: flex; flex-direction: column; gap: 12px; }

.differentiators__list li {
  padding-left: 26px;
  position: relative;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
}

.differentiators__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--blue);
  transform: rotate(45deg);
}

/* How it works */
.how { padding: 90px 0; background: var(--bg); }

.how .eyebrow { display: block; width: fit-content; margin: 0 auto 16px; }
.how .section-title { display: block; margin-bottom: 48px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.step { background: var(--gray-light); border-radius: var(--radius); padding: 30px 26px; }

.step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.step__title { font-weight: 800; font-size: 1.05rem; color: var(--ink); margin-bottom: 8px; }
.step__text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

/* Testimonial highlight */
.testimonial-highlight {
  max-width: 720px;
  margin: 0 auto 40px;
  background: var(--purple-light);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}

.testimonial-highlight__quote {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 24px;
}

.testimonial-highlight__author { display: flex; align-items: center; gap: 14px; }

.testimonial-highlight__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

.testimonial-highlight__name { font-weight: 800; color: var(--ink); }
.testimonial-highlight__meta { color: var(--text-muted); font-size: 0.85rem; }

/* Stats */
.stats { padding: 90px 0 40px; background: var(--bg); }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.stat {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
}

.stat__num { color: var(--blue); font-weight: 800; font-size: clamp(1.7rem, 4vw, 2.3rem); letter-spacing: -0.5px; }
.stat__label { color: var(--text-muted); font-weight: 600; font-size: 0.85rem; margin-top: 8px; }

/* Section titles */
.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  color: var(--ink);
  letter-spacing: -0.6px;
}

.section-title--light { color: #fff; }

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 14px;
  margin-bottom: 48px;
}

section > .container > .eyebrow, .cases > .container > .eyebrow { display: block; width: fit-content; margin-left: auto; margin-right: auto; text-align: center; }
.about__inner .eyebrow { margin-left: 0; margin-right: 0; }
.contacts .eyebrow { margin-left: 0; margin-right: 0; }

/* Courses */
.courses { padding: 100px 0; background: var(--bg); }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare-table th, .compare-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
}

.compare-table thead th {
  background: var(--blue-deep);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.compare-table thead th:first-child { background: transparent; }
.compare-table th.compare-table__featured { background: var(--blue); }

.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--ink); }
.compare-table td.compare-table__featured { background: var(--blue-light); font-weight: 600; }

.compare-table td.yes { color: var(--blue); font-weight: 800; font-size: 1.15rem; }
.compare-table td.no { color: #d3d5e6; font-weight: 800; }

.compare-table__price-row td { font-size: 1.3rem; font-weight: 800; color: var(--ink); }
.compare-table__price-row td:first-child { font-size: 1rem; }
.compare-table__cta-row td { border-bottom: none; padding: 22px 20px; }
.compare-table__cta-row .btn { padding: 10px 22px; font-size: 0.8rem; box-shadow: none; }

/* About */
.about { background: var(--gray-light); padding: 100px 0; }

.about__inner {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.about__inner .section-title { text-align: left; margin-bottom: 22px; }

.about__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about__name { font-size: 1.4rem; font-weight: 800; color: var(--ink); }
.about__role { color: var(--blue); font-weight: 700; margin-bottom: 22px; }
.about__paragraph { color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }

.about__paragraph:first-of-type { color: var(--ink); font-weight: 700; font-size: 1.2rem; }

.about__accent {
  margin-top: 22px;
  padding: 18px 22px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  color: var(--blue-deep);
  font-weight: 600;
}


/* Reviews */
.reviews { padding: 100px 0; background: var(--bg); }

.reviews__tagline {
  text-align: center;
  font-weight: 700;
  color: var(--blue);
  font-size: 1rem;
  margin-top: 10px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.review-card:nth-child(3n+1) { background: var(--blue-light); }
.review-card:nth-child(3n+2) { background: var(--green-light); }
.review-card:nth-child(3n) { background: var(--purple-light); }

.review-card__stars { color: #f5a623; letter-spacing: 2px; font-size: 0.95rem; }
.review-card__text { color: var(--ink); font-size: 0.95rem; line-height: 1.55; flex-grow: 1; }
.review-card__author { display: flex; align-items: center; gap: 12px; }

.review-card__avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

.review-card__name { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.review-card__meta { color: var(--text-muted); font-size: 0.8rem; font-weight: 500; }

/* FAQ */
.faq { padding: 100px 0; background: var(--blue-deep); color: #fff; }
.faq .section-title { color: #fff; }

.faq__list { max-width: 760px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 14px; }

.faq__item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: #9b96ff;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { margin-top: 14px; color: var(--text-muted-light); line-height: 1.55; }

/* Lead magnet */
.leadmagnet { padding: 24px; background: var(--bg); }

.leadmagnet__inner {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  border-radius: var(--radius);
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.leadmagnet__title { font-weight: 800; font-size: clamp(1.5rem, 3.2vw, 2.1rem); color: #fff; letter-spacing: -0.5px; }
.leadmagnet__text { color: #d6d4ff; font-weight: 500; }

.leadmagnet .btn--primary { background: #fff; color: var(--blue); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2); }
.leadmagnet .btn--primary:hover { background: var(--blue-light); }

/* Contacts */
.contacts { padding: 100px 0; background: var(--blue-deep); color: #fff; }
.contacts .section-title { text-align: left; }

.contacts__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.contacts__text {
  max-width: 460px;
  margin: 16px 0 32px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted-light);
}

.contacts__actions .btn--primary { background: #fff; color: var(--blue); }
.contacts__actions .btn--primary:hover { background: var(--blue-light); }

.contacts__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }

/* Contact form */
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}

.contact-form__honeypot { display: none; }
.contact-form__field { display: flex; flex-direction: column; gap: 6px; text-align: left; }

.contact-form__field span { font-size: 0.8rem; font-weight: 700; color: var(--ink); }

.contact-form__field input, .contact-form__field select {
  border: 1.5px solid var(--gray-light);
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}

.contact-form__field input:focus, .contact-form__field select:focus { border-color: var(--blue); background: #fff; }

.contact-form__submit { cursor: pointer; margin-top: 4px; }

.contact-form__status { font-size: 0.9rem; font-weight: 700; text-align: left; min-height: 1.2em; }
.contact-form__status.success { color: #1a7a3e; }
.contact-form__status.error { color: #c62828; }

.contact-form__note { font-size: 0.8rem; color: var(--text-muted); line-height: 1.45; margin-top: -8px; }

.contacts__phone { font-size: 1.15rem; font-weight: 800; color: #fff; transition: opacity 0.2s; }
.contacts__phone:hover { opacity: 0.7; }

/* Closing */
.closing { padding: 0 24px 90px; background: var(--bg); }

.closing__card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.closing__quote {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 20px;
}

.closing__author { margin-bottom: 28px; }
.closing__name { font-weight: 800; color: var(--ink); }
.closing__role { color: var(--text-muted); font-size: 0.85rem; }

.closing__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

/* Footer */
.footer { background: var(--white); color: var(--text-muted); padding: 32px 0; font-size: 0.85rem; }

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer__logo { font-weight: 800; color: var(--ink); font-size: 0.95rem; margin-bottom: 6px; }
.footer__logo span { color: var(--blue); }
.footer__legal { margin-top: 4px; font-size: 0.78rem; color: var(--text-muted); }

.footer__contacts { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__contacts a { font-weight: 600; color: var(--text-muted); transition: color 0.2s; }
.footer__contacts a:hover { color: var(--blue); }

.footer__links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__links a { font-weight: 600; color: var(--text-muted); font-size: 0.85rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--blue); }

/* Legal pages */
.legal { padding: 70px 0 100px; background: var(--bg); }

.legal__inner { max-width: 760px; margin: 0 auto; }

.legal__title { font-size: clamp(1.8rem, 3.4vw, 2.4rem); font-weight: 800; color: var(--ink); letter-spacing: -0.5px; }

.legal__updated { color: var(--text-muted); margin-top: 10px; margin-bottom: 40px; font-size: 0.9rem; }

.legal__inner h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 14px;
}

.legal__inner p { color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.legal__inner a { color: var(--blue); font-weight: 600; }

/* Responsive */
@media (max-width: 900px) {
  .contacts__inner { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__text { text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__photo { order: -1; margin-bottom: 24px; }
  .hero__photo img { max-width: 300px; }
  .hero__badge { left: 50%; transform: translateX(-50%); bottom: -20px; text-align: center; }
  .about__inner { grid-template-columns: 1fr; }
  .about__inner .eyebrow, .about__inner .section-title { text-align: center; margin-left: auto; margin-right: auto; }
  .about__photo { order: -1; max-width: 360px; margin: 0 auto; }
  .about__paragraph, .about__accent { text-align: left; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .outcomes__card, .differentiators, .testimonial-highlight { padding: 32px 26px; }
  .closing__card { grid-template-columns: 1fr; padding: 32px; text-align: center; }
  .closing__photo { order: -1; max-width: 300px; margin: 0 auto; }
  .closing__text { text-align: left; }
  .footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow-sm);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav.open { max-height: 400px; }
  .nav a { padding: 16px 24px; border-top: 1px solid var(--gray-light); }
  .burger { display: flex; }
}
