/* ===================================================
   LaLa GLOBAL LANGUAGE - Myanmar Language LP
   Design inspired by Burmese culture:
   - Gold (#D4A843) from pagodas
   - Deep Maroon (#8B2252) from monks' robes
   - Forest Green (#2E5D3A) from lush landscapes
   - Rounded shapes reflecting circular Burmese script
   =================================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Noto Serif JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  color: #2C2C2C;
  background: #FFFCF5;
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

/* --- CSS Variables --- */
:root {
  --gold: #D4A843;
  --gold-light: #E8C96A;
  --gold-dark: #B8912E;
  --maroon: #8B2252;
  --maroon-light: #A83267;
  --maroon-dark: #6B1A3F;
  --green: #2E5D3A;
  --green-light: #3D7A4D;
  --green-dark: #1E3F27;
  --dark: #1A1A2E;
  --dark-mid: #16213E;
  --cream: #FFFCF5;
  --cream-warm: #FFF8E7;
  --text: #2C2C2C;
  --text-light: #5A5A5A;
  --white: #FFFFFF;
  --max-width: 1000px;
  --section-padding: 80px 20px;
}

/* --- Burmese Font --- */
.hero-burmese,
.section-label-burmese {
  font-family: 'Padauk', 'Noto Sans Myanmar', sans-serif;
}

/* ===================================================
   HEADER
   =================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  border-bottom: 2px solid var(--gold);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 40px;
  transition: transform 0.3s;
}

.logo-img:hover {
  transform: scale(1.05);
}

.header-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s;
  letter-spacing: 0.02em;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--dark) 0%, var(--maroon-dark) 40%, var(--dark-mid) 100%);
  overflow: hidden;
  padding: 100px 20px 60px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 34, 82, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(46, 93, 58, 0.08) 0%, transparent 40%);
  z-index: 1;
}

/* Burmese script floating circles pattern */
.hero-bg-pattern::before {
  content: 'က ခ ဂ ဃ င စ ဆ ဇ ဈ ဉ ည ဋ ဌ ဍ ဎ ဏ တ ထ ဒ ဓ န ပ ဖ ဗ ဘ မ ယ ရ လ ဝ သ ဟ ဠ အ';
  position: absolute;
  inset: 0;
  font-family: 'Padauk', sans-serif;
  font-size: 2rem;
  color: rgba(212, 168, 67, 0.04);
  word-spacing: 1.5rem;
  line-height: 3;
  overflow: hidden;
  padding: 40px;
  animation: floatText 60s linear infinite;
}

@keyframes floatText {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 700px;
}

.hero-tagline {
  display: inline-block;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--gold-light);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}

.hero-title {
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero-title-sub {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.hero-burmese {
  font-family: 'Padauk', sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-shadow: 0 0 30px rgba(212, 168, 67, 0.3);
}

.hero-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 36px;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5);
}

.hero-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-top: 14px;
}

/* Pagoda Silhouettes */
.pagoda-silhouette {
  position: absolute;
  bottom: 0;
  z-index: 2;
  opacity: 0.06;
}

.pagoda-left {
  left: 2%;
  width: 120px;
  height: 200px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 35% 25%, 40% 25%, 30% 50%, 38% 50%, 20% 100%, 80% 100%, 62% 50%, 70% 50%, 60% 25%, 65% 25%);
}

.pagoda-right {
  right: 5%;
  width: 100px;
  height: 180px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 38% 20%, 42% 20%, 32% 45%, 40% 45%, 25% 100%, 75% 100%, 60% 45%, 68% 45%, 58% 20%, 62% 20%);
}

/* ===================================================
   SECTION COMMON
   =================================================== */
.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label-burmese {
  font-family: 'Padauk', sans-serif;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.5;
}

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

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.7);
}

/* ===================================================
   PROBLEM SECTION
   =================================================== */
.section-problem {
  background: var(--cream);
}

.problem-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border-left: 4px solid var(--maroon);
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.problem-icon {
  width: 48px;
  height: 48px;
  color: var(--maroon);
  margin-bottom: 16px;
}

.problem-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.problem-card-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===================================================
   AFFINITY SECTION
   =================================================== */
.section-affinity {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-mid) 100%);
  position: relative;
  overflow: hidden;
}

.section-affinity::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(212, 168, 67, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(139, 34, 82, 0.06) 0%, transparent 40%);
}

.affinity-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.affinity-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 2.2;
}

.affinity-text p {
  margin-bottom: 20px;
}

.affinity-text p:last-child {
  margin-bottom: 0;
  color: var(--gold-light);
  font-weight: 500;
}

/* ===================================================
   SOLUTION SECTION
   =================================================== */
.section-solution {
  background: var(--cream);
}

.solution-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-mid) 100%);
  border-radius: 16px;
  padding: 36px 28px;
  border-top: 4px solid var(--gold);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.solution-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(212, 168, 67, 0.2);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.solution-card-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.6;
}

.solution-card-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.solution-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.solution-tags li {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold-light);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  border: 1px solid rgba(212, 168, 67, 0.25);
}

/* ===================================================
   BENEFIT SECTION
   =================================================== */
.section-benefit {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--dark) 100%);
  position: relative;
}

.section-benefit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 168, 67, 0.05) 0%, transparent 50%);
}

.benefit-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px 24px;
  border-bottom: 3px solid var(--gold);
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Center last 2 items if 5 cards */
.benefit-grid > .benefit-card:nth-child(4) {
  grid-column: 1 / 2;
  justify-self: end;
  width: 100%;
}

.benefit-grid > .benefit-card:nth-child(5) {
  grid-column: 2 / 4;
  justify-self: start;
  width: calc(50% - 12px);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 16px;
}

.benefit-card-title {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-card-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.8;
}

/* ===================================================
   EVIDENCE SECTION
   =================================================== */
.section-evidence {
  background: var(--cream);
}

.stats-box {
  max-width: 700px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: center;
  gap: 40px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.testimonials {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--cream-warm);
  border-radius: 16px;
  padding: 32px 28px;
  border-left: 4px solid var(--gold);
  position: relative;
}

.testimonial-quote {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ===================================================
   PRICING SECTION
   =================================================== */
.section-pricing {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-mid) 100%);
}

.lesson-features {
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.lesson-feature {
  color: var(--gold-light);
  font-size: 0.9rem;
  background: rgba(212, 168, 67, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(212, 168, 67, 0.2);
}

.pricing-table-wrap {
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pricing-table thead {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
}

.pricing-table th {
  color: var(--white);
  font-weight: 600;
  padding: 16px 20px;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.pricing-table td {
  padding: 18px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table tbody tr {
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.3s;
}

.pricing-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.07);
}

.pricing-table tbody tr.popular {
  background: rgba(212, 168, 67, 0.08);
  border-left: 3px solid var(--gold);
}

.pricing-table td small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.popular-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  margin-left: 8px;
  vertical-align: middle;
}

.pricing-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-top: 20px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================
   OFFER SECTION
   =================================================== */
.section-offer {
  background: linear-gradient(160deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  position: relative;
  overflow: hidden;
}

.section-offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 168, 67, 0.1) 0%, transparent 40%);
}

.section-offer .section-title {
  color: var(--white);
}

.offer-grid {
  max-width: var(--max-width);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.offer-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.offer-card-label {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.offer-card-title {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.offer-card-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.offer-card-detail {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.offer-challenge {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.offer-challenge-inner {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  border: 2px solid var(--gold);
}

.offer-challenge-label {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.offer-challenge-title {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.offer-challenge-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.offer-challenge-price {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.offer-challenge-price strong {
  font-size: 2rem;
  font-weight: 700;
}

.offer-challenge-bonus {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.offer-challenge-bonus strong {
  color: var(--gold-light);
}

/* ===================================================
   NARROW SECTION
   =================================================== */
.section-narrow {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 40px 20px;
  border-top: 3px solid var(--gold);
}

.narrow-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.narrow-text {
  color: var(--gold-light);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.narrow-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ===================================================
   ACTION SECTION
   =================================================== */
.section-action {
  background: linear-gradient(160deg, var(--dark-mid) 0%, var(--dark) 50%, var(--maroon-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
}

.section-action::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(139, 34, 82, 0.06) 0%, transparent 40%);
}

.action-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.action-title {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}

.action-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.action-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  padding: 18px 56px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.3s;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.action-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(212, 168, 67, 0.5);
}

.action-note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin-top: 14px;
}

/* ===================================================
   FAQ SECTION
   =================================================== */
.section-faq {
  background: var(--cream);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

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

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(139, 34, 82, 0.08);
  color: var(--maroon);
  font-size: 1.2rem;
  font-weight: 400;
  transition: all 0.3s;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--maroon);
  color: var(--white);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.9;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--dark);
  position: relative;
}

.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--maroon) 0%, var(--gold) 50%, var(--green) 100%);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.footer-logo-img {
  height: 36px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
}

/* ===================================================
   SCROLL ANIMATIONS
   =================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 16px;
  }

  .hero {
    min-height: auto;
    padding: 120px 20px 60px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-burmese {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 0.85rem;
  }

  .hero-description br {
    display: none;
  }

  .hero-cta {
    padding: 14px 36px;
    font-size: 0.9rem;
  }

  .pagoda-silhouette {
    display: none;
  }

  .section-title {
    font-size: 1.4rem;
  }

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

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

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

  .benefit-grid > .benefit-card:nth-child(4),
  .benefit-grid > .benefit-card:nth-child(5) {
    grid-column: auto;
    justify-self: auto;
    width: 100%;
  }

  .stats-box {
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
  }

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

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

  .action-title {
    font-size: 1.4rem;
  }

  .action-cta {
    padding: 16px 40px;
    font-size: 0.95rem;
  }

  .affinity-text br {
    display: none;
  }

  .pricing-table {
    font-size: 0.8rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 10px;
  }

  .lesson-features {
    gap: 8px;
  }

  .lesson-feature {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.35rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .offer-challenge-inner {
    padding: 28px 20px;
  }

  .offer-challenge-price strong {
    font-size: 1.6rem;
  }
}
