/* ============================================
   LaLa GLOBAL LANGUAGE - ウルドゥー語 LP
   Theme: Pakistani Green, Gold, Cream
   Cultural: Nastaliq script, Islamic geometric patterns
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --green-dark: #004225;
  --green-primary: #006233;
  --green-light: #01796f;
  --green-pale: #e8f5e9;
  --gold-primary: #c9a84c;
  --gold-light: #d4af37;
  --gold-dark: #8b7532;
  --cream: #fdf8f0;
  --cream-dark: #f5edd6;
  --white: #ffffff;
  --dark: #1a1a2e;
  --dark-text: #313131;
  --gray: #666;
  --gray-light: #e0e0e0;
  --red-accent: #c62828;
  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-urdu: "Noto Nastaliq Urdu", serif;
  --font-display: "Playfair Display", serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-ja);
  color: var(--dark-text);
  background: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.pc-only {
  display: inline;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  border-bottom: 3px solid var(--gold-primary);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-list a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  padding: 4px 0;
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--gold-primary);
  color: var(--dark) !important;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  transition: var(--transition);
}

.header-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201,168,76,0.4);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

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

/* Islamic geometric pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 25% 25%, var(--gold-primary) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, var(--gold-primary) 2px, transparent 2px),
    radial-gradient(circle at 50% 50%, var(--gold-primary) 1.5px, transparent 1.5px);
  background-size: 60px 60px, 60px 60px, 30px 30px;
  animation: patternDrift 30s linear infinite;
}

@keyframes patternDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,66,37,0.3) 100%),
    repeating-conic-gradient(
      from 0deg at 50% 50%,
      transparent 0deg 30deg,
      rgba(201,168,76,0.03) 30deg 60deg
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-sub {
  color: var(--gold-primary);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.hero-title {
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
}

.hero-accent {
  color: var(--gold-light);
  font-size: 3.2rem;
  display: inline-block;
  position: relative;
}

.hero-accent::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.hero-urdu {
  font-family: var(--font-urdu);
  color: var(--gold-light);
  font-size: 2.2rem;
  margin: 24px 0 8px;
  line-height: 1.6;
}

.hero-urdu-sub {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.hero-desc {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 36px;
}

/* Badges */
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

.badge {
  text-align: center;
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
}

.badge-label {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 4px;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-ja);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  padding: 18px 48px;
  font-size: 1.05rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--dark);
  border-radius: 50px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}

.btn-hero {
  animation: pulse-gold 2.5s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,168,76,0.3); }
  50% { box-shadow: 0 4px 30px rgba(201,168,76,0.6); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0.3; }
}

/* ============================================
   SECTIONS - Common
   ============================================ */
.section {
  padding: 80px 0;
  position: relative;
}

.section-urdu {
  font-family: var(--font-urdu);
  color: var(--gold-dark);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.8;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 48px;
  line-height: 1.5;
}

/* Gold ornament line */
.section-ornament {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 0 auto 20px;
}

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

.section-problem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold-primary), var(--green-primary));
}

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

.problem-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--green-primary);
}

.problem-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-text);
}

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

.section-affinity::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z' fill='none' stroke='%23C9A84C' stroke-width='1'/%3E%3Cpath d='M40 10L70 40L40 70L10 40Z' fill='none' stroke='%23C9A84C' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

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

.affinity-deco {
  font-family: var(--font-urdu);
  color: var(--gold-primary);
  font-size: 1.8rem;
  margin-bottom: 12px;
  opacity: 0.7;
  line-height: 1.8;
}

.section-affinity .section-title {
  color: var(--white);
  margin-bottom: 28px;
}

.affinity-text {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 2;
}

.affinity-text strong {
  color: var(--gold-light);
}

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

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

.solution-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold-primary));
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.solution-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-primary);
  opacity: 0.4;
  margin-bottom: 12px;
}

.solution-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--green-primary);
}

.solution-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--dark);
}

.solution-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================================
   BENEFIT
   ============================================ */
.section-benefit {
  background: var(--white);
}

.benefit-grid {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow-sm);
}

.benefit-before,
.benefit-after {
  flex: 1;
}

.benefit-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.benefit-before .benefit-label {
  background: var(--gray-light);
  color: var(--gray);
}

.benefit-after .benefit-label {
  background: var(--green-primary);
  color: var(--white);
}

.benefit-before p,
.benefit-after p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.benefit-before p {
  color: var(--gray);
}

.benefit-after p {
  color: var(--dark);
  font-weight: 500;
}

.benefit-arrow {
  width: 24px;
  flex-shrink: 0;
  color: var(--gold-primary);
}

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

.section-evidence::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--green-primary), var(--gold-primary));
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-meta {
  font-size: 0.8rem;
  color: var(--gray);
}

.testimonial-stars {
  color: var(--gold-primary);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--dark-text);
}

/* ============================================
   CONTENTS (Pricing)
   ============================================ */
.section-contents {
  background: var(--white);
}

.lesson-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.lesson-info-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--cream-dark);
}

.lesson-info-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 4px;
}

.lesson-info-value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-primary);
}

.pricing-subtitle {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--dark);
}

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

.pricing-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--cream-dark);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-popular {
  border-color: var(--gold-primary);
  transform: scale(1.03);
}

.pricing-popular:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: 12px;
  right: -28px;
  background: var(--gold-primary);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
}

.pricing-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  padding: 24px 20px;
  text-align: center;
}

.pricing-header h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.pricing-duration {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
}

.pricing-body {
  padding: 28px 20px;
  text-align: center;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
}

.pricing-per {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.pricing-features {
  text-align: left;
}

.pricing-features li {
  font-size: 0.88rem;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  color: var(--dark-text);
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-primary);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  margin-bottom: 36px;
}

.pricing-note p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.8;
}

/* Challenge Box */
.challenge-box {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  border-radius: var(--radius-lg);
  padding: 4px;
}

.challenge-inner {
  background: linear-gradient(135deg, rgba(0,66,37,0.95), rgba(0,98,51,0.95));
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(201,168,76,0.3);
}

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

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

.challenge-price {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}

.challenge-price span {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-left: 8px;
}

.challenge-note {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  margin-top: 12px;
}

/* ============================================
   OFFER
   ============================================ */
.section-offer {
  background: var(--cream);
}

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

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

.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  border: 2px solid var(--gold-primary);
  transition: var(--transition);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.offer-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--gold-primary);
}

.offer-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.offer-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

.offer-card strong {
  color: var(--red-accent);
  font-size: 1.1rem;
}

/* ============================================
   NARROW
   ============================================ */
.section-narrow {
  background: var(--white);
}

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

.narrow-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.narrow-item:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-sm);
}

.narrow-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.narrow-item p {
  font-size: 0.9rem;
  color: var(--dark-text);
}

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

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

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}

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

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

.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold-primary);
  transition: transform var(--transition);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

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

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

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

/* ============================================
   ACTION (CTA)
   ============================================ */
.section-action {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-primary) 50%, var(--green-light) 100%);
  position: relative;
  overflow: hidden;
}

.section-action::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='20' fill='none' stroke='%23C9A84C' stroke-width='0.5'/%3E%3Ccircle cx='30' cy='30' r='12' fill='none' stroke='%23C9A84C' stroke-width='0.5'/%3E%3Cpath d='M30 10L30 50M10 30L50 30' stroke='%23C9A84C' stroke-width='0.3'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

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

.action-urdu {
  font-family: var(--font-urdu);
  color: var(--gold-light);
  font-size: 1.8rem;
  line-height: 1.8;
}

.action-urdu-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  margin-bottom: 20px;
}

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

.action-desc {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Steps */
.action-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.action-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 8px;
}

.action-step p {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
}

.action-step-arrow {
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
  margin-top: -20px;
}

.btn-action {
  font-size: 1.15rem;
  padding: 20px 56px;
}

.action-response {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-top: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(2);
}

.footer-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

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

.footer-border {
  height: 2px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold-primary), var(--green-primary));
  margin-bottom: 20px;
  opacity: 0.5;
}

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

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

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .solution-grid,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-popular {
    transform: none;
  }

  .pricing-popular:hover {
    transform: translateY(-4px);
  }

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

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }

  /* Header */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--green-dark);
    padding: 80px 32px 32px;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Hero */
  .hero {
    min-height: 100svh;
    padding: 90px 20px 60px;
  }

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

  .hero-accent {
    font-size: 2rem;
  }

  .hero-urdu {
    font-size: 1.5rem;
  }

  .hero-badges {
    gap: 16px;
  }

  .badge-num {
    font-size: 1.8rem;
  }

  .btn-primary {
    padding: 16px 36px;
    font-size: 0.95rem;
  }

  /* Sections */
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 36px;
  }

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

  /* Problem */
  .problem-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  /* Benefit */
  .benefit-card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 24px 20px;
  }

  .benefit-arrow {
    transform: rotate(90deg);
  }

  /* Offer */
  .offer-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  /* Narrow */
  .narrow-grid {
    grid-template-columns: 1fr;
  }

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

  .action-steps {
    gap: 8px;
  }

  .action-step-arrow {
    display: none;
  }

  .action-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .btn-action {
    font-size: 1rem;
    padding: 18px 40px;
  }

  /* Lesson info */
  .lesson-info {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Challenge */
  .challenge-inner {
    padding: 32px 20px;
  }

  .challenge-price span {
    font-size: 1.5rem;
  }
}

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

  .hero-accent {
    font-size: 1.7rem;
  }

  .hero-badges {
    flex-direction: column;
    gap: 12px;
  }

  .badge {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .badge-num {
    font-size: 1.6rem;
  }

  .badge-label {
    text-align: left;
  }

  .lesson-info {
    grid-template-columns: 1fr;
  }
}
