/* Base Reset & Variables */
:host {
  --primary-color: #FF4338;
  --primary-hover: #E0352B;
  --text-dark: #1F2937;
  --text-gray: #4B5563;
  --text-light: #9CA3AF;
  --bg-light: #FFF9F8;
  --white: #FFFFFF;
  --border-radius: 12px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --fs-eyebrow: 0.75rem;
  --fs-body-sm: 0.9375rem;
  --fs-body: 1rem;
  --fs-body-lg: 1.125rem;
  --fs-subtitle: 1.25rem;
  --fs-h3: 1.5rem;
  --fs-h2: clamp(2.25rem, 4vw, 2.875rem);
  --fs-h1: clamp(3rem, 6vw, 4.5rem);
}

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

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.65;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  overflow-x: hidden;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h1 {
  line-height: 1.05;
}

h2 {
  line-height: 1.12;
}

h3 {
  line-height: 1.2;
}

h4,
h5 {
  line-height: 1.3;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(255, 67, 56, 0.39);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

.btn-white-red {
  background: #ffffff;
  color: var(--primary-color);
  border: 1px solid rgba(255, 67, 56, 0.2);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.btn-white-red:hover {
  background: #ffffff;
  color: var(--primary-hover);
  border-color: rgba(255, 67, 56, 0.35);
  transform: translateY(-2px);
}

@media (hover: none), (pointer: coarse) {
  .btn,
  .hero-cta,
  .final-cta-button {
    transition: none;
  }

  .btn-primary:hover,
  .btn-white-red:hover,
  .btn-outline:hover {
    transform: none;
  }
}

/* Layout Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

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

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: var(--fs-h2);
  margin-bottom: 20px;
  color: #111;
  line-height: 1.12;
}

.section-header p {
  font-size: var(--fs-subtitle);
  color: var(--text-gray);
  line-height: 1.5;
}

/* 1. Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  max-height: 800px;
  height: 80vh;
  background: url('https://filemanager-static01.italki.com/260401153048French-test-hero.jpg')
    72% center/cover no-repeat;
  display: flex;
  align-items: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-left: clamp(-640px, -36vw, -348px);
}

.hero h1 {
  font-size: clamp(2.6rem, 4.8vw, 3.9rem);
  margin-bottom: 24px;
  line-height: 1.08;
  max-width: 520px;
}

.hero p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 32px;
  opacity: 0.9;
  font-weight: 300;
  max-width: 520px;
}

@media (max-width: 900px) {
  .hero-content {
    margin-left: 0;
  }
}

/* 2. Why Learn Canadian French */
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

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

.card-icon {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-icon i {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.card-icon h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.card-icon p {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 15px;
  flex-grow: 1;
}

.card-problem {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-problem i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 24px;
}

.card-problem h3 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.card-problem p {
  font-size: var(--fs-body);
  color: var(--text-gray);
  line-height: 1.6;
}

/* 3. Problem Section */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 1.125rem;
  color: var(--text-gray);
}

.problem-list i {
  color: var(--primary-color);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* 4. Social Proof Strip */
.stats-strip {
  background-color: var(--bg-light);
  padding: 40px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-number {
  font-size: 1.875rem;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.1;
}

.stat-item p {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-gray);
}

/* 5. Inspirational Journey */
.journey-section {
  background: url('https://filemanager-static01.italki.com/260401153204260327023626French-tests-Imagine-What-Happens-After-CLB-7-%E8%83%8C%E6%99%AF%E5%9B%BE.jpg')
    center/cover no-repeat fixed;
  position: relative;
  color: white;
  padding: 180px 0;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
  margin-top: 50px;
}

.journey-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 45px 35px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.journey-icon {
  font-size: 72px;
  color: #ffffff;
  opacity: 0.95;
  margin-bottom: 20px;
  display: inline-block;
}

.journey-card p {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
}

/* 8. Program Details */

/* 9. Teacher Section */
.teacher-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.teacher-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
  padding-bottom: 24px;
}

.teacher-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.teacher-info {
  padding: 20px;
}

.teacher-info p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 20px;
  min-height: 80px;
}

.teacher-info h3 {
  margin-bottom: 8px;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-dark);
}

.bonus-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #F8F9FA;
}

/* 11. Pricing */
.pricing-card {
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 60px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: 2px solid var(--primary-color);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

.price-tag {
  font-size: 64px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 20px 0;
}

.price-sub {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 30px;
}

/* 12. Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.quote-icon {
  font-size: 40px;
  color: #ffddd9;
  position: absolute;
  top: 20px;
  left: 20px;
}

.student-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.student-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.program-fit-grid {
  padding: 12px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.program-fit-media {
  border-radius: 18px;
  overflow: hidden;
  min-height: 100%;
}

.program-fit-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.program-fit-content {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}

.program-fit-content .btn {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 1rem;
}

.program-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: 44px;
}

.program-details-copy,
.program-details-media {
  min-width: 0;
}

.program-details-intro {
  font-size: 1.75rem;
  line-height: 1.35;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 34px;
}

.program-details-image {
  width: 100%;
  height: 920px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  display: block;
  box-shadow: var(--shadow-lg);
}

.offer-split {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
}

.offer-panel {
  flex: 1 1 360px;
  min-width: 0;
  border-radius: 24px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.offer-panel-light {
  background-color: #ffffff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e9ecef;
}

.offer-panel-dark {
  background-color: #0b192c;
  box-shadow: 0 15px 30px rgba(11, 25, 44, 0.2);
}

.offer-title {
  font-size: var(--fs-h2);
  font-weight: bold;
  color: #1e2022;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  line-height: 1.1;
}

.subjectline-heading {
  font-size: 1.5rem;
  line-height: 1.35;
}

.subjectline-heading-compact {
  font-size: 1rem;
  line-height: 1.35;
}

.card-heading {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 8px;
}

.offer-subtitle {
  font-size: var(--fs-subtitle);
  font-weight: 500;
  color: #6c757d;
  line-height: 1.5;
}

.offer-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.offer-benefit-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.offer-benefit-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: #1e2022;
  line-height: 1.4;
  min-width: 0;
  overflow-wrap: anywhere;
}

/* 14. Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.comparison-table th {
  background: #f9fafb;
  font-weight: 700;
  font-size: 18px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  padding-left: 40px;
  font-weight: 600;
}

.comparison-table .highlight-col {
  background: #fff5f4;
  color: var(--primary-color);
  font-weight: 700;
  border-left: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}

.comparison-table tr:last-child .highlight-col {
  border-bottom: 2px solid var(--primary-color);
}

.comparison-table th.highlight-col {
  border-top: 2px solid var(--primary-color);
}

/* 15 & 16. Accordion/Expandable */
.accordion-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-list {
  display: grid;
  gap: 16px;
}

.accordion-header {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-weight: 600;
  font-size: 1.0625rem;
}

.accordion-title {
  flex: 1;
  line-height: 1.5;
}

.accordion-content {
  padding: 0 24px 24px;
  color: var(--text-gray);
  display: none;
  line-height: 1.7;
}

.accordion-content p {
  margin: 0;
}

.accordion-content p + p {
  margin-top: 14px;
}

.accordion-item.open .accordion-content {
  display: block;
}

.accordion-item.open .accordion-header {
  color: var(--primary-color);
}

/* 17. Support */
.support-img {
  width: 100%;
  border-radius: 16px;
}

/* Footer CTA */
.final-cta {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
  text-align: center;
  padding: 120px 0;
}

.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 24px;
}

.final-cta p {
  font-size: 1.25rem;
  margin-bottom: 50px;
  opacity: 0.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-logo-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.hero-logo {
  display: block;
  width: auto;
  height: 48px;
  max-width: 180px;
}

.hero-description {
  max-width: 760px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-point-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 15px;
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero-cta {
  padding: 20px 38px;
  font-size: 20px;
  box-shadow: 0 12px 32px rgba(255, 67, 56, 0.42);
}

.hero-cta-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.stats-strip-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.stats-strip-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stats-strip-copy {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 600;
}

.problem-support-copy {
  text-align: center;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
}

.problem-closing-copy {
  text-align: center;
  max-width: 820px;
  margin: 48px auto 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  color: var(--text-dark);
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 48px;
}

.how-it-works-eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.how-it-works-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: 16px;
}

.how-it-works-copy {
  font-size: var(--fs-body-lg);
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
}

.how-stages-grid {
  display: grid;
  gap: 32px;
  align-items: stretch;
}

.how-stages-grid-top {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 32px;
}

.how-stages-grid-bottom {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  justify-content: center;
  max-width: 860px;
  margin: 0 auto 40px;
}

.how-stage-card {
  padding: 28px;
  background-color: #f8f9ff;
  border-radius: 16px;
  border: 1px solid #e8ecff;
  display: flex;
  flex-direction: column;
}

.how-stage-heading {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.how-stage-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-right: 16px;
  flex-shrink: 0;
}

.how-stage-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.how-stage-subtitle {
  font-size: var(--fs-body);
  color: var(--text-gray);
  font-weight: 500;
  margin-bottom: 16px;
}

.how-stage-points {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  flex-grow: 1;
}

.how-stage-point {
  font-size: var(--fs-body-sm);
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.how-stage-conclusion {
  font-size: var(--fs-body-sm);
  color: var(--text-dark);
  font-style: italic;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

.pricing-support-copy {
  font-size: 18px;
  color: var(--text-gray);
  margin-top: 12px;
}

.pricing-shell {
  max-width: 500px;
  margin: 0 auto;
}

.pricing-card-shell {
  position: relative;
  padding: 40px;
  background-color: white;
  border: 2px solid var(--primary-color);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-pill-note {
  position: absolute;
  top: -16px;
  right: 32px;
  background-color: #2a3b52;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.pricing-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 20px;
  color: var(--text-dark);
}

.pricing-card-price {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-card-unit {
  font-size: 15px;
  color: var(--text-gray);
  margin-top: 8px;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: nowrap;
}

.pricing-card-unit-inline {
  margin-top: 0;
  white-space: nowrap;
}

.pricing-card-copy {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 500;
}

.comparison-shell {
  margin-top: 40px;
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 18px;
}

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

.final-cta-button {
  padding: 22px 52px;
  font-size: 1.125rem;
  box-shadow: 0 14px 32px rgba(255, 67, 56, 0.38);
}

/* Responsive */
@media (max-width: 1440px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }

  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

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

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

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

  .program-fit-grid,
  .program-details-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .program-details-image {
    height: 640px;
  }

  .offer-split {
    gap: 24px;
    padding: 24px 20px 0;
  }

  .offer-panel {
    padding: 40px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 52px 0;
  }

  .hero {
    min-height: 56vh;
    height: 56vh;
    background-position: 62% center;
  }

  .hero-content {
    padding: 16px;
  }

  .hero h1 {
    font-size: clamp(24px, 6vw, 42px);
    margin-bottom: 16px;
  }

  .hero p {
    font-size: clamp(14px, 3vw, 18px);
    margin-bottom: 24px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 16px;
  }

  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .card-icon {
    padding: 20px;
  }

  .card-icon h3 {
    font-size: 18px;
  }

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

  .problem-list li {
    font-size: 16px;
    gap: 12px;
  }

  .problem-list i {
    font-size: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-item p {
    font-size: 12px;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .journey-section {
    background-attachment: scroll;
    min-height: auto;
    padding: 96px 0;
    background-position: 58% center;
  }

  .journey-card {
    padding: 24px 20px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
  }

  .journey-icon {
    font-size: 52px;
  }

  .journey-card p {
    font-size: 16px;
  }

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

  .teacher-card,
  .testimonial-card,
  .pricing-card,
  .offer-panel,
  .accordion-item,
  .comparison-shell {
    box-shadow: var(--shadow-sm);
  }

  .teacher-img {
    height: 200px;
  }

  .teacher-info {
    padding: 18px;
  }

  .teacher-info p {
    font-size: 14px;
    min-height: auto;
  }

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

  .testimonial-card {
    padding: 24px 16px;
  }

  .quote-icon {
    font-size: 32px;
  }

  .student-img {
    width: 50px;
    height: 50px;
  }

  .program-fit-grid,
  .program-details-grid {
    gap: 20px;
  }

  .program-fit-image {
    min-height: 300px;
  }

  .program-fit-content .btn {
    padding: 16px 22px;
  }

  .program-details-image {
    height: 320px;
  }

  .program-details-intro {
    font-size: 1.35rem;
    margin-bottom: 24px;
  }

  .offer-split {
    padding: 12px 16px 0;
    gap: 20px;
  }

  .offer-panel {
    padding: 28px 22px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
  }

  .offer-subtitle {
    font-size: 1rem;
  }

  .offer-benefits {
    gap: 22px;
  }

  .offer-benefit-item {
    align-items: flex-start;
    gap: 14px;
  }

  .offer-benefit-text {
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
    font-size: 14px;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    padding-left: 12px;
  }

  .section-header h2,
  .offer-title,
  .how-it-works-title,
  .journey-title,
  .final-cta h2 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 16px;
    white-space: normal;
  }

  .subjectline-heading {
    font-size: 1.25rem;
    line-height: 1.35;
  }

  .subjectline-heading-compact {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .card-heading,
  .how-stage-title,
  .card-icon h3,
  .card-problem h3 {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .section-header p {
    font-size: 16px;
  }

  .pricing-card {
    padding: 40px 24px;
    box-shadow: var(--shadow-md);
  }

  .price-tag {
    font-size: 48px;
  }

  .price-sub {
    font-size: 18px;
  }

  .accordion-item {
    margin-bottom: 12px;
  }

  .accordion-list {
    gap: 12px;
  }

  .accordion-header {
    padding: 18px 16px;
    font-size: 16px;
    gap: 14px;
  }

  .accordion-content {
    padding: 0 16px 16px;
  }

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

  .final-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .hero-logo-wrap {
    margin-bottom: 16px;
  }

  .hero-logo {
    height: 40px;
    max-width: 156px;
  }

  .hero-points {
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero-point-pill {
    font-size: 14px;
    padding: 10px 12px;
  }

  .hero-cta {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 18px;
  }

  .hero-cta-note {
    font-size: 13px;
  }

  .stats-strip-copy {
    font-size: 16px;
  }

  .problem-support-copy,
  .problem-closing-copy {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 32px;
  }

  .problem-closing-copy {
    margin-top: 32px;
  }

  .how-it-works-header {
    margin-bottom: 36px;
  }

  .how-it-works-copy {
    font-size: 1rem;
  }

  .how-stages-grid,
  .how-stages-grid-top,
  .how-stages-grid-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: none;
    margin: 0 0 20px;
  }

  .how-stage-card {
    padding: 22px 18px;
  }

  .how-stage-title {
    font-size: 1.2rem;
  }

  .how-stage-subtitle {
    font-size: 0.98rem;
  }

  .pricing-support-copy {
    font-size: 16px;
  }

  .pricing-card-shell {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .pricing-pill-note {
    position: static;
    display: inline-block;
    margin-bottom: 14px;
  }

  .pricing-card-price {
    font-size: 40px;
  }

  .pricing-price-row {
    gap: 10px;
  }

  .pricing-card-unit-inline {
    font-size: 16px;
  }

  .comparison-shell {
    padding: 10px;
    border-radius: 18px;
  }

  .final-cta-button {
    width: 100%;
    padding: 18px 20px;
    font-size: 1rem;
  }

  .journey-title {
    font-size: clamp(1.75rem, 4vw, 2.35rem) !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .section {
    padding: 36px 0;
  }

  .hero {
    min-height: 640px;
    height: auto;
    padding: 24px 0 36px;
    align-items: flex-start;
    background-position: 64% center;
  }

  .hero-content {
    padding: 10px;
    margin-left: 0;
  }

  .hero h1 {
    font-size: 34px;
    margin-bottom: 12px;
    line-height: 1.12;
  }

  .hero-logo-wrap {
    margin-bottom: 14px;
  }

  .hero-logo {
    height: 34px;
    max-width: 132px;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .hero-points {
    gap: 8px;
    margin-bottom: 18px;
  }

  .hero-point-pill {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 9px 12px;
  }

  .hero-cta {
    font-size: 16px;
    padding: 16px 18px;
  }

  .hero-cta-note {
    font-size: 12px;
    max-width: 100%;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    max-width: none;
  }

  .grid-5 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .grid-4 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-icon {
    padding: 16px;
  }

  .card-icon i {
    font-size: 28px;
  }

  .card-icon h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .card-icon p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .two-col {
    gap: 24px;
  }

  .problem-img {
    border-radius: 12px;
  }

  .problem-list li {
    font-size: 14px;
    gap: 10px;
    margin-bottom: 16px;
  }

  .problem-list i {
    font-size: 18px;
    margin-top: 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-item p {
    font-size: 11px;
  }

  .stats-strip {
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }

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

  .journey-section {
    padding: 72px 0;
    background-position: 60% center;
  }

  .journey-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .journey-icon {
    font-size: 48px;
    margin-bottom: 12px;
  }

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

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

  .teacher-card {
    padding-bottom: 16px;
  }

  .teacher-img {
    height: 168px;
  }

  .teacher-info {
    padding: 12px;
  }

  .teacher-info p {
    font-size: 14px;
    min-height: auto;
  }

  .testimonial-card {
    padding: 16px 12px;
  }

  .quote-icon {
    font-size: 28px;
    top: 12px;
    left: 12px;
  }

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

  .accordion-header {
    padding: 18px 14px;
  }

  .student-img {
    width: 45px;
    height: 45px;
  }

  .student-profile {
    gap: 12px;
    align-items: flex-start;
  }

  .program-fit-grid,
  .program-details-grid {
    gap: 20px;
  }

  .program-fit-image {
    min-height: 220px;
  }

  .program-details-image {
    height: 240px;
    border-radius: 16px;
  }

  .program-details-intro {
    font-size: 1.15rem;
    margin-bottom: 20px;
  }

  .offer-split {
    padding: 8px 12px 0;
    gap: 16px;
  }

  .offer-panel {
    padding: 20px 14px;
    border-radius: 18px;
    flex-basis: 100%;
  }

  .offer-benefits {
    gap: 18px;
  }

  .offer-benefit-text {
    display: block;
    font-size: 0.98rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .comparison-shell {
    margin-top: 24px;
    padding: 8px;
    border-radius: 16px;
  }

  .comparison-table-mobile {
    min-width: 560px !important;
  }

  .comparison-table {
    font-size: 12px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 6px;
    font-size: 12px;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    padding-left: 8px;
    font-size: 12px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2,
  .offer-title,
  .how-it-works-title,
  .journey-title,
  .final-cta h2 {
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.15;
    white-space: normal;
  }

  .subjectline-heading {
    font-size: 1.1rem;
    line-height: 1.35;
  }

  .subjectline-heading-compact {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .card-heading,
  .how-stage-title,
  .card-icon h3,
  .card-problem h3 {
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .section-header p {
    font-size: 14px;
    line-height: 1.55;
  }

  .pricing-card {
    padding: 28px 14px;
    margin: 0 auto;
    max-width: 100%;
  }

  .pricing-badge {
    padding: 6px 16px;
    font-size: 12px;
    top: -12px;
  }

  .price-tag {
    font-size: 40px;
    margin: 16px 0;
  }

  .price-sub {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .accordion-item {
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .accordion-list {
    gap: 10px;
  }

  .accordion-header {
    padding: 14px;
    font-size: 14px;
    gap: 12px;
  }

  .accordion-content {
    padding: 0 14px 14px;
    font-size: 13px;
  }

  .accordion-content p + p {
    margin-top: 12px;
  }

  .final-cta {
    padding: 60px 0;
  }

  .final-cta p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .support-img {
    border-radius: 12px;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-logo-wrap {
    margin-bottom: 12px;
  }

  .hero-logo {
    height: 32px;
    max-width: 124px;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-point-pill {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 9px 12px;
  }

  .hero-cta {
    font-size: 16px;
    padding: 15px 16px;
  }

  .hero-cta-note {
    font-size: 12px;
  }

  .stats-strip-intro {
    margin-bottom: 20px;
  }

  .stats-strip-copy {
    font-size: 15px;
    line-height: 1.5;
  }

  .problem-support-copy,
  .problem-closing-copy {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .problem-closing-copy {
    margin-top: 24px;
  }

  .how-it-works-header {
    margin-bottom: 28px;
  }

  .how-stage-card {
    padding: 18px 14px;
  }

  .how-stage-heading {
    gap: 12px;
  }

  .how-stage-number {
    width: 34px;
    height: 34px;
    font-size: 16px;
    margin-right: 0;
  }

  .how-stage-title {
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .how-stage-subtitle,
  .how-stage-point,
  .how-stage-conclusion {
    font-size: 0.9rem;
  }

  .student-profile {
    align-items: flex-start;
  }

  .pricing-shell {
    max-width: 100%;
  }

  .pricing-card-shell {
    padding: 22px 14px;
    border-radius: 16px;
  }

  .pricing-card-title {
    font-size: 19px;
  }

  .pricing-card-price {
    font-size: 34px;
  }

  .pricing-card-unit,
  .pricing-card-copy {
    font-size: 14px;
  }

  .pricing-price-row {
    gap: 8px;
  }

  .pricing-card-unit-inline {
    font-size: 14px;
  }

  .bonus-stack {
    gap: 22px !important;
  }

  .bonus-card {
    padding: 24px !important;
    gap: 14px !important;
  }

  .bonus-icon-wrap {
    width: 46px !important;
    height: 46px !important;
    border-radius: 12px !important;
  }

  .bonus-icon {
    width: 20px !important;
    height: 20px !important;
  }

  .bonus-copy {
    gap: 8px !important;
  }

  .bonus-title {
    font-size: 1.15rem !important;
    line-height: 1.28 !important;
  }

  .bonus-description {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .comparison-shell {
    margin-top: 24px;
    padding: 8px;
    border-radius: 16px;
  }

  .final-cta-button {
    width: 100%;
    padding: 16px 18px;
    font-size: 1rem;
  }

  .journey-title {
    font-size: 24px !important;
    line-height: 1.15 !important;
    white-space: normal !important;
  }
}

