/* ====================================
   PYQAPP - Clean Modern Stylesheet
   ==================================== */

:root {
  --primary: #4285f4;
  --primary-dark: #1a73e8;
  --secondary: #34a853;
  --text-dark: #202124;
  --text-medium: #5f6368;
  --text-light: #80868b;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #202124;
  --border: #dadce0;
  --shadow-sm: 0 1px 2px rgba(60,64,67,0.1);
  --shadow-md: 0 1px 3px rgba(60,64,67,0.15), 0 1px 2px rgba(60,64,67,0.1);
  --shadow-lg: 0 4px 6px rgba(60,64,67,0.1), 0 1px 3px rgba(60,64,67,0.08);
  --shadow-xl: 0 10px 20px rgba(60,64,67,0.1), 0 3px 6px rgba(60,64,67,0.05);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

/* ====================================
   HEADER - Clean & Professional
   ==================================== */

.header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.header-cta {
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.header-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ====================================
   HERO SECTION - Clean & Modern
   ==================================== */

.hero-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 3rem 1.5rem 2.5rem;
}

.hero-section .container {
  max-width: 800px;
}

.hero-section .hero-content {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero-tagline {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero-section h1 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.875rem;
  line-height: 1.2;
  color: var(--text-dark);
}

.hero-section h1 .highlight {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section .btn {
  margin: 0 0.375rem;
}

.hero-section .btn-primary {
  background: var(--primary);
  color: white;
}

.hero-section .btn-primary:hover {
  background: var(--primary-dark);
}

.hero-section .btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border);
}

.hero-section .btn-secondary:hover {
  background: var(--bg-light);
  border-color: var(--text-medium);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.stat-item {
  text-align: center;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  flex: 1;
  min-width: 80px;
}

.stat-item:not(:last-child) {
  border-right: 1px solid var(--border);
}

.stat-number {
  display: inline;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-dark);
  font-variant-numeric: tabular-nums;
}

.stat-plus {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-dark);
}

.live-count {
  color: #059669;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-medium);
  margin-top: 0.25rem;
}

/* Keep old hero styles for backwards compat */
.hero-compact {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 3rem 1.5rem;
  text-align: center;
  color: white;
}

.hero-compact .hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero-compact h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.hero-compact .tagline {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.hero-compact .btn-primary {
  background: var(--bg-white);
  color: #667eea;
}

/* Old Hero (keep for backwards compat) */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  color: white;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.hero .subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.95;
  margin-bottom: 0.5rem;
}

.hero .tagline {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.8);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* ====================================
   CONTAINER
   ==================================== */

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-medium);
  text-align: center;
  margin-bottom: 3rem;
}

/* ====================================
   WHY PYQAPP SECTION
   ==================================== */

.why-section {
  padding: 3rem 1.5rem;
  background: var(--bg-light);
}

.why-section .section-title {
  margin-bottom: 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: var(--bg-white);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.why-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-text h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.why-text p {
  font-size: 0.8125rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.4;
}

/* ====================================
   EXAMS SECTION
   ==================================== */

.exams-section {
  padding: 3rem 1.5rem;
  background: var(--bg-white);
}

.practice-section {
  padding: 4rem 1.5rem;
  background: var(--bg-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.feature-card.highlight {
  background: var(--bg-light);
  border-color: var(--primary);
  border-width: 2px;
}

.feature-card.highlight .feature-icon-wrapper .feature-icon {
  background: var(--primary);
  color: white;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.feature-icon-wrapper {
  margin-bottom: 1rem;
}

.feature-icon-wrapper .feature-icon {
  font-size: 2.5rem;
}

.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-medium);
  line-height: 1.5;
  margin: 0;
}

/* ====================================
   LEADERBOARD SECTION
   ==================================== */

.leaderboard-section {
  padding: 4rem 1.5rem;
  background: var(--bg-light);
}

.leaderboard-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

/* Podium */
.podium {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.podium-item {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid var(--border);
  min-width: 120px;
  transition: var(--transition);
}

.podium-item:hover {
  box-shadow: var(--shadow-md);
}

.podium-item.first {
  order: 2;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-color: #fbbf24;
  border-width: 2px;
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%);
}

.podium-item.second {
  order: 1;
  border-color: #94a3b8;
}

.podium-item.third {
  order: 3;
  border-color: #d97706;
}

.crown {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.podium-avatar {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 0.75rem;
}

.podium-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
}

.podium-item.first .podium-avatar img {
  border-color: #fbbf24;
}

.podium-item.second .podium-avatar img {
  border-color: #94a3b8;
}

.podium-item.third .podium-avatar img {
  border-color: #d97706;
}

.badge-premium {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-premium.gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
}

.badge-premium.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.podium-rank {
  width: 28px;
  height: 28px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 auto 0.5rem;
  color: var(--text-dark);
}

.podium-rank.gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
}

.podium-item h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
  color: var(--text-dark);
}

.podium-score {
  font-size: 0.8125rem;
  color: var(--text-medium);
  margin: 0;
}

/* Leaders List */
.leaders-list {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.leader-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.leader-row:last-child {
  border-bottom: none;
}

.leader-row:hover {
  background: var(--bg-light);
}

.leader-rank {
  width: 28px;
  height: 28px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
}

.leader-avatar {
  position: relative;
  width: 44px;
  height: 44px;
}

.leader-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.badge-premium-sm {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
}

.badge-premium-sm.gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
}

.badge-premium-sm.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.leader-info {
  flex: 1;
  min-width: 0;
}

.leader-info h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-dark);
}

.leader-info p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0;
}

.leader-score {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

/* ====================================
   FEATURES BANNER - Horizontal Scroll
   ==================================== */

.features-banner {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
}

.features-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.features-scroll::-webkit-scrollbar {
  display: none;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--bg-light);
  border-radius: 50px;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid var(--border);
}

.feature-icon {
  font-size: 1rem;
}

/* ====================================
   AI SECTION
   ==================================== */

.ai-section {
  padding: 4rem 1.5rem;
  background: var(--bg-light);
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.ai-feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.ai-feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.ai-feature-card.coming-soon {
  opacity: 0.7;
}

.ai-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.ai-feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.ai-feature-card p {
  font-size: 0.875rem;
  color: var(--text-medium);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.badge-available {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  background: #d1fae5;
  color: #065f46;
  text-transform: uppercase;
}

.badge-coming {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  background: #fef3c7;
  color: #92400e;
  text-transform: uppercase;
}

/* ====================================
   PRACTICE SECTION
   ==================================== */

.practice-section {
  padding: 4rem 1.5rem;
  background: var(--bg-white);
}

.practice-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.practice-step {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  transition: var(--transition);
}

.practice-step:hover {
  box-shadow: var(--shadow-md);
}

.practice-step.highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
}

.practice-step.highlight h3,
.practice-step.highlight p {
  color: white;
}

.practice-step.highlight p {
  opacity: 0.9;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.practice-step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}

.practice-step p {
  font-size: 0.8125rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.4;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--border);
}

/* ====================================
   EXAMS SECTION
   ==================================== */

.exams-section {
  padding: 4rem 1.5rem;
  background: var(--bg-light);
}

.exam-category {
  margin-bottom: 2.5rem;
}

.exam-category:last-child {
  margin-bottom: 0;
}

.category-header {
  margin-bottom: 1rem;
}

.category-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.category-header p {
  font-size: 0.875rem;
  color: var(--text-medium);
  margin: 0;
}

.exams-scroll-container {
  position: relative;
}

.exams-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.exams-scroll::-webkit-scrollbar {
  display: none;
}

.exam-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-white);
  padding: 0.625rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

.exam-chip:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}

.exam-chip img {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
}

.more-exams {
  font-size: 0.8125rem;
  color: var(--primary);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* ====================================
   APPS SECTION - Play Store Style
   ==================================== */

.apps-section {
  padding: 4rem 1.5rem;
  background: var(--bg-white);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.app-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
  background: var(--bg-white);
}

.app-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.app-icon-placeholder {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.app-card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-icon-wrapper {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-light);
}

.app-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-details {
  flex: 1;
}

.app-details h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.125rem;
}

.app-details p {
  font-size: 0.8125rem;
  color: var(--text-medium);
  margin-bottom: 0.375rem;
}

.app-rating {
  font-size: 0.8125rem;
  color: #fbbf24;
}

.app-rating span {
  color: var(--text-dark);
  font-weight: 600;
  margin-left: 0.25rem;
}

.play-badge {
  height: 40px;
  width: auto;
  margin-left: auto;
}

.play-store-badge {
  height: 48px;
  width: auto;
  margin-top: auto;
}

/* ====================================
   TESTIMONIALS - Clean Grid
   ==================================== */

.testimonials-section {
  padding: 5rem 1.5rem;
  background: var(--bg-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #fbbf24;
}

.testimonial-card .rating {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card .user-info {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-card .user-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .user-details h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.125rem;
}

.testimonial-card .user-details p {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin: 0;
}

/* ====================================
   FOOTER - Clean & Minimal
   ==================================== */

.footer {
  background: var(--bg-dark);
  color: white;
  padding: 3rem 1.5rem 2rem;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

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

.footer-copyright {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copyright p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ====================================
   RESPONSIVE
   ==================================== */

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.9375rem;
  }
  
  .hero-stats {
    gap: 0;
  }
  
  .stat-item {
    padding: 0.625rem 0.75rem;
  }
  
  .stat-number, .stat-plus {
    font-size: 1.125rem;
  }
  
  .stat-label {
    font-size: 0.6875rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-compact h1 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero .subtitle {
    font-size: 1.125rem;
  }
  
  .apps-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .ai-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .podium {
    gap: 0.5rem;
  }
  
  .podium-item {
    min-width: 100px;
    padding: 1rem 0.75rem;
  }
  
  .podium-avatar {
    width: 52px;
    height: 52px;
  }
  
  .podium-item h4 {
    font-size: 0.8125rem;
    max-width: 90px;
  }
  
  .practice-steps {
    flex-direction: column;
  }
  
  .step-connector {
    width: 2px;
    height: 20px;
  }
  
  .practice-step {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0.75rem 1rem;
  }
  
  .logo-img {
    width: 32px;
    height: 32px;
  }
  
  .logo-text {
    font-size: 1.125rem;
  }
  
  .header-cta {
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
  }
  
  .hero-section {
    padding: 2rem 1rem 1.5rem;
  }
  
  .hero-tagline {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
  }
  
  .hero-section h1 {
    font-size: 1.5rem;
  }
  
  .hero-section .btn {
    display: block;
    margin: 0.5rem auto;
    max-width: 200px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 0;
  }
  
  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  
  .stat-item:last-child {
    border-bottom: none;
  }
  
  .stat-label {
    display: inline;
    margin: 0;
    order: -1;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .why-item {
    padding: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .podium {
    flex-direction: column;
    align-items: center;
  }
  
  .podium-item {
    order: initial !important;
    width: 100%;
    max-width: 200px;
  }
  
  .podium-item.first {
    order: -1 !important;
  }
  
  .hero-compact {
    padding: 2rem 1rem;
  }
  
  .hero {
    padding: 3rem 1rem;
  }
  
  .hero-compact h1 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .ai-grid {
    grid-template-columns: 1fr;
  }
  
  .app-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }
  
  .app-card .app-icon {
    margin: 0 auto;
  }
  
  .app-details {
    width: 100%;
    text-align: center;
  }
  
  .play-badge {
    margin: 0.5rem auto 0;
  }
}