/* Why XON page (React WhyXonContent JSX classes → CSS utilities) */

/* Match React-ish overall scale */
html { font-size: 15px; }
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-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; 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;
    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; }
  .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;
}

@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;
  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-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;
  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;
  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;
    line-height: 1.65rem !important;
}

.font-size-lets-talk-box {
    font-size: 16px;
}

.font-talks-desc{
    font-size: 13px !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;
}

.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;
    }
}