/* /css/seo-landing.css */
/* Professional, beautiful, ministry-focused SEO landing pages */

:root {
  /* Ministry Color Palette */
  --primary-blue: #4361ee;
  --primary-purple: #7209b7;
  --accent-teal: #00e5ff;
  --accent-gold: #ffd166;
  --accent-coral: #ef476f;
  
  /* Gradient Definitions */
  --gradient-primary: linear-gradient(135deg, #4361ee, #7209b7);
  --gradient-accent: linear-gradient(135deg, #00e5ff, #4895ef);
  --gradient-gold: linear-gradient(135deg, #ffd166, #f9c74f);
  --gradient-dark: linear-gradient(135deg, #121826, #1e293b);
  
  /* Light Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-card: #ffffff;
  --text-primary: #121826;
  --text-secondary: #495057;
  --text-tertiary: #6c757d;
  --border-light: #e9ecef;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (prefers-color-scheme: dark) {
  :root {
    /* Dark Theme */
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-card: #1e293b;
    --text-primary: #f8f9fa;
    --text-secondary: #dee2e6;
    --text-tertiary: #adb5bd;
    --border-light: #2d3748;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  }
}

/* ================= BASE STYLES ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* ================= HERO SECTION ================= */
.seo-hero {
  background: var(--gradient-primary);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.seo-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

.seo-kicker {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.seo-kicker:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.seo-hero h1 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seo-lead {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-bottom: 40px;
}

.seo-ctaRow {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.seo-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--gradient-gold);
  color: #121826;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 209, 102, 0.3);
}

.seo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 209, 102, 0.4);
  background: linear-gradient(135deg, #f9c74f, #ffd166);
}

.seo-btnGhost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: transparent;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.seo-btnGhost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* ================= CONTENT SECTIONS ================= */
.seo-section {
  margin: 80px 0;
}

.seo-h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.seo-h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* ================= FEATURES GRID ================= */
.seo-grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.seo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.seo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

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

.seo-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.seo-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ================= TWO COLUMN GRID ================= */
.seo-grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.seo-card-feature {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.seo-card-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-purple);
}

.seo-card-feature h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.seo-card-feature h3::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
}

.seo-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.seo-list li {
  padding: 12px 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 36px;
  border-bottom: 1px solid var(--border-light);
}

.seo-list li:last-child {
  border-bottom: none;
}

.seo-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-size: 12px;
}

/* ================= PROOF SECTION ================= */
.seo-proof {
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.08), rgba(0, 229, 255, 0.05));
  border: 1px solid rgba(67, 97, 238, 0.2);
  border-radius: 20px;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 60px;
  box-shadow: var(--shadow-md);
}

.seo-proof-content h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.seo-proof-content p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* ================= QUICK LINKS ================= */
.seo-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.seo-links a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.seo-links a:hover {
  background: rgba(67, 97, 238, 0.1);
  color: var(--primary-purple);
  transform: translateY(-2px);
}

.seo-links a::before {
  content: '→';
  transition: transform 0.3s ease;
}

.seo-links a:hover::before {
  transform: translateX(4px);
}

.seo-dot {
  color: var(--text-tertiary);
}

/* ================= FOOTER ================= */
.seo-foot {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 2px solid var(--border-light);
  color: var(--text-tertiary);
  font-size: 15px;
}

.seo-foot p {
  display: flex;
  align-items: center;
  gap: 12px;
}

.seo-foot strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {
  .seo-hero {
    padding: 50px 30px;
  }
  
  .seo-grid3,
  .seo-grid2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .seo-proof {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .seo-container {
    padding: 30px 16px 60px;
  }
  
  .seo-hero {
    padding: 40px 24px;
    border-radius: 20px;
  }
  
  .seo-hero h1 {
    font-size: 32px;
  }
  
  .seo-lead {
    font-size: 18px;
  }
  
  .seo-ctaRow {
    flex-direction: column;
  }
  
  .seo-btn,
  .seo-btnGhost {
    width: 100%;
    justify-content: center;
  }
  
  .seo-h2 {
    font-size: 32px;
  }
  
  .seo-grid3,
  .seo-grid2 {
    grid-template-columns: 1fr;
  }
  
  .seo-card,
  .seo-card-feature {
    padding: 30px 24px;
  }
  
  .seo-proof {
    padding: 40px 24px;
  }
  
  .seo-proof-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .seo-hero h1 {
    font-size: 28px;
  }
  
  .seo-lead {
    font-size: 16px;
  }
  
  .seo-h2 {
    font-size: 28px;
  }
  
  .seo-links {
    justify-content: center;
  }
  
  .seo-links a {
    width: 100%;
    justify-content: center;
  }
}