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

:root {
  --primary: #d4a574;
  --flame: #ff6b35;
  --dark: #1a1a1a;
  --light: #f5f5f5;
  --accent: #e8a745;
  --text: #2c2c2c;
  --sacred-gold: #c9a961;
  --divine-blue: #1e3a5f;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Spiritual texture and light rays background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    /* Cathedral light rays */
    linear-gradient(90deg, transparent 0%, rgba(212, 165, 116, 0.03) 25%, transparent 50%, rgba(212, 165, 116, 0.03) 75%, transparent 100%),
    /* Divine vertical light */
    linear-gradient(180deg, rgba(212, 165, 116, 0.02) 0%, transparent 30%, transparent 70%, rgba(212, 165, 116, 0.01) 100%),
    /* Gold glow left */
    radial-gradient(ellipse at 20% 50%, rgba(212, 165, 116, 0.04) 0%, transparent 50%),
    /* Flame glow right */
    radial-gradient(ellipse at 80% 30%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
    /* Ancient manuscript texture - subtle noise */
    repeating-linear-gradient(0deg, rgba(212, 165, 116, 0.008) 0px, rgba(212, 165, 116, 0.004) 1px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.85;
}

.burning-bush {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: rgba(26, 26, 26, 0.95);
}

/* Header */
.header {
  background: linear-gradient(180deg, rgba(212, 165, 116, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  border-bottom: 2px solid var(--primary);
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.header-content {
  position: relative;
  z-index: 2;
}

.header h1 {
  font-size: 3rem;
  color: var(--primary);
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.tagline {
  font-size: 1.2rem;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.btn-upgrade {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
}

.btn-upgrade:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.6);
}

/* Main Container */
.container {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

@media (max-width: 1024px) {
  .container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .scripture-sidebar {
    order: 2;
  }
}

/* Flame Background Effect */
.flame-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.03;
}

.flame {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, var(--flame), transparent);
  animation: flicker 4s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 0.03; }
  50% { opacity: 0.08; }
}

/* Conversation Panel */
.conversation-panel {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.messages {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: white;
  max-height: 60vh;
}

.message {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message-content {
  padding: 1.5rem;
  border-radius: 8px;
  line-height: 1.7;
}

.welcome-message .message-content {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  border-left: 4px solid var(--primary);
}

.welcome-message h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.welcome-message p {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.welcome-message em {
  color: var(--accent);
  font-style: italic;
}

/* User Message */
.message.user .message-content {
  background: var(--primary);
  color: white;
  margin-left: auto;
  max-width: 80%;
  border-radius: 8px 0 8px 8px;
}

/* AI Response */
.message.ai .message-content {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(255, 107, 53, 0.1) 100%);
  border-left: 4px solid var(--flame);
  max-width: 90%;
}

.message.ai .message-content strong {
  color: var(--flame);
}

/* Input Area */
.input-area {
  padding: 1.5rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  border-top: 1px solid #e0e0e0;
}

.input-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.question-input {
  flex: 1;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.question-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(212, 165, 116, 0.3);
}

/* Buttons */
.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-ask {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.btn-ask:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 165, 116, 0.6);
}

.btn-ask:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Voice Controls */
.voice-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.voice-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}

.voice-toggle input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.toggle-label {
  font-size: 0.95rem;
  color: var(--text);
}

.voice-note {
  font-size: 0.8rem;
  color: #999;
  margin: 0;
}

/* Scripture Sidebar */
.scripture-sidebar {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.scripture-sidebar h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scripture-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.scripture-item {
  padding: 1rem;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  border-left: 3px solid var(--flame);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scripture-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scripture-ref {
  font-weight: 600;
  color: var(--flame);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.scripture-text {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
}

.scripture-category {
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

.placeholder {
  color: #ccc;
  text-align: center;
  padding: 1rem;
  font-style: italic;
}

/* Loading Spinner */
.spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.spinner-ring {
  border: 4px solid rgba(212, 165, 116, 0.2);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Status Messages */
.status-message {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.status-message.error {
  background: #d32f2f;
}

.status-message.success {
  background: #388e3c;
}

/* Scrollbar Styling */
.messages::-webkit-scrollbar {
  width: 8px;
}

.messages::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.messages::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.messages::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ============ LANDING PAGE STYLES ============ */

.landing-page {
  background: var(--dark);
}

/* Navigation Bar */
.main-nav {
  background: rgba(26, 26, 26, 0.95);
  border-bottom: 2px solid rgba(212, 165, 116, 0.2);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link-premium {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.nav-link-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-link {
    font-size: 0.9rem;
  }
}

/* Hero Section */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  padding: 2rem 1rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, rgba(255, 107, 53, 0.1) 40%, transparent 70%);
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
  filter: blur(80px);
}

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.15; }
  50% { transform: translateX(-50%) scale(1.1); opacity: 0.25; }
}

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

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(255, 107, 53, 0.2) 100%);
  color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid var(--primary);
}

.hero-title {
  font-size: 4rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--flame) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #ccc;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-cta {
  margin-bottom: 2rem;
}

.btn-primary-large {
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--flame) 0%, #ff8c5a 100%);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.6);
}

.btn-secondary-large {
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  margin-left: 1rem;
}

.btn-secondary-large:hover {
  background: rgba(212, 165, 116, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

@media (max-width: 768px) {
  .btn-secondary-large {
    margin-left: 0;
    margin-top: 1rem;
  }
}

.trust-line {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--accent);
  font-size: 0.95rem;
}

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

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

  .trust-line {
    gap: 1rem;
    font-size: 0.85rem;
  }
}

/* Container Wide */
.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============ SPIRITUAL VISUAL EFFECTS ============ */

/* Spiral pattern overlay - subtle gold spirals */
.spiral-divider {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 3rem 0;
}

.spiral-divider::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-image:
    conic-gradient(from 0deg at 50% 50%, rgba(212, 165, 116, 0.15) 0deg, rgba(212, 165, 116, 0.05) 90deg, rgba(212, 165, 116, 0.15) 180deg, rgba(212, 165, 116, 0.05) 270deg, rgba(212, 165, 116, 0.15) 360deg);
  border-radius: 50%;
  animation: spin-slow 20s linear infinite;
  opacity: 0.6;
}

.spiral-divider::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background-image:
    conic-gradient(from 180deg at 50% 50%, rgba(255, 107, 53, 0.1) 0deg, rgba(255, 107, 53, 0.02) 90deg, rgba(255, 107, 53, 0.1) 180deg, rgba(255, 107, 53, 0.02) 270deg, rgba(255, 107, 53, 0.1) 360deg);
  border-radius: 50%;
  animation: spin-slower 30s linear infinite reverse;
  opacity: 0.5;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-slower {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* Divine light ray effect */
.light-ray {
  position: absolute;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 165, 116, 0.08) 50%, transparent 100%);
  transform: skewX(-20deg);
  opacity: 0.4;
  pointer-events: none;
}

.light-ray-vertical {
  width: 200px;
  height: 100%;
  animation: ray-flicker 8s ease-in-out infinite;
}

@keyframes ray-flicker {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Sacred glow effect on key sections */
.sacred-glow {
  position: relative;
}

.sacred-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 165, 116, 0.05) 0%, transparent 70%);
  pointer-events: none;
  border-radius: inherit;
}

/* Value Props Section */
.value-props {
  padding: 6rem 1rem;
  background: linear-gradient(180deg, var(--dark) 0%, #2d2d2d 100%);
  position: relative;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.05) 0%, rgba(245, 245, 245, 0.02) 100%);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(212, 165, 116, 0.15);
  border-color: var(--primary);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card.highlighted {
  border: 2px solid var(--flame);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
}

.value-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--flame);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.value-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.value-card p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.value-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.value-list li {
  color: #aaa;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

/* Social Proof Section */
.social-proof {
  padding: 6rem 1rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.social-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(212, 165, 116, 0.05) 0%, transparent 10%, transparent 90%, rgba(212, 165, 116, 0.05) 100%),
    linear-gradient(180deg, rgba(212, 165, 116, 0.03) 0%, transparent 30%);
  pointer-events: none;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  width: 100%;
  text-shadow: 0 0 20px rgba(212, 165, 116, 0.3), 0 0 40px rgba(255, 107, 53, 0.1);
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 3rem;
}

.testimonial-placeholder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.05) 0%, rgba(245, 245, 245, 0.02) 100%);
  border-left: 3px solid var(--flame);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 165, 116, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.15);
}

.testimonial-quote {
  color: #ddd;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-author {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Demo Section */
.demo-section {
  padding: 4rem 1rem;
  background: linear-gradient(180deg, var(--dark) 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}

.demo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  width: 300px;
  height: 400px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.08), transparent);
  pointer-events: none;
  filter: blur(40px);
}

.demo-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 15%;
  width: 300px;
  height: 400px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.06), transparent);
  pointer-events: none;
  filter: blur(40px);
}

.demo-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Premium CTA Section */
.premium-cta-section {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.premium-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, rgba(255, 107, 53, 0.08) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
  animation: glow-pulse 8s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.9; }
}

.premium-cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.7;
}

.premium-cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.05) 0%, rgba(245, 245, 245, 0.02) 100%);
  border: 2px solid var(--flame);
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 0 40px rgba(212, 165, 116, 0.1), 0 0 80px rgba(255, 107, 53, 0.05);
}

.premium-cta-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top center, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
  border-radius: 16px;
  pointer-events: none;
}

.premium-cta-content::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom center, rgba(255, 107, 53, 0.05) 0%, transparent 60%);
  border-radius: 16px;
  pointer-events: none;
}

.premium-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.premium-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}

.premium-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.premium-price {
  margin-bottom: 2rem;
}

.price-amount {
  font-size: 4rem;
  color: var(--flame);
  font-weight: 700;
}

.price-period {
  font-size: 1.5rem;
  color: #aaa;
}

.premium-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
  text-align: left;
  display: inline-block;
}

.premium-features li {
  color: #ddd;
  padding: 0.5rem 0;
  font-size: 1.1rem;
}

.btn-premium-large {
  display: inline-block;
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--flame) 0%, #ff8c5a 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-premium-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.6);
}

.premium-note {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 1rem;
  background: var(--dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.05) 0%, rgba(245, 245, 245, 0.02) 100%);
  border-left: 3px solid var(--primary);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-left-color: var(--flame);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.15);
}

.faq-question {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-answer {
  color: #ccc;
  line-height: 1.7;
  font-size: 1rem;
}

/* Footer */
.footer {
  background: #0d0d0d;
  padding: 3rem 1rem;
  border-top: 2px solid rgba(212, 165, 116, 0.3);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.4), transparent);
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 165, 116, 0.02) 0%, transparent 80%);
  pointer-events: none;
}

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

.footer-content p {
  color: #aaa;
  margin-bottom: 0.5rem;
}

.footer-verse {
  color: var(--accent);
  font-style: italic;
  font-size: 0.95rem;
  text-shadow: 0 0 10px rgba(232, 167, 69, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .value-grid,
  .testimonial-placeholder,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .premium-title {
    font-size: 1.8rem;
  }

  .price-amount {
    font-size: 3rem;
  }

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

  .container-wide {
    padding: 0 1rem;
  }
}

/* ============ SCRIPTURE PAGE STYLES ============ */

.scripture-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ddd;
  padding: 2rem 1rem;
}

.scripture-header {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.back-link {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: var(--flame);
  transform: translateX(-5px);
}

.scripture-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.scripture-category {
  color: var(--accent);
  font-size: 1.1rem;
  font-style: italic;
}

.scripture-content {
  max-width: 900px;
  margin: 0 auto;
}

.scripture-text-section {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.05) 0%, rgba(245, 245, 245, 0.02) 100%);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 3rem;
}

.scripture-text-section h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.scripture-text {
  font-size: 1.4rem;
  line-height: 1.9;
  color: white;
  font-style: italic;
  border-left: 4px solid var(--flame);
  padding-left: 2rem;
  margin: 0;
}

.original-language-section {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
  border: 1px solid var(--flame);
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 3rem;
}

.original-language-section h2 {
  color: var(--flame);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.language-note {
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.coming-soon {
  color: var(--accent);
  font-style: italic;
  font-size: 0.95rem;
}

.burning-bush-cta {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  margin-bottom: 3rem;
}

.cta-content h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.premium-cta {
  margin-bottom: 3rem;
}

.premium-box {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
  border: 1px solid var(--flame);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
}

.premium-box h3 {
  color: var(--flame);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.premium-box p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.scripture-footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #aaa;
  font-size: 0.9rem;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
  margin-top: 3rem;
}

/* ============ SCRIPTURES INDEX STYLES ============ */

.scriptures-index {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ddd;
  padding: 2rem 1rem;
}

.index-header {
  max-width: 1000px;
  margin: 0 auto 3rem;
  text-align: center;
}

.index-header h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}

.index-subtitle {
  color: #ccc;
  font-size: 1.2rem;
}

.index-content {
  max-width: 1000px;
  margin: 0 auto;
}

.book-section {
  margin-bottom: 3rem;
}

.book-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
  border-left: 4px solid var(--flame);
  padding-left: 1rem;
}

.scripture-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.scripture-item {
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.05) 0%, rgba(245, 245, 245, 0.02) 100%);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.scripture-item:hover {
  border-color: var(--flame);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.15);
  transform: translateY(-3px);
}

.scripture-link {
  display: block;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
}

.scripture-reference {
  display: block;
  color: var(--flame);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.scripture-preview {
  display: block;
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.scripture-category {
  display: inline-block;
  background: rgba(212, 165, 116, 0.2);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.index-footer {
  max-width: 1000px;
  margin: 4rem auto 0;
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(212, 165, 116, 0.1) 100%);
  border: 2px solid var(--flame);
  border-radius: 12px;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
}

.cta-box h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cta-box p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--flame) 0%, #ff8c5a 100%);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.6);
}

.footer-text {
  color: #aaa;
  padding: 2rem 0;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
}

/* Mobile Responsive for Scripture Pages */
@media (max-width: 768px) {
  .scripture-title {
    font-size: 2rem;
  }

  .scripture-text {
    font-size: 1.2rem;
    padding-left: 1rem;
  }

  .scripture-text-section,
  .original-language-section,
  .burning-bush-cta,
  .premium-box {
    padding: 2rem 1.5rem;
  }

  .index-header h1 {
    font-size: 2.5rem;
  }

  .scripture-list {
    grid-template-columns: 1fr;
  }
}

/* ============ DAILY DEVOTIONAL ============ */
.devotional-section {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.devotional-container {
  width: 100%;
}

.devotional-card {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.15) 0%, rgba(26, 26, 26, 0.95) 100%);
  border: 2px solid var(--sacred-gold);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(212, 165, 116, 0.15);
}

/* Sacred glow effect */
.devotional-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
  pointer-events: none;
  animation: devotional-pulse 4s ease-in-out infinite;
}

@keyframes devotional-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.devotional-loading {
  text-align: center;
  color: var(--accent);
  padding: 2rem;
}

.devotional-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.devotional-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--sacred-gold) 0%, var(--accent) 100%);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.devotional-title {
  font-size: 2rem;
  color: var(--sacred-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
  line-height: 1.3;
}

.devotional-reference {
  font-size: 1rem;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 2rem;
}

.devotional-content {
  position: relative;
  z-index: 2;
}

.scripture-box {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--flame);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.scripture-text {
  font-size: 1.2rem;
  color: #e8e8e8;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
}

.original-language {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.language-label {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.language-text {
  font-size: 1.5rem;
  color: var(--sacred-gold);
  font-weight: 600;
  letter-spacing: 1px;
}

.devotional-reflection {
  font-size: 1.1rem;
  color: #d4d4d4;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.devotional-cta {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.devotional-cta-text {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.btn-devotional-cta {
  background: linear-gradient(135deg, var(--flame) 0%, #ff8c5a 100%);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-devotional-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn-devotional-cta:hover::before {
  width: 300px;
  height: 300px;
}

.btn-devotional-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .devotional-section {
    padding: 1.5rem 1rem;
  }

  .devotional-card {
    padding: 1.5rem;
  }

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

  .devotional-reflection {
    font-size: 1rem;
  }
}

/* ============ LANGUAGE LEARNING STYLES ============ */

.languages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.language-card {
  background: rgba(26, 26, 26, 0.9);
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.language-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.language-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.language-description {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.language-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

.language-meta span {
  background: rgba(212, 165, 116, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
}

/* Lesson Cards */
.lesson-card {
  background: rgba(26, 26, 26, 0.9);
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lesson-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.lesson-card.completed {
  background: rgba(46, 125, 50, 0.1);
  border-color: rgba(46, 125, 50, 0.5);
}

.lesson-card.locked {
  opacity: 0.6;
  cursor: not-allowed;
}

.lesson-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.lesson-number {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lesson-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.lesson-badge.completed {
  background: rgba(46, 125, 50, 0.2);
  color: #4caf50;
}

.lesson-badge.premium {
  background: rgba(255, 215, 0, 0.2);
  color: var(--gold);
}

.lesson-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.lesson-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.lesson-type-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Lesson Content */
.lesson-content {
  grid-column: 1 / -1;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 16px;
  padding: 3rem;
}

.lesson-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.lesson-intro h2 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.lesson-intro p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Alphabet Grid */
.alphabet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.letter-card {
  background: rgba(45, 45, 45, 0.6);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.letter-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 5px 15px rgba(212, 165, 116, 0.2);
}

.letter-display {
  font-size: 3rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: serif;
}

.letter-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.letter-transliteration {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 0.25rem;
}

.letter-sound {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* Vowel Grid */
.vowel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.vowel-card {
  background: rgba(45, 45, 45, 0.6);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.vowel-symbol {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: serif;
}

.vowel-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.vowel-sound {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Vocabulary List */
.vocabulary-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.vocab-card {
  background: rgba(45, 45, 45, 0.6);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.vocab-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 5px 15px rgba(212, 165, 116, 0.2);
}

/* Scripture Display */
.scripture-display {
  background: rgba(45, 45, 45, 0.6);
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  margin: 2rem 0;
}

.word-by-word-section {
  margin-top: 3rem;
}

.word-by-word-section h3 {
  text-align: center;
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.word-analysis-card {
  background: rgba(45, 45, 45, 0.6);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* Why Learn Section */
.why-learn-section {
  background: rgba(45, 45, 45, 0.3);
  padding: 4rem 1rem;
  margin-top: 4rem;
}

/* Premium CTA */
.premium-cta {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
}

.premium-cta-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: rgba(26, 26, 26, 0.9);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 3rem;
}

.premium-cta-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.premium-cta-card h3 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.premium-cta-card p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .languages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .alphabet-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
  }

  .vocabulary-list {
    grid-template-columns: 1fr;
  }

  .lesson-content {
    padding: 1.5rem;
  }
}

/* ============ EMAIL CAPTURE SECTION ============ */

.email-capture-section {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(255, 107, 53, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.email-capture-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.email-capture-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.email-capture-content {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.95) 100%);
  border: 2px solid var(--sacred-gold);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(212, 165, 116, 0.2);
}

.email-capture-title {
  font-size: 2.5rem;
  color: var(--sacred-gold);
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
}

.email-capture-subtitle {
  color: #ccc;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.email-capture-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  width: 100%;
}

.email-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 8px;
  color: white;
  transition: all 0.3s ease;
  outline: none;
}

.email-input::placeholder {
  color: #888;
}

.email-input:focus {
  border-color: var(--sacred-gold);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.btn-subscribe {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--flame) 0%, #ff8c5a 100%);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-subscribe:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.6);
}

.btn-subscribe:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.subscribe-message {
  padding: 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-message {
  background: rgba(46, 125, 50, 0.2);
  border: 2px solid rgba(76, 175, 80, 0.5);
  color: #4caf50;
}

.error-message {
  background: rgba(211, 47, 47, 0.2);
  border: 2px solid rgba(244, 67, 54, 0.5);
  color: #ef5350;
}

.message-icon {
  font-size: 1.5rem;
  font-weight: bold;
}

.message-text {
  flex: 1;
}

.email-capture-note {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.95rem;
  color: #aaa;
  margin-top: 1.5rem;
}

.email-capture-note span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .email-capture-section {
    padding: 3rem 1rem;
  }

  .email-capture-content {
    padding: 2rem 1.5rem;
  }

  .email-capture-title {
    font-size: 2rem;
  }

  .email-capture-subtitle {
    font-size: 1rem;
  }

  .email-input {
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
  }

  .btn-subscribe {
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  .email-capture-note {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}
