/* ══════════════════════════════════════════════════════════════════════════
   ELLOW CASE STUDY - REDESIGNED TO MATCH REFERENCE IMAGE
   ══════════════════════════════════════════════════════════════════════════ */

body {
  background: #ffffff !important;
  color: rgba(0, 0, 0, 0.8) !important;
}

#main-content {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════════════════════
   COMMON SECTION BADGES
   ══════════════════════════════════════════════════════════════════════════ */
.ellow-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #DBEAFE;
  color: #1E40AF;
  border-radius: 100px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.ellow-section-badge.danger {
  background: #FEE2E2;
  color: #991B1B;
}

.ellow-section-badge.success {
  background: #D1FAE5;
  color: #065F46;
}

.ellow-section-badge.impact {
  background: #F3E8FF;
  color: #6B21A8;
}

.ellow-section-badge.navy {
  background: #E0E7FF;
  color: #0A1F44;
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════════════════ */
.ellow-hero {
  padding: 140px 0 100px;
  background: url('../assets/caseStudy-hero-ellow.png') center/cover no-repeat;
  position: relative;
}

.ellow-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(239, 246, 255, 0.4) 100%);
  z-index: 0;
}

.ellow-hero-inner {
  max-width: calc(1200px + 4rem);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.ellow-case-tag {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: #3B82F6;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.ellow-hero-headline {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: #0A1F44;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  max-width: 900px;
}

/* ══════════════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════════════════════════════════════ */
.ellow-about {
  padding: 5rem 0;
  background: #ffffff;
}

.ellow-about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ellow-about-header {
  margin-bottom: 3rem;
}

.ellow-about-title {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #0A1F44;
  line-height: 1.3;
  max-width: 800px;
}

.ellow-about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.ellow-about-visual {
  background: transparent;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ellow-about-animation {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.ellow-float-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.ellow-circle-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #0A1F44, #1E3A8A);
  top: 10%;
  left: 5%;
  animation: float-1 8s ease-in-out infinite;
}

.ellow-circle-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1E3A8A, #1E40AF);
  top: 50%;
  right: 10%;
  animation: float-2 10s ease-in-out infinite;
}

.ellow-circle-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1E40AF, #3B82F6);
  bottom: 10%;
  left: 20%;
  animation: float-3 12s ease-in-out infinite;
}

.ellow-float-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.4;
}

.ellow-dot-1 {
  background: #0A1F44;
  top: 20%;
  right: 25%;
  animation: pulse-dot 3s ease-in-out infinite;
}

.ellow-dot-2 {
  background: #1E3A8A;
  top: 60%;
  left: 30%;
  animation: pulse-dot 4s ease-in-out infinite 0.5s;
}

.ellow-dot-3 {
  background: #1E40AF;
  bottom: 25%;
  right: 20%;
  animation: pulse-dot 3.5s ease-in-out infinite 1s;
}

.ellow-dot-4 {
  background: #3B82F6;
  top: 40%;
  left: 15%;
  animation: pulse-dot 4.5s ease-in-out infinite 1.5s;
}

@keyframes float-1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -20px) scale(1.05);
  }
  50% {
    transform: translate(-10px, 15px) scale(0.95);
  }
  75% {
    transform: translate(15px, 10px) scale(1.02);
  }
}

@keyframes float-2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  30% {
    transform: translate(-25px, 15px) scale(1.08);
  }
  60% {
    transform: translate(10px, -20px) scale(0.92);
  }
  80% {
    transform: translate(-15px, -10px) scale(1.05);
  }
}

@keyframes float-3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  20% {
    transform: translate(15px, 20px) scale(0.95);
  }
  50% {
    transform: translate(-20px, -15px) scale(1.1);
  }
  70% {
    transform: translate(10px, 5px) scale(0.98);
  }
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.8;
  }
}

.ellow-about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 1.5rem;
}

.ellow-about-text p:last-child {
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   CHALLENGES SECTION - PROFESSIONAL STRUCTURED STYLING
   ══════════════════════════════════════════════════════════════════════════ */
.ellow-challenges {
  padding: 5rem 0;
  background: #ffffff;
}

.ellow-challenges-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ellow-challenges-title {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #0A1F44;
  line-height: 1.35;
  margin-bottom: 3rem;
  max-width: 900px;
}

.ellow-challenges-intro {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.8;
  color: #1F2937;
  margin-bottom: 1.25rem;
}

.ellow-challenges-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.ellow-challenges-list li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.ellow-challenges-list li:last-child {
  margin-bottom: 0;
}

.ellow-challenges-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: #3B82F6;
  border-radius: 50%;
}

.ellow-challenges-description {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.8;
  color: #1F2937;
  margin-bottom: 1.25rem;
  margin-top: 3rem;
}

.ellow-challenges-examples {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.ellow-challenges-examples li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #374151;
  padding: 1.5rem;
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: none !important;
  position: relative;
  cursor: pointer;
}

.ellow-challenges-examples li::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, #7F1D1D, #DC2626, #EF4444, #FCA5A5, #ffffff, #FCA5A5, #EF4444, #DC2626, #7F1D1D);
  background-size: 200% 100%;
  border-radius: 10px;
  padding: 2px;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: gradient-border-move 3s linear infinite;
  pointer-events: none;
}

.ellow-challenges-examples li:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.25);
}

@keyframes gradient-border-move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.ellow-example-icon {
  color: #EF4444;
  flex-shrink: 0;
  margin-top: 0.1rem;
  position: relative;
  z-index: 1;
}

.ellow-challenges-examples li span {
  flex: 1;
  position: relative;
  z-index: 1;
}

.ellow-challenges-conclusion {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.8;
  color: #1F2937;
  margin-bottom: 3rem;
}

/* Revalabs Advantage Box */
.ellow-revalabs-advantage {
  background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
  border-radius: 12px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(30, 58, 138, 0.2);
}

.ellow-revalabs-advantage::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ellow-advantage-title {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #60A5FA;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1.25rem 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ellow-advantage-title::before {
  content: '';
  width: 40px;
  height: 3px;
  background: #60A5FA;
  border-radius: 2px;
}

.ellow-advantage-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════════════════════
   SOLUTION SECTION
   ══════════════════════════════════════════════════════════════════════════ */
.ellow-solution {
  padding: 5rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Animated Background */
.ellow-solution-bg-animation {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ellow-solution-shape {
  position: absolute;
  opacity: 0.08;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.ellow-shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #10B981, #34D399);
  top: -50px;
  left: -100px;
  animation: morph-1 20s ease-in-out infinite, float-slow-1 15s ease-in-out infinite;
}

.ellow-shape-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #059669, #10B981);
  bottom: -80px;
  right: -80px;
  animation: morph-2 18s ease-in-out infinite, float-slow-2 18s ease-in-out infinite;
}

.ellow-shape-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #34D399, #6EE7B7);
  top: 50%;
  right: 10%;
  animation: morph-3 22s ease-in-out infinite, float-slow-3 20s ease-in-out infinite;
}

.ellow-solution-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  opacity: 0.3;
}

.ellow-particle-1 {
  top: 15%;
  left: 20%;
  animation: drift-1 8s ease-in-out infinite, pulse-particle 3s ease-in-out infinite;
}

.ellow-particle-2 {
  top: 30%;
  right: 25%;
  animation: drift-2 10s ease-in-out infinite, pulse-particle 4s ease-in-out infinite 0.5s;
}

.ellow-particle-3 {
  bottom: 20%;
  left: 15%;
  animation: drift-3 12s ease-in-out infinite, pulse-particle 3.5s ease-in-out infinite 1s;
}

.ellow-particle-4 {
  top: 60%;
  left: 40%;
  animation: drift-4 9s ease-in-out infinite, pulse-particle 4.5s ease-in-out infinite 1.5s;
}

.ellow-particle-5 {
  bottom: 40%;
  right: 30%;
  animation: drift-5 11s ease-in-out infinite, pulse-particle 3.8s ease-in-out infinite 2s;
}

.ellow-particle-6 {
  top: 45%;
  left: 60%;
  animation: drift-6 13s ease-in-out infinite, pulse-particle 4.2s ease-in-out infinite 2.5s;
}

/* Morphing Animations for Shapes */
@keyframes morph-1 {
  0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
}

@keyframes morph-2 {
  0%, 100% {
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
  }
  33% {
    border-radius: 54% 46% 38% 62% / 49% 67% 33% 51%;
  }
  66% {
    border-radius: 37% 63% 56% 44% / 49% 56% 44% 51%;
  }
}

@keyframes morph-3 {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  30% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  60% {
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
  }
}

/* Floating Animations for Shapes */
@keyframes float-slow-1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -40px) rotate(5deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

@keyframes float-slow-2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-40px, 30px) rotate(-8deg);
  }
  66% {
    transform: translate(25px, -25px) rotate(8deg);
  }
}

@keyframes float-slow-3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(35px, 35px) rotate(10deg);
  }
  66% {
    transform: translate(-30px, -20px) rotate(-10deg);
  }
}

/* Drift Animations for Particles */
@keyframes drift-1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(15px, -20px); }
  50% { transform: translate(-10px, 15px); }
  75% { transform: translate(10px, 10px); }
}

@keyframes drift-2 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-20px, 15px); }
  50% { transform: translate(12px, -18px); }
  75% { transform: translate(-8px, -10px); }
}

@keyframes drift-3 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(18px, 20px); }
  50% { transform: translate(-15px, -12px); }
  75% { transform: translate(8px, 5px); }
}

@keyframes drift-4 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-12px, -15px); }
  50% { transform: translate(20px, 10px); }
  75% { transform: translate(-5px, 18px); }
}

@keyframes drift-5 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(16px, -12px); }
  50% { transform: translate(-18px, 16px); }
  75% { transform: translate(10px, -8px); }
}

@keyframes drift-6 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-14px, 18px); }
  50% { transform: translate(15px, -15px); }
  75% { transform: translate(-10px, 12px); }
}

/* Pulse Animation for Particles */
@keyframes pulse-particle {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(2);
    opacity: 0.6;
  }
}

.ellow-solution-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.ellow-solution-title {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #0A1F44;
  line-height: 1.3;
  margin-bottom: 1rem;
  max-width: 800px;
}

.ellow-solution-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 3rem;
  max-width: 800px;
}

.ellow-solution-content {
  margin-bottom: 2rem;
}

.ellow-solution-list h3 {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #0A1F44;
  margin-bottom: 1.5rem;
}

.ellow-audit-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ellow-audit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.75);
}

.ellow-audit-item svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.ellow-solution-footer {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  max-width: 800px;
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════════════════════
   PROCESS SECTION - VERTICAL TIMELINE WITH ANIMATED LINE
   ══════════════════════════════════════════════════════════════════════════ */
.ellow-process {
  padding: 5rem 0;
  background: #F8FAFC;
}

.ellow-process-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ellow-process-title {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #0A1F44;
  line-height: 1.3;
  margin-bottom: 3rem;
  text-align: center;
}

.ellow-process-timeline {
  position: relative;
  padding-left: 0;
}

.ellow-process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 0;
  position: relative;
}

.ellow-process-step-last .ellow-step-line {
  display: none;
}

/* Left Side - Circle with connecting line */
.ellow-step-line-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  width: 60px;
}

.ellow-step-circle {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A1F44, #1E3A8A);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(10, 31, 68, 0.3);
  transition: all 0.3s ease;
}

.ellow-step-circle svg {
  color: #ffffff;
  stroke: #ffffff;
}

.ellow-process-step:hover .ellow-step-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(10, 31, 68, 0.4);
}

.ellow-step-line {
  width: 3px;
  height: 100%;
  min-height: 80px;
  background: linear-gradient(180deg, #0A1F44 0%, #1E3A8A 50%, #3B82F6 100%);
  position: relative;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.ellow-step-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #0A1F44;
  border-radius: 50%;
  animation: pulse-down 2s ease-in-out infinite;
}

@keyframes pulse-down {
  0% {
    top: 0;
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Right Side - Content */
.ellow-step-content-wrapper {
  flex: 1;
  display: flex;
  padding-bottom: 3rem;
  align-items: flex-start;
}

.ellow-step-text {
  flex: 1;
}

.ellow-step-text h4 {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #0A1F44;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.ellow-step-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   IMPACT SECTION - REDESIGNED TO MATCH REFERENCE
   ══════════════════════════════════════════════════════════════════════════ */
.ellow-impact {
  padding: 5rem 0;
  background: #ffffff;
}

.ellow-impact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.ellow-impact-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.ellow-impact-icon-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7C3AED, #6366F1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.ellow-impact-header-text {
  flex: 1;
}

.ellow-impact-tag {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: #7C3AED;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.ellow-impact-title {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A1F44;
  line-height: 1.3;
  margin: 0;
}

/* Content Grid */
.ellow-impact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

/* Left Side - Visual with Image */
.ellow-impact-visual {
  background: transparent;
}

.ellow-impact-illustration {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 2rem;
}

.ellow-impact-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 1.5rem;
}

.ellow-metric-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.ellow-metric-item svg {
  margin-bottom: 0.25rem;
}

.ellow-metric-item h4 {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #0A1F44;
  margin: 0;
}

.ellow-metric-item p {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
  line-height: 1.3;
}

/* Right Side - Benefits List (No Box) */
.ellow-impact-benefits h3 {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #0A1F44;
  margin-bottom: 1.5rem;
}

.ellow-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ellow-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ellow-benefit-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #7C3AED;
}

.ellow-benefit-icon svg {
  width: 32px;
  height: 32px;
}

.ellow-benefit-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}

.ellow-impact-quote-section {
  margin-top: 2rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(30, 58, 138, 0.25);
}

.ellow-impact-quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ellow-quote-mark {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ellow-quote-mark::before {
  content: '';
  width: 40px;
  height: 3px;
  background: #60A5FA;
  border-radius: 2px;
  flex-shrink: 0;
}

.ellow-quote-mark::after {
  content: 'INSIGHT';
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  color: #60A5FA;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ellow-impact-quote-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-style: normal;
  position: relative;
  z-index: 1;
}

.ellow-quote-mark-end {
  display: none;
}


/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE STYLES
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ellow-hero-headline {
    font-size: 2.8rem;
  }
  
  .ellow-about-content {
    grid-template-columns: 1fr;
  }
  
  .ellow-challenges-title {
    font-size: 1.6rem;
  }
  
  .ellow-challenges-examples {
    grid-template-columns: 1fr;
  }
  
  .ellow-revalabs-advantage {
    padding: 2rem;
  }
  
  .ellow-advantage-title {
    font-size: 1rem;
    flex-wrap: wrap;
  }
  
  .ellow-advantage-text {
    font-size: 0.95rem;
  }
  
  .ellow-solution-content {
    margin-bottom: 2rem;
  }
  
  .ellow-process-step {
    gap: 1.5rem;
  }
  
  .ellow-step-content-wrapper {
    gap: 1rem;
  }
  
  .ellow-impact-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .ellow-impact-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .ellow-impact-quote-section {
    padding: 2rem 0;
  }
}

@media (max-width: 768px) {
  .ellow-hero {
    padding: 100px 0 60px;
  }
  
  .ellow-hero-headline {
    font-size: 2.2rem;
  }
  .ellow-hero-title {
    font-size: 2.2rem;
  }
  
  .ellow-about-title,
  .ellow-challenges-title,
  .ellow-solution-title,
  .ellow-process-title,
  .ellow-impact-title {
    font-size: 1.6rem;
  }
  
  .ellow-challenges-title {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  
  .ellow-challenges-intro,
  .ellow-challenges-description {
    font-size: 1rem;
  }
  
  .ellow-challenges-list {
    padding: 1.5rem 1.5rem;
  }
  
  .ellow-challenges-list li {
    font-size: 0.95rem;
  }
  
  .ellow-challenges-examples li {
    font-size: 0.9rem;
    padding: 1.25rem;
  }
  
  .ellow-challenges-conclusion {
    font-size: 0.95rem;
  }
  
  .ellow-revalabs-advantage {
    padding: 2rem;
  }
  
  .ellow-advantage-title {
    font-size: 0.95rem;
  }
  
  .ellow-advantage-text {
    font-size: 0.92rem;
  }
  
  /* Process Section Mobile */
  .ellow-step-line-container {
    width: 50px;
  }
  
  .ellow-step-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
  }
  
  .ellow-step-circle svg {
    width: 24px;
    height: 24px;
  }
  
  .ellow-step-icon-box {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
  }
  
  .ellow-step-icon-box svg {
    width: 26px;
    height: 26px;
  }
  
  .ellow-step-text h4 {
    font-size: 1.1rem;
  }
  
  .ellow-step-text p {
    font-size: 0.95rem;
  }
  
  /* Impact Section Mobile */
  .ellow-impact-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .ellow-impact-icon-badge {
    width: 64px;
    height: 64px;
  }
  
  .ellow-impact-metrics {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .ellow-benefit-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .ellow-impact-quote-text {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .ellow-quote-mark,
  .ellow-quote-mark-end {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .ellow-hero-inner,
  .ellow-about-container,
  .ellow-challenges-container,
  .ellow-solution-container,
  .ellow-process-container,
  .ellow-impact-container {
    padding: 0 1.5rem;
  }
  
  .ellow-hero-headline {
    font-size: 1.8rem;
  }
  
  .ellow-challenges-container {
    padding: 0 1.5rem;
  }
  
  .ellow-challenges-title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
  
  .ellow-challenges-intro,
  .ellow-challenges-description {
    font-size: 0.95rem;
  }
  
  .ellow-challenges-list {
    padding: 1.25rem 1.25rem;
  }
  
  .ellow-challenges-list li {
    font-size: 0.9rem;
    padding-left: 1.5rem;
  }
  
  .ellow-challenges-examples li {
    font-size: 0.88rem;
    padding: 1rem 1rem 1rem 1.5rem;
  }
  
  .ellow-challenges-conclusion {
    font-size: 0.9rem;
  }
  
  .ellow-revalabs-advantage {
    padding: 1.75rem;
  }
  
  .ellow-advantage-title {
    font-size: 0.85rem;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .ellow-advantage-title::before {
    width: 30px;
    height: 2px;
  }
  
  .ellow-advantage-text {
    font-size: 0.88rem;
  }
  
  .ellow-process-step {
    padding: 1rem;
  }
  
  .ellow-step-line-container {
    width: 44px;
  }
  
  .ellow-step-circle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
  
  .ellow-step-circle svg {
    width: 20px;
    height: 20px;
  }
  
  .ellow-step-icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
  
  .ellow-step-icon-box svg {
    width: 22px;
    height: 22px;
  }
  
  .ellow-step-content-wrapper {
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 2rem;
  }
  
  .ellow-step-text h4 {
    font-size: 1rem;
  }
  
  .ellow-step-text p {
    font-size: 0.9rem;
  }
  
  /* Impact Section Small Mobile */
  .ellow-impact {
    padding: 3rem 0;
  }
  
  .ellow-impact-icon-badge {
    width: 56px;
    height: 56px;
  }
  
  .ellow-impact-icon-badge svg {
    width: 28px;
    height: 28px;
  }
  
  .ellow-impact-title {
    font-size: 1.3rem;
  }
  
  .ellow-impact-tag {
    font-size: 0.75rem;
  }
  
  .ellow-benefit-icon svg {
    width: 26px;
    height: 26px;
  }
  
  .ellow-benefit-item p {
    font-size: 0.9rem;
  }
  
  .ellow-impact-quote-text {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  
  .ellow-quote-mark,
  .ellow-quote-mark-end {
    font-size: 2.5rem;
  }
  
  .ellow-metric-item h4 {
    font-size: 0.9rem;
  }
  
  .ellow-metric-item p {
    font-size: 0.75rem;
  }
  
  .ellow-metric-item svg {
    width: 24px;
    height: 24px;
  }
  
  .ellow-impact-quote-section {
    padding: 2rem 0;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   UTILITY OVERRIDES
   ══════════════════════════════════════════════════════════════════════════ */
#main-content p,
#main-content ul,
#main-content h2,
#main-content h3,
#main-content h4 {
  max-width: none !important;
  width: auto;
}


/* ══════════════════════════════════════════════════════════════════════════
   SCROLL-TRIGGERED ENTRANCE ANIMATIONS - CONTENT BY CONTENT
   ══════════════════════════════════════════════════════════════════════════ */

/* Sections start visible — no hiding at section level */
.scroll-animate {
  opacity: 1;
}

/* Each animatable element starts hidden */
.ca-el {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* When triggered, element fades + slides up */
.ca-el.ca-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero tag — fade in only */
.ellow-hero .ca-el {
  transform: translateY(16px);
}

/* Process steps — slide in from left */
.ellow-process .ellow-process-step.ca-el {
  transform: translateX(-30px);
}

.ellow-process .ellow-process-step.ca-el.ca-visible {
  transform: translateX(0);
}

/* Challenge example cards — scale up */
.ellow-challenges .ellow-challenges-examples li.ca-el {
  transform: scale(0.94) translateY(16px);
}

.ellow-challenges .ellow-challenges-examples li.ca-el.ca-visible {
  transform: scale(1) translateY(0);
}

/* Override scroll animation transform on hover */
.ellow-challenges .ellow-challenges-examples li:hover {
  transform: scale(1.05) !important;
}

/* Impact metrics — scale from below */
.ellow-impact .ellow-metric-item.ca-el {
  transform: scale(0.85) translateY(20px);
}

.ellow-impact .ellow-metric-item.ca-el.ca-visible {
  transform: scale(1) translateY(0);
}

/* Quote box — slide up */
.ellow-impact .ellow-impact-quote-section.ca-el {
  transform: translateY(30px);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ca-el {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
