/* Initial hidden state */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
  color: #ffffff;
}

/* Stagger delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

/* Animation keyframe */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Highlight strip styling + animation */
.highlight-strip {
  background: rgba(255,255,255,0.9);
  color: #000;
  padding: 10px 18px;
  font-style: italic;
  font-weight: 600;
  display: inline-block;
  margin: 20px 0;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

/* Subtle shine animation */
.highlight-strip::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  100% {
    left: 100%;
  }
}

/* CTA Button */
.cta-btn {
  background: #fb6e29;
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  color: #000000;
  background-color: #000000;
}

/* Hover animation */
.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(251,110,41,0.4);
  background: #e85c1f;
}

.problem-section {
  padding: 80px 20px;
  background: #f9fafb;
}

.problem-header {
  max-width: 750px;
  margin-bottom: 50px;
}

.problem-header .tag {
  display: inline-block;
  background: #fb6e29;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.problem-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.problem-header p {
  color: #555;
  line-height: 1.6;
}

/* GRID */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.problem-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Left border animation */
.problem-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #fb6e29;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.problem-card:hover::before {
  transform: scaleY(1);
}

.problem-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.problem-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.problem-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* SOLUTION BOX */
.solution-box {
  margin-top: 50px;
  background: linear-gradient(135deg, #fb6e29, #ff8a4d);
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.6;
  box-shadow: 0 10px 30px rgba(251,110,41,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-header h2 {
    font-size: 26px;
  }

  .problem-section {
    padding: 50px 15px;
  }
}
.fit-section {
  padding: 80px 20px;
  background: #ffffff;
}

.fit-header {
  max-width: 750px;
  margin-bottom: 50px;
}

.fit-header h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.fit-header p {
  color: #555;
  line-height: 1.6;
}

/* GRID */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* CARD BASE */
.fit-card {
  padding: 30px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.fit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Titles */
.fit-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Lists */
.fit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fit-card ul li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
  color: #444;
}

/* Custom icons */
.fit-card.yes ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

.fit-card.no ul li::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: bold;
}

/* Color themes */
.fit-card.yes {
  border-top: 4px solid #16a34a;
  background: #f0fdf4;
}

.fit-card.no {
  border-top: 4px solid #dc2626;
  background: #fef2f2;
}

/* Subtle gradient glow */
.fit-card.yes::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(22,163,74,0.1), transparent);
}

.fit-card.no::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(220,38,38,0.1), transparent);
}

/* MOBILE */
@media (max-width: 768px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .fit-section {
    padding: 50px 15px;
  }

  .fit-header h2 {
    font-size: 26px;
  }
}

.blueprint-section {
  padding: 80px 20px;
  background: #f9fafb;
}

/* HEADER */
.blueprint-header {
  max-width: 750px;
  margin-bottom: 60px;
}

.blueprint-header .tag {
  display: inline-block;
  background: #fb6e29;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.blueprint-header h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.blueprint-header p {
  color: #555;
  line-height: 1.6;
}

/* TIMELINE */
.timeline {
  position: relative;
  margin-left: 20px;
}

/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: 120px;
  top: 0;
  width: 3px;
  height: 100%;
  background: #fb6e29;
}

/* ITEM */
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

/* LEFT SIDE (Days) */
.timeline-left {
  width: 120px;
  text-align: right;
  padding-right: 20px;
}

.timeline-left .day {
  font-weight: 600;
  color: #fb6e29;
}

/* DOT */
.timeline-item::after {
  content: "";
  position: absolute;
  left: 112px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 3px solid #fb6e29;
  border-radius: 50%;
}

/* CONTENT CARD */
.timeline-content {
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  border: 1px solid #eee;
  margin-left: 30px;
  flex: 1;
  transition: all 0.3s ease;
}

/* Hover */
.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* TEXT */
.timeline-content h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.timeline-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {

  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    flex-direction: column;
    margin-left: 10px;
  }

  .timeline-left {
    text-align: left;
    padding: 0 0 10px 30px;
  }

  .timeline-item::after {
    left: 2px;
  }

  .timeline-content {
    margin-left: 30px;
  }
}
.deliverables-section {
  padding: 80px 20px;
  background: #ffffff;
}

/* HEADER */
.deliverables-header {
  max-width: 700px;
  margin-bottom: 50px;
}

.deliverables-header h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.deliverables-header p {
  color: #555;
  line-height: 1.6;
}

/* GRID */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.deliverable-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover */
.deliverable-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Top gradient line */
.deliverable-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #fb6e29, #ff8a4d);
  transition: width 0.3s ease;
}

.deliverable-card:hover::before {
  width: 100%;
}

/* ICON */
.deliverable-card .icon {
  font-size: 26px;
  margin-bottom: 10px;
}

/* TEXT */
.deliverable-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.deliverable-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 1024px) {
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .deliverables-section {
    padding: 50px 15px;
  }

  .deliverables-header h2 {
    font-size: 26px;
  }
}
.deliverable-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

.deliverable-card:nth-child(1) { animation-delay: 0.1s; }
.deliverable-card:nth-child(2) { animation-delay: 0.2s; }
.deliverable-card:nth-child(3) { animation-delay: 0.3s; }
.deliverable-card:nth-child(4) { animation-delay: 0.4s; }
.deliverable-card:nth-child(5) { animation-delay: 0.5s; }
.deliverable-card:nth-child(6) { animation-delay: 0.6s; }
.deliverable-card:nth-child(7) { animation-delay: 0.7s; }
.deliverable-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.engagement-section {
  padding: 80px 20px;
  background: #f9fafb;
}

/* HEADER */
.engagement-header {
  max-width: 750px;
  margin-bottom: 50px;
}

.engagement-header .tag {
  display: inline-block;
  background: #fb6e29;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.engagement-header h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.engagement-header p {
  color: #555;
  line-height: 1.6;
}

/* GRID */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.engagement-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Hover */
.engagement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Number badge */
.engagement-card .number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 40px;
  font-weight: 700;
  color: rgba(251,110,41,0.1);
}

/* Title */
.engagement-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  position: relative;
}

/* Text */
.engagement-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Left accent line */
.engagement-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #fb6e29;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.engagement-card:hover::before {
  transform: scaleY(1);
}

/* MOBILE */
@media (max-width: 1024px) {
  .engagement-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .engagement-section {
    padding: 50px 15px;
  }

  .engagement-header h2 {
    font-size: 26px;
  }
}
.engagement-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

.engagement-card:nth-child(1) { animation-delay: 0.1s; }
.engagement-card:nth-child(2) { animation-delay: 0.2s; }
.engagement-card:nth-child(3) { animation-delay: 0.3s; }
.engagement-card:nth-child(4) { animation-delay: 0.4s; }
.engagement-card:nth-child(5) { animation-delay: 0.5s; }
.engagement-card:nth-child(6) { animation-delay: 0.6s; }
.engagement-card:nth-child(7) { animation-delay: 0.7s; }
.engagement-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.comparison-section {
  padding: 80px 20px;
  background: #f9fafb;
}

/* HEADER */
.comparison-header {
  max-width: 750px;
  margin-bottom: 50px;
}

.comparison-header .tag {
  display: inline-block;
  background: #fb6e29;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.comparison-header h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.comparison-header p {
  color: #555;
  line-height: 1.6;
}

/* TABLE */
.comparison-table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ROW */
.table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
  align-items: center;
  background: #fff;
  transition: all 0.25s ease;
}

/* HEADER ROW */
.table-head {
  background: #07617e;
  color: #fb6e29;
  font-weight: 600;
}

/* HOVER EFFECT */
.table-row:hover {
  background: #f5f5f5;
  transform: scale(1.01);
}

/* HIGHLIGHT COLUMN */
.highlight {
  font-weight: 600;
  color: #fb6e29;
}

/* STRONG PRICE */
.highlight.strong {
  color: #16a34a;
  font-size: 18px;
}

/* TOTAL ROW */
.table-row.total {
  background: #fff7ed;
  font-weight: 600;
}

/* DISCLAIMER */
.disclaimer {
  margin-top: 20px;
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

/* MOBILE */
@media (max-width: 768px) {

  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .table-head {
    display: none;
  }

  .comparison-section {
    padding: 50px 15px;
  }

  .comparison-header h2 {
    font-size: 26px;
  }

  .table-row div {
    font-size: 14px;
  }
}
.model-section {
  padding: 80px 20px;
  background: #ffffff;
}

/* HEADER */
.model-header {
  max-width: 750px;
  margin-bottom: 50px;
}

.model-header .tag {
  display: inline-block;
  background: #fb6e29;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.model-header h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.model-header p {
  color: #555;
  line-height: 1.6;
}

/* GRID */
.model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* NEGATIVE CARDS */
.model-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #eee;
  align-items: flex-start;
  transition: all 0.3s ease;
}

/* Warning style */
.model-card.negative {
  background: #fef2f2;
  border-left: 4px solid #dc2626;
}

/* Hover */
.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Icon */
.model-card .icon {
  font-size: 20px;
}

/* Text */
.model-card p {
  margin: 0;
  color: #444;
  line-height: 1.6;
}

/* SOLUTION BOX */
.model-solution {
  margin-top: 50px;
  padding: 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fb6e29, #ff8a4d);
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
  box-shadow: 0 10px 30px rgba(251,110,41,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .model-grid {
    grid-template-columns: 1fr;
  }

  .model-section {
    padding: 50px 15px;
  }

  .model-header h2 {
    font-size: 26px;
  }
}
.model-solution::before {
  content: "✔ THE BETTER APPROACH";
  display: block;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.markets-section {
  padding: 70px 20px;
  background: #f9fafb;
}

.markets-header {
  max-width: 800px;
  margin-bottom: 40px;
}

.markets-header .tag {
  background: #fb6e29;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}

.markets-header h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.markets-header p {
  color: #555;
  line-height: 1.7;
}

/* STRIP */
.markets-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.markets-strip span {
  background: #fff;
  border: 1px solid #eee;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.markets-strip span:hover {
  background: #fb6e29;
  color: #fff;
  transform: translateY(-3px);
}
.industries-section {
  padding: 80px 20px;
  background: #ffffff;
}

.industries-header {
  max-width: 800px;
  margin-bottom: 50px;
}

.industries-header h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.industries-header p {
  color: #555;
  line-height: 1.7;
}

/* GRID */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.industry-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover */
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Top accent */
.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #fb6e29, #ff8a4d);
}

/* TEXT */
.industry-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.industry-card p {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industries-section {
    padding: 50px 15px;
  }

  .industries-header h2 {
    font-size: 26px;
  }
}
.industry-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

.industry-card:nth-child(1) { animation-delay: 0.2s; }
.industry-card:nth-child(2) { animation-delay: 0.4s; }
.industry-card:nth-child(3) { animation-delay: 0.6s; }
.industry-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.industries-accordion-section {
  padding: 80px 20px;
  background: #ffffff;
}

.industries-header {
  max-width: 750px;
  margin-bottom: 40px;
}

.industries-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.industries-header p {
  color: #555;
  line-height: 1.7;
}

/* ACCORDION */
.accordion-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

/* HEADER */
.accordion-header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  padding: 15px 0;
}

/* ICON */
.accordion-header .icon {
  font-size: 20px;
  color: #fb6e29;
  transition: transform 0.3s ease;
}

/* CONTENT */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.accordion-content p {
  color: #666;
  line-height: 1.7;
  margin-top: 10px;
}

/* ACTIVE */
.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-item.active .icon {
  transform: rotate(45deg);
}

/* HOVER */
.accordion-header:hover {
  color: #fb6e29;
}

/* MOBILE */
@media (max-width: 768px) {
  .industries-header h2 {
    font-size: 26px;
  }

  .industries-accordion-section {
    padding: 50px 15px;
  }
}
.pricing-section {
  background: #07617e;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f8ca2d;
  color: #000;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50px;
}

.pricing-sub {
  color: #777;
  font-size: 14px;
  letter-spacing: 1px;
}

.pricing-price {
  font-size: 42px;
  font-weight: 700;
  color: #457d58;
  margin: 10px 0;
}

.pricing-price span {
  font-size: 16px;
  color: #888;
}

.pricing-desc {
  color: #555;
  margin-bottom: 20px;
}

.pricing-divider {
  height: 1px;
  background: #eee;
  margin: 20px 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 10px;
  color: #333;
  font-size: 15px;
}

.pricing-urgency {
  background: #fff8e1;
  color: #8a6d00;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
}

.pricing-cta {
  display: inline-block;
  background: #07617e;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-cta:hover {
  background: #fb6e29;
  color: #ffffff;
}
.pricing-section {
  position: relative;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  overflow: hidden;

  background: #07617e;
}

/* Gradient mesh blobs */
.pricing-section::before,
.pricing-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.pricing-section::before {
  background: #f8ca2d;
  top: -100px;
  left: -100px;
}

.pricing-section::after {
  background: #ffffff;
  bottom: -120px;
  right: -120px;
}
.roi-section {
  padding: 100px 20px;
  background: radial-gradient(circle at 20% 30%, rgba(248,202,45,0.15), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(69,125,88,0.2), transparent 40%),
              linear-gradient(135deg, #f9fbfa, #eef5f1);
}

.roi-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.roi-title {
  font-size: 36px;
  color: #fb6e29;
  margin-bottom: 10px;
}

.roi-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
}

.roi-description {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
}

.roi-formula-box {
  background: #fff8e1;
  padding: 12px 18px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 40px;
  font-size: 14px;
}

.roi-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Table */
.roi-table {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 15px;
  align-items: center;
  text-align: left;
}

.roi-head {
  font-weight: bold;
  color: #07617e;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
}

.roi-table input {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  width: 100%;
}

/* Results */
.roi-result-title {
  font-weight: 600;
}

.roi-result {
  background: #07617e;
  color: #fff;
  padding: 8px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
}

/* Note */
.roi-note {
  margin-top: 25px;
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}
.final-cta {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;
  
  background: #07617e;
}

/* Glow background effect */
.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.final-cta::before {
  background: #fb6e29;
  top: -100px;
  left: -100px;
}

.final-cta::after {
  background: #fb6e29;
  bottom: -120px;
  right: -120px;
}

.cta-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
}

/* Badge */
.cta-badge {
  display: inline-block;
  background: #ffffff;
  color: #07617e;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 20px;
}

/* Title */
.cta-title {
  font-size: 42px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Description */
.cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Button */
.cta-button {
  display: inline-block;
  background: #fb6e29;
  color: #1e3d2c;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect */
.cta-button:hover {
  background: #fff;
  color: #1e3d2c;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
/* === SCROLL ANIMATION (ISOLATED) === */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Variations */
.reveal-left {
  transform: translateX(-60px);
}
.reveal-right {
  transform: translateX(60px);
}
.reveal-zoom {
  transform: scale(0.9);
}

.reveal.active.reveal-left,
.reveal.active.reveal-right {
  transform: translateX(0);
}

.reveal.active.reveal-zoom {
  transform: scale(1);
}

/* Stagger effect */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.roi-section {
  padding: 80px 20px;
  background: #ffffff;
}

.roi-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

/* Formula */
.formula-box {
  text-align: center;
  background: #fff4e6;
  padding: 12px 20px;
  border-radius: 8px;
  margin: 0 auto 40px;
  max-width: 500px;
  font-size: 14px;
}

/* GRID */
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #e5eaeb;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* INPUT */
.roi-input label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.roi-input input,
.roi-input select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* OUTPUT */
.roi-output {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.result-box {
  background: #f3f4f6;
  padding: 20px;
  border-radius: 8px;
}

.result-box span {
  font-size: 13px;
  color: #666;
}

.result-box h3 {
  margin-top: 5px;
  font-size: 24px;
}

.result-box.highlight {
  background: #fb6e29;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .roi-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
/* ============================= */
/* FORCE DESKTOP TABLE ON MOBILE */
/* ============================= */

@media (max-width: 768px) {

  .comparison-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Force rows to behave like table rows */
  .comparison-table .table-head,
  .comparison-table .table-row {
    display: grid !important;
    grid-template-columns: 220px 180px 180px !important;
    min-width: 580px;
  }

  /* Prevent wrapping */
  .comparison-table .table-row div,
.comparison-table .table-head div {
  white-space: normal;       /* allow wrapping */
  word-break: break-word;    /* prevent overflow */
}
.comparison-table .table-row div {
  padding-right: 10px;
}

}
/* ============================= */
/* MOBILE RIGHT SPACE FIX (SAFE) */
/* ============================= */

@media (max-width: 768px) {

  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  /* Fix common overflow culprits */
  .entry-content,
  .site-content,
  .container,
  section {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Fix elements going outside viewport */
  img, video, iframe {
    max-width: 100%;
    height: auto;
  }

  /* Prevent transform-based overflow */
  [class*="section"],
  [class*="banner"] {
    overflow-x: hidden;
  }

}
.saasfaq-section {
  padding: 60px 20px;
  background: #f7f7f7;
}

.saasfaq-container {
  max-width: 800px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.saasfaq-title {
  font-size: 30px;
  margin-bottom: 10px;
}

.saasfaq-subtitle {
  font-weight: 600;
}

.saasfaq-desc {
  color: #666;
  margin-bottom: 25px;
}

.saasfaq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.saasfaq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.saasfaq-icon {
  font-size: 18px;
}

.saasfaq-answer {
  display: none;
  margin-top: 10px;
  color: #555;
}

/* Active state */
.saasfaq-item.active .saasfaq-answer {
  display: block;
}