
/* Custom styles for conversion optimization */

/* CSS Variables for Theme Consistency */
:root {
  --primary-gold: #eab308;
  --primary-gold-dark: #ca8a04;
  --secondary-blue: #1e3a8a;
  --secondary-blue-light: #3b82f6;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* Typography Base */
.prose {
  color: #374151;
  font-size: 1.125rem;
  line-height: 1.8;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  max-width: 900px;
  margin: 0 auto;
}

/* Main Heading (H1) */
.prose h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--secondary-blue);
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

/* Section Headings (H2) */
.prose h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--secondary-blue);
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  position: relative;
  text-align: left;
}

.prose h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-gold), var(--primary-gold-dark));
  border-radius: 2px;
}

/* Subheadings (H3) */
.prose h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #111827;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}

.prose h3::before {
  content: '';
  width: 6px;
  height: 24px;
  background: var(--primary-gold);
  margin-right: 1rem;
  border-radius: 3px;
}

/* Paragraphs */
.prose p {
  margin-bottom: 1.75rem;
  color: #4b5563;
}

.prose strong {
  color: var(--secondary-blue);
  font-weight: 700;
}

/* List Styling */
.prose ul {
  list-style: none;
  padding: 2rem;
  margin: 2.5rem 0;
  background: #f8fafc;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.prose li {
  margin-bottom: 1.25rem;
  padding-left: 2.5rem;
  position: relative;
  color: #334155;
  font-size: 1.1rem;
}

.prose ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0.5rem;
  color: var(--primary-gold-dark);
  font-size: 1.25rem;
}

/* Premium UI Components */
.glass-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.hero-pattern {
  background-color: #ffffff;
  background-image: radial-gradient(rgba(234, 179, 8, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
}

.btn-premium {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, #1e40af 100%);
  color: white !important;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(30, 58, 138, 0.4);
  filter: brightness(1.1);
}

.btn-gold {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
  color: white !important;
}

.card-premium {
  background: white;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, var(--primary-gold), var(--secondary-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-premium:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  border-color: #e2e8f0;
}

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

.gold-gradient-bg {
  background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
}

.blue-gradient-bg {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, #1e1b4b 100%);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes pulse-soft {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.animate-pulse-soft {
  animation: pulse-soft 3s infinite ease-in-out;
}
