/* ============================================================
   BASE & RESET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  font-size: 16px;
}

body {
  font-family: 'Sora', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

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

button {
  font-family: inherit;
}

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */

:root {
  --bg: #f2f7f7;
  --teal: #2d7a7a;
  --teal-light: #d4edec;
  --cta: #f0c846;
  --cta-hover: #e0b836;
  --text: #1a1a1a;
  --text-secondary: #555;
  --card-bg: #ffffff;
  --card-border: #e0e0e0;
  --max-width: 1200px;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

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

section {
  padding: 80px 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}

p {
  line-height: 1.7;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-cta {
  display: inline-block;
  background: var(--cta);
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  font-family: inherit;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
  line-height: 1.4;
}

.btn-cta:hover {
  background: var(--cta-hover);
}

.btn-cta:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* ============================================================
   1. PROMO BAR
   ============================================================ */

.promo-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--teal);
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  padding: 12px 24px;
  line-height: 1.4;
}

.promo-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.promo-bar__text {
  font-weight: 500;
}

.promo-bar__countdown {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* ============================================================
   2. HERO
   ============================================================ */

.hero {
  padding-top: calc(48px + 64px);
  padding-bottom: 80px;
}

.hero .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

.hero__content {
  flex: 0 0 55%;
  max-width: 55%;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__trust-note {
  font-size: 13px;
  color: var(--text-secondary);
}

.hero__image {
  flex: 0 0 45%;
  max-width: 45%;
}

.hero__image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(45, 122, 122, 0.12);
}

/* ============================================================
   3. PAIN POINTS
   ============================================================ */

.pain-points {
  padding: 80px 0;
}

.pain-points__intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.pain-points__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.pain-points__intro p {
  font-size: 17px;
  color: var(--text-secondary);
}

.pain-points__grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: stretch;
}

.pain-point-card {
  flex: 1 1 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pain-point-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.pain-point-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  border-radius: 12px;
  flex-shrink: 0;
}

.pain-point-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.pain-point-card__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

.pain-point-card__text strong {
  font-weight: 700;
  color: var(--teal);
}

/* ============================================================
   4. SOLUTION
   ============================================================ */

.solution {
  padding: 40px 0 80px;
}

.solution .container {
  background: var(--teal-light);
  border-radius: 24px;
  padding: 80px 48px;
  text-align: center;
}

.solution__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(45, 122, 122, 0.12);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.solution__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  max-width: 720px;
  margin: 0 auto 20px;
}

.solution__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
}

/* ============================================================
   5. BENEFITS
   ============================================================ */

.benefits {
  padding: 80px 0;
}

.benefits__heading {
  text-align: center;
  margin-bottom: 48px;
}

.benefits__heading h2 {
  margin-bottom: 12px;
}

.benefits__heading p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 32px;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s ease;
}

.benefit-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.benefit-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-card__icon svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.benefit-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.benefit-card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   6. INSTRUCTOR
   ============================================================ */

.instructor {
  padding: 80px 0;
}

.instructor .container {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.instructor__photo {
  flex: 0 0 400px;
  max-width: 400px;
}

.instructor__photo img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(45, 122, 122, 0.1);
}

.instructor__content {
  flex: 1;
  min-width: 0;
}

.instructor__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.instructor__name {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.instructor__bio {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.instructor__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.instructor__point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.instructor__point svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.instructor__stats {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--card-border);
}

.instructor__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.instructor__stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.instructor__stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================================
   7. BRIDGE
   ============================================================ */

.bridge {
  padding: 80px 0;
  text-align: center;
}

.bridge .container {
  max-width: 720px;
}

.bridge h2 {
  margin-bottom: 16px;
}

.bridge p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   8. AUDIENCE
   ============================================================ */

.audience {
  padding: 80px 0;
}

.audience__heading {
  text-align: center;
  margin-bottom: 48px;
}

.audience__heading h2 {
  margin-bottom: 12px;
}

.audience__heading p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.audience-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 48px 40px;
}

.audience-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.3;
}

.audience-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.audience-card__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}

.audience-card__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.audience-card--positive .audience-card__item svg {
  color: #27ae60;
}

.audience-card--negative .audience-card__item svg {
  color: #c0392b;
}

/* ============================================================
   9. TESTIMONIALS
   ============================================================ */

.testimonials {
  padding: 80px 0;
}

.testimonials > .container > h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials__heading p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: box-shadow 0.2s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.testimonial-card__quote-mark {
  font-size: 48px;
  line-height: 1;
  color: var(--teal-light);
  font-weight: 800;
  margin-bottom: -8px;
}

.testimonial-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  flex: 1;
}

.testimonial-card__text strong {
  font-style: normal;
  font-weight: 700;
  color: var(--teal);
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--teal);
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__author {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  line-height: 1.3;
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============================================================
   10. COURSE CONTENT
   ============================================================ */

.course-content {
  padding: 80px 0;
}

.course-content__heading {
  text-align: center;
  margin-bottom: 56px;
}

.course-content__header {
  text-align: center;
  margin-bottom: 48px;
}

.course-content__header h3 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.course-content__header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
}

.course-content__modules {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.module-block {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 36px;
  transition: box-shadow 0.2s ease;
}

.module-block:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}

.module-block__image {
  flex: 0 0 250px;
  max-width: 250px;
}

.module-block__image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.module-block__body {
  flex: 1;
  min-width: 0;
}

.module-block__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

.module-block__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.module-block__description {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.module-block__list {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.module-block__list li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  padding-left: 4px;
}

.module-block__list li::marker {
  color: var(--teal);
  font-weight: 600;
}

/* ============================================================
   11. BONUSES
   ============================================================ */

.bonuses {
  padding: 80px 0;
}

.bonuses__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}

.bonuses__heading p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

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

.bonus-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.bonus-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.bonus-item__icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bonus-item__icon svg {
  width: 26px;
  height: 26px;
  color: var(--teal);
}

.bonus-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.bonus-item__description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bonus-item__value {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  margin-top: auto;
}

/* ============================================================
   12. PRICING
   ============================================================ */

.pricing {
  padding: 80px 0;
}

.pricing__heading {
  text-align: center;
  margin-bottom: 48px;
}

.pricing__heading h2 {
  margin-bottom: 12px;
}

.pricing__heading p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.pricing__card {
  background: var(--card-bg);
  border: 2px solid var(--teal);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(45, 122, 122, 0.12);
  max-width: 900px;
  margin: 0 auto;
}

.pricing__content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.pricing__left {
  flex: 1;
  padding: 48px 40px;
  border-right: 1px solid var(--card-border);
}

.pricing__label {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  text-align: left;
}

.pricing__badge {
  display: inline-block;
  background: var(--cta);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.pricing__old-price {
  font-size: 22px;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-bottom: 4px;
  font-weight: 500;
}

.pricing__new-price {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.pricing__description {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing__vat {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 12px;
}

.pricing__installments {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--card-border);
}

.pricing__installments strong {
  color: var(--text);
}

.pricing__right {
  flex: 1;
  padding: 48px 40px;
}

.pricing__features-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing__right ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing__right li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.pricing__right li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.guarantee {
  margin-top: 32px;
  background: var(--teal-light);
  border-radius: 16px;
  padding: 36px 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee__icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(45, 122, 122, 0.15);
}

.guarantee__icon svg {
  width: 30px;
  height: 30px;
  color: var(--teal);
}

.guarantee__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.guarantee__text {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   13. FAQ
   ============================================================ */

.faq {
  padding: 80px 0;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.faq__header {
  position: sticky;
  top: calc(48px + 24px);
}

.faq__header h2 {
  margin-bottom: 16px;
}

.faq__header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq__items {
  display: flex;
  flex-direction: column;
}

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

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  gap: 16px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--teal);
}

.faq-question:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 2px;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--teal);
  transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer[aria-hidden="false"],
.faq-answer.is-open {
  max-height: 600px;
}

.faq-answer__inner {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer__inner p + p {
  margin-top: 12px;
}

.faq-answer__inner a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer__inner a:hover {
  opacity: 0.8;
}

/* ============================================================
   14. CONTACT CTA
   ============================================================ */

.contact-cta {
  padding: 80px 0;
}

.contact-cta .container {
  background: var(--teal-light);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
}

.contact-cta__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(45, 122, 122, 0.12);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.contact-cta h2 {
  max-width: 640px;
  margin: 0 auto 16px;
}

.contact-cta p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 32px;
}

.contact-cta__note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 16px;
  margin-bottom: 0;
}

/* ============================================================
   15. FOOTER
   ============================================================ */

.footer {
  background: #1a1a1a;
  color: #ffffff;
  text-align: center;
  padding: 40px 24px;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer__logo {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 4px 12px;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #ffffff;
}

.footer__links a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer__links span {
  color: rgba(255, 255, 255, 0.3);
  user-select: none;
}

.footer__credit {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   RESPONSIVE: max-width 1024px
   ============================================================ */

@media (max-width: 1024px) {
  .pain-points__grid {
    flex-wrap: wrap;
  }

  .pain-point-card {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 200px;
  }

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

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

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

  .instructor .container {
    gap: 40px;
  }

  .instructor__photo {
    flex: 0 0 320px;
    max-width: 320px;
  }
}

/* ============================================================
   RESPONSIVE: max-width 768px
   ============================================================ */

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }

  /* Hero stacks vertically */
  .hero {
    padding-top: calc(48px + 40px);
    padding-bottom: 56px;
  }

  .hero .container {
    flex-direction: column;
  }

  .hero__content {
    flex: none;
    max-width: 100%;
    order: 1;
  }

  .hero__image {
    flex: none;
    max-width: 100%;
    order: 2;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .hero__subtitle {
    font-size: 16px;
  }

  /* Pain points wrap to 2 cols on small */
  .pain-point-card {
    flex: 1 1 calc(50% - 10px);
  }

  /* Solution section */
  .solution .container {
    padding: 48px 28px;
    border-radius: 16px;
  }

  /* Instructor stacks */
  .instructor .container {
    flex-direction: column;
  }

  .instructor__photo {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .instructor__stats {
    gap: 20px;
  }

  /* Course content stacks */
  .module-block {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }

  .module-block__image {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  /* Bonuses single column */
  .bonuses__grid {
    grid-template-columns: 1fr;
  }

  /* Pricing stacks */
  .pricing__content {
    flex-direction: column;
  }

  .pricing__left {
    border-right: none;
    border-bottom: 1px solid var(--card-border);
    padding: 32px 28px;
  }

  .pricing__right {
    padding: 32px 28px;
  }

  .guarantee {
    padding: 28px 24px;
    border-radius: 12px;
  }

  /* FAQ single column */
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq__header {
    position: static;
  }

  /* Testimonials stack */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* Audience cards already single col at 1024, stays single */

  /* Contact CTA */
  .contact-cta .container {
    padding: 40px 28px;
    border-radius: 16px;
  }

  /* Footer */
  .footer__links {
    flex-direction: column;
    gap: 4px;
  }

  .footer__links span {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE: max-width 480px
   ============================================================ */

@media (max-width: 480px) {
  .pain-point-card {
    flex: 1 1 100%;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }

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

  .pricing__new-price {
    font-size: 2.4rem;
  }
}

/* ============================================================
   ACCESSIBILITY: FOCUS VISIBLE
   ============================================================ */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 2px;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 0;
  border-radius: 4px;
}

/* ============================================================
   ACCESSIBILITY: REDUCED MOTION
   ============================================================ */

/* ============================================================
   COOKIE BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px;
  pointer-events: none;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner__content {
  pointer-events: auto;
  max-width: 420px;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.cookie-banner__content p:first-child {
  color: var(--text);
  margin-bottom: 8px;
}

.cookie-banner__buttons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.cookie-banner__btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid var(--card-border);
  transition: background 0.2s;
}

.cookie-banner__btn--reject {
  background: var(--card-bg);
  color: var(--text);
}

.cookie-banner__btn--reject:hover {
  background: #f0f0f0;
}

.cookie-banner__btn--accept {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.cookie-banner__btn--accept:hover {
  background: #333;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

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

.text-teal {
  color: var(--teal);
}

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

.mt-auto {
  margin-top: auto;
}
