/* Why XON page (React WhyXonContent JSX classes → CSS utilities) */

/* Match React-ish overall scale */
html {
  font-size: 16px;
}

body {
  font-family: ui-sans-serif, system-ui, sans-serif;
}

/* Base */
.bg-background {
  background: #fff;
}

.bg-white {
  background: #fff;
}

.min-h-screen {
  min-height: 100vh;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  inset: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.pointer-events-none {
  pointer-events: none;
}

.z-10 {
  z-index: 10;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.top-1\/2 {
  top: 50%;
}

.left-1\/2 {
  left: 50%;
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.-translate-y-1\/2 {
  transform: translateY(-50%);
}

.blur-3xl {
  filter: blur(64px);
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.text-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-widest {
  letter-spacing: 0.12em;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* Display */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.block {
  display: block;
}

.hidden {
  display: none;
}

/* Flex / layout */
.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.flex-col {
  flex-direction: column;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.justify-between {
  justify-content: space-between;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.italic {
  font-style: italic;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.divide-y>*+* {
  border-top-width: 1px;
  border-top-style: solid;
}

.divide-gray-100>*+* {
  border-top-color: #f3f4f6;
}

.rounded-r-xl {
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

/* Sizing */
.w-1 {
  width: 0.25rem;
}

.h-1 {
  height: 0.25rem;
}

.w-1\.5 {
  width: 0.375rem;
}

.h-1\.5 {
  height: 0.375rem;
}

.w-2 {
  width: 0.5rem;
}

.h-2 {
  height: 0.5rem;
}

.w-2\.5 {
  width: 0.625rem;
}

.h-2\.5 {
  height: 0.625rem;
}

.w-4 {
  width: 1rem;
}

.h-4 {
  height: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.h-10 {
  height: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.h-12 {
  height: 3rem;
}

.w-40 {
  width: 10rem;
}

.h-40 {
  height: 10rem;
}

.w-96 {
  width: 24rem;
}

.h-96 {
  height: 24rem;
}

.w-80 {
  width: 20rem;
}

.h-80 {
  height: 20rem;
}

.max-w-7xl {
  /* max-width: 80rem;  */

  max-width: 105rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.h-full {
  height: 100%;
}

/* XON Advantage 2×2 cards: equal width (grid tracks) + equal height per row */
.xon-advantage-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-items: stretch;
}

@media (min-width: 769px) {
  .xon-advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.xon-advantage-grid>* {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.xon-advantage-grid>*>div.group {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
}

/* Spacing */
.p-4 {
  /* padding: 1rem; */
  padding: 1.3rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-5 {
  padding: 1.25rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pl-4 {
  padding-left: 1rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-4 {
  margin-left: 1rem;
}

.space-y-1\.5>*+* {
  margin-top: 0.375rem;
}

.space-y-2>*+* {
  /* margin-top: 0.5rem; */
  margin-top: 0.1rem;
}

.space-y-4>*+* {
  margin-top: 1rem;
}

.space-y-8>*+* {
  margin-top: 2rem;
}

.space-y-5>*+* {
  /* margin-top: 1.25rem;  */
  /* margin-top: 1rem; */
  margin-top: 0.6rem;
}

/* Typography */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
  align-items: center !important;
}

.text-base {
  /* font-size: 1rem; */
  /* font-size: 1.1rem; */
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-\[1\.1\] {
  line-height: 1.1;
}

.leading-\[1\.75\] {
  line-height: 1.75;
}

.text-balance {
  text-wrap: balance;
}

.whitespace-pre-line {
  white-space: pre-line;
}

/* Justified body copy: hyphenation reduces uneven word spacing in narrow columns */
.text-justify {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  overflow-wrap: break-word;
}

/* Borders */
.border {
  border-width: 1px;
  border-style: solid;
}

.border-l-2 {
  border-left-width: 2px;
  border-left-style: solid;
}

.border-l-4 {
  border-left-width: 4px;
  border-left-style: solid;
}

.border-gray-100 {
  border-color: #f3f4f6;
}

.border-gray-200 {
  border-color: #e5e7eb;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.border-red-200 {
  border-color: #fecaca;
}

.border-green-200 {
  border-color: #bbf7d0;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-b-2 {
  border-bottom-width: 2px;
  border-bottom-style: solid;
}

/* Colors (escaped) */
.text-\[\#0B0B0B\] {
  color: #0B0B0B;
}

.text-\[\#FF7A1A\] {
  color: #FF7A1A;
}

.text-\[\#7CB342\] {
  color: #7CB342;
}

.text-white {
  color: #fff;
}

.text-gray-300 {
  color: #d1d5db;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-red-600 {
  color: #dc2626;
}

.text-red-400 {
  color: #f87171;
}

.text-green-600 {
  color: #16a34a;
}

.text-green-700 {
  color: #15803d;
}

.text-green-800 {
  color: #166534;
}

.text-green-400 {
  color: #4ade80;
}

.bg-gray-300 {
  background: #d1d5db;
}

.bg-gray-400 {
  background: #9ca3af;
}

.bg-gray-50 {
  background: #f9fafb;
}

.bg-blue-50 {
  background: #eff6ff;
}

.bg-green-500 {
  background: #22c55e;
}

.bg-green-50 {
  background: #f0fdf4;
}

.bg-green-600 {
  background: #16a34a;
}

.bg-red-50 {
  background: #fef2f2;
}

.bg-orange-50 {
  background: #fff7ed;
}

.bg-\[\#FFF8F0\] {
  background: #FFF8F0;
}

.hover\:bg-gray-50:hover {
  background: #f9fafb;
}

.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.overflow-x-auto {
  overflow-x: auto;
}

.min-w-\[1000px\] {
  min-width: 1000px;
}

.w-full {
  width: 100%;
}

.max-w-xs {
  max-width: 20rem;
}

.border-2 {
  border-width: 2px;
  border-style: solid;
}

.w-14 {
  width: 3.5rem;
}

.h-14 {
  height: 3.5rem;
}

.h-7 {
  height: 1.75rem;
}

.w-7 {
  width: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.md\:text-xl {
  /* font-size: 1.25rem; */
  /* font-size: 1.35rem; */
  font-size: 1.15rem;
  line-height: 1.75rem;
}

.md\:text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.md\:text-3xl {
  /* font-size: 1.875rem; */
  /* font-size: 1.5rem; */
  font-size: 2rem;
  line-height: 2.25rem;
}

.md\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.from-white {
  --tw-gradient-from: #ffffff;
}

.to-white {
  --tw-gradient-to: #ffffff;
}

.via-orange-50\/50 {
  --tw-gradient-via: rgba(255, 237, 213, 0.5);
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-from), var(--tw-gradient-via, transparent), var(--tw-gradient-to));
}

.from-white {
  --tw-gradient-from: #ffffff;
}

.to-white {
  --tw-gradient-to: #ffffff;
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-to));
}

.from-\[\#0B0B0B\] {
  --tw-gradient-from: #0B0B0B;
}

.to-\[\#1a1a1a\] {
  --tw-gradient-to: #1a1a1a;
}

.bg-red-500 {
  background: #ef4444;
}

.bg-red-300 {
  background: #fca5a5;
}

.bg-\[\#0B0B0B\] {
  background: #0B0B0B;
}

.bg-\[\#FF7A1A\] {
  background: #FF7A1A;
}

.bg-\[\#FF7A1A\]\/10 {
  background-color: rgba(255, 122, 26, 0.1);
}

.bg-\[\#FF7A1A\]\/5 {
  background-color: rgba(255, 122, 26, 0.05);
}

.bg-\[\#7CB342\]\/5 {
  background-color: rgba(124, 179, 66, 0.05);
}

.border-\[\#7CB342\]\/20 {
  border-color: rgba(124, 179, 66, 0.2);
}

.border-\[\#FF7A1A\]\/\[0\.02\] {
  border-color: rgba(255, 122, 26, 0.02);
}

.border-\[\#FF7A1A\]\/20 {
  border-color: rgba(255, 122, 26, 0.2);
}

.border-\[\#FF7A1A\]\/30 {
  border-color: rgba(255, 122, 26, 0.3);
}

.border-\[\#FF7A1A\] {
  border-color: #FF7A1A;
}

.opacity-\[0\.02\] {
  opacity: 0.02;
}

/* Arbitrary sizes */
.w-\[600px\] {
  width: 600px;
}

.h-\[600px\] {
  height: 600px;
}

/* Shadows */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-\[\#FF7A1A\]\/25 {
  box-shadow: 0 10px 15px -3px rgba(255, 122, 26, 0.25), 0 4px 6px -4px rgba(255, 122, 26, 0.18);
}

.hover\:shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover\:shadow-\[\#FF7A1A\]\/30:hover {
  box-shadow: 0 20px 25px -5px rgba(255, 122, 26, 0.30), 0 10px 10px -5px rgba(255, 122, 26, 0.18);
}

/* Transitions */
.transition-all {
  transition: all 0.2s ease;
}

.transition-colors {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.transition-transform {
  transition: transform 0.2s ease;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.duration-700 {
  transition-duration: 700ms;
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.translate-y-8 {
  transform: translateY(2rem);
}

.translate-y-0 {
  transform: translateY(0);
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

/* Hover helpers */
.hover\:bg-\[\#FF7A1A\]\/5:hover {
  background-color: rgba(255, 122, 26, 0.05);
}

.hover\:bg-gray-400:hover {
  background: #9ca3af;
}

.hover\:border-\[\#FF7A1A\]\/20:hover {
  border-color: rgba(255, 122, 26, 0.2);
}

.hover\:border-\[\#FF7A1A\]:hover {
  border-color: #FF7A1A;
}

.hover\:text-\[\#FF7A1A\]:hover {
  color: #FF7A1A;
}

.hover\:bg-\[\#e86c10\]:hover {
  background: #e86c10;
}

.hover\:shadow-\[\#FF7A1A\]\/5:hover {
  box-shadow: 0 20px 25px -5px rgba(255, 122, 26, 0.08), 0 10px 10px -5px rgba(255, 122, 26, 0.04);
}

/* Group hover */
.group:hover .group-hover\:bg-\[\#FF7A1A\] {
  background: #FF7A1A;
}

.group:hover .group-hover\:text-white {
  color: #fff;
}

.group:hover .group-hover\:translate-x-1 {
  transform: translateX(0.25rem);
}

/* Slider dots: match design (small circles + short active pill) */
button[data-case-dot],
button[data-impact-dot] {
  height: 6px !important;
  width: 6px !important;
  border-radius: 9999px;
  display: block;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  background: #d1d5db !important;
  /* inactive dot fill */
}

button[data-case-dot].w-8,
button[data-impact-dot].w-8 {
  width: 28px !important;
}

/* Active dot: solid orange pill */
button[data-case-dot].bg-\[\#FF7A1A\],
button[data-impact-dot].bg-\[\#FF7A1A\] {
  background: #FF7A1A !important;
}

/* Hover state on inactive dots */
button[data-case-dot]:not(.bg-\[\#FF7A1A\]):hover,
button[data-impact-dot]:not(.bg-\[\#FF7A1A\]):hover {
  background: #9ca3af !important;
}

/* Slider arrows: light grey circular buttons */
button[data-case-prev],
button[data-case-next],
button[data-impact-prev],
button[data-impact-next] {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  /* background: #f3f4f6 !important; */
  background: #fff;
  border: 1px solid #d1d5db !important;
  color: #6b7280 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  box-shadow: none !important;
}

button[data-case-prev]:hover,
button[data-case-next]:hover,
button[data-impact-prev]:hover,
button[data-impact-next]:hover {
  background: #eef2f7 !important;
}

/* Grid templates */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Responsive */
@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .md\:pt-40 {
    /* padding-top: 10rem;  */
    padding-top: 5rem;
  }

  .md\:pb-28 {
    padding-bottom: 7rem;
  }

  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:py-32 {
    /* padding-top: 8rem;
    padding-bottom: 8rem; */

        padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
    /* line-height: 2rem;  */
    line-height: 2.5rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .md\:p-10 {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

/* Spend Context: enforce responsive horizontal cards (match design) */
.spend-context__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  background: #ffeee4a1;
}

@media (min-width: 768px) {
  .spend-context__cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Spend Context: card polish (consistent height + spacing) */
.spend-context__cards>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 128px;
}

/* Tick lists: strict alignment + wrap behavior (Why XON section) */
.tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* 12–14px between items */
}

.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  /* required 10px gap */
  margin: 0 !important;
}

.tick-list li>i[data-lucide],
.tick-list li>svg {
  flex: 0 0 16px;
  /* straight vertical icon column */
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.tick-list li>span,
.tick-list li>p {
  flex: 1 1 auto;
  min-width: 0;
}

.tick-list li>p {
  margin: 0;
}

/* Red dot lists: strict alignment + wrap behavior (Why XON section) */
.dot-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  /* add breathing room from the line above */
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* tighter, consistent spacing */
}

.dot-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  /* consistent gap between bullet and text */
  margin: 0 !important;
  position: relative;
}

/* Hide existing hardcoded dot span to prevent uneven spacing */
.dot-list li>span:first-child {
  display: none;
}

/* Render a consistent dot in a fixed icon column */
.dot-list li::before {
  content: "";
  flex: 0 0 16px;
  /* straight vertical bullet column */
  width: 16px;
  height: 16px;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background:
    radial-gradient(circle, #fca5a5 0 3px, transparent 3.5px);
}

.dot-list li>span:last-child {
  flex: 1 1 auto;
  min-width: 0;
}

.dot-list--orange li::before {
  background:
    radial-gradient(circle, #ff7a1a 0 3px, transparent 3.5px);
}

.dot-list--compact {
  margin-top: 0;
  gap: 8px;
}

/* 2x2 Summary cards above comparison rows */
.impact-summary {
  margin-bottom: 18px;
}

.impact-summary__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.impact-summary__card {
  background: #fff7ed;
  border: 1px solid rgba(255, 122, 26, 0.25);
  border-radius: 12px;
  padding: 14px 14px 12px;
}

.impact-summary__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.impact-summary__badge {
  /* width: 22px;
  height: 22px; */
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #ff7a1a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  flex: 0 0 auto;
}

.impact-summary__title {
  margin: 0;
  color: #0b0b0b;
  font-weight: 700;
  /* font-size: 12px; */
  font-size: 16px;
  line-height: 1.3;
}

.impact-summary__list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #374151;
  /* font-size: 11px; */
  /* font-size: 14px; */
  font-size: 16px;
  line-height: 1.45;
}

.impact-summary__waste {
  color: #ff7a1a;
  font-weight: 800;
}

@media (min-width: 768px) {
  .impact-summary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Impact comparison rows (Today / With XON / Impact) */
.impact-compare {
  display: grid;
  gap: 14px;
}

.impact-compare__row {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
}

.impact-compare__rowhead {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  background: #ff7a1a;
  color: #fff;
  padding: 12px 16px;
}

.impact-compare__index {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}

.impact-compare__title {
  margin: 0;
  /* font-size: 13px; */
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: left;
}

.impact-compare__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: #fff;
}

.impact-compare__col {
  padding: 16px 18px 18px;
  border-right: 1px solid #f1f5f9;
}

.impact-compare__col:last-child {
  border-right: 0;
}

.impact-compare__label {
  margin: 0 0 8px;
  /* font-size: 12px; */
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
}

.impact-compare__col:nth-child(2) .impact-compare__label {
  color: #ff7a1a;
}

.impact-compare__col:nth-child(3) .impact-compare__label {
  color: #16a34a;
}

.impact-compare__text {
  margin: 0 0 6px;
  /* font-size: 14px; */
  font-size: 16px;
  line-height: 1.45;
  color: #374151;
}

.impact-compare__muted {
  color: #6b7280;
}

.impact-compare__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  /* font-size: 12px; */
  font-size: 16px;
  line-height: 1.45;
  color: #374151;
}

.impact-compare__li {
  margin: 0;
  font-weight: 600;
}

.impact-compare__li--pos {
  color: #16a34a;
}

.impact-compare__li--waste {
  color: #ff7a1a;
}

.impact-compare__money {
  font-weight: 800;
}

@media (max-width: 768px) {
  .impact-compare__grid {
    grid-template-columns: 1fr;
  }

  .impact-compare__col {
    border-right: 0;
    border-top: 1px solid #f1f5f9;
  }

  .impact-compare__col:first-child {
    border-top: 0;
  }
}

.profile-list {
  list-style: none;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.profile-list li {
  margin-bottom: 0.3rem;
}

.profile-list li strong {
  color: var(--text-dark);
}

.feature-footer {
  text-align: center;
  margin-top: 4rem;
  font-size: 1.1rem;
}

.feature-footer .highlight {
  font-size: 1.3rem;
  margin-top: 0.5rem;
}

/* Case Study */
.case-study {
  padding: 6rem 0;
}

.case-study-slider {
  position: relative;
  margin-top: 3rem;
}

.case-cards-container {
  position: relative;
}

.case-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: none;
  animation: fadeIn 0.5s ease;
}

.case-card.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.case-header {
  background: var(--dark);
  color: white;
  padding: 2rem;

  /* padding: 1rem; */
}

.tag-orange {
  /* background: var(--primary); */
  color: var(--primary);
  /* padding: 0.3rem 0.8rem; */
  font-size: 1rem;
  /* font-weight: 700; */
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 1rem;
}

.case-header h3 {
  font-size: 1.8rem;
}

.case-body {
  padding: 3rem;
  /* display: grid;
    grid-template-columns: 1fr 1fr; */
  /* gap: 3rem; */

  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.case-section h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.case-section ul {
  list-style: none;
  margin-top: 1rem;
}

.case-section li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.case-section li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.key-features-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin: 2rem 0 1rem;
  letter-spacing: 1px;
}

.check-list li::before {
  content: "✓";
}

.impact-box {
  grid-column: span 2;
  background: #F0F9F4;
  padding: 2rem;
  border-radius: 10px;
}

.impact-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #2D6A4F;
}

.impact-header i {
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

.impact-box h4 {
  margin: 0;
}

.check-list-green {
  list-style: none;
}

.check-list-green li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.check-list-green li::before {
  content: "✓";
  color: #2D6A4F;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.transformation-box {
  grid-column: span 2;
  border-left: 4px solid var(--primary);
  padding: 1rem 2rem;
  margin-top: 1rem;
}

.transformation-tag {
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  gap: 1.5rem;
}

.prev-btn,
.next-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-muted);
}

.prev-btn:hover,
.next-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.dots {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #DDDDDD;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 24px;
  border-radius: 10px;
  background: var(--primary);
}

/* ROI Section */
.roi {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
  color: white;
}

.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.roi-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-card h3 {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.check-list-white {
  list-style: none;
}

.check-list-white li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.check-list-white li::before {
  content: "✓";
  color: #4CAF50;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.roi-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.roi-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 0, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  font-size: 1.2rem;
  color: #FF6B00;
}

.section-title-roi {
  font-weight: 700;
}

/* Bottom CTA */
.bottom-cta {
  padding: 8rem 0;
  text-align: center;
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.cta-description {
  max-width: 700px;
  margin: 2rem auto 3rem;
  font-size: 1.3rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 4rem 0;
  background: var(--dark);
  color: #888888;
  border-top: 1px solid #333333;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-logo img {
  margin-bottom: 1rem;
}

.footer-info {
  text-align: right;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid #222222;
}

/* .social-links a, .footer-links a {
    color: #888888;
    text-decoration: none;
    margin-right: 1.5rem;
    font-size: 0.85rem;
}

.social-links a:hover, .footer-links a:hover {
    color: white;
} */

.footer-links a {
  color: #888888;
  text-decoration: none;
  margin-right: 1.5rem;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 992px) {

  .info-grid,
  .features-grid,
  .roi-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* .case-body {
        grid-template-columns: 1fr;
    } */
  .impact-box {
    grid-column: span 1;
    padding: 18px;
  }

  .hero {
    padding: 40px;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-description .highlight {
    font-size: 1.2rem;
  }

  .intro {
    padding: 2.5rem;
  }

  .intro-text {
    font-size: 1.1rem;
    margin: 0 auto 2rem;
  }

  .sub-intro {
    margin-top: 1rem;
  }

  .info-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .banner-black p {
    font-size: 16px;
  }

  .features {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .section-subtitle {
    margin: 0 auto 2rem;
    font-size: 1.1rem;
  }

  .case-study {
    padding: 2.5rem 0;
  }

  .roi {
    padding: 2.5rem 0;
  }

  .bottom-cta {
    padding: 2.5rem 0;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-description {
    font-size: 16px;
    margin: 2rem auto 2rem;
  }

  .btn-large {
    /* padding: 0.8rem 2rem; */
    padding: 0.8rem 1rem;
    font-size: 14px;
  }

  .info-card {
    padding: 2rem 2rem 2rem;
  }

  .info-card h3 {
    font-size: 1rem;
  }

  .banner-black {
    border-radius: 8px;
    padding: 1rem 1rem;
  }

  .info-grid {
    margin-bottom: 2.5rem;
  }

}

@media (max-width: 768px) {

  .info-grid,
  .features-grid,
  .roi-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    /* font-size: 2rem; */
    font-size: 27px;

  }

  .section-tagline {
    font-size: 0.8rem;
  }

  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav a {
    margin: 0.5rem;
  }

  .hero {
    padding: 20px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-description .highlight {
    font-size: 1.3rem;
  }

  .intro {
    /* padding: 1.3rem; */
    padding: 40px 20px;
  }

  .intro .container {
    padding: 0px;
  }

  .intro-text {
    font-size: 1rem;
    margin: 0 auto 2rem;
  }

  .sub-intro {
    font-size: 1rem;
  }

  .info-grid {
    margin-bottom: 1.5rem;
  }

  .banner-black p {
    font-size: 16px;
  }

  .info-card {
    padding: 2rem 2rem 2rem;
  }

  .features {
    padding: 40px 0;
  }

  .section-subtitle {
    margin: 0 auto 2rem;
    font-size: 1rem;
  }

  .feature-footer {
    margin-top: 2rem;
    font-size: 1rem;
  }

  .feature-footer .highlight {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }

  .case-study {
    padding: 40px 0;
  }

  .transformation-box {
    grid-column: auto;
  }

  .feature-icon {
    display: flex;
    justify-content: center;
  }


  .feature-card h3 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 1rem;
  }

  .case-body {
    padding: 1rem;
  }

  .roi-card {
    padding: 1rem;
  }


  .case-header {
    padding: 1rem;
  }

  .tag-orange {
    margin-bottom: 7px;
    font-size: 12px;
  }

  .case-header h3 {
    font-size: 1.3rem;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

}


.footer-links-section {
  margin-top: 0px !important;
  padding-top: 0px !important;
}

.main-footer {
  padding-top: 40px;
}

.color-black {
  color: #0A0A0A !important;
}

.xon-subtitle-line {
  color: #99a1af;
}


@media (min-width: 993px) and (max-width: 1200px) {
  .hero {
    padding: 80px 0 80px;
  }

  .intro {
    padding: 80px 0;
  }

  .features {
    padding: 5rem 0;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
  }

  .case-study {
    padding: 5rem 0;
  }

  .roi {
    padding: 5rem 0;
  }

  .bottom-cta {
    padding: 5rem 0;
  }

  .cta-description {
    margin: 2rem auto 3rem;
    font-size: 1.1rem;
  }

  .btn-large {
    font-size: 1rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }
}

.icon-back-light-shadow {
  width: 50px;
  height: 50px;
  background: #FFF5EE;
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.sticky-show-black {
  background-color: #0A0A0A;
}

.feature-card:hover .icon-back-light-shadow {
  background-color: #FF7A1A;
  color: #FFEFE5;
}

.icon-back-light-shadow {
  transition: background-color 0.4s ease;
}

.why-xon-container {
  padding: 0px;
}

.color-sticky-black {
  color: #0A0A0A;
}

.color-sticky-white {
  color: #fff !important;
}

.privacy-style-footer-sec-link {
  margin-top: 0px !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.xon-privacy-terms-sec-style {
  padding-top: 0px !important;
}

.animate-section {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* When visible */
.animate-section.show {
  opacity: 1;
  transform: translateY(0);
}

.title-left-th {
  text-align: left;
}

.mt-6 {
  margin-top: 20px;
}


@media (max-width: 1200px) {
  .pt-32 {
    padding-top: 4rem;
  }

  .md\:text-2xl {
    font-size: 1.2rem;
    /* font-size: 1.6rem; */
  }

  .md\:pb-28 {
    padding-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .pt-32 {
    padding-top: 2rem;
  }

  .pb-20 {
    padding-bottom: 0rem;
  }

  .py-16 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .mb-16 {
    margin-bottom: 2rem;
  }

  .py-24 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .mb-20 {
    margin-bottom: 2rem;
  }

  .padding-bottom-0 {
    padding-bottom: 0px !important;
  }

  .demo-btn-request {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.bg-light-gray {
  background-color: #f3f4f6;
}

.why-xon-content {
  /* font-size: 13px !important; */
  font-size: 16px !important;
  line-height: 1.65rem !important;
}

.font-size-lets-talk-box {
  font-size: 16px;
}

.font-talks-desc {
  /* font-size: 13px !important; */
  font-size: 16px !important;
  line-height: 1.45rem !important;
}

.m-b-2 {
  margin-bottom: 0.3rem;
}

.why-xon-advantage-title-font-style {
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.why-xon-title-font-size {
  font-size: 20px;
}

.why-xon-title-font-size-24 {
  font-size: 24px;
}

.xon-impact-part {
  margin: 10px 0;
}

.global-text-heighlight {
  border-left-width: 4px;
  border-left-style: solid;
  background: #ff7a1a1a;
}

.font-global-size {
  font-size: 1.7rem;
  color: #99a1af;
}

.font-desc-12 {
  /* font-size: 12px; */
  font-size: 14px;
}

.border-table {
  border-collapse: collapse;
}

.d-item-center {
  align-items: center;
}

.max-w-3xl-lets-talk-sec {
  max-width: 52rem;
}

.leader-request-btn {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* .financial-table thead::after{
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background-color: red;
} */

.text-right {
  /* text-align: right; */
}

.text-left {
  text-align: left;
}


@media (max-width: 520px) {
  .font-s-13 {
    font-size: 13px !important;
  }
}

.why-xon-learning-box {
  background-color: #F9F9F9;
  border-left: 4px solid #ED7D31;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.why-xon-title-font-size {
  font-size: 18px;
  /* color: #1F4E79; */
}

/* Hover Effect */
.why-xon-learning-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.xon-learning-advantage-section-width {
  max-width: 1200px;
}


/* Table Container and General Styling */
.impact-overview-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  /* Minimum font size requirement */
}

/* Header Styling */
.impact-overview-table th {
  background-color: #1F4E79;
  /* Dark Navy */
  color: #FFFFFF;
  /* White Text */
  font-weight: bold;
  padding: 15px 10px;
  text-align: left;
}

/* Standard Row Styling */
.impact-overview-table tr {
  background-color: #FFFFFF;
  /* White */
}

/* Alternate Row Styling (Zebra Striping) */
.impact-overview-table tr:nth-child(even) {
  background-color: #DEEAF1;
  /* Light Navy */
}

/* Cell Spacing for Readability */
.impact-overview-table td {
  padding: 18px 10px;
  /* Increased row height */
  line-height: 1.4;
  vertical-align: middle;
  border-bottom: 1px solid #d1dce3;
  /* Subtle border for clarity */
}

.nowrap {
  white-space: nowrap;
}


.statistics-panel {
  background-color: #1F4E79;
  width: 100%;
  padding: 80px 20px;
  border-radius: 15px;
}

.statistics-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.statistics-title {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
}

.statistic-item {
  margin-bottom: 50px;
}

.statistic-item:last-child {
  margin-bottom: 0;
}

.statistic-percentage {
  display: block;
  color: #ED7D31;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.statistic-description {
  color: #FFFFFF;
  /* font-size: 24px; */
  font-size: 18px;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .statistics-panel {
    padding: 60px 16px;
  }

  .statistics-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .statistic-percentage {
    font-size: 64px;
  }

  .statistic-description {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .statistic-percentage {
    font-size: 56px;
  }

  .statistic-description {
    font-size: 16px;
  }
}

.mx-width-lets-talk-money-sec {
  max-width: 1200px;
}


/* Section container */
.inefficiency-section {
  max-width: 1200px;
  margin: 0 auto;
}

.inefficiency-section .section-title {
  color: #1F4E79;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

/* Panels container - grid layout */
.panels-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .panels-container {
    grid-template-columns: 1fr;
  }
}

/* Individual panel styles */
.panel {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 180px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Light panel: White background with dark navy text */
.panel-light {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
}

.panel-light .percentage {
  color: #ED7D31;
}

.panel-light .description {
  color: #1F4E79;
}

/* Dark panel: Dark navy background with white text */
.panel-dark {
  background-color: #1F4E79;
  border: none;
}

.panel-dark .percentage {
  color: #ED7D31;
}

.panel-dark .description {
  color: #FFFFFF;
}

/* Percentage styling - focal point */
.percentage {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

/* Description text */
.description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}


/* ROI Section Styles */
.roi-section {
  /* padding: 60px 20px;
    max-width: 800px; */
  margin: 0 auto;
}

.roi-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 40px;
}

.roi-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Left-alignment for all descriptive text */
.roi-intro,
.roi-description,
.roi-label,
.roi-footer {
  text-align: left;
}

.roi-intro {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 16px;
  font-weight: 500;
}

.roi-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 24px 0;
  padding: 24px;
  background: #1F4E79;
  border-radius: 12px;
}

/* Centre-alignment for standalone numeric values */
.roi-value {
  font-size: 3.5rem;
  font-weight: 800;
  /* color: #ffffff; */
  color: #ED7D31;
  text-align: center;
  line-height: 1.2;
}

.roi-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 8px;
}

.roi-description {
  font-size: 1rem;
  color: #2d3748;
  margin: 24px 0;
  /* padding: 0 16px; */
}

.roi-footer {
  font-size: 18px;
  color: #2d3748;
  margin-top: 24px;
  /* font-style: italic; */
}

/* Responsive Design */
@media (max-width: 600px) {
  .roi-section {
    padding: 40px 16px;
  }

  .roi-title {
    font-size: 1.75rem;
  }

  .roi-content {
    padding: 24px;
  }

  .roi-value {
    font-size: 2.5rem;
  }

  .roi-intro,
  .roi-description {
    font-size: 1rem;
  }
}

.why-matter-content-sub-txt {
  font-size: 16px;
}

.bg-light-orange {
  background-color: #FFF2CC;
}

.border-black-line {
  border-color: #33333326 !important;
}

.primary-orange-color {
  color: #ED7D31;
}

.impact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.impact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: #DEEAF1; */
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  /* padding: 28px 32px; */
  /* padding: 20px 24px; */
  padding: 10px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.region {
  display: flex;
  align-items: center;
  gap: 20px;
}

.region-code {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  /* background: #eef2f7; */
  /* color: #1F4E79; */
  color: #99a1af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.region-details h3 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 700;
  /* color: #1F4E79; */
  color: #0B0B0B;
}

.region-details p {
  margin: 0;
  font-size: 16px;
  color: #6b7280;
}

.recovered-value-card {
  /* background: #DEEAF1; */
  color: #1F4E79;
  padding: 24px 28px;
  border-radius: 16px;
  min-width: 360px;
  text-align: right;
}

.recovered-value-label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0.85;
  letter-spacing: 0.2px;
  color: #99a1af;
}

.recovered-value-figure {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  color: #FF7A1A;
}

.recovered-value-figure span {
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .impact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .recovered-value-card {
    width: 100%;
    text-align: left;
    min-width: unset;
  }

  .header h1 {
    font-size: 36px;
  }
}

@media (max-width: 1600px) {
  .mx-width-lets-talk-money-sec {
    max-width: 1250px;
  }
}


@media (max-width: 900px) {
  .region {
    flex-direction: column;
    gap: 0;
  }

  .impact-row {
    align-items: center;
    gap: 0;
  }

  .region-details {
    text-align: center;
    margin-bottom: 12px;
  }

  .recovered-value-card {
    text-align: center;
  }

  .recovered-value-figure {
    font-size: 26px;
  }

  .recovered-value-figure span {
    font-size: 20px;
  }
}

.sub-title-color {
  color: #1F4E79;
}

@media (min-width: 1800px) {
  .xon-learning-advantage-section-width {
    max-width: 1400px;
  }

  .mx-width-lets-talk-money-sec {
    max-width: 1400px;
  }
}


/* New Roi Design*/

/* .roi-main-sec .roi-card {
      max-width: 1400px;
      margin: auto;
    
      background-color: #0B0B0B;
      border-radius: 28px;
      padding: 42px;
      color: #fff;
      box-shadow: 0 20px 60px rgba(0,0,0,0.35);
      overflow: hidden;
      position: relative;
    }
 
.roi-main-sec    .header {
      display: flex;
      align-items: center;
      gap: 22px;
      margin-bottom: 40px;
    }
 
.roi-main-sec    .header-icon {
      width: 92px;
      height: 92px;
      border-radius: 50%;
      background: linear-gradient(145deg, #1b2736, #0d1118);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow:
        inset 0 0 25px rgba(255,255,255,0.05),
        0 8px 30px rgba(0,0,0,0.35);
      font-size: 42px;
    }
 
 .roi-main-sec   .header h1 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 8px;
      letter-spacing: -2px;
    }
 
.roi-main-sec    .header p {
      font-size: 16px;
      color: #d0d5dc;
      line-height: 1.5;
    }
 
.roi-main-sec    .roi-box {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      border-radius: 24px;
      margin-bottom: 34px;
      position: relative;
      overflow: hidden;
    }
 
.roi-main-sec    .roi-box.orange {
      background: linear-gradient(
        90deg,
        rgba(255, 120, 0, 0.18),
        rgba(255, 90, 0, 0.08)
      );
      border: 1px solid rgba(255, 132, 0, 0.4);
    }
 
.roi-main-sec    .roi-box.green {
      background: linear-gradient(
        90deg,
        rgba(0, 255, 140, 0.16),
        rgba(0, 255, 140, 0.06)
      );
      border: 1px solid rgba(0, 255, 140, 0.3);
    }
 
.roi-main-sec    .left-section {
      display: flex;
      align-items: center;
      gap: 28px;
      width: 65%;
    }
 
.roi-main-sec    .circle-icon {
      min-width: 82px;
      height: 82px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 46px;
      font-weight: bold;
    }
 
 .roi-main-sec   .orange .circle-icon {
      background: radial-gradient(circle, #ff8c1a, #b44b00);
      box-shadow: 0 0 40px rgba(255, 132, 0, 0.4);
    }
 
.roi-main-sec    .green .circle-icon {
      background: radial-gradient(circle, #00ff95, #00794b);
      box-shadow: 0 0 40px rgba(0, 255, 149, 0.3);
    }
 
.roi-main-sec    .content h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
    }
 
.roi-main-sec    .content p {
      font-size: 18px;
      line-height: 1.3;
      font-weight: 600;
      color: #f3f5f7;
    }
 
.roi-main-sec    .content span {
      color: #37ff9f;
    }
 
.roi-main-sec    .divider {
      width: 1px;
      height: 110px;
      background: rgba(255,255,255,0.12);
    }
 
 .roi-main-sec   .value {
      width: 28%;
      text-align: center;
     
      font-size: 64px;
      font-weight: 800;
      letter-spacing: -3px;
    }
 
 .roi-main-sec   .orange .value {
      color: #ff8b1f;
      text-shadow: 0 0 30px rgba(255, 132, 0, 0.35);
    }
 
.roi-main-sec    .green .value {
      color: #32ff98;
      text-shadow: 0 0 30px rgba(0, 255, 140, 0.35);
    }
 
.roi-main-sec    .description {
      margin: 26px 10px 40px;
      font-size: 16px;
      line-height: 1.3;
      color: #d8dde4;
      max-width: 1000px;
    }
 
 .roi-main-sec   .description span {
      color: #37ff9f;
      font-weight: 700;
    }
 
 .roi-main-sec   .footer {
      margin-top: 14px;
      padding-top: 26px;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      gap: 20px;
      color: #d5dae2;
      font-size: 16px;
      font-weight: 500;
      padding-bottom: 0px;
    }
 
.roi-main-sec    .rocket {
      color: #37ff9f;
      font-size: 42px;
    }
 
    @media (max-width: 992px) {
 .roi-main-sec     .roi-box {
        flex-direction: column;
        gap: 30px;
      }
 
.roi-main-sec      .left-section {
        width: 100%;
      }
 
.roi-main-sec      .divider {
        width: 100%;
        height: 1px;
      }
 
.roi-main-sec      .value {
        width: 100%;
      }
 
 .roi-main-sec     .header h1 {
        font-size: 42px;
      }
 
.roi-main-sec      .content p {
        font-size: 28px;
      }
 
.roi-main-sec      .value {
        font-size: 64px;
      }
 
.roi-main-sec      .description,
 .roi-main-sec     .footer {
        font-size: 24px;
      }
    } */


.roi-main-sec .roi-card {
  max-width: 1400px;
  margin: auto;
  background-color: #0B0B0B;
  border-radius: 28px;
  padding: 42px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  position: relative;
}

/* ================= HEADER ================= */

.roi-main-sec .header {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 40px;
}

.roi-main-sec .header-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1b2736, #0d1118);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 0 25px rgba(255, 255, 255, 0.05),
    0 8px 30px rgba(0, 0, 0, 0.35);
  font-size: 42px;
  flex-shrink: 0;
}

.roi-main-sec .header h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.roi-main-sec .header p {
  font-size: 16px;
  color: #d0d5dc;
  line-height: 1.5;
}

/* ================= ROI BOX ================= */

.roi-main-sec .roi-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-radius: 24px;
  margin-bottom: 34px;
  position: relative;
  overflow: hidden;
  gap: 24px;
}

.roi-main-sec .roi-box.orange {
  background: linear-gradient(90deg,
      rgba(255, 120, 0, 0.18),
      rgba(255, 90, 0, 0.08));
  border: 1px solid rgba(255, 132, 0, 0.4);
}

.roi-main-sec .roi-box.green {
  background: linear-gradient(90deg,
      rgba(0, 255, 140, 0.16),
      rgba(0, 255, 140, 0.06));
  border: 1px solid rgba(0, 255, 140, 0.3);
}

.roi-main-sec .left-section {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.roi-main-sec .circle-icon {
  /* width: 82px;
  min-width: 82px; */
  width: 62px;
  min-width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
  flex-shrink: 0;
}

.roi-main-sec .orange .circle-icon {
  background: radial-gradient(circle, #ff8c1a, #b44b00);
  box-shadow: 0 0 40px rgba(255, 132, 0, 0.4);
}

.roi-main-sec .green .circle-icon {
  background: radial-gradient(circle, #00ff95, #00794b);
  box-shadow: 0 0 40px rgba(0, 255, 149, 0.3);
}

.roi-main-sec .content {
  min-width: 0;
}

.roi-main-sec .content h3 {
  font-size: 20px;
  font-weight: 700;
  /* margin-bottom: 10px; */
  margin-bottom: 4px;
  line-height: 1.3;
}

.roi-main-sec .content p {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  color: #f3f5f7;
}

.roi-main-sec .content span {
  color: #37ff9f;
}

.roi-main-sec .divider {
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.roi-main-sec .value {
  min-width: 180px;
  text-align: center;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
}

.roi-main-sec .orange .value {
  color: #ff8b1f;
  text-shadow: 0 0 30px rgba(255, 132, 0, 0.35);
}

.roi-main-sec .green .value {
  color: #32ff98;
  text-shadow: 0 0 30px rgba(0, 255, 140, 0.35);
}

/* ================= DESCRIPTION ================= */

.roi-main-sec .description {
  margin: 26px 10px 40px;
  font-size: 16px;
  /* line-height: 1.8; */
  line-height: 1.2;
  color: #d8dde4;
  max-width: 1000px;
}

.roi-main-sec .description span {
  color: #37ff9f;
  font-weight: 700;
}

/* ================= FOOTER ================= */

.roi-main-sec .footer {
  margin-top: 14px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  color: #d5dae2;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 0px;
}

.roi-main-sec .rocket {
  color: #37ff9f;
  font-size: 42px;
}

/* ================= LARGE TABLETS ================= */

@media (max-width: 1200px) {
  .roi-main-sec .value {
    font-size: 54px;
  }

  .roi-main-sec .content h3 {
    font-size: 18px;
  }

  .roi-main-sec .content p {
    font-size: 16px;
  }
}

/* ================= TABLETS ================= */

@media (max-width: 992px) {
  .roi-main-sec .roi-card {
    padding: 32px 24px;
  }

  .roi-main-sec .header {
    align-items: flex-start;
  }

  .roi-main-sec .header h1 {
    font-size: 32px;
  }

  .roi-main-sec .header p {
    font-size: 15px;
  }

  .roi-main-sec .roi-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }

  .roi-main-sec .left-section {
    width: 100%;
  }

  .roi-main-sec .divider {
    width: 100%;
    height: 1px;
  }

  .roi-main-sec .value {
    width: 100%;
    min-width: 100%;
    text-align: left;
    font-size: 56px;
  }

  .roi-main-sec .description,
  .roi-main-sec .footer {
    font-size: 15px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .roi-main-sec .roi-card {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .roi-main-sec .header {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    align-items: center;
  }

  .roi-main-sec .header-icon {
    width: 72px;
    height: 72px;
    font-size: 32px;
    margin: auto;
  }

  .roi-main-sec .header h1 {
    font-size: 28px;
  }

  .roi-main-sec .header p {
    font-size: 16px;
  }

  .roi-main-sec .left-section {
    flex-direction: column;
    text-align: center;
  }

  .roi-main-sec .circle-icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
    font-size: 34px;
  }

  .roi-main-sec .content h3 {
    font-size: 18px;
  }

  .roi-main-sec .content p {
    font-size: 15px;
  }

  .roi-main-sec .value {
    text-align: center;
    font-size: 46px;
  }

  .roi-main-sec .description {
    margin: 10px 0 30px;
    font-size: 14px;
    /* line-height: 1.7; */
    line-height: 1;
    text-align: center;
  }

  .roi-main-sec .footer {
    justify-content: center;
    text-align: center;
    font-size: 14px;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
  .roi-main-sec .roi-card {
    padding: 18px 14px;
  }

  .roi-main-sec .header h1 {
    font-size: 24px;
  }

  .roi-main-sec .roi-box {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .roi-main-sec .circle-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .roi-main-sec .content h3 {
    font-size: 16px;
  }

  .roi-main-sec .content p {
    font-size: 14px;
  }

  .roi-main-sec .value {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .roi-main-sec .description,
  .roi-main-sec .footer {
    font-size: 13px;
  }
}





/* .stats-section{
 
      max-width:1400px;
      margin:auto;
 
      background:
      radial-gradient(circle at top left,#2c5c8d 0%,#183452 40%,#0a1624 100%);
 
      border-radius:28px;
 
      padding:60px 60px;
 
      position:relative;
      overflow:hidden;
 
      box-shadow:
      0 25px 60px rgba(0,0,0,0.35);
 
    }
 
 
 
    .stats-section::before{
      content:'';
      position:absolute;
      width:500px;
      height:500px;
      background:rgba(255,132,0,0.08);
      border-radius:50%;
      top:-200px;
      right:-120px;
      filter:blur(80px);
    }
 
    .stats-section::after{
      content:'';
      position:absolute;
      width:400px;
      height:400px;
      background:rgba(0,255,170,0.06);
      border-radius:50%;
      bottom:-180px;
      left:-100px;
      filter:blur(90px);
    }
 
    .stats-section .top-title{
 
      text-align:center;
      color:#ffffff;
          font-size: 28px;
      font-weight:700;
      margin-bottom:60px;
 
      position:relative;
      z-index:2;
 
    }
 
    .stats-section .top-title span{
      color:#ff8d32;
    }
 
    .stats-section .stats-grid{
 
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:28px;
 
      position:relative;
      z-index:2;
 
    }
 
    .stats-section .stat-card{
 
      background:rgba(255,255,255,0.06);
 
      border:1px solid rgba(255,255,255,0.08);
 
      backdrop-filter:blur(12px);
 
      border-radius:24px;
 
      padding:45px 35px;
 
      text-align:center;
 
      transition:0.4s ease;
 
      position:relative;
 
      overflow:hidden;
    }
 
    .stats-section .stat-card:hover{
      transform:translateY(-8px);
 
      border-color:rgba(255,141,50,0.35);
 
      box-shadow:
      0 20px 40px rgba(0,0,0,0.25);
    }
 
    .stats-section .stat-card::before{
      content:'';
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:4px;
 
      background:linear-gradient(
      90deg,
      #ff8d32,
      #ffb067
      );
    }
 
    .stats-section .stat-number{
 
  
      font-size: 64px;
      font-weight:700;
 
      color:#ff8d32;
 
      letter-spacing:-3px;
 
      margin-bottom:18px;
 
      line-height:1;
    }
 
    .stats-section .stat-text{
 
      font-size:18px;
      line-height:1.6;
 
      color:#edf2f7;
 
      max-width:320px;
      margin:auto;
    }
 
    .stats-section .highlight{
      color:#36ffb0;
      font-weight:700;
    }
 
    .stats-section .bottom-line{
 
      margin-top:60px;
 
      text-align:center;
 
      color:#b8c4d1;
 
      font-size:20px;
 
      line-height:1.7;
 
      position:relative;
      z-index:2;
    }
 
    .stats-section .bottom-line strong{
      color:#ffffff;
    }
 
    @media(max-width:992px){
 
      .stats-section .stats-grid{
        grid-template-columns:1fr;
      }
 
      .stats-section .top-title{
        font-size:18px;
        margin-bottom: 40px;
      }
 
      .stats-section .stat-number{
        font-size:40px;
      }
 
      .stats-section .stat-text{
        font-size:18px;
      }

      .stats-section .stats-section{
        padding: 18px;
      }
 
    } */

.stats-section {
  max-width: 1400px;
  margin: auto;
  /* background: radial-gradient(circle at top left,
      #2c5c8d 0%,
      #183452 40%,
      #0a1624 100%); */

  background-color: #0B0B0B;
  border-radius: 28px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

/* ================= GLOW EFFECTS ================= */

.stats-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 132, 0, 0.08);
  border-radius: 50%;
  top: -200px;
  right: -120px;
  filter: blur(80px);
}

.stats-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(0, 255, 170, 0.06);
  border-radius: 50%;
  bottom: -180px;
  left: -100px;
  filter: blur(90px);
}

/* ================= TITLE ================= */

.stats-section .top-title {
  text-align: center;
  color: #ffffff;

  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;

  margin-bottom: 60px;

  position: relative;
  z-index: 2;
}

.stats-section .top-title span {
  color: #ff8d32;
  display: block;
  margin-top: 8px;
}

/* ================= GRID ================= */

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

  position: relative;
  z-index: 2;
}

/* ================= CARD ================= */

.stats-section .stat-card {
  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(12px);

  border-radius: 24px;

  padding: 45px 35px;

  text-align: center;

  transition: 0.4s ease;

  position: relative;

  overflow: hidden;
}

.stats-section .stat-card:hover {
  transform: translateY(-8px);

  border-color: rgba(255, 141, 50, 0.35);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.stats-section .stat-card::before {
  content: '';
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(90deg,
      #ff8d32,
      #ffb067);
}

/* ================= TEXT ================= */

.stats-section .stat-number {
  font-size: 64px;
  font-weight: 700;

  color: #ff8d32;

  letter-spacing: -3px;

  margin-bottom: 18px;

  line-height: 1;

  word-break: break-word;
}

.stats-section .stat-text {
  font-size: 18px;
  line-height: 1.7;

  color: #edf2f7;

  max-width: 320px;
  margin: auto;
}

.stats-section .highlight {
  color: #36ffb0;
  font-weight: 700;
}

/* ================= BOTTOM TEXT ================= */

.stats-section .bottom-line {
  margin-top: 60px;

  text-align: center;

  color: #b8c4d1;

  font-size: 20px;

  line-height: 1.8;

  position: relative;
  z-index: 2;
}

.stats-section .bottom-line strong {
  color: #ffffff;
}

/* =========================================================
   LARGE TABLETS
========================================================= */

@media (max-width: 1200px) {
  .stats-section {
    padding: 50px 40px;
  }

  .stats-section .top-title {
    font-size: 28px;
  }

  .stats-section .stat-number {
    font-size: 56px;
  }

  .stats-section .stat-text {
    font-size: 17px;
  }
}

/* =========================================================
   TABLETS
========================================================= */

@media (max-width: 992px) {
  .stats-section {
    padding: 45px 28px;
    border-radius: 24px;
  }

  .stats-section .stats-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .stats-section .top-title {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.5;
  }

  .stats-section .stat-card {
    padding: 38px 28px;
  }

  .stats-section .stat-number {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .stats-section .stat-text {
    font-size: 17px;
    max-width: 100%;
  }

  .stats-section .bottom-line {
    margin-top: 45px;
    font-size: 18px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
  .stats-section {
    padding: 35px 20px;
    border-radius: 20px;
  }

  .stats-section::before {
    width: 260px;
    height: 260px;
    top: -100px;
    right: -70px;
  }

  .stats-section::after {
    width: 220px;
    height: 220px;
    bottom: -90px;
    left: -70px;
  }

  .stats-section .top-title {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .stats-section .top-title span {
    margin-top: 6px;
  }

  .stats-section .stat-card {
    padding: 32px 22px;
    border-radius: 20px;
  }

  .stats-section .stat-number {
    font-size: 40px;
    margin-bottom: 14px;
  }

  .stats-section .stat-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .stats-section .bottom-line {
    margin-top: 35px;
    font-size: 15px;
    line-height: 1.7;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .stats-section {
    padding: 28px 15px;
  }

  .stats-section .top-title {
    font-size: 18px;
    line-height: 1.5;
  }

  .stats-section .stats-grid {
    gap: 18px;
  }

  .stats-section .stat-card {
    padding: 26px 18px;
    border-radius: 18px;
  }

  .stats-section .stat-number {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .stats-section .stat-text {
    font-size: 14px;
  }

  .stats-section .bottom-line {
    font-size: 14px;
    margin-top: 28px;
  }
}






.loss-section {
  /* max-width: 1400px;
  margin: auto; */
  /* background: radial-gradient(circle at top left,
      #2e5d8f 0%,
      #183452 45%,
      #091521 100%); */

  background-color: #0B0B0B;
  /* border-radius: 30px; */
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

/* ================= BACKGROUND GLOW ================= */

.loss-section::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(255, 132, 0, 0.12);
  border-radius: 50%;
  top: -180px;
  right: -120px;
  filter: blur(90px);
}

.loss-section::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(0, 255, 180, 0.08);
  border-radius: 50%;
  bottom: -120px;
  left: -100px;
  filter: blur(90px);
}

/* ================= HEADER ================= */

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-header h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -2px;
}

.section-header p {
  font-size: 26px;
  color: #d5deea;
  line-height: 1.7;
}

.section-header span {
  color: #ff963f;
  font-weight: 800;
}

/* ================= GRID ================= */

.cards-grid {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
  max-width: 1350px;
  margin: auto;
}

/* ================= CARD ================= */

.loss-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 42px 36px;
  min-height: 230px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  backdrop-filter: blur(12px);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.loss-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 150, 63, 0.4);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}

.loss-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background: linear-gradient(90deg,
      #ff963f,
      #ffbc7b);
}

/* ================= ICON ================= */

.icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;

  margin-bottom: 26px;

  background: rgba(255, 150, 63, 0.12);

  border: 1px solid rgba(255, 150, 63, 0.18);

  color: #ff963f;

  flex-shrink: 0;
}

/* ================= TEXT ================= */

.percentage {
  /* font-size: 64px; */
  font-size: 40px;
  font-weight: 700;
  color: #ff963f;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -3px;
  word-break: break-word;
}

.title {
  /* font-size: 22px; */
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  /* margin-bottom: 10px; */
  margin-bottom: 0px;
  line-height: 1.4;
}

.description {
  font-size: 16px;
  line-height: 1.7;
  color: #c9d5e2;
}

/* ================= FOOTER NOTE ================= */

.bottom-note {
  margin-top: 55px;
  text-align: center;
  color: #d4dbe5;
  font-size: 24px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.bottom-note strong {
  color: #ffffff;
}

/* =========================================================
   LARGE TABLETS
========================================================= */

@media (max-width: 1200px) {
  .loss-section {
    padding: 60px 40px;
  }

  .section-header h1 {
    font-size: 52px;
  }

  .section-header p {
    font-size: 22px;
  }

  .percentage {
    font-size: 40px;
  }

  .cards-grid {
    /* grid-template-columns: 1fr; */
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* =========================================================
   TABLETS
========================================================= */





@media (max-width: 992px) {
  .loss-section {
    padding: 50px 30px;
    /* border-radius: 24px; */
  }


  .section-header {
    margin-bottom: 40px;
  }

  .section-header h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .section-header p {
    font-size: 20px;
    line-height: 1.6;
  }

  .loss-card {
    padding: 34px 28px;
    min-height: auto;
  }

  .percentage {
    font-size: 52px;
  }

  .title {
    font-size: 22px;
  }

  .description {
    font-size: 17px;
  }

  .bottom-note {
    font-size: 20px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
  .loss-section {
    padding: 40px 20px;
    /* border-radius: 20px; */
  }

  .loss-section::before {
    width: 260px;
    height: 260px;
    top: -100px;
    right: -80px;
  }

  .loss-section::after {
    width: 220px;
    height: 220px;
    bottom: -80px;
    left: -70px;
  }

  .section-header h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .section-header p {
    font-size: 16px;
  }

  .loss-card {
    padding: 28px 22px;
    border-radius: 22px;
    align-items: center;
    text-align: center;
  }

  .icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
    margin-bottom: 20px;
  }

  .percentage {
    font-size: 42px;
    letter-spacing: -2px;
    margin-bottom: 14px;
  }

  .title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .description {
    font-size: 15px;
    line-height: 1.6;
  }

  .bottom-note {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.6;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .loss-section {
    padding: 30px 15px;
  }

  .section-header h1 {
    font-size: 26px;
  }

  .section-header p {
    font-size: 14px;
  }

  .cards-grid {
    gap: 18px;
  }

  .loss-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .icon {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }

  .percentage {
    font-size: 34px;
  }

  .title {
    font-size: 18px;
    line-height: 1.4;
  }

  .description {
    font-size: 14px;
  }

  .bottom-note {
    font-size: 14px;
  }
}




/*Net Impact section style start */
.net-impact-card {
  width: 100%;
  max-width: 1350px;

  /* Dark green gradient from top image */
  /* background: linear-gradient(90deg, #022b22 0%, #003126 35%, #003a2c 100%);
  border: 1px solid rgba(0, 255, 140, 0.3); */
  /* background: #fff7ed; */
  /* background: #fff7ed; */
  /* background: #fff;
  border: 1px solid rgba(255, 122, 26, 0.25); */

  background: rgb(22 163 74 / 6%);
  border: 1px solid rgb(22 163 74 / 67%);

  /* border-radius: 24px; */
  border-radius: 14px;
  /* padding: 50px 40px; */
  padding: 36px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18) !important;
}

.net-impact-label {
  /* color: #fff; */
  /* color: #0B0B0B; */
  color: rgb(22, 163, 74);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.net-impact-value {
  /* color: #FF7A1A; */
  color: rgb(22, 163, 74);
  /* font-size: 48px; */
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}

.net-impact-text {
  color: #0B0B0B;
  font-size: 18px;
  line-height: 1.5;
}

.net-impact-highlight {
  color: #FF7A1A;
  font-weight: 700;
}

/* Tablet */
@media (max-width: 992px) {
  .net-impact-card {
    padding: 40px 25px;
  }

  .net-impact-value {
    font-size: 56px;
  }

  .net-impact-text {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .net-impact-card {
    border-radius: 18px;
    padding: 30px 20px;
  }

  .net-impact-label {
    font-size: 16px;
  }

  .net-impact-value {
    font-size: 34px;
  }

  .net-impact-text {
    font-size: 16px;
  }
}

/* End */


.mb-60 {
  margin-bottom: 60px;
}

/* ===================================================
   FEEDBACK IMPLEMENTATION - Why XON Page Fixes
   =================================================== */

/* Make stat numbers HUGE for C-suite impact */
/* .stat-number {
    font-size: 96px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    color: #FF7A1A !important;
    margin-bottom: 12px !important;
} */

/* Orange halo on about page cards */

.feature-card-about,
.about-card,
[class*="card"] {
  box-shadow: 0 8px 32px rgba(255, 122, 26, 0.18) !important;
}

.net-impact-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18) !important;
}

/* Fix body font size */
body {
  font-size: 17px !important;
  line-height: 1.65 !important;
}

/* Default left-align body text */
/* p, li, .section-desc {
    text-align: left !important;
} */
li,
.section-desc {
  text-align: left !important;
}

/* But keep hero and headings center */
/* .text-center, .hero-heading, h1, h2.section-title {
    text-align: center !important;
} */

.text-center,
h2.section-title {
  text-align: center !important;
}

/* Widen container */
.container,
.max-w-7xl {
  max-width: 1320px !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
}

/* Improve table - fix column widths */
.impact-overview-table th,
.impact-overview-table td {
  white-space: nowrap;
}

.impact-overview-table td:last-child {
  white-space: normal;
  min-width: 200px;
}

/* Make "Challenge / Learning Solution / Impact" orange */
.title-challenge {
  color: #9ca3af !important;
}


/* .tab-list-item,
h4.tab-list-item {
    color: #FF7A1A !important;
} */

/* Video fullscreen button */
.video-fullscreen-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
  z-index: 10;
  transition: background 0.2s;
}

.video-fullscreen-btn:hover {
  background: rgba(255, 122, 26, 0.8);
}

.video-wrapper {
  position: relative !important;
}

.key-high-light {
  display: flex;
  justify-content: center;
  align-items: center;
}

.energy-icon {
  margin-top: 5px;
  margin-right: 10px;
}

@media (max-width: 500px) {
  .key-high-light {
    flex-direction: column;
  }
}



/*Case Study Impact Overview Table Design */
/* .container{
    max-width:1200px;
    margin:auto;
}


.case-study-table-top-label{
    text-align:center;
    color:#ff6b00;
    font-size:14px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.case-study-table-main-title{
    text-align:center;
    font-size:46px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:16px;
}

.case-study-table-main-desc{
    max-width:760px;
    margin:0 auto 50px;
    text-align:center;
    color:#667085;
    font-size:15px;
    line-height:1.7;
}


.case-study-table-table-header{
    display:grid;
    grid-template-columns:2.2fr repeat(5,1fr);
    background:#101828;
    border-radius:4px;
    overflow:hidden;
    margin-bottom:18px;
}

.case-study-table-table-header div{
    color:#fff;
    padding:18px 16px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
}


.case-study-table-case-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    border:1px solid #e5e7eb;
    margin-bottom:22px;
    box-shadow:0 4px 10px rgba(0,0,0,0.04) !important;
}


.case-study-table-card-grid{
    display:grid;
    grid-template-columns:2.2fr repeat(5,1fr);
    padding:16px 0;
    box-shadow: unset !important;
}

.case-study-table-grid-cell{
    padding:0 18px;
}

.case-study-table-grid-cell:last-child{
    border-right:none;
}


.case-study-table-sector{
    border-left:4px solid #ff6b00;
    padding-left:18px;
}

.case-study-table-sector h3{
    font-size:16px;
    font-weight:700;
    margin-bottom:6px;
}

.case-study-table-sector p{
    font-size:14px;
    color:#667085;
    margin-bottom:10px;
}

.case-study-table-price{
    color:#ff6b00;
    font-size:15px;
    font-weight:700;
}

.case-study-table-metric-title{
    color:#98a2b3;
    font-size:14px;
    font-weight:500;
    text-transform:capitalize;
    margin-bottom:10px;
}

.case-study-table-old-value{
    color:#98a2b3;
    font-size:13px;
    text-decoration:line-through;
    margin-bottom:8px;
}

.case-study-table-green{
    background-color: #eaf7d8ad;
    color:#7CB342;
}

.case-study-table-orange{
    background:#fff3eb;
    color:#ff6b00;
}

.case-study-table-metric-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:7px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    line-height:1.3;
    white-space: nowrap;
}


.case-study-table-card-bottom{
    border-top:1px solid #f2f4f7;
    padding:18px 20px 22px;
    box-shadow: unset !important;
    background-color: #f9fafb;
}

.case-study-table-bottom-title{
    color:#98a2b3;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;

    margin-bottom: 8px;
}

.case-study-table-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.case-study-table-tags span{
    background:#eaf7d8ad;
    color:#7CB342;
    padding:6px 14px;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
}


@media(max-width:991px){

    .case-study-table-table-header{
        display:none;
    }

    .case-study-table-card-grid{
        grid-template-columns:1fr 1fr;
        gap:22px;
        padding:24px;
    }

    .case-study-table-grid-cell{
        padding:0;
        border-right:none;
    }

    .case-study-table-sector{
        grid-column:1 / -1;
    }

    .case-study-table-sector{
      border-left: 0px !important;
    }

}



@media(max-width:640px){
    .case-study-table-main-title{
        font-size:30px;
    }

    .case-study-table-main-desc{
        font-size:14px;
        margin-bottom:34px;
    }

    .case-study-table-card-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .case-study-table-metric-pill{
        width:100%;
        border-radius:12px;
    }

    .case-study-table-tags span{
        width:100%;
        border-radius:12px;
    }

}


.sec-head-adoption{
    display: flex;
    justify-content: space-around;
}

.sec-head-adoption .time-comp {
    width: 60px;
    display: block;
} */

/* New Table design */

.container {
  max-width: 1300px;
  margin: auto;
}

/* =========================
           HEADING
        ========================= */

.case-study-table-top-label {
  text-align: center;
  color: #ff6b00;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.case-study-table-main-title {
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.case-study-table-main-desc {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
  color: #667085;
  font-size: 15px;
  line-height: 1.7;
}

/* =========================
           HEADER
        ========================= */

.case-study-table-table-header {
  display: grid;
  /* grid-template-columns: 2.5fr 1fr 1.4fr 1.3fr 1.2fr 1fr; */
  grid-template-columns: 1.8fr 1fr 2fr 1.3fr 1.2fr 1fr;
  background: #101828;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 18px;
}

.case-study-table-table-header div {
  color: #fff;
  padding: 18px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}

/* =========================
           CARD
        ========================= */

.case-study-table-case-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  margin-bottom: 22px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04) !important;
}

/* =========================
           GRID
        ========================= */

.case-study-table-card-grid {
  display: grid;

  /* grid-template-columns:
    2.5fr 1fr 1.4fr 1.3fr 1.2fr 1fr; */

  grid-template-columns: 1.8fr 1fr 2fr 1.3fr 1.2fr 1fr;
  padding: 18px 0;
  align-items: start;

   column-gap:8px;
}

/* .case-study-table-grid-cell {
  padding: 0 18px;
  min-width: 0;
} */

.case-study-table-grid-cell{
    padding:0 12px;
    min-width:0;
    overflow:hidden;
}

/* =========================
           SECTOR
        ========================= */

.case-study-table-sector {
  border-left: 4px solid #ff6b00;
  padding-left: 18px;
}

.case-study-table-sector h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  white-space: nowrap;
}

.case-study-table-sector p {
  font-size: 14px;
  color: #667085;
  margin-bottom: 10px;
  white-space: nowrap;
}

/* =========================
           METRICS
        ========================= */

.case-study-table-metric-title {
  color: #98a2b3;
  font-size: 14px;
  margin-bottom: 10px;
  white-space: nowrap;
}

.case-study-table-price {
  color: #ff6b00;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.case-study-table-old-value {
  color: #98a2b3;
  font-size: 13px;
  text-decoration: line-through;
  /* margin-bottom: 8px; */
  white-space: nowrap;
}

/* =========================
           PILLS
        ========================= */

/* .case-study-table-metric-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
} */

.case-study-table-metric-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:7px 10px;

    border-radius:999px;
    font-size:11px;
    font-weight:700;

    line-height:1;
    white-space:nowrap;

    width:max-content;
    max-width:100%;
}

.case-study-table-green {
  background: #eaf7d8ad;
  color: #7CB342;
}

.case-study-table-orange {
  background: #fff3eb;
  color: #ff6b00;
}

/* =========================
           BOTTOM
        ========================= */

.case-study-table-card-bottom {
  border-top: 1px solid #f2f4f7;
  padding: 18px 20px 22px;
  background: #f9fafb;
}

.case-study-table-bottom-title {
  color: #98a2b3;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.case-study-table-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-study-table-tags span {
  background: #eaf7d8ad;
  color: #7CB342;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* =========================
           RESPONSIVE
        ========================= */

@media(max-width:991px) {

  .case-study-table-table-header {
    display: none;
  }

  .case-study-table-card-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 24px;
  }

  .case-study-table-sector {
    grid-column: 1 / -1;
    border-left: 0;
  }

}

@media(max-width:640px) {

  .case-study-table-main-title {
    font-size: 30px;
  }

  .case-study-table-main-desc {
    font-size: 14px;
  }

  .case-study-table-card-grid {
    grid-template-columns: 1fr;
  }

  .case-study-table-metric-pill {
    width: 100%;
    border-radius: 12px;
  }

  .case-study-table-tags span {
    width: 100%;
    border-radius: 12px;
  }

}

/* End */

.bg-light-primary-td {
  background: #fff3eb;
  color: #ff6b00;
}

.bg-light-shade {
  background-color: #fff8f3 !important;
}

/* .case-study-table-table-header .pl-6 {
  padding-left: 6px;
}

.case-study-table-table-header .pl-28 {
  padding-left: 28px;
}

.case-study-table-table-header .pl-24 {
  padding-left: 24px;
}

.case-study-table-table-header .pl-20 {
  padding-left: 20px;
} */

/* Global L&D Spend Context New Section Style Start */
.global-spend-context-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: #ffeee4a1;
  margin-bottom: 32px;
}

.global-spend-context-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 128px;
}

.global-spend-context-card h2 {
  font-size: 26px;
  color: #98a2b3;
  margin-bottom: 0px;
  font-weight: 700;
}

.global-spend-context-card h3 {
  font-size: 16px;
  color: #000;
  margin-bottom: 4px;
  font-weight: 700;
  white-space: nowrap;
}

.global-spend-context-price {
  color: #ff6b00;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0px;
  white-space: nowrap;
}

.global-spend-context-desc {
  font-size: 14px;
  color: #667085;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /* white-space: nowrap; */
}

@media(max-width:1200px) {
  .global-spend-context-cards {
    /* grid-template-columns:repeat(2,1fr); */
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media(max-width:767px) {
  .global-spend-context-cards {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .global-spend-context-card h2 {
    font-size: 26px;
  }

  .global-spend-context-card h3 {
    font-size: 16px;
  }

  .global-spend-context-price {
    font-size: 16px;
  }

  .global-spend-context-desc {
    font-size: 16px;
  }
}

/* End */

.d-case-box{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}