/* ============================================
   Home Page Specific Styles - Dark Hero with Individual Stat Cards
   ============================================ */

/* ============================================
   HERO - Dark Background with Individual Stat Cards
   ============================================ */

.hero-light {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  padding: calc(72px + 60px) 0 60px;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

/* Subtle accent glow */
.hero-light::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-light-headline {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.15;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-light-headline em {
  font-style: normal;
  color: #60a5fa;
}

.hero-light-subhead {
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Stats Grid - 3x2 Individual Cards */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Individual Stat Card - Dark theme with readable text */
.hero-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.hero-stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(96, 165, 250, 0.5);
  transform: translateY(-4px);
}

.hero-stat-number {
  display: block;
  font-size: 2.75rem;
  font-weight: 700;
  color: #60a5fa;
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-stat-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.hero-stat-detail {
  display: block;
  font-size: 14px;
  color: #e2e8f0;
  line-height: 1.4;
}

/* Hero CTAs */
.hero-light-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-light-btn-primary {
  background: #ffffff;
  color: #1e3a5f;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-light-btn-primary:hover {
  background: #f1f5f9;
  color: #1e3a5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-light-btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.2s ease;
}

.hero-light-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

/* ============================================
   SECONDARY - Three Columns Clean
   ============================================ */

.secondary-test-1 {
  background: #ffffff;
  padding: 80px 0;
}

.secondary-1-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.secondary-1-badge {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.secondary-1-headline {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.secondary-1-lead {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
}

.secondary-1-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .secondary-1-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

.secondary-1-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.secondary-1-card:hover {
  background: #ffffff;
  border-color: #3b82f6;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.secondary-1-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffffff;
}

.secondary-1-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.secondary-1-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.secondary-1-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.secondary-1-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #475569;
  margin-bottom: 10px;
}

.secondary-1-bullets li:last-child {
  margin-bottom: 0;
}

.secondary-1-bullets svg {
  flex-shrink: 0;
  color: #22c55e;
  margin-top: 2px;
}

/* ============================================
   VALUE PROPOSITION SECTION
   ============================================ */

.value-prop-section {
  background: var(--color-white);
  padding: var(--space-24) 0 var(--space-10);
}

/* Header */
.value-prop-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-12);
}

.value-prop-header h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.value-prop-header h2 em {
  font-style: normal;
  color: var(--color-accent);
}

.value-prop-header .lead {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* Value Pillars - 6-card grid (2 rows x 3 columns) */
.value-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

@media (max-width: 1024px) {
  .value-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

@media (max-width: 640px) {
  .value-pillars-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.value-pillar {
  padding: var(--space-8);
  background: var(--color-gray-100);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.value-pillar:hover {
  background: var(--color-white);
  border-color: var(--color-gray-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  background: var(--color-white);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.value-pillar:hover .pillar-icon {
  background: var(--color-primary);
  color: var(--color-white);
}

.value-pillar h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
  color: var(--color-primary);
}

.pillar-lead {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-gray-700);
  margin-bottom: var(--space-4);
}

.value-pillar > p:last-of-type {
  font-size: var(--text-base);
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.pillar-proof {
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-gray-300);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.proof-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-500);
}

.pillar-proof .proof-stat {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-success);
}

/* Value Prop CTA */
.value-prop-cta {
  text-align: center;
  padding: var(--space-8);
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-gray-200);
}

.value-prop-cta p {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: var(--space-4);
}

/* ============================================
   REIMAGINATION SECTION - Prominent Dark Section
   ============================================ */

.reimagination-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0f2744 100%);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}

/* Subtle background texture */
.reimagination-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(99, 179, 237, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(49, 130, 206, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.reimagination-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .reimagination-layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

.reimagination-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent-light);
  margin-bottom: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: rgba(99, 179, 237, 0.15);
  border-radius: var(--border-radius);
}

.reimagination-main h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-6);
}

.reimagination-lead {
  font-size: var(--text-xl);
  color: var(--color-gray-300);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.reimagination-main p {
  font-size: var(--text-base);
  color: var(--color-gray-400);
  line-height: 1.7;
}

.reimagination-main p strong {
  color: var(--color-accent-light);
  font-weight: 600;
}

/* Reimagination Points */
.reimagination-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.reimagination-point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.reimagination-point:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-accent-light);
  transform: translateX(8px);
}

.reimagination-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.reimagination-icon svg {
  width: 22px;
  height: 22px;
}

.reimagination-point strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.reimagination-point span {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-gray-400);
}

/* ============================================
   APPROACH PREVIEW SECTION
   ============================================ */

.approach-preview-section {
  background: var(--color-gray-100);
  padding: var(--space-20) 0;
}

.approach-preview-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-12);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .approach-preview-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.approach-preview-intro h2 {
  font-size: var(--text-4xl);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.approach-preview-intro .lead {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  line-height: 1.7;
}

.mt-6 {
  margin-top: var(--space-6);
}

/* Preview Steps */
.approach-preview-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.preview-step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition-base);
}

.preview-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.preview-step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-xl);
}

.preview-step-content h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  color: var(--color-primary);
}

.preview-step-content p {
  font-size: var(--text-base);
  color: var(--color-gray-600);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */

.testimonial-featured {
  text-align: center;
  padding: var(--space-12) var(--space-8);
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.testimonial-featured .quote-icon {
  margin-bottom: var(--space-4);
}

.testimonial-featured .testimonial-quote {
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--color-gray-800);
  line-height: 1.5;
  margin-bottom: var(--space-6);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-featured .testimonial-author {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-dark);
}

.testimonial-featured .testimonial-role {
  color: var(--color-gray-600);
}

@media (max-width: 768px) {
  .testimonial-featured .testimonial-quote {
    font-size: var(--text-xl);
  }
}

/* ============================================
   PILLARS SECTION
   ============================================ */

.pillars-section {
  padding-top: var(--space-8);
}

.pillars-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-8);
}

.pillars-section-header h2 {
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.pillars-section-header p {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  margin-bottom: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}
