/* ============================================
   WHY NUFORCE PAGE - Complete Styles
   ============================================ */

.why-nuforce-page {
  --primary: #0253a4;
  --primary-dark: #0b3b6f;
  --primary-light: #1e6bc4;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --bg-light: #f8fafc;
  
  background: #ffffff;
  overflow-x: hidden;
  position: relative;
}

/* Ensure proper stacking and no overlaps */
.why-nuforce-page section {
  position: relative;
  z-index: 1;
}

/* ============================================
   HERO SECTION WITH GLOWING CIRCLES
   ============================================ */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 140px 0 120px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  overflow: hidden;
}

/* Animated Glowing Background */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

/* Gradient Orbs - Glowing animated circles */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: float-glow 20s ease-in-out infinite;
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, rgba(125,211,252,0.2) 40%, transparent 70%);
  top: -250px;
  right: -150px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.5) 0%, rgba(139,92,246,0.3) 40%, transparent 70%);
  bottom: -150px;
  left: 5%;
  animation-delay: -7s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.3) 0%, rgba(59,130,246,0.2) 40%, transparent 70%);
  top: 20%;
  left: -100px;
  animation-delay: -14s;
}

/* Hero Grid Overlay */
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}

/* Hero Noise Texture */
.hero-noise {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  z-index: 2;
  pointer-events: none;
}

@keyframes float-glow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(20px, 30px) scale(1.05);
  }
}

/* Hero Content */
.hero-section .container {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  text-align: center;
  color: #ffffff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 32px;
  backdrop-filter: blur(12px);
  color: #ffffff;
}

.hero-badge svg {
  color: #fbbf24;
}

.hero-title {
  font-family: var(--font-inter);
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  max-width: 900px;
  margin: 0 auto 28px;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.hero-title .highlight {
  display: block;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 8px;
}

.hero-description {
  font-size: 21px;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 44px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: #ffffff;
  color: var(--primary-dark);
  font-size: 17px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: transparent;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  z-index: 5;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(12px);
  }
}

/* Animate-in classes for hero content */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: animateIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 80px 0;
  background: var(--bg-light);
  position: relative;
}

.stats-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  animation: slideUp 0.6s ease forwards;
  opacity: 0;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(2, 83, 164, 0.15);
}

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

.stat-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 16px;
}

.stat-value-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.stat-value {
  font-family: var(--font-inter);
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-inter);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}

/* Stat Bar Animation */
.stat-bar {
  width: 100%;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  margin-top: 16px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 2px;
  transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
  padding: 100px 0;
  background: #ffffff;
}

.benefits-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(2, 83, 164, 0.08);
  color: var(--primary);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(2, 83, 164, 0.08);
  color: var(--primary);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-header h2 {
  font-family: var(--font-inter);
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
}

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

.benefit-card {
  padding: 36px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(2, 83, 164, 0.12);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
}

.benefit-card h3 {
  font-family: var(--font-inter);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}

.comparison-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-card {
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-8px);
}

.before-card {
  background: linear-gradient(180deg, #fef2f2 0%, #fee2e2 100%);
  border: 2px solid #fecaca;
}

.after-card {
  background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
  border: 2px solid #a7f3d0;
}

.card-header {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 12px;
}

.before-card .header-icon {
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
}

.after-card .header-icon {
  background: rgba(4, 120, 87, 0.1);
  color: #047857;
}

.card-header h3 {
  font-family: var(--font-inter);
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 8px;
}

.before-card .card-header h3 {
  color: #b91c1c;
}

.after-card .card-header h3 {
  color: #047857;
}

.header-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.before-card .header-tag {
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
}

.after-card .header-tag {
  background: rgba(4, 120, 87, 0.1);
  color: #047857;
}

.comparison-list {
  list-style: none;
  padding: 0 32px;
  margin: 0;
}

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.before-card .list-icon {
  color: #dc2626;
}

.after-card .list-icon {
  color: #059669;
}

.comparison-list li span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.before-card .comparison-list li span {
  color: #7f1d1d;
}

.after-card .comparison-list li span {
  color: #065f46;
}

.before-card .item-text {
  color: #7f1d1d;
}

.after-card .item-text {
  color: #065f46;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  font-size: 16px;
  font-weight: 700;
}

.before-card .card-footer {
  background: rgba(185, 28, 28, 0.08);
  color: #b91c1c;
}

.after-card .card-footer {
  background: rgba(4, 120, 87, 0.08);
  color: #047857;
}

.footer-emoji {
  font-size: 24px;
}

/* VS Divider */
.vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 0;
}

.vs-circle {
  font-family: var(--font-inter);
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  background: #ffffff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(2, 83, 164, 0.2);
  border: 3px solid var(--bg-light);
}

.vs-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
  opacity: 0.3;
}

.vs-arrow {
  color: var(--primary);
  animation: bounce-right 1.5s ease-in-out infinite;
}

@keyframes bounce-right {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  background: #ffffff;
}

.testimonials-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.testimonial-card {
  padding: 36px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: #fbbf24;
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.15);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: #fbbf24;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-card blockquote {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin: 0 0 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e5e7eb;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 16px;
}

.author-info span {
  font-size: 14px;
  color: var(--text-muted);
}

/* Testimonials section spacing for global partners marquee */
.testimonials-section {
  padding-bottom: 60px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .comparison-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .vs-divider {
    flex-direction: row;
    padding: 16px 0;
  }
  
  .vs-line {
    width: 60px;
    height: 2px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 100px 0 100px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 34px;
  }
  
  .hero-description {
    font-size: 17px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .stats-section {
    padding: 60px 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-card {
    padding: 28px 20px;
  }
  
  .stat-value {
    font-size: 42px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .benefits-section,
  .comparison-section,
  .testimonials-section {
    padding: 60px 0;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-card {
    padding: 28px;
  }
  
  .comparison-card {
    border-radius: 20px;
  }
  
  .card-header {
    padding: 24px;
  }
  
  .header-icon {
    font-size: 40px;
  }
  
  .card-header h3 {
    font-size: 22px;
  }
  
  .comparison-list {
    padding: 0 24px;
  }
  
  .comparison-list li {
    padding: 14px 0;
  }
  
  .item-text {
    font-size: 15px;
  }
}

/* ============================================
   OUR STORY SECTION
   ============================================ */
.story-section {
  padding: 100px 0;
  background: #ffffff;
}

.story-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-content .section-label {
  margin-bottom: 16px;
}

.story-content h2 {
  font-family: var(--font-inter);
  font-size: 38px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.story-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 20px;
}

.story-content p:last-child {
  margin-bottom: 0;
}

.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.values-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.value-card {
  text-align: center;
  padding: 40px 28px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.value-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.value-card h3 {
  font-family: var(--font-inter);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .story-image {
    order: -1;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .story-section,
  .values-section {
    padding: 60px 0;
  }
  
  .story-content h2 {
    font-size: 28px;
  }
  
  .story-content p {
    font-size: 16px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .value-card {
    padding: 32px 24px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .gradient-orb,
  .vs-arrow,
  .wheel {
    animation: none;
  }
  
  .animate-in,
  .animate-fade-in,
  .animate-fade-in-up,
  .stat-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .stat-bar-fill {
    transition: none;
  }
}
