/* =========================================================
   earners.pw/pw  — Physics Wallah Earners Unofficial Guide
   Stylesheet
   ========================================================= */

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

:root {
  --pw-orange: #ff6b00;
  --pw-orange-light: #ff8c38;
  --pw-dark: #0f172a;
  --pw-dark-2: #1e293b;
  --pw-dark-3: #334155;
  --pw-blue: #3b82f6;
  --pw-green: #22c55e;
  --pw-purple: #a855f7;
  --pw-yellow: #eab308;
  --pw-red: #ef4444;
  --pw-cyan: #06b6d4;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.13);
  --radius: 12px;
  --radius-lg: 20px;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--pw-orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--pw-orange-light); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--text-primary);
}

ul { list-style: none; }

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

/* ── Disclaimer Banner ── */
.disclaimer-banner {
  background: #fff3cd;
  border-bottom: 2px solid #ff6b00;
  color: #7c4a00;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.disclaimer-banner i { color: var(--pw-orange); }
.disclaimer-banner a { color: #b45309; font-weight: 700; }
.dismiss-btn {
  background: none; border: none; cursor: pointer; font-size: 1.1rem;
  color: #7c4a00; flex-shrink: 0; padding: 2px 6px; border-radius: 4px;
  transition: background var(--transition);
}
.dismiss-btn:hover { background: rgba(0,0,0,0.08); }

/* ── Header ── */
.site-header {
  background: var(--pw-dark);
  position: sticky;
  top: 0; /* below disclaimer */
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 40px; height: 40px;
  background: var(--pw-orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: white;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}
.brand-dot { color: var(--pw-orange); }
.brand-sub { font-size: 0.72rem; color: #94a3b8; display: block; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.header-nav a {
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all var(--transition);
}

.header-nav a:hover {
  color: var(--pw-orange);
  background: rgba(255,107,0,0.08);
}

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: white; font-size: 1.3rem;
}

/* ── Hero ── */
.hero-section {
  background: var(--pw-dark);
  background-image: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,107,0,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59,130,246,0.06) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(168,85,247,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--pw-orange-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: white;
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.2;
}

.highlight {
  background: linear-gradient(90deg, var(--pw-orange), var(--pw-orange-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 36px;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 8px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all var(--transition); border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--pw-orange);
  color: white;
  border-color: var(--pw-orange);
}
.btn-primary:hover {
  background: var(--pw-orange-light);
  border-color: var(--pw-orange-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,0,0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: white;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--pw-dark-2);
  color: white;
  border-color: var(--pw-dark-3);
}
.btn-dark:hover {
  background: var(--pw-dark-3);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--pw-dark);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  background: var(--bg-light);
  color: var(--pw-orange);
  border-color: var(--pw-orange);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pw-orange);
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.section:nth-child(even) {
  background: var(--bg-light);
}

.section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,107,0,0.1);
  color: var(--pw-orange);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ── Video Section ── */
.video-wrapper {
  max-width: 860px;
  margin: 0 auto 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
}

.video-wrapper iframe {
  width: 100%; height: 100%;
}

.video-caption {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.video-caption i { color: var(--pw-blue); }

/* ── About Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text h3 { margin-bottom: 16px; }
.about-text p { color: var(--text-secondary); margin-bottom: 16px; font-size: 0.98rem; }

.feature-list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: var(--text-primary); font-weight: 500;
}
.feature-list li i { color: var(--pw-green); font-size: 1rem; }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-card {
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.info-card i { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.info-card p { font-size: 0.85rem; opacity: 0.85; }

.card-blue { background: #eff6ff; color: #1d4ed8; }
.card-blue p { color: #3b82f6; }
.card-green { background: #f0fdf4; color: #166534; }
.card-green p { color: #16a34a; }
.card-orange { background: #fff7ed; color: #9a3412; }
.card-orange p { color: #ea580c; }
.card-purple { background: #faf5ff; color: #6b21a8; }
.card-purple p { color: #9333ea; }

/* ── Earners Section ── */
.earners-section { background: var(--pw-dark); }
.earners-section .section-tag {
  background: rgba(255,107,0,0.2);
  border: 1px solid rgba(255,107,0,0.3);
}
.earners-section .section-heading h2,
.earners-section .section-heading p { color: white; }
.earners-section .section-heading p { color: #94a3b8; }

.vision-block {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.founder-quote {
  background: rgba(255,107,0,0.08);
  border-left: 4px solid var(--pw-orange);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  margin-bottom: 12px;
  text-align: left;
}

.quote-mark {
  font-size: 5rem;
  color: var(--pw-orange);
  opacity: 0.3;
  position: absolute;
  top: -10px; left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.founder-quote p {
  font-size: 1.15rem;
  font-style: italic;
  color: #e2e8f0;
  line-height: 1.7;
  padding-left: 20px;
}

.founder-quote footer {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--pw-orange);
  font-weight: 600;
  padding-left: 20px;
}

.quote-translation {
  color: #64748b;
  font-size: 0.9rem;
  font-style: italic;
}

/* Pillars */
.earners-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}

.pillar:hover {
  background: rgba(255,107,0,0.06);
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 52px; height: 52px;
  background: rgba(255,107,0,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--pw-orange);
  margin-bottom: 16px;
}

.pillar h3 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pillar p {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Access Block */
.access-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.access-block h3 {
  color: white;
  margin-bottom: 24px;
  font-size: 1.2rem;
  display: flex; align-items: center; gap: 10px;
}

.access-block h3 i { color: var(--pw-orange); }

.access-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  counter-reset: steps;
}

.access-steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.step-num {
  width: 32px; height: 32px;
  background: var(--pw-orange);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.app-download-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Courses ── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.course-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition);
}

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

.course-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-color-1 { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.course-color-2 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.course-color-3 { background: linear-gradient(135deg, #ef4444, #dc2626); }
.course-color-4 { background: linear-gradient(135deg, #ec4899, #a855f7); }
.course-color-5 { background: linear-gradient(135deg, #22c55e, #16a34a); }
.course-color-6 { background: linear-gradient(135deg, #64748b, #475569); }

.course-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: white;
}

.course-num {
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.course-body { padding: 24px; }

.course-body h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}

.course-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.course-skills {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.course-skills li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.course-skills li i {
  color: var(--pw-orange);
  font-size: 0.6rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.course-outcome {
  background: #fff7ed;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  color: #9a3412;
}

.course-outcome i { color: var(--pw-orange); margin-top: 2px; flex-shrink: 0; }

.course-coming-soon { opacity: 0.85; }

.badge-soon {
  background: var(--pw-orange);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  vertical-align: middle;
}

/* ── Pricing ── */
.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.pricing-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  width: 340px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.pricing-featured {
  border-color: var(--pw-orange);
  box-shadow: 0 0 0 4px rgba(255,107,0,0.1), var(--shadow-md);
  transform: scale(1.02);
}

.pricing-featured:hover { transform: scale(1.02) translateY(-4px); }

.pricing-badge {
  display: inline-block;
  background: var(--bg-light);
  color: var(--text-secondary);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-badge-highlight {
  background: rgba(255,107,0,0.1);
  color: var(--pw-orange);
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--pw-orange);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 28px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-secondary);
}

.pricing-features li i { color: var(--pw-green); flex-shrink: 0; }

.pricing-note {
  max-width: 640px;
  margin: 0 auto;
  background: #fff7ed;
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: #92400e;
}

.pricing-note i { color: var(--pw-orange); margin-top: 2px; flex-shrink: 0; font-size: 1rem; }
.pricing-note p { margin: 0; }
.pricing-note a { color: var(--pw-orange); font-weight: 600; }

/* ── Quotes ── */
.quotes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.quote-item {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--pw-orange);
  transition: all var(--transition);
}

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

.quote-item p {
  font-size: 1rem;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 12px;
  font-weight: 500;
}

.quote-translation {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 8px;
}

/* ── Founder Section ── */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.founder-info h3, .founder-timeline h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.founder-info p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-size: 0.97rem;
}

.founder-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
}

.social-chip:hover { transform: translateY(-2px); opacity: 0.9; }

.youtube { background: #ff0000; color: white; }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.twitter { background: #000; color: white; }
.facebook { background: #1877f2; color: white; }
.telegram { background: #0088cc; color: white; }

/* Timeline */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 14px 0;
  position: relative;
}

.timeline-year {
  width: 60px;
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--pw-orange);
  flex-shrink: 0;
  padding-top: 2px;
}

.timeline-content {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  width: 10px; height: 10px;
  background: var(--pw-orange);
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--pw-orange);
}

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

/* ── Official Links ── */
.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.link-category {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.link-category:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.link-category h3 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pw-orange);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-list li a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.link-list li a:hover { color: var(--pw-orange); }

.link-list li a i {
  color: var(--pw-orange);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}

.faq-question::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--pw-orange);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

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

.faq-question:hover { background: #fff7ed; }
.faq-question[aria-expanded="true"] { color: var(--pw-orange); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

.faq-answer.open { display: block; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pw-orange);
}

.contact-icon {
  font-size: 2rem;
  color: var(--pw-orange);
  margin-bottom: 12px;
  display: block;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.contact-card a {
  display: block;
  color: var(--pw-orange);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── Footer ── */
.site-footer {
  background: var(--pw-dark);
  padding: 56px 0 32px;
}

.footer-disclaimer {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: rgba(255,193,7,0.06);
  border: 1px solid rgba(255,193,7,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
}

.disclaimer-icon {
  font-size: 2rem;
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 4px;
}

.disclaimer-text h3 {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 12px;
}

.disclaimer-text p {
  color: #94a3b8;
  font-size: 0.88rem;
  margin-bottom: 10px;
  line-height: 1.7;
}

.disclaimer-text a { color: #fbbf24; }

.takedown-notice {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 8px;
  padding: 12px 16px !important;
  color: #fca5a5 !important;
  font-weight: 500;
}

.takedown-notice a { color: #fca5a5 !important; }

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
}

.footer-bottom p {
  color: #475569;
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.footer-bottom a { color: #64748b; }
.footer-bottom a:hover { color: var(--pw-orange); }

.footer-url {
  font-family: var(--font-heading);
  font-size: 0.88rem !important;
  color: #334155 !important;
}

.footer-path { color: var(--pw-orange); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .links-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-cards { order: -1; }
  .founder-grid { grid-template-columns: 1fr; }
  .earners-pillars { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .nav-toggle { display: block; }

  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--pw-dark);
    padding: 12px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    z-index: 9999;
    gap: 4px;
    box-shadow: var(--shadow-lg);
  }

  .site-header { position: relative; top: 0; }
  .disclaimer-banner { position: relative; top: 0; }

  .section { padding: 56px 0; }
  .section-heading { margin-bottom: 36px; }

  .hero-section { padding: 56px 0 40px; }

  .courses-grid { grid-template-columns: 1fr; }
  .links-grid { grid-template-columns: 1fr; }
  .earners-pillars { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .footer-disclaimer { flex-direction: column; gap: 16px; }

  .pricing-card { width: 100%; max-width: 400px; }
  .pricing-featured { transform: none; }
}

@media (max-width: 480px) {
  .about-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .app-download-btns { flex-direction: column; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); display: grid; gap: 16px; }
  .founder-social { gap: 6px; }
}
