/* OrderZ Landing Page Custom Stylesheet */
:root {
  --primary-navy: #102C56;
  --accent-orange: #ff5a1f;
  --accent-orange-hover: #e54c16;
  --accent-orange-light: rgba(255, 90, 31, 0.1);
  --soft-peach: #fff5ef;
  --white: #ffffff;
  --light-grey: #f8f9fa;
  --muted-slate: #5d6b7a;
  --success-green: #28c76f;
  --success-green-light: rgba(40, 199, 111, 0.12);
  --warning-yellow: #ff9f43;
  --warning-yellow-light: rgba(255, 159, 67, 0.12);
  --danger-red: #ea5455;
  --danger-red-light: rgba(234, 84, 85, 0.12);
}

/* Base resets & typography */
.landing-page,
.landing-page * {
  box-sizing: border-box;
}

.orderz-font-headings {
  font-family: 'Cabinet Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.orderz-font-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4,
.landing-page .display-1,
.landing-page .display-2,
.landing-page .display-3 {
  font-family: 'Cabinet Grotesk', sans-serif !important;
  font-weight: 800;
  color: var(--primary-navy);
}

.landing-page p,
.landing-page li,
.landing-page span,
.landing-page div,
.landing-page a {
  font-family: 'Inter', sans-serif;
  color: var(--muted-slate);
}

/* ============================================
   BUTTONS
   ============================================ */
.orderz-btn-orange {
  background-color: var(--accent-orange) !important;
  border-color: var(--accent-orange) !important;
  color: var(--white) !important;
  border-radius: 18px !important;
  font-weight: 600 !important;
  padding: 12px 32px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 15px rgba(255, 90, 31, 0.3) !important;
  display: inline-block;
  text-decoration: none;
}
.orderz-btn-orange:hover {
  background-color: var(--accent-orange-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 90, 31, 0.4) !important;
  color: var(--white) !important;
}

.orderz-btn-outline {
  background: transparent !important;
  border: 2px solid var(--white) !important;
  color: var(--white) !important;
  border-radius: 18px !important;
  font-weight: 600 !important;
  padding: 12px 32px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-block;
  text-decoration: none;
}
.orderz-btn-outline:hover {
  background: var(--white) !important;
  color: var(--primary-navy) !important;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-brand img {
  height: 40px !important;
}
.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 600;
  transition: color 0.2s ease;
}
.navbar-nav .nav-link:hover {
  color: var(--accent-orange) !important;
}

/* ============================================
   SCROLL REVEAL UTILITIES
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   1. HERO SECTION
   ============================================ */
.hero-wrapper {
  background-color: var(--primary-navy);
  padding: 120px 0 80px 0;
  position: relative;
  overflow: hidden;
}
.hero-wrapper::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-orange) !important;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(16px);
  animation: slideUpFade 0.6s 0.1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

#hero-typewriter {
  color: var(--white) !important;
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 24px;
  min-height: 2em;
}
#hero-typewriter::after {
  content: none !important;
  display: none !important;
}
#hero-typewriter span {
  display: block;
  color: var(--white) !important;
}

.hero-para,
.hero-btns,
.hero-badges {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-para.visible,
.hero-btns.visible,
.hero-badges.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-content p,
.hero-para {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.hero-badges {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-badges span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 500;
}
.hero-badges .badge-dot {
  color: var(--accent-orange) !important;
}

.hero-img-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-pos-img {
  width: 100%;
  max-width: 580px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.4));
  opacity: 0;
  animation: imgFadeIn 0.8s 0.4s forwards ease;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-orange);
  z-index: 1;
}
.hero-circle-1 {
  width: 140px;
  height: 140px;
  top: 8%;
  right: -10px;
  opacity: 0.85;
  animation: floatUpDown 4s 0.5s ease-in-out infinite;
}
.hero-circle-2 {
  width: 80px;
  height: 80px;
  bottom: 12%;
  left: 5%;
  opacity: 0.7;
  animation: floatUpDown 5s 1s ease-in-out infinite;
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes slideUpFade {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatUpDown {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-18px); }
  100% { transform: translateY(0px); }
}
@keyframes imgFadeIn {
  to { opacity: 1; }
}

/* ============================================
   2. PAIN POINTS SECTION
   ============================================ */
.pain-points-wrapper {
  background-color: #ffffff !important;
  padding: 80px 0;
  position: relative;
  overflow: visible;
}
.pain-points-wrapper::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 130px;
  height: 130px;
  background: var(--accent-orange);
  border-radius: 50%;
  opacity: 0.9;
  animation: floatUpDown 4s ease-in-out infinite;
  z-index: 0;
}
.pain-points-wrapper::after {
  content: '';
  position: absolute;
  top: 140px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: rgba(255, 90, 31, 0.35);
  border-radius: 50%;
  animation: floatUpDown 5s 1s ease-in-out infinite;
  z-index: 0;
}
.pain-points-wrapper .text-orangle {
  background-color: var(--accent-orange-light);
  border: 1px solid rgba(255, 90, 31, 0.25);
  padding: 6px 16px;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 0 12px rgba(255, 90, 31, 0.25), 0 0 24px rgba(255, 90, 31, 0.15);
  animation: pillGlow 2s ease-in-out infinite;
}

.orderz-card {
  background: var(--white);
  border-radius: 16px;
  border: 2px solid transparent;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(10, 34, 64, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.orderz-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 34, 64, 0.08);
  border: 2px solid var(--accent-orange);
}
.orderz-card-icon {
  background: var(--soft-peach);
  color: var(--accent-orange) !important;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.orderz-card-icon i {
  color: var(--accent-orange) !important;
}
.orderz-card:hover .orderz-card-icon {
  transform: scale(1.15);
}
.orderz-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary-navy);
}
.orderz-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--muted-slate);
}

/* ============================================
   3. STEPS / HOW IT WORKS SECTION
   ============================================ */
.steps-wrapper {
  background-color: var(--primary-navy);
  padding: 80px 0;
  color: var(--white);
}
.steps-pill-label {
  background-color: var(--accent-orange-light);
  border: 1px solid rgba(255, 90, 31, 0.25);
  padding: 6px 16px;
  border-radius: 999px;
  display: inline-block;
  color: var(--accent-orange) !important;
  animation: pillGlow 2s ease-in-out infinite;
}
.step-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  transition: all 0.3s ease;
  padding: 16px;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
}
.step-item:hover {
  background: rgba(255, 255, 255, 0.05);
}
.step-item.active {
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--accent-orange);
  padding-left: 13px;
}
.step-item:not(.active) {
  opacity: 0.65;
  transition: opacity 0.4s ease;
}
.step-item:not(.active):hover {
  opacity: 0.85;
}
.step-number {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin-right: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.step-item.active .step-number {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  animation: stepNumberPop 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards, stepPulse 2s ease-in-out infinite 0.4s;
}
.step-details {
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.step-item.active .step-details {
  opacity: 1;
  transform: translateX(4px);
}
.step-details h4 {
  color: #ffffff !important;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.step-details p {
  color: #ffffff !important;
  font-size: 0.95rem;
  line-height: 1.6;
}

.step-item::before {
  position: absolute;
  left: 40px;
  top: 66px;
  width: 2px;
  height: calc(100% - 20px);
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}
.step-item.active::before,
.step-item.active:not(:last-child)::before {
  background: linear-gradient(to bottom, rgba(255, 90, 31, 0.6) 0%, rgba(255, 90, 31, 0.1) 100%);
  transition: background 0.5s ease;
}

.step-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  width: 0%;
  border-radius: 2px;
  z-index: 10;
}
.step-progress-bar.filling {
  width: 100%;
  transition: width 3.5s linear;
}

.workflow-visual-frame {
  position: relative;
  width: 100%;
  min-height: 580px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255, 90, 31, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.col-lg-6.mt-5.mt-lg-0.reveal-right {
  position: sticky;
  top: 80px;
  align-self: flex-start;
}
.workflow-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.06);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.85);
  z-index: 1;
}
.workflow-img.active {
  opacity: 1;
  transform: scale(1);
  filter: brightness(1);
  z-index: 2;
}
.steps-footer-note {
  margin-top: 48px;
  padding: 24px 0 0 0;
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
  color: #ffffff !important;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ============================================
   KEYFRAMES — STEPS
   ============================================ */
@keyframes stepPulse {
  0%   { box-shadow: 0 0 0 4px rgba(255,90,31,0.25), 0 0 0 10px rgba(255,90,31,0.08); }
  50%  { box-shadow: 0 0 0 8px rgba(255,90,31,0.15), 0 0 0 18px rgba(255,90,31,0.04); }
  100% { box-shadow: 0 0 0 4px rgba(255,90,31,0.25), 0 0 0 10px rgba(255,90,31,0.08); }
}
@keyframes stepNumberPop {
  0%   { transform: scale(0.7) rotate(-10deg); }
  60%  { transform: scale(1.15) rotate(3deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* ============================================
   4. FEATURES SECTION
   ============================================ */
.features-wrapper {
  background-color: var(--white);
  padding: 80px 0;
}
.features-wrapper .text-orangle {
  background-color: var(--accent-orange-light);
  border: 1px solid rgba(255, 90, 31, 0.25);
  padding: 6px 16px;
  border-radius: 999px;
  display: inline-block;
  color: var(--accent-orange) !important;
  animation: pillGlow 2s ease-in-out infinite;
}
.features-wrapper h2 {
  font-size: 2.4rem !important;
  line-height: 1.25 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--primary-navy) !important;
  background-clip: unset !important;
}
.features-wrapper h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-orange);
  border-radius: 2px;
  margin: 16px auto 0 auto;
}
.features-wrapper .orderz-card {
  opacity: 0;
  transform: translateY(40px);
}
.features-wrapper .orderz-card.card-visible {
  animation: cardSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.features-wrapper .orderz-card.card-visible .orderz-card-icon {
  animation: iconPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.features-wrapper .col-lg-4:nth-child(1) .orderz-card { animation-delay: 0.0s; }
.features-wrapper .col-lg-4:nth-child(2) .orderz-card { animation-delay: 0.1s; }
.features-wrapper .col-lg-4:nth-child(3) .orderz-card { animation-delay: 0.2s; }
.features-wrapper .col-lg-4:nth-child(4) .orderz-card { animation-delay: 0.3s; }
.features-wrapper .col-lg-4:nth-child(5) .orderz-card { animation-delay: 0.4s; }
.features-wrapper .col-lg-4:nth-child(6) .orderz-card { animation-delay: 0.5s; }
.features-wrapper .orderz-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 40px rgba(255, 90, 31, 0.15), 0 0 0 1px rgba(255, 90, 31, 0.2) !important;
  border-color: var(--accent-orange) !important;
}
.features-wrapper .orderz-card:hover h4 {
  color: var(--accent-orange) !important;
  transition: color 0.3s ease;
}

@keyframes cardSlideUp {
  0%   { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes iconPop {
  0%   { transform: scale(0.5); opacity: 0; }
  60%  { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}

/* ============================================
   5. SG CATEGORIES
   ============================================ */
.sg-categories-wrapper {
  background-color: var(--light-grey);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.sg-categories-wrapper::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.sg-categories-wrapper::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(16, 44, 86, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.sg-pill-label {
  background-color: var(--accent-orange-light);
  border: 1px solid rgba(255, 90, 31, 0.25);
  padding: 6px 16px;
  border-radius: 999px;
  display: inline-block;
  color: var(--accent-orange) !important;
  animation: pillGlow 2s ease-in-out infinite;
}
.sg-section-heading {
  font-size: 2.2rem !important;
  line-height: 1.25 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--primary-navy) !important;
  background-clip: unset !important;
}
.sg-section-heading::after {
  content: '';
  display: block;
  width: 60px; height: 4px;
  background: var(--accent-orange);
  border-radius: 2px;
  margin: 16px auto 0 auto;
}

/* SG category card — click/modal style, image + centered name below */
.sg-card-wrap {
  opacity: 0;
  transform: translateY(50px) rotateX(8deg);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  perspective: 1000px;
}
.sg-card-wrap.sg-in-view {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}
.sg-card-wrap[data-delay="0"] { transition-delay: 0.0s; }
.sg-card-wrap[data-delay="1"] { transition-delay: 0.1s; }
.sg-card-wrap[data-delay="2"] { transition-delay: 0.2s; }
.sg-card-wrap[data-delay="3"] { transition-delay: 0.3s; }
.sg-card-wrap[data-delay="4"] { transition-delay: 0.4s; }
.sg-card-wrap[data-delay="5"] { transition-delay: 0.5s; }

.sg-category-card {
  width: 100%;
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
  max-height: none !important;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10, 34, 64, 0.06);
  border: 2px solid rgba(255, 90, 31, 0.25);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.sg-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 90, 31, 0.15);
  border-color: var(--accent-orange);
}
.sg-category-img {
  height: 220px !important;
  flex-shrink: 0 !important;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.sg-category-card:hover .sg-category-img {
  transform: scale(1.05);
}
.sg-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 90, 31, 0) 0%, rgba(255, 90, 31, 0.18) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.sg-category-card:hover .sg-img-overlay {
  opacity: 1;
}

/* Name shown below image, list hidden (revealed instead in hover/click modal) */
.sg-category-content {
  display: block !important;
  padding: 14px 16px !important;
  text-align: center;
}
.sg-category-content ul {
  display: none !important;
}
.sg-card-title {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: var(--primary-navy) !important;
  margin-bottom: 0 !important;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
.sg-card-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0%; height: 2px;
  background: var(--accent-orange);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sg-category-card:hover .sg-card-title::after {
  width: 100%;
}

/* SG hover / click floating detail card */
.sg-hover-card {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 9999;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  width: 680px;
  max-width: 92vw;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.sg-hover-card.visible {
  display: flex;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.sg-hover-card-img {
  width: 45%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  min-height: 320px;
}
.sg-hover-card-body {
  width: 55%;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sg-hover-card-title {
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: var(--accent-orange) !important;
  margin-bottom: 8px !important;
  font-family: 'Cabinet Grotesk', sans-serif !important;
}
.sg-hover-card-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--accent-orange);
  border-radius: 2px;
  margin-top: 8px;
}
.sg-hover-card-body ul {
  padding-left: 18px;
  margin: 16px 0 0 0;
}
.sg-hover-card-body li {
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: var(--muted-slate) !important;
  line-height: 1.5;
}
.sg-hover-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
  pointer-events: none;
}
.sg-hover-backdrop.visible {
  display: block;
}

/* SG industry slider (swiper) */
.myIndustrySlider {
  width: 100%;
}
.myIndustrySlider .swiper-wrapper {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  transition-timing-function: linear !important;
}
.myIndustrySlider .swiper-slide {
  width: 350px;
  flex-shrink: 0;
}
.swipper .swipper-wrapper {
  overflow: visible;
}
.industry-card:hover .card-overlay {
  transform: translateY(0);
}
.industry-card:hover img {
  transform: scale(1.08);
}

/* ============================================
   6. OUTCOME / TRANSFORMATION SECTION
   ============================================ */
.comparison-wrapper {
  background-color: #ffffff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.comparison-wrapper::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(16, 44, 86, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.comp-pill-label {
  background-color: var(--accent-orange-light);
  border: 1px solid rgba(255, 90, 31, 0.25);
  padding: 6px 18px;
  border-radius: 999px;
  display: inline-block;
  color: var(--accent-orange) !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: pillGlow 2s ease-in-out infinite;
}
.comp-section-heading {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: var(--primary-navy) !important;
  line-height: 1.25 !important;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.comp-section-heading.comp-heading-in-view {
  opacity: 1;
  transform: translateY(0);
}
.comp-card-wrap {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.comp-card-wrap.comp-in-view {
  opacity: 1;
  transform: translateY(0);
}
.comp-card-wrap[data-delay="0"] { transition-delay: 0.00s; }
.comp-card-wrap[data-delay="1"] { transition-delay: 0.12s; }
.comp-card-wrap[data-delay="2"] { transition-delay: 0.24s; }
.comp-card-wrap[data-delay="3"] { transition-delay: 0.36s; }
.outcome-card {
  background: #f0faf4;
  border: 1.5px solid rgba(40, 199, 111, 0.25);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.outcome-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(40, 199, 111, 0.12), 0 0 0 1.5px rgba(40, 199, 111, 0.4);
  border-color: rgba(40, 199, 111, 0.5);
  background: #eaf8f0;
}
.outcome-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  transition: left 0.55s ease;
  pointer-events: none;
}
.outcome-card:hover::after {
  left: 150%;
}
.outcome-check {
  font-size: 1.5rem;
  color: var(--success-green) !important;
  margin-bottom: 14px;
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.outcome-check i {
  color: var(--success-green) !important;
}
.outcome-card:hover .outcome-check {
  transform: scale(1.2) rotate(-5deg);
}
.outcome-title {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: var(--primary-navy) !important;
  margin-bottom: 12px !important;
  line-height: 1.35 !important;
  position: relative;
  padding-bottom: 10px;
}
.outcome-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--success-green);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.outcome-card:hover .outcome-title::after {
  width: 48px;
}
.outcome-desc {
  font-size: 0.92rem !important;
  line-height: 1.65 !important;
  color: var(--muted-slate) !important;
  margin-bottom: 0 !important;
  transition: color 0.3s ease;
}
.outcome-card:hover .outcome-desc {
  color: #4a5568 !important;
}
.comp-cta-wrap {
  margin-top: 48px;
}
.comp-cta-primary {
  font-size: 1rem !important;
  padding: 14px 36px !important;
}
.comp-cta-secondary {
  background: transparent !important;
  border: 2px solid var(--primary-navy) !important;
  color: var(--primary-navy) !important;
  border-radius: 18px !important;
  font-weight: 600 !important;
  padding: 14px 32px !important;
  font-size: 1rem !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-block;
  text-decoration: none;
}
.comp-cta-secondary:hover {
  background: var(--primary-navy) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ============================================
   7. TESTIMONIALS SECTION
   ============================================ */
.testimonials-wrapper {
  background: #f8f9fa;
  padding: 60px 0 50px 0;
}
.testi-pill-label {
  background-color: rgba(255, 90, 31, 0.10);
  border: 1px solid rgba(255, 90, 31, 0.25);
  padding: 6px 18px;
  border-radius: 999px;
  display: inline-block;
  color: #ff5a1f !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.testi-section-heading {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: #102C56 !important;
  line-height: 1.25 !important;
}
.testi-pyramid-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.testi-pyramid-wrap.testi-pyramid-in-view {
  opacity: 1;
  transform: translateY(0);
}
.testi-pyramid-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.testi-pill {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1.5px solid #dde1e7;
  background: #ffffff;
  color: #5d6b7a;
  font-size: 13px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  outline: none;
}
.testi-pill:hover {
  border-color: #ff5a1f;
  color: #ff5a1f;
}
.testi-pill.active {
  background: #ff5a1f;
  color: #ffffff;
  border-color: #ff5a1f;
}
.testi-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.2s;
}
.testi-cards-grid.testi-grid-in-view {
  opacity: 1;
  transform: translateY(0);
}
.testi-card-new {
  background: #ffffff;
  border: 1.5px solid #e8ecf0;
  border-radius: 16px;
  padding: 28px 28px 24px 28px;
  animation: testiSlideUp 0.35s ease both;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.testi-card-new:hover {
  border-color: rgba(255, 90, 31, 0.3);
  box-shadow: 0 8px 28px rgba(255, 90, 31, 0.08);
}
.testi-card-new.full-width {
  grid-column: 1 / -1;
  max-width: 580px;
  margin: 0 auto;
  width: 100%;
}
@keyframes testiSlideUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.testi-stars-new {
  color: #ff5a1f !important;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-quote-new {
  font-size: 14.5px;
  color: #2d3748;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: normal;
}
.testi-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f0f2f5;
}
.testi-av-new {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ff5a1f;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-author-name {
  font-size: 13px;
  font-weight: 600;
  color: #102C56;
  margin: 0 0 2px 0;
}
.testi-author-biz {
  font-size: 12px;
  color: #8a94a6;
  margin: 0;
}
.testi-disclaimer {
  font-size: 12px;
  color: #b0b8c4;
  margin-top: 1.5rem;
  text-align: center;
}

/* ============================================
   8. FAQ ACCORDION
   ============================================ */
.faq-wrapper {
  background-color: var(--white);
  padding: 80px 0;
}
.faq-item {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}
.faq-item.faq-in-view {
  opacity: 1;
  transform: translateY(0);
}
.faq-item:nth-child(1) { transition-delay: 0.0s; }
.faq-item:nth-child(2) { transition-delay: 0.08s; }
.faq-item:nth-child(3) { transition-delay: 0.16s; }
.faq-item:nth-child(4) { transition-delay: 0.24s; }
.faq-item:nth-child(5) { transition-delay: 0.32s; }
.faq-item:nth-child(6) { transition-delay: 0.40s; }
.faq-item:nth-child(7) { transition-delay: 0.48s; }
.faq-item:hover,
.faq-item.active {
  border-color: #e54c16 !important;
  box-shadow: 0 4px 20px rgba(255, 90, 31, 0.07);
}
.faq-trigger,
.faq-wrapper .faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none !important;
  border: none !important;
  outline: none !important;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  -webkit-appearance: none;
  appearance: none;
}
.faq-trigger h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin: 0;
  text-align: left;
  line-height: 1.4;
}
.faq-plus-icon {
  color: var(--accent-orange) !important;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  display: inline-block;
}
.faq-item.active .faq-plus-icon {
  transform: rotate(45deg);
}
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}
.faq-panel p {
  padding: 0 24px 20px 24px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted-slate);
  margin: 0;
}
.faq-icon { display: none; }

/* ============================================
   9. FOOTER CTA
   ============================================ */
.footer-cta-wrapper {
  background-color: var(--primary-navy);
  padding: 80px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.footer-cta-wrapper h2 {
  color: var(--white) !important;
  font-size: 2.75rem;
  margin-bottom: 16px;
}
.footer-cta-wrapper p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 32px auto;
  text-align: center;
}
.footer-cta-wrapper .social-icons a i,
.footer-cta-wrapper .social-icons i {
  color: var(--white) !important;
}
.footer .btn-icon-only i,
.footer .btn-icon-only span,
.footer .btn-twitter i,
.footer .btn-facebook i,
.footer .btn-youtube i,
.footer .btn-instagram i {
  color: #ffffff !important;
}

/* ============================================
   PILL GLOW KEYFRAME
   ============================================ */
@keyframes pillGlow {
  0%   { box-shadow: 0 0 8px rgba(255, 90, 31, 0.2), 0 0 16px rgba(255, 90, 31, 0.1); }
  50%  { box-shadow: 0 0 16px rgba(255, 90, 31, 0.4), 0 0 32px rgba(255, 90, 31, 0.2); }
  100% { box-shadow: 0 0 8px rgba(255, 90, 31, 0.2), 0 0 16px rgba(255, 90, 31, 0.1); }
}

/* ============================================
   HIGHLIGHT BRAND
   ============================================ */
.highlight-brand {
  color: var(--accent-orange);
  position: relative;
  display: inline-block;
}
.highlight-brand::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 3px;
  background: var(--accent-orange);
  border-radius: 2px;
}

/* ============================================
   GLOBAL CONSISTENCY FIX — same heading size,
   same pill style, same section padding
   ============================================ */
.pain-points-wrapper h2,
.features-wrapper h2,
.sg-section-heading,
.comp-section-heading,
.testi-section-heading,
.faq-wrapper h2 {
  font-size: 2.2rem !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}
.text-orangle,
.sg-pill-label,
.comp-pill-label,
.testi-pill-label,
.steps-pill-label {
  background-color: var(--accent-orange-light) !important;
  border: 1px solid rgba(255, 90, 31, 0.25) !important;
  padding: 6px 16px !important;
  border-radius: 999px !important;
  display: inline-block !important;
  color: var(--accent-orange) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  animation: pillGlow 2s ease-in-out infinite !important;
}
.pain-points-wrapper,
.features-wrapper,
.sg-categories-wrapper,
.comparison-wrapper,
.testimonials-wrapper,
.faq-wrapper,
.steps-wrapper {
  padding: 80px 0 !important;
}
.pain-points-wrapper .orderz-card {
  opacity: 0;
  transform: translateY(40px);
}
.pain-points-wrapper .orderz-card.card-visible {
  animation: cardSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ============================================
   STEPS — stagger animation
   ============================================ */
.step-item {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.step-item.step-in-view {
  opacity: 1;
  transform: translateX(0);
}
.step-item:nth-child(1) { transition-delay: 0.0s; }
.step-item:nth-child(2) { transition-delay: 0.12s; }
.step-item:nth-child(3) { transition-delay: 0.24s; }
.step-item:nth-child(4) { transition-delay: 0.36s; }

/* ============================================
   DESKTOP — 992px to 1200px
   ============================================ */
@media (max-width: 1199.98px) {
  #hero-typewriter { font-size: 2.2rem; }
  .comp-section-heading { font-size: 2rem !important; }
  .features-wrapper h2 { font-size: 2rem !important; }
}

/* ============================================
   TABLET — 768px to 991px
   ============================================ */
@media (max-width: 991.98px) {
  .hero-wrapper { padding: 90px 0 60px 0; }
  #hero-typewriter { font-size: 2rem; }
  .hero-content p, .hero-para { font-size: 1rem; }
  .hero-img-col { margin-top: 40px; }
  .hero-pos-img { max-width: 420px; }
  .hero-circle-1 { width: 90px; height: 90px; }
  .hero-circle-2 { width: 55px; height: 55px; }

  .hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
  .hero-btns .btn { flex: 1; text-align: center; min-width: 140px; }

  .workflow-visual-frame { min-height: 380px; }
  .col-lg-6.mt-5.mt-lg-0.reveal-right { position: relative; top: auto; }
  .steps-footer-note { font-size: 16px; }

  .features-wrapper h2 { font-size: 1.8rem !important; }
  .sg-section-heading { font-size: 1.7rem !important; }
  .comp-section-heading { font-size: 1.75rem !important; }
  .comp-cta-primary,
  .comp-cta-secondary {
    display: block !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto 12px auto !important;
    text-align: center !important;
  }

  .faq-trigger h4 { font-size: 0.95rem; }
  .footer-cta-wrapper h2 { font-size: 2rem; }

  .pain-points-wrapper::before,
  .pain-points-wrapper::after { display: none; }

  .hawker-pain-img-col { margin-top: 40px; }
  .hawker-pain-img { max-width: 320px; }
  .hawker-pain-grid { grid-template-columns: 1fr 1fr; }
  .hawker-pain-img-col { margin-top: 24px; min-height: 300px; }

  .cafe-pain-grid { grid-template-columns: 1fr; }
  .cafe-pain-card-single { grid-column: 1; }
}

@media (max-width: 767.98px) {
  .hero-wrapper { padding: 80px 0 50px 0; }
  #hero-typewriter { font-size: 1.75rem; line-height: 1.25; margin-bottom: 16px; }
  .hero-eyebrow { font-size: 0.68rem; letter-spacing: 1.5px; }
  .hero-content p, .hero-para { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-img-col { margin-top: 32px; }
  .hero-pos-img { max-width: 100%; }
  .hero-circle-1 { width: 70px; height: 70px; top: 5%; right: 5px; }
  .hero-circle-2 { width: 45px; height: 45px; bottom: 8%; left: 2%; }

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .hero-btns .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px !important;
  }

  .hero-badges { gap: 8px; }
  .hero-badges span { font-size: 0.75rem; }

  .pain-points-wrapper { padding: 60px 0; }
  .pain-points-wrapper::before,
  .pain-points-wrapper::after { display: none; }
  .orderz-card { padding: 24px; }
  .orderz-card h4 { font-size: 1.1rem; }

  .steps-wrapper { padding: 60px 0; }
  .step-details h4 { font-size: 1.05rem; }
  .step-details p { font-size: 0.88rem; }
  .workflow-visual-frame { min-height: 260px; }
  .steps-footer-note { font-size: 14px; padding: 16px 0 0 0; }
  .step-number { width: 40px; height: 40px; font-size: 1rem; margin-right: 14px; }
  .step-item::before { left: 32px; }

  .features-wrapper { padding: 60px 0; }
  .features-wrapper h2 { font-size: 1.6rem !important; }

  .sg-categories-wrapper { padding: 60px 0; }
  .sg-section-heading { font-size: 1.5rem !important; }
  .sg-category-img { height: 180px; }

  .comparison-wrapper { padding: 60px 0; }
  .comp-section-heading { font-size: 1.5rem !important; }
  .outcome-card { padding: 24px 20px; }
  .comp-cta-wrap { margin-top: 32px; }
  .comp-cta-primary,
  .comp-cta-secondary {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 12px 0 !important;
    text-align: center !important;
    font-size: 0.95rem !important;
    padding: 14px 20px !important;
  }

  .testimonials-wrapper { padding: 60px 0; }
  .testi-section-heading { font-size: 1.5rem !important; }
  .testi-cards-grid { grid-template-columns: 1fr; }
  .testi-pill { font-size: 12px; padding: 6px 14px; }
  .testi-card-new { padding: 20px; }
  .testi-pyramid-row { gap: 8px; }

  .faq-wrapper { padding: 60px 0; }
  .faq-trigger { padding: 16px 18px; }
  .faq-trigger h4 { font-size: 0.9rem; }
  .faq-panel p { padding: 0 18px 16px 18px; font-size: 0.88rem; }

  .footer-cta-wrapper { padding: 60px 0; }
  .footer-cta-wrapper h2 { font-size: 1.6rem; }
  .footer-cta-wrapper p { font-size: 0.95rem; }
  .footer-cta-wrapper .btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 12px auto !important;
    text-align: center;
  }

  .hawker-pain-heading { font-size: 1.6rem !important; }
  .hawker-pain-img { max-width: 100%; }
  .hawker-pain-grid { grid-template-columns: 1fr; }

  .hawker-feat-img-wrap { height: 180px; }

  .cafe-hero-wrapper { padding: 80px 0 50px 0; }
  .cafe-hero-heading { font-size: 1.9rem; }
  .cafe-hero-eyebrow { font-size: 0.85rem; }
  .cafe-hero-para { font-size: 0.92rem; }
  .cafe-hero-btns { flex-direction: column; align-items: stretch; }
  .cafe-hero-btns .btn { width: 100%; text-align: center; }

  .cafe-pain-wrapper { padding: 60px 0; }
  .cafe-pain-heading { font-size: 1.6rem !important; }
  .cafe-pain-card {
    flex-direction: column;
    padding: 20px;
    gap: 12px;
  }
  .cafe-pain-footer-note { font-size: 0.9rem; }
}

@media (max-width: 400px) {
  #hero-typewriter { font-size: 1.5rem; }
  .hero-eyebrow { font-size: 0.62rem; }
  .orderz-btn-orange,
  .orderz-btn-outline { padding: 12px 16px !important; font-size: 0.9rem !important; }
  .sg-category-img { height: 160px; }
  .workflow-visual-frame { min-height: 220px; }
}

@media (min-width: 1200px) {
  .workflow-visual-frame { height: 600px; }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .workflow-visual-frame { height: 500px; }
}

/* ============================================
   HAWKER HERO — SPECIFIC
   ============================================ */
.hawker-hero-wrapper {
  background-color: var(--primary-navy);
  padding: 120px 0 80px 0;
  position: relative;
  overflow: hidden;
}
.hawker-hero-wrapper::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.hawker-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.75) !important;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(16px);
  animation: hawkerSlideUp 0.6s 0.1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.hawker-hero-heading {
  color: var(--white) !important;
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: hawkerSlideUp 0.7s 0.25s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.hawker-highlight {
  color: var(--accent-orange) !important;
  display: inline-block;
  animation: hawkerHighlightPop 0.5s 0.9s both cubic-bezier(0.16, 1, 0.3, 1);
}
.hawker-hero-para {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: hawkerSlideUp 0.7s 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.hawker-hero-para + .hawker-hero-para {
  animation-delay: 0.52s;
}
.hawker-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: hawkerSlideUp 0.7s 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.hawker-btn-outline {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
  color: var(--white) !important;
  border-radius: 18px !important;
  font-weight: 600 !important;
  padding: 12px 28px !important;
  transition: all 0.3s ease !important;
  display: inline-block;
  text-decoration: none;
}
.hawker-btn-outline:hover {
  background: var(--white) !important;
  color: var(--primary-navy) !important;
  border-color: var(--white) !important;
  text-decoration: none;
}
.hawker-hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(12px);
  animation: hawkerSlideUp 0.7s 0.75s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.hawker-hero-trust span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55) !important;
  font-weight: 500;
}
.hawker-trust-dot {
  color: rgba(255, 255, 255, 0.3) !important;
}
.hawker-pos-img {
  width: 100%;
  max-width: 580px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.4));
  opacity: 0;
  animation: hawkerImgFade 0.9s 0.4s forwards ease,
             hawkerFloat 5s 1.5s ease-in-out infinite;
}

@keyframes hawkerSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hawkerImgFade {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes hawkerFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}
@keyframes hawkerHighlightPop {
  0%   { transform: scale(0.85); opacity: 0; }
  60%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 767.98px) {
  .hawker-hero-wrapper { padding: 80px 0 50px 0; }
  .hawker-hero-heading { font-size: 1.9rem; }
  .hawker-hero-para { font-size: 0.92rem; }
  .hawker-hero-btns { flex-direction: column; align-items: stretch; }
  .hawker-hero-btns .btn { width: 100%; text-align: center; }
  .hawker-pos-img { max-width: 100%; margin-top: 32px; }
}

/* ============================================
   HAWKER PAIN POINTS SECTION
   ============================================ */
.hawker-pain-wrapper {
  background-color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hawker-pain-pill {
  display: inline-block;
  background-color: var(--soft-peach);
  border: 1px solid rgba(255, 90, 31, 0.2);
  color: var(--accent-orange) !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hawker-pain-pill.pain-title-in-view {
  opacity: 1;
  transform: translateY(0);
}
.hawker-pain-heading {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: var(--primary-navy) !important;
  line-height: 1.25 !important;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.15s;
}
.hawker-pain-heading.pain-title-in-view {
  opacity: 1;
  transform: translateY(0);
}

.hawker-pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 100%;
}
.hawker-pain-card-wrap {
  height: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hawker-pain-card-wrap[data-delay="0"] { transition-delay: 0.0s; }
.hawker-pain-card-wrap[data-delay="1"] { transition-delay: 0.1s; }
.hawker-pain-card-wrap[data-delay="2"] { transition-delay: 0.2s; }
.hawker-pain-card-wrap[data-delay="3"] { transition-delay: 0.3s; }
.hawker-pain-card-wrap[data-delay="4"] { transition-delay: 0.4s; }
.hawker-pain-card-wrap[data-delay="5"] { transition-delay: 0.5s; }
.hawker-pain-card-wrap.hawker-pain-in-view {
  opacity: 1;
  transform: translateY(0);
}

.hawker-pain-card {
  background: #ffffff;
  border: 1.5px solid #e8ecf0;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.hawker-pain-card:hover {
  border-color: rgba(255, 90, 31, 0.3);
  box-shadow: 0 8px 28px rgba(255, 90, 31, 0.08);
  transform: translateY(-4px);
}
.hawker-pain-card-title-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.hawker-pain-x {
  display: flex !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(234, 84, 85, 0.1);
  align-items: center;
  justify-content: center;
  margin-bottom: 0 !important;
  flex-shrink: 0;
  margin-top: 2px;
}
.hawker-pain-x i {
  color: #ea5455 !important;
  font-size: 0.9rem;
}
.hawker-pain-card h4 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--primary-navy) !important;
  margin-bottom: 0 !important;
  line-height: 1.35 !important;
}
.hawker-pain-card p {
  font-size: 0.875rem !important;
  line-height: 1.65 !important;
  color: var(--muted-slate) !important;
  margin-bottom: 0 !important;
}

.hawker-pain-img-col {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.hawker-pain-img {
  width: 100%;
  max-width: 500px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hawker-pain-img.hawker-img-in-view {
  opacity: 1;
  transform: translateX(0);
}
.hawker-pain-img-cell {
  height: 100%;
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 90, 31, 0.15);
  width: 100%;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.5s;
}
.hawker-pain-img-cell.img-cell-in-view {
  opacity: 1;
  transform: translateX(0);
}
.hawker-pain-cell-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 767.98px) {
  .hawker-pain-img-cell {
    min-height: 220px;
    transform: translateY(30px);
  }
  .hawker-pain-img-cell.img-cell-in-view {
    transform: translateY(0);
  }
}

/* ============================================
   HAWKER FEATURES — IMAGE CARD STYLE
   ============================================ */
.hawker-feat-card {
  padding: 0 !important;
  border-radius: 16px !important;
  overflow: hidden;
  border: 1.5px solid #e8ecf0 !important;
  box-shadow: none !important;
}
.hawker-feat-card:hover {
  border-color: rgba(255, 90, 31, 0.35) !important;
  box-shadow: 0 12px 32px rgba(255, 90, 31, 0.1) !important;
  transform: translateY(-6px) !important;
}
.hawker-feat-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}
.hawker-feat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hawker-feat-card:hover .hawker-feat-img-wrap img {
  transform: scale(1.06);
}
.hawker-feat-body {
  padding: 20px 22px 24px 22px;
}
.hawker-feat-body h4 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #102C56 !important;
  margin-bottom: 10px !important;
}
.hawker-feat-body p {
  font-size: 0.875rem !important;
  line-height: 1.65 !important;
  margin-bottom: 0 !important;
}
.hawker-feat-card.orderz-card {
  opacity: 0;
  transform: translateY(36px);
}
.hawker-feat-card.orderz-card.card-visible {
  animation: cardSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ============================================
   STEPS — grid gutters + flip cards (FIXED)
   ============================================ */
.steps-wrapper .row {
  padding: 20px;
  display: flex !important;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
  overflow: visible;          /* FIX: make sure nothing here clips the flip-card content */
}
.steps-wrapper {
  overflow: visible;          /* FIX: same — guards against the whole box getting cut at bottom */
}
.col-md-3 {
  padding: 30px;
}
.timeline-connector {
  position: relative;
  width: 100%;
  height: 30px;
  margin: 20px 0 40px;
}
.timeline-line {
  position: absolute;
  top: 50%;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: white;
  transform: translateY(-50%);
}
.timeline-progress {
  position: absolute;
  top: 50%;
  left: 12.5%;
  width: 0%;
  height: 2px;
  background: #ff5a1f;
  transform: translateY(-50%);
  transition: width 0.4s ease;
  z-index: 1;
}
.timeline-dot {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 2;
}
.timeline-dot.active {
  background: #ff5a1f;
  transform: translate(-50%, -50%) scale(1.4);
}

.flip-card-1,
.flip-card-2,
.flip-card-3,
.flip-card-4 {
  display: flex !important;
  flex-wrap: wrap;
  gap: 50px;
  aspect-ratio: 3 / 3.4;      /* FIX: shorter card (was 3/4) — smaller image, more breathing room */
  min-height: 340px;          /* FIX: floor so text never gets squeezed on narrow screens */
  perspective: 1000px;
  cursor: pointer;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 16px;
}
.flip-card-1:hover .flip-card-inner,
.flip-card-2:hover .flip-card-inner,
.flip-card-3:hover .flip-card-inner,
.flip-card-4:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;               /* FIX: was 120%, caused overflow/text spill */
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  box-sizing: border-box;     /* FIX: keeps padding from adding to size */
}
.flip-card-front {
  transform: rotateY(0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;                 /* let image fill the card edge-to-edge */
}
.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* FIX: was invalid "left-center" */
  object-position: left center;
  display: block;             /* FIX: "display: flex" on an <img> does nothing useful */
}
.flip-card-back {
  transform: rotateY(180deg);
  color: #0D2B5E;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 2;
  overflow-y: auto;           /* fallback only — text should now fit without needing this */
}
.flip-card-back .step-details {
  max-height: 100%;
  overflow: visible;
}
.flip-card-back * {
  border-left: none !important;
}
.flip-card-back h4 {
  color: #0D2B5E !important;
  font-size: 14px;            /* FIX: was too large for card height, causing clipping */
  line-height: 1.25;
  margin-bottom: 6px;
}
.flip-card-back p {
  color: #0D2B5E !important;
  font-size: 12px;            /* FIX: shrunk so full paragraph fits within the shorter card */
  line-height: 1.35;
  margin: 0;
}

/* optional: thin, visible scrollbar so it's obvious it's scrollable, not broken */
.flip-card-back::-webkit-scrollbar {
  width: 4px;
}
.flip-card-back::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}
/* ============================================
   HAWKER ANNOTATED — LAYOUT (DESKTOP + TABLET + MOBILE)
   Kitchen Display + Daily Sales sit ABOVE the image
   (top-left / top-right). Remote Monitoring sits
   mid-right. QR + Integrated Payments stay left.
   Fast POS Billing stays bottom-center.
   ============================================ */
.hawker-annotated-section {
  background: #ffffff;
  padding: 80px 0 120px 0 !important;
}

/* Desktop (≥1200px) */
.hk-annotated-wrap {
  position: relative;
  width: 100%;
  display: block;
  /* Reserve space on all 4 sides for the floating cards.
     Top increased to 190px so the KDS / Daily Sales cards sit
     further above the image, giving the arrow more room to
     draw a longer, cleaner line. */
  padding: 190px 230px 170px 230px;
  overflow: visible;
}
.hk-main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(16, 44, 86, 0.14);
  position: relative;
  z-index: 2;
}
.hk-arrow-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  overflow: visible;
}
.hk-float-card {
  position: absolute !important;
  background: #ffffff;
  border-radius: 14px;
  padding: 13px 15px;
  width: 210px;
  box-shadow: 0 8px 32px rgba(16, 44, 86, 0.12), 0 2px 8px rgba(0,0,0,0.05);
  border: 1.5px solid rgba(255, 90, 31, 0.15);
  z-index: 10;
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1),
              transform 0.5s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  min-width: 0;
  box-sizing: border-box;
}
.hk-float-card.hk-card-in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hk-float-card:hover {
  box-shadow: 0 16px 40px rgba(255, 90, 31, 0.13);
  border-color: rgba(255, 90, 31, 0.4);
  transform: translateY(-4px) scale(1.02) !important;
}
.hk-card-lt { left: 0;   top: 20%;  width: 200px; }  /* QR Self-Ordering */
.hk-card-lb { left: 4%;  bottom: 0; width: 200px; }  /* Integrated Payments */
.hk-card-rt { top: 0;    left: 27%; width: 210px; }  /* Kitchen Display System */
.hk-card-rm { top: 0;    left: 57%; width: 210px; }  /* Daily Sales Report */
.hk-card-rb { right: 0;  top: 44%;  width: 200px; }  /* Remote Monitoring */
.hk-card-bc { bottom: 0; left: 38%; width: 210px; }  /* Fast POS Billing */
.hk-card-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #fff5ef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.hk-float-card:hover .hk-card-icon-wrap { transform: scale(1.1) rotate(-4deg); }
.hk-card-body h5 {
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: #102C56 !important;
  margin: 0 0 5px 0 !important;
  line-height: 1.3 !important;
  font-family: 'Cabinet Grotesk', sans-serif !important;
}
.hk-card-body p {
  font-size: 0.69rem !important;
  line-height: 1.55 !important;
  color: #5d6b7a !important;
  margin: 0 !important;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Tablet + Mobile (≤1199.98px): stack all cards vertically below image */
@media (max-width: 1199.98px) {
  .hawker-annotated-section { padding: 60px 0 60px 0 !important; }
  .hk-annotated-wrap {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .hk-main-img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 16px;
    order: -1;
  }
  .hk-float-card {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    opacity: 1 !important;
    width: 100% !important;
    margin-bottom: 0;
    padding: 13px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    flex-direction: row;
  }
  .hk-card-icon-wrap { margin-bottom: 0; }
  .hk-card-body p { display: block !important; }
  .hk-arrow-svg { display: none; }
}

/* ============================================
   CAFE HERO — SPECIFIC (SG Cafes/Coffee Shops)
   ============================================ */
.cafe-hero-wrapper {
  background-color: var(--primary-navy);
  padding: 120px 0 80px 0;
  position: relative;
  overflow: hidden;
}
.cafe-hero-wrapper::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.cafe-hero-eyebrow {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  animation: cafeSlideUp 0.6s 0.1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.cafe-hero-heading {
  color: var(--white) !important;
  font-size: 2.75rem;
  line-height: 1.25;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: cafeSlideUp 0.7s 0.25s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.cafe-hero-highlight {
  color: var(--accent-orange) !important;
  display: inline-block;
  animation: cafeHighlightPop 0.5s 0.9s both cubic-bezier(0.16, 1, 0.3, 1);
}
.cafe-hero-para {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 720px;
  opacity: 0;
  transform: translateY(20px);
  animation: cafeSlideUp 0.7s 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.cafe-hero-para + .cafe-hero-para {
  animation-delay: 0.52s;
}
.cafe-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 28px 0 24px 0;
  opacity: 0;
  transform: translateY(20px);
  animation: cafeSlideUp 0.7s 0.65s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.cafe-btn-outline {
  background: transparent !important;
  border: 2px solid var(--white) !important;
  color: var(--white) !important;
  border-radius: 18px !important;
  font-weight: 600 !important;
  padding: 12px 28px !important;
  transition: all 0.3s ease !important;
  display: inline-block;
  text-decoration: none;
}
.cafe-btn-outline:hover {
  background: var(--white) !important;
  color: var(--primary-navy) !important;
  transform: translateY(-2px);
  text-decoration: none;
}
.cafe-hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(12px);
  animation: cafeSlideUp 0.7s 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.cafe-hero-trust span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 500;
}
.cafe-trust-dot {
  color: rgba(255, 255, 255, 0.3) !important;
}

@keyframes cafeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cafeHighlightPop {
  0%   { transform: scale(0.85); opacity: 0; }
  60%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* ============================================
   CAFE PAIN POINTS SECTION
   ============================================ */
.cafe-pain-wrapper {
  background-color: #ffffff;
  padding: 80px 0;
}
.cafe-pain-pill {
  display: inline-block;
  background-color: var(--soft-peach);
  border: 1px solid rgba(255, 90, 31, 0.2);
  color: var(--accent-orange) !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(16px);
  animation: cafeSlideUp 0.6s 0.1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.cafe-pain-heading {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: var(--primary-navy) !important;
  line-height: 1.3 !important;
  opacity: 0;
  transform: translateY(20px);
  animation: cafeSlideUp 0.7s 0.25s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.cafe-pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cafe-pain-card-single {
  grid-column: 1 / 2;
}
.cafe-pain-card-wrap {
  opacity: 0;
  transform: translateY(30px);
  animation: cafeSlideUp 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.cafe-pain-card-wrap[data-delay="0"] { animation-delay: 0.0s; }
.cafe-pain-card-wrap[data-delay="1"] { animation-delay: 0.1s; }
.cafe-pain-card-wrap[data-delay="2"] { animation-delay: 0.2s; }
.cafe-pain-card-wrap[data-delay="3"] { animation-delay: 0.3s; }
.cafe-pain-card-wrap[data-delay="4"] { animation-delay: 0.4s; }
.cafe-pain-card {
  background: #ffffff;
  border: 1.5px solid #e8ecf0;
  border-radius: 16px;
  padding: 24px 28px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cafe-pain-card:hover {
  border-color: rgba(255, 90, 31, 0.35);
  box-shadow: 0 12px 32px rgba(255, 90, 31, 0.1);
  transform: translateY(-4px);
}
.cafe-pain-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--soft-peach);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.cafe-pain-icon i {
  color: var(--accent-orange) !important;
  font-size: 1.15rem;
}
.cafe-pain-card:hover .cafe-pain-icon {
  transform: scale(1.1) rotate(-4deg);
}
.cafe-pain-card-body h4 {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--primary-navy) !important;
  margin-bottom: 10px !important;
  line-height: 1.35 !important;
}
.cafe-pain-card-body p {
  font-size: 0.9rem !important;
  line-height: 1.65 !important;
  color: var(--muted-slate) !important;
  margin-bottom: 0 !important;
}
.cafe-pain-footer-note {
  font-weight: 700;
  color: var(--accent-orange) !important;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 8px;
}
.cafe-pain-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* உங்க existing width/height/border-radius/background இப்படியே இருக்கலாம் */
}

.cafe-pain-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    display: block;
}

/* if you want the image to fill the whole circle without padding */
.cafe-pain-icon.cafe-pain-icon-fill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}
.cta-buttons-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
/* ============================================
   CAFE ANNOTATED — LAYOUT (mirrors HAWKER block)
   ============================================ */
.cafe-annotated-section {
  background: #ffffff;
  padding: 80px 0 120px 0 !important;
}
.cf-annotated-wrap {
  position: relative;
  width: 100%;
  display: block;
  padding: 190px 230px 170px 230px;
  overflow: visible;
}
.cf-main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(16, 44, 86, 0.14);
  position: relative;
  z-index: 2;
}
.cf-arrow-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  overflow: visible;
}
.cf-float-card {
  position: absolute !important;
  background: #ffffff;
  border-radius: 14px;
  padding: 13px 15px;
  width: 210px;
  box-shadow: 0 8px 32px rgba(16, 44, 86, 0.12), 0 2px 8px rgba(0,0,0,0.05);
  border: 1.5px solid rgba(255, 90, 31, 0.15);
  z-index: 10;
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1),
              transform 0.5s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  min-width: 0;
  box-sizing: border-box;
}
.cf-float-card.cf-card-in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cf-float-card:hover {
  box-shadow: 0 16px 40px rgba(255, 90, 31, 0.13);
  border-color: rgba(255, 90, 31, 0.4);
  transform: translateY(-4px) scale(1.02) !important;
}
.cf-card-t1   { top: 0;    left: 6%;   width: 210px; }  /* Bar Display System */
.cf-card-t2   { top: -20px; left: 40%; width: 210px; }  /* Inventory Tracking */
.cf-card-t3   { top: 0;    right: 2%;  width: 210px; }  /* Daily Sales Report */
.cf-card-left { left: 0;   top: 30%;   width: 200px; }  /* QR Ordering */
.cf-card-bl   { left: 4%;  bottom: 0;  width: 200px; }  /* Loyalty & Customer Records */
.cf-card-bc   { bottom: 0; left: 40%;  width: 210px; }  /* Fast POS Billing */
.cf-card-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #fff5ef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.cf-float-card:hover .cf-card-icon-wrap { transform: scale(1.1) rotate(-4deg); }
.cf-card-body h5 {
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: #102C56 !important;
  margin: 0 0 5px 0 !important;
  line-height: 1.3 !important;
  font-family: 'Cabinet Grotesk', sans-serif !important;
}
.cf-card-body p {
  font-size: 0.69rem !important;
  line-height: 1.55 !important;
  color: #5d6b7a !important;
  margin: 0 !important;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Tablet + Mobile: stack cards vertically below image */
@media (max-width: 1199.98px) {
  .cafe-annotated-section { padding: 60px 0 60px 0 !important; }
  .cf-annotated-wrap {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .cf-main-img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 16px;
    order: -1;
  }
  .cf-float-card {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    opacity: 1 !important;
    width: 100% !important;
    margin-bottom: 0;
    padding: 13px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    flex-direction: row;
  }
  .cf-card-icon-wrap { margin-bottom: 0; }
  .cf-card-body p { display: block !important; }
  .cf-arrow-svg { display: none; }
}
.hero-photo-wrapper {
  position: relative;
  min-height: 520px;
  padding: 60px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary-navy);
}

.hero-photo-img {
  position: absolute;
  top: 0;
  left: 12%;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
  display: block;
}

/* Blue overlay now extends further right — covers the plant area too */
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 44, 86, 0.97) 0%,
    rgba(16, 44, 86, 0.95) 30%,
    rgba(16, 44, 86, 0.85) 42%,
    rgba(16, 44, 86, 0.45) 50%,
    rgba(16, 44, 86, 0.08) 58%,
    rgba(16, 44, 86, 0) 66%
  );
  z-index: 1;
}

.hero-photo-wrapper .container {
  position: relative;
  z-index: 2;
}

.hero-photo-wrapper .hero-content {
  padding: 10px 0;
  max-width: 620px;
}

.hero-photo-wrapper .hero-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-photo-wrapper #hero-typewriter {
  color: #ffffff !important;
  font-size: 2.15rem;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 18px;
  white-space: nowrap;
}

.hero-photo-wrapper .hero-para {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 470px;
  margin-bottom: 0;
}

@media (max-width: 1350px) {
  .hero-photo-wrapper #hero-typewriter { font-size: 1.85rem; }
}
@media (max-width: 1150px) {
  .hero-photo-wrapper #hero-typewriter { font-size: 1.6rem; }
}

@media (max-width: 991.98px) {
  .hero-photo-wrapper {
    min-height: auto;
    padding: 100px 0 60px 0;
  }
  .hero-photo-img {
    object-position: center 20%;
  }
  .hero-photo-overlay {
    background: linear-gradient(
      180deg,
      rgba(16, 44, 86, 0.96) 0%,
      rgba(16, 44, 86, 0.92) 55%,
      rgba(16, 44, 86, 0.75) 100%
    );
  }
  .hero-photo-wrapper .hero-content {
    max-width: 100%;
    white-space: normal;
  }
  .hero-photo-wrapper #hero-typewriter {
    white-space: normal;
    font-size: 1.9rem;
  }
}

@media (max-width: 767.98px) {
  .hero-photo-wrapper #hero-typewriter { font-size: 1.6rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; text-align: center; }
}
@media (max-width: 991.98px) {
  .hero-photo-wrapper {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 0 0 40px 0;
  }

  .hero-photo-img {
    position: static !important;
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 30%;
    order: -1;
    z-index: 0;
  }

  .hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(16, 44, 86, 0.15) 0%,
      rgba(16, 44, 86, 0.25) 55%,
      rgba(16, 44, 86, 0.35) 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  .hero-photo-wrapper .container {
    position: relative;
    z-index: 2;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .hero-photo-wrapper .hero-content {
    max-width: 100%;
    padding: 24px 0 0 0;
    text-align: left;
    background-color: var(--primary-navy);  /* text பகுதிக்கு solid navy bg */
  }

  .hero-photo-wrapper .hero-eyebrow {
    font-size: 0.72rem;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .hero-photo-wrapper #hero-typewriter {
    white-space: normal;
    font-size: 1.55rem;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .hero-photo-wrapper .hero-para {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-photo-wrapper .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-photo-wrapper .hero-btns .btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .hero-photo-wrapper #hero-typewriter { font-size: 1.4rem; }
  .hero-photo-img { height: 220px; }
}

@media (max-width: 480px) {
  .hero-photo-wrapper #hero-typewriter { font-size: 1.25rem; }
  .hero-photo-img { height: 190px; }
}
/* ============================================
   GLOBAL FIX — tighten top gap above pill + heading
   across ALL sections (pain-points, steps, features,
   sg-categories, comparison, testimonials, faq, footer-cta)
   ============================================ */
.pain-points-wrapper,
.steps-wrapper,
.features-wrapper,
.sg-categories-wrapper,
.comparison-wrapper,
.testimonials-wrapper,
.faq-wrapper,
.footer-cta-wrapper {
  padding-top: 40px !important;
}

.pain-points-wrapper .row.mb-5,
.pain-points-wrapper .row.mb-4,
.steps-wrapper .row.mb-5,
.features-wrapper .row.mb-5,
.sg-categories-wrapper .row.mb-5,
.comparison-wrapper .row.mb-5,
.testimonials-wrapper .row.mb-4,
.faq-wrapper .row.mb-5 {
  margin-bottom: 30px !important;
}
/* ============================================
   GLOBAL FIX — tighten bottom gap after cards
   across ALL sections
   ============================================ */
.pain-points-wrapper,
.steps-wrapper,
.features-wrapper,
.sg-categories-wrapper,
.comparison-wrapper,
.testimonials-wrapper,
.faq-wrapper {
  padding-bottom: 40px !important;   /* was 80px */
}

.pain-points-wrapper .col-lg-4.mb-4,
.pain-points-wrapper .col-md-6.mb-4,
.features-wrapper .col-lg-4.mb-4,
.features-wrapper .col-md-6.mb-4,
.comparison-wrapper .col-lg-6.mb-4 {
  margin-bottom: 20px !important;
}
/* ============================================
   HERO — entrance animations (image from right, text from left)
   ============================================ */
.hero-photo-img {
  opacity: 0;
  transform: translateX(60px);
  animation: heroImgSlideIn 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-photo-wrapper .hero-eyebrow {
  opacity: 0;
  transform: translateX(-40px);
  animation: heroTextSlideIn 0.7s 0.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-photo-wrapper #hero-typewriter {
  opacity: 0;
  transform: translateX(-40px);
  animation: heroTextSlideIn 0.7s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-photo-wrapper .hero-para {
  opacity: 0;
  transform: translateX(-40px);
  animation: heroTextSlideIn 0.7s 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-photo-wrapper .hero-btns {
  opacity: 0;
  transform: translateX(-40px);
  animation: heroTextSlideIn 0.7s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroImgSlideIn {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes heroTextSlideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@media (max-width: 991.98px) {
  .hero-photo-wrapper .hero-btns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }

  .hero-photo-wrapper .hero-btns .btn {
    width: auto;
    flex: 1 1 auto;
    min-width: 140px;
    text-align: center;
    padding: 10px 18px !important;
    font-size: 0.85rem !important;
    border-radius: 14px !important;
  }
}

@media (max-width: 480px) {
  .hero-photo-wrapper .hero-btns {
    flex-direction: column;
  }
  .hero-photo-wrapper .hero-btns .btn {
    width: 100%;
    padding: 11px 16px !important;
    font-size: 0.85rem !important;
  }
}
@media (max-width: 767.98px) {
  .comp-cta-wrap {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .comp-cta-wrap .orderz-btn-orange,
  .comp-cta-wrap .comp-cta-secondary {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;          /* mr-3 class override */
    text-align: center !important;
    font-size: 0.9rem !important;
    padding: 12px 18px !important;
    border-radius: 14px !important;
  }
}

@media (max-width: 480px) {
  .comp-cta-wrap .orderz-btn-orange,
  .comp-cta-wrap .comp-cta-secondary {
    font-size: 0.85rem !important;
    padding: 11px 16px !important;
  }
}
.hawker-photo-wrapper {
  position: relative;
  min-height: 520px;
  padding: 60px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary-navy);
}

.hawker-photo-img {
  position: absolute;
  top: 0;
  left: 25%;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
  display: block;
}

/* Blue overlay now extends further right — covers the plant area too */
.hawker-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 44, 86, 0.97) 0%,
    rgba(16, 44, 86, 0.95) 30%,
    rgba(16, 44, 86, 0.85) 42%,
    rgba(16, 44, 86, 0.45) 50%,
    rgba(16, 44, 86, 0.08) 58%,
    rgba(16, 44, 86, 0) 66%
  );
  z-index: 1;
}

.hawker-photo-wrapper .container {
  position: relative;
  z-index: 2;
}

.hawker-photo-wrapper .hero-content {
  padding: 10px 0;
  max-width: 620px;
}

.hawker-photo-wrapper .hawker-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hawker-photo-wrapper .hawker-hero-heading {
  color: #ffffff !important;
  font-size: 2.15rem;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 18px;
}

.hawker-highlight {
  color: #ff6b1a;
}

.hawker-photo-wrapper .hawker-hero-para {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 470px;
  margin-bottom: 14px;
}

.hawker-hero-btns .orderz-btn-orange {
  background: #ff6b1a;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  border: none;
}

.hawker-hero-btns .hawker-btn-outline {
  background: transparent;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  border: 1.5px solid #ffffff;
}

.hawker-hero-btns .hawker-btn-outline:hover {
  background: #ffffff;
  color: #0b1f3a;
}

.hawker-hero-trust {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.hawker-trust-dot {
  margin: 0 8px;
  opacity: 0.6;
}

@media (max-width: 1350px) {
  .hawker-photo-wrapper .hawker-hero-heading { font-size: 1.85rem; }
}
@media (max-width: 1150px) {
  .hawker-photo-wrapper .hawker-hero-heading { font-size: 1.6rem; }
}

@media (max-width: 991.98px) {
  .hawker-photo-wrapper {
    min-height: auto;
    padding: 100px 0 60px 0;
  }
  .hawker-photo-img {
    object-position: center 20%;
  }
  .hawker-photo-overlay {
    background: linear-gradient(
      180deg,
      rgba(16, 44, 86, 0.96) 0%,
      rgba(16, 44, 86, 0.92) 55%,
      rgba(16, 44, 86, 0.75) 100%
    );
  }
  .hawker-photo-wrapper .hero-content {
    max-width: 100%;
  }
  .hawker-photo-wrapper .hawker-hero-heading {
    font-size: 1.9rem;
  }
}
/* ============================================
   GLOBAL — COMMON SECTION SPACING (top + bottom)
   Applies same gap to ALL sections consistently
   ============================================ */
.hawker-photo-wrapper,
.hawker-pain-wrapper,
.steps-wrapper,
.features-wrapper,
.hawker-annotated-section,
.comparison-wrapper,
.testimonials-wrapper,
.faq-wrapper,
.footer-cta-wrapper {
  padding-top: 32px !important;
  padding-bottom: 64px !important;
}

/* Heading block spacing — same gap above/below title in every section */
.hawker-photo-wrapper .row.mb-5,
.hawker-pain-wrapper .row.mb-5,
.steps-wrapper .row.mb-5,
.features-wrapper .row.mb-5,
.comparison-wrapper .row.mb-5,
.testimonials-wrapper .row.mb-4,
.faq-wrapper .row.mb-5 {
  margin-bottom: 40px !important;
}

/* Tablet */
@media (max-width: 991.98px) {
  .hawker-photo-wrapper,
  .hawker-pain-wrapper,
  .steps-wrapper,
  .features-wrapper,
  .hawker-annotated-section,
  .comparison-wrapper,
  .testimonials-wrapper,
  .faq-wrapper,
  .footer-cta-wrapper {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .hawker-photo-wrapper,
  .hawker-pain-wrapper,
  .steps-wrapper,
  .features-wrapper,
  .hawker-annotated-section,
  .comparison-wrapper,
  .testimonials-wrapper,
  .faq-wrapper,
  .footer-cta-wrapper {
    padding-top: 54px !important;
    padding-bottom: 36px !important;
  }

  .hawker-photo-wrapper .row.mb-5,
  .hawker-pain-wrapper .row.mb-5,
  .steps-wrapper .row.mb-5,
  .features-wrapper .row.mb-5,
  .comparison-wrapper .row.mb-5,
  .testimonials-wrapper .row.mb-4,
  .faq-wrapper .row.mb-5 {
    margin-bottom: 24px !important;
  }
}
/* ============================================
   HAWKER ANNOTATED — HIDE MAIN IMAGE ON MOBILE/TABLET
   Show only the feature cards stacked as a list
   ============================================ */
@media (max-width: 1199.98px) {
  .hk-main-img {
    display: none !important;
  }

  .hk-annotated-wrap {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hk-float-card {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    opacity: 1 !important;
    width: 100% !important;
    margin-bottom: 0;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-direction: row;
  }

  .hk-card-icon-wrap {
    margin-bottom: 0;
  }

  .hk-card-body p {
    display: block !important;
  }

  .hk-arrow-svg {
    display: none !important;
  }
}
/* ============================================
   HAWKER PAIN GRID — single column on mobile
   ============================================ */
@media (max-width: 767.98px) {
  .hawker-pain-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .hawker-pain-card {
    padding: 20px;
  }

  .hawker-pain-card-title-row {
    gap: 10px;
  }

  .hawker-pain-x {
    width: 28px;
    height: 28px;
  }

  .hawker-pain-card h4 {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
  }

  .hawker-pain-card p {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
  }

  .hawker-pain-heading {
    font-size: 1.5rem !important;
  }
}
/* ============================================
   CAFE PHOTO HERO — image background
   ============================================ */
.cafe-photo-wrapper {
  position: relative;
  min-height: 620px;
  padding: 60px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary-navy);
}

.cafe-photo-img {
  position: absolute;
  top: 0;
  left: 35%;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
  display: block;
  opacity: 0;
  transform: translateX(60px);
  animation: heroImgSlideIn 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cafe-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 44, 86, 0.97) 0%,
    rgba(16, 44, 86, 0.95) 32%,
    rgba(16, 44, 86, 0.85) 46%,
    rgba(16, 44, 86, 0.45) 58%,
    rgba(16, 44, 86, 0.08) 70%,
    rgba(16, 44, 86, 0) 80%
  );
  z-index: 1;
}

.cafe-photo-wrapper .container {
  position: relative;
  z-index: 2;
}

.cafe-photo-wrapper .hero-content {
  padding: 10px 0;
  max-width: 620px;
}

.cafe-photo-wrapper .cafe-hero-eyebrow {
  opacity: 0;
  transform: translateX(-40px);
  animation: heroTextSlideIn 0.7s 0.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cafe-photo-wrapper .cafe-hero-heading {
  opacity: 0;
  transform: translateX(-40px);
  animation: heroTextSlideIn 0.7s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cafe-photo-wrapper .cafe-hero-para {
  opacity: 0;
  transform: translateX(-40px);
  animation: heroTextSlideIn 0.7s 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cafe-photo-wrapper .cafe-hero-btns {
  opacity: 0;
  transform: translateX(-40px);
  animation: heroTextSlideIn 0.7s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cafe-photo-wrapper .cafe-hero-trust {
  opacity: 0;
  transform: translateX(-40px);
  animation: heroTextSlideIn 0.7s 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 1350px) {
  .cafe-photo-wrapper .cafe-hero-heading { font-size: 2.3rem; }
}
@media (max-width: 1150px) {
  .cafe-photo-wrapper .cafe-hero-heading { font-size: 2rem; }
}

/* MOBILE / TABLET — image on top, text below (same pattern as hero-photo-wrapper) */
@media (max-width: 991.98px) {
  .cafe-photo-wrapper {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 0 0 40px 0;
  }

  .cafe-photo-img {
    position: static !important;
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 30%;
    order: -1;
    z-index: 0;
  }

  .cafe-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(16, 44, 86, 0.15) 0%,
      rgba(16, 44, 86, 0.25) 55%,
      rgba(16, 44, 86, 0.35) 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  .cafe-photo-wrapper .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .cafe-photo-wrapper .hero-content {
    max-width: 100%;
    padding: 24px 0 0 0;
    text-align: left;
    background-color: var(--primary-navy);
  }

  .cafe-photo-wrapper .cafe-hero-heading {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .cafe-photo-wrapper .cafe-hero-para {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .cafe-photo-wrapper .cafe-hero-btns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }

  .cafe-photo-wrapper .cafe-hero-btns .btn {
    flex: 1 1 auto;
    min-width: 140px;
    text-align: center;
    padding: 10px 18px !important;
    font-size: 0.85rem !important;
  }
}

@media (max-width: 767.98px) {
  .cafe-photo-wrapper .cafe-hero-heading { font-size: 1.5rem; }
  .cafe-photo-img { height: 220px; }
  .cafe-photo-wrapper .cafe-hero-btns { flex-direction: column; }
  .cafe-photo-wrapper .cafe-hero-btns .btn { width: 100%; }
}

@media (max-width: 480px) {
  .cafe-photo-wrapper .cafe-hero-heading { font-size: 1.3rem; }
  .cafe-photo-img { height: 190px; }
}
/* ============================================
   GLOBAL FIX — CAFE PAGE SECTION SPACING
   Reduce TOP gap, keep bottom consistent
   ============================================ */
.cafe-photo-wrapper,
.cafe-pain-wrapper,
.steps-wrapper,
.cafe-annotated-section,
.comparison-wrapper,
.testimonials-wrapper,
.faq-wrapper,
.footer-cta-wrapper {
  padding-top: 32px !important;
  padding-bottom: 64px !important;
}

.cafe-pain-wrapper .row.mb-5,
.steps-wrapper .row.mb-5,
.comparison-wrapper .row.mb-5,
.testimonials-wrapper .row.mb-4,
.faq-wrapper .row.mb-5 {
  margin-bottom: 30px !important;
}

@media (max-width: 991.98px) {
  .cafe-photo-wrapper,
  .cafe-pain-wrapper,
  .steps-wrapper,
  .cafe-annotated-section,
  .comparison-wrapper,
  .testimonials-wrapper,
  .faq-wrapper,
  .footer-cta-wrapper {
    padding-top: 24px !important;
    padding-bottom: 48px !important;
  }
}

@media (max-width: 767.98px) {
  .cafe-photo-wrapper,
  .cafe-pain-wrapper,
  .steps-wrapper,
  .cafe-annotated-section,
  .comparison-wrapper,
  .testimonials-wrapper,
  .faq-wrapper,
  .footer-cta-wrapper {
    padding-top: 20px !important;
    padding-bottom: 36px !important;
  }
}
@media (max-width: 767.98px) {
    .cf-annotated-wrap {
        display: block;
        height: auto;
    }

    /* Hide the main image and arrow layer on mobile */
    .cf-main-img,
    .cf-arrow-svg {
        display: none !important;
    }

    /* Turn the floating cards into a normal stacked list */
    .cf-float-card {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        margin-bottom: 16px;
        opacity: 1 !important;
    }
}
@media (max-width: 767.98px) {
    .cafe-pain-grid {
        display: block !important;
    }

    .cafe-pain-card-wrap {
        width: 100% !important;
        margin-bottom: 20px;
    }

    .cafe-pain-card {
        width: 100%;
    }
}
.cafe-hero-prefix {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75) !important;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.cafe-hero-heading .cafe-hero-highlight {
  font-size: 2.85rem;
  line-height: 1.15;
  display: block;
}

@media (max-width: 1350px) {
  .cafe-hero-heading .cafe-hero-highlight { font-size: 2.4rem; }
}
@media (max-width: 1150px) {
  .cafe-hero-prefix { font-size: 1.2rem; }
  .cafe-hero-heading .cafe-hero-highlight { font-size: 2rem; }
}
@media (max-width: 767.98px) {
  .cafe-hero-prefix { font-size: 1.05rem; }
  .cafe-hero-heading .cafe-hero-highlight { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .cafe-hero-heading .cafe-hero-highlight { font-size: 1.3rem; }
}
.cafe-hero-eyebrow {
  display: block;
  font-size: 30px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  animation: cafeSlideUp 0.6s 0.1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}
.cafe-pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cafe-pain-card-single {
  grid-column: 1 / -1;
  max-width: 700px;      /* full width edukkama, compact ah */
  margin: 0 auto;         /* center pannum */
}
.cafe-pain-card-single .cafe-pain-card {
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;     /* konjam kammi padding */
  /* background: var(--soft-peach) !important; */
  border: 1.5px solid rgba(255, 90, 31, 0.3) !important;
}
.cafe-pain-card-single .cafe-pain-icon {
  margin-bottom: 0;
}
.cafe-pain-card-single .cafe-pain-card-body h4 {
  font-size: 1rem !important;
  color: var(--accent-orange) !important;
  margin-bottom: 6px !important;
}
.cafe-pain-card-single .cafe-pain-card-body p {
  font-size: 0.88rem !important;
}
.cafe-pain-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.cafe-pain-card {
  background: #fff;
  border: 1.5px solid #e8ecf0;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
}
.cafe-pain-card:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 12px 28px rgba(255,90,31,0.1);
  transform: translateY(-4px);
}
.cafe-pain-card h4 {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--primary-navy) !important;
  margin: 0 0 10px 0 !important;
}
.cafe-pain-card p {
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  color: var(--muted-slate) !important;
  margin: 0 !important;
}
.cafe-pain-footer-note {
  background: var(--soft-peach);
  border: 1px solid rgba(255,90,31,0.2);
  padding: 18px 28px;
  border-radius: 14px;
  font-weight: 600;
  color: var(--primary-navy) !important;
  font-size: 0.98rem;
  display: inline-block;
}
.cafe-pain-card-wrap {
  opacity: 0;
  animation: cafePainFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.cafe-pain-card-wrap[data-delay="0"] { animation-delay: 0.0s; }
.cafe-pain-card-wrap[data-delay="1"] { animation-delay: 0.1s; }
.cafe-pain-card-wrap[data-delay="2"] { animation-delay: 0.2s; }
.cafe-pain-card-wrap[data-delay="3"] { animation-delay: 0.3s; }
.cafe-pain-card-wrap[data-delay="4"] { animation-delay: 0.4s; }

@keyframes cafePainFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cafe-pain-card-body h4 {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #0D2B5E !important;   /* changed from var(--primary-navy) */
  margin-bottom: 10px !important;
  line-height: 1.35 !important;
}
.cafe-pain-card {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* bouncy spring easing */
}

.cafe-pain-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--accent-orange);
  box-shadow: 0 20px 45px rgba(255, 90, 31, 0.18);
}

.cafe-pain-card:hover .cafe-pain-icon {
  transform: scale(1.15) rotate(-6deg);
  background: var(--accent-orange);
}

.cafe-pain-card:hover .cafe-pain-icon img {
  filter: brightness(0) invert(1); /* icon turns white on orange bg */
}

.cafe-pain-icon {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cafe-pain-card {
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.cafe-pain-card:hover {
  box-shadow: 0 20px 45px rgba(255, 90, 31, 0.18);
  border-color: var(--accent-orange);
}

.cafe-pain-icon {
  transition: transform 0.3s ease;
}
.cafe-pain-card:hover .cafe-pain-icon {
  transform: scale(1.1) translateZ(20px);
}
/* 1. Timeline connector line - make it visible */
.step-item {
  position: relative;
  padding-left: 0;
}
.step-item::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 66px;
  width: 2px;
  height: calc(100% - 10px);
  background: rgba(255, 255, 255, 0.15);
  z-index: 0;
}
.step-item.active ~ .step-item::before {
  background: rgba(255, 255, 255, 0.15);
}
.step-item.active::before {
  background: linear-gradient(to bottom, var(--accent-orange) 0%, rgba(255,90,31,0.1) 100%);
}

/* 2. Auto-progress bar inside active step */
.step-progress-track {
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.step-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent-orange);
  border-radius: 2px;
}
.step-item.active .step-progress-fill {
  animation: fillProgress 4s linear forwards;
}
@keyframes fillProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* 3. Image Ken Burns zoom on active */
.workflow-img {
  transform: scale(1.1);
  transition: opacity 0.6s ease, transform 6s ease;
}
.workflow-img.active {
  transform: scale(1);
  animation: kenBurns 6s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
/* 1. Background depth - subtle radial glow + dot pattern */
.steps-wrapper {
  position: relative;
  background-color: var(--primary-navy);
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.steps-wrapper::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,90,31,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* 2. Active step card - glass panel with glow border */
.step-item.active {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,90,31,0.3);
  border-left: 3px solid var(--accent-orange);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(255,90,31,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
}

/* 3. Bigger, richer number circle */
.step-item.active .step-number {
  width: 56px; height: 56px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--accent-orange), #ff8a4c);
  border: none;
  box-shadow: 0 6px 20px rgba(255,90,31,0.4), 0 0 0 6px rgba(255,90,31,0.1);
}
.step-item:not(.active) .step-number {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
}

/* 4. Image frame - glowing border instead of plain */
.workflow-visual-frame {
  border: 1px solid rgba(255,90,31,0.25);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 60px rgba(255,90,31,0.12);
  position: relative;
}
.workflow-visual-frame::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,90,31,0.5), transparent 50%, rgba(255,90,31,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.pos-hero-wrapper {
    background: linear-gradient(135deg, #0a2e5c 0%, #123a72 60%, #0d3266 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 90px;
    min-height: 640px;
}

.pos-hero-glow {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255,107,26,0.25) 0%, rgba(255,107,26,0) 70%);
    filter: blur(10px);
    z-index: 0;
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

.pos-hero-content {
    position: relative;
    z-index: 2;
}

/* ---- TEXT ENTRANCE ANIMATION ---- */
.anim-item {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.7s ease forwards;
}

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

.pos-hero-eyebrow {
    display: inline-block;
    color: #ff8a4c;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.pos-hero-heading {
    color: #ffffff !important;
    opacity: 0; /* overridden by anim-item, keep initial hidden */
    font-size: 44px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.pos-hero-para {
    color: #cfdcf0;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
    max-width: 520px;
}

/* ---- BUTTON HOVER ANIMATION ---- */
.pos-hero-btns .btn {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pos-hero-btns .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.pos-btn-outline {
    border: 1.5px solid rgba(255,255,255,0.6);
    color: #fff;
    background: transparent;
    font-weight: 600;
}

.pos-btn-outline:hover {
    background: #fff;
    color: #0a2e5c;
    border-color: #fff;
}

/* ---- TRUST ROW ---- */
.pos-hero-trust-row {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.pos-hero-trust-row span {
    color: #cfdcf0;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.pos-hero-trust-row span:hover {
    color: #fff;
    transform: translateX(2px);
}

.pos-hero-trust-row i {
    color: #ff6b1a;
    margin-right: 6px;
}

/* ---- IMAGE ENTRANCE + FLOATING ---- */
.pos-hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.anim-img-in {
    opacity: 0;
    transform: translateX(40px) scale(0.96);
    animation:
        slideIn 0.9s ease 0.3s forwards,
        floatLoop 5s ease-in-out 1.3s infinite;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes floatLoop {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.pos-hero-img {
    max-height: 540px;
    width: auto;
    display: inline-block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}

@media (max-width: 991px) {
    .pos-hero-wrapper {
        padding: 60px 0 50px;
        min-height: auto;
    }
    .pos-hero-heading {
        font-size: 30px;
    }
    .pos-hero-glow {
        width: 300px;
        height: 300px;
        right: -10%;
    }
    .pos-hero-image-wrapper {
        margin-top: 30px;
    }
    .pos-hero-img {
        max-height: 300px;
    }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .anim-item, .anim-img-in, .pos-hero-glow {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
.pos-hero-wrapper {
    background: linear-gradient(135deg, #081f42 0%, #0d2f5e 45%, #123a72 100%);
    position: relative;
    overflow: hidden;
    padding: 90px 0 0;
}

/* subtle grid texture for depth */
.pos-hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 0;
    pointer-events: none;
}

.pos-hero-glow {
    position: absolute;
    top: 10%;
    right: 8%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255,107,26,0.28) 0%, rgba(255,107,26,0) 70%);
    filter: blur(10px);
    z-index: 0;
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.pos-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 70px;
}

/* ---- BADGE ---- */
.pos-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,138,76,0.12);
    border: 1px solid rgba(255,138,76,0.35);
    color: #ff9d5c;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 1.2px;
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 22px;
}

.pos-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff6b1a;
    box-shadow: 0 0 0 3px rgba(255,107,26,0.25);
}

/* ---- HEADING ---- */
.pos-hero-heading {
    color: #ffffff !important;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.22;
    margin-bottom: 22px;
    letter-spacing: -0.8px;
}

.pos-heading-accent {
    background: linear-gradient(90deg, #ff8a4c, #ffb347);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pos-hero-para {
    color: #b9c9e3;
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 10px;
    max-width: 500px;
}

/* ---- BUTTONS ---- */
.pos-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.pos-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(255,107,26,0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pos-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(255,107,26,0.4);
}

.pos-btn-primary i {
    font-size: 13px;
    transition: transform 0.2s ease;
}

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

.pos-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    background: rgba(255,255,255,0.04);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.pos-btn-outline:hover {
    background: #fff;
    color: #0a2e5c;
    border-color: #fff;
    transform: translateY(-3px);
}

.pos-btn-outline i {
    color: #25D366;
}

.pos-btn-outline:hover i {
    color: #25D366;
}

/* ---- TRUST GRID (cards instead of plain text) ---- */
.pos-hero-trust-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 460px;
}

.pos-trust-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 12px;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pos-trust-card:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-2px);
}

.pos-trust-card i {
    color: #ff6b1a;
    font-size: 14px;
    flex-shrink: 0;
}

.pos-trust-card span {
    color: #dbe6f5;
    font-size: 13px;
    font-weight: 500;
}

/* ---- ANIMATIONS ---- */
.anim-item {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.7s ease forwards;
}

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

/* ---- IMAGE ---- */
.pos-hero-img {
    position: absolute;
    bottom: 0;
    right: 6%;
    max-height: 640px;
    width: auto;
    z-index: 1;
    filter: drop-shadow(0 25px 45px rgba(0,0,0,0.4));
}

.anim-img-in {
    opacity: 0;
    animation:
        slideIn 0.9s ease 0.3s forwards,
        floatLoop 5s ease-in-out 1.3s infinite;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(40px) scale(0.96); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes floatLoop {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

@media (max-width: 991px) {
    .pos-hero-wrapper { padding: 50px 0 0; }
    .pos-hero-content { padding-bottom: 30px; }
    .pos-hero-heading { font-size: 30px; }
    .pos-hero-trust-grid { grid-template-columns: 1fr; max-width: 100%; }
    .pos-hero-img {
        position: static;
        display: block;
        margin: 30px auto 0;
        max-height: 300px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .anim-item, .anim-img-in, .pos-hero-glow {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
/* ============================================
   FnB HERO - TWO-TIER HEADING (matches /fnb/cafes style)
   Add to orderz-landing.css, AFTER existing hero rules
   ============================================ */

.hero-photo-wrapper .hero-heading-split {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.1rem;
}

.hero-photo-wrapper .hero-heading-sub {
    color: #ffffff;
    opacity: 1;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.hero-photo-wrapper .hero-heading-main {
    color: var(--accent-orange, #DF5222);
    opacity: 1;
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* keep the dark-to-light overlay for readability on the left side */
.hero-photo-wrapper .hero-photo-overlay {
    background: linear-gradient(
        90deg,
        rgba(10, 26, 58, 0.85) 0%,
        rgba(10, 26, 58, 0.65) 45%,
        rgba(10, 26, 58, 0.15) 75%,
        rgba(10, 26, 58, 0) 100%
    );
}

@media (max-width: 768px) {
    .hero-photo-wrapper .hero-heading-sub {
        font-size: 1.5rem;
    }
    .hero-photo-wrapper .hero-heading-main {
        font-size: 2rem;
    }
}
/* ============================================
   SG F&B CATEGORIES - FIX BROKEN SWIPER SLIDE
   Add to orderz-landing.css
   ============================================ */

.myIndustrySlider {
    padding: 10px 4px 40px;
    overflow: hidden;
}

.myIndustrySlider .swiper-wrapper {
    align-items: stretch;
}

/* force every slide to behave the same - no scale, no random size */
.myIndustrySlider .swiper-slide {
    height: auto !important;
    transform: none !important;
    opacity: 1 !important;
    width: 340px !important;      /* fixed width — same for every slide */
    flex-shrink: 0;
    display: flex;                /* so the card inside stretches full slide height */
}

.sg-category-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sg-category-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-orange, #DF5222);
    box-shadow: 0 14px 30px rgba(223, 82, 34, 0.15);
}

.sg-category-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    flex-shrink: 0;
}

.sg-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.35) 100%);
}

.sg-category-content {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sg-category-content p {
    flex: 1;
    color: #64748b;
    font-size: 14.5px;
    line-height: 1.6;
}

.sg-card-title {
    margin-bottom: 8px;
}
.hero-photo-wrapper .orderz-font-headings {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-photo-wrapper .hero-eyebrow {
    color: #ff7a00; /* or any accent color that pops on dark bg */
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-photo-wrapper .hero-para {
    color: #f1f1f1;
}
.hawker-pain-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.hawker-pain-card-wrap {
    display: flex;
    margin-bottom: 24px;
}

.hawker-pain-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hawker-pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.hawker-pain-card-title-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.hawker-pain-x {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hawker-pain-card h4 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
    color: #1a2744;
}

.hawker-pain-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #5a6478;
    margin: 0;
}
.hawker-pain-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.hawker-pain-card-wrap {
    display: flex;
    margin-bottom: 24px;
}

.hawker-pain-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hawker-pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.hawker-pain-card-title-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.hawker-pain-x {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hawker-pain-card h4 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
    color: #1a2744;
}

.hawker-pain-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #5a6478;
    margin: 0;
}
.cafe-photo-wrapper {
    position: relative;
    min-height: 750px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #0a1a3a;
}

.cafe-photo-img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    max-width: 55%;
    object-fit: contain;
    object-position: bottom right;
    z-index: 1;
}

.cafe-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(10,26,58,0.98) 0%,
        rgba(10,26,58,0.85) 45%,
        rgba(10,26,58,0.3) 70%,
        rgba(10,26,58,0) 100%
    );
    z-index: 2;
}

.cafe-photo-wrapper .hero-content {
    position: relative;
    z-index: 3;
    padding: 80px 0;
}

.cafe-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #cfd6e8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.cafe-hero-eyebrow i {
    color: #ff7a30;
}

.cafe-hero-heading {
    color: #ffffff;
    font-weight: 800;
    font-size: clamp(30px, 3.4vw, 42px);
    line-height: 1.3;
    margin-bottom: 20px;
}

.cafe-hero-highlight {
    color: #ff8a3d;
}

.cafe-hero-para {
    color: #b8c0d4;
    font-size: 16px;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 16px;
}

.cafe-hero-btns {
    display: flex;
    gap: 14px;
    margin: 28px 0 32px;
}

.cafe-btn-outline {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.25);
    color: #ffffff !important;
    font-weight: 600;
}

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

.cafe-hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: #cfd6e8;
    font-size: 14px;
    font-weight: 500;
}

.cafe-trust-dot {
    color: #ff7a30;
    font-weight: 700;
}

@media (max-width: 992px) {
    .cafe-photo-img {
        max-width: 100%;
        opacity: 0.2;
        object-position: center;
    }
    .cafe-photo-overlay {
        background: rgba(10,26,58,0.9);
    }
}
.cafe-hero-flex-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 700px;
    background: #0a1a3a;
    width: 100%;
    overflow: hidden;
}

.cafe-hero-flex-left {
    flex: 0 0 48%;
    max-width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5% 60px 8%;
    box-sizing: border-box;
}

.cafe-hero-flex-right {
    flex: 0 0 52%;
    max-width: 52%;
    position: relative;
    overflow: hidden;
}

.cafe-hero-flex-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cafe-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #cfd6e8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
    width: fit-content;
}

.cafe-hero-eyebrow i {
    color: #ff7a30;
}

.cafe-hero-heading {
    color: #ffffff;
    font-weight: 800;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.3;
    margin-bottom: 20px;
}

.cafe-hero-highlight {
    color: #ff8a3d;
}

.cafe-hero-para {
    color: #b8c0d4;
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.cafe-hero-btns {
    display: flex;
    gap: 14px;
    margin: 24px 0 28px;
}

.cafe-btn-outline {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.25);
    color: #ffffff !important;
    font-weight: 600;
}

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

.cafe-hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: #cfd6e8;
    font-size: 13.5px;
    font-weight: 500;
}

.cafe-trust-dot {
    color: #ff7a30;
    font-weight: 700;
}

@media (max-width: 992px) {
    .cafe-hero-flex-wrapper {
        flex-direction: column;
    }
    .cafe-hero-flex-left,
    .cafe-hero-flex-right {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .cafe-hero-flex-right {
        min-height: 320px;
    }
    .cafe-hero-flex-left {
        padding: 40px 24px;
    }
}
.hawker-pain-grid-new {
    display: flex;
    flex-wrap: wrap;
}

.hawker-pain-grid-new .hawker-pain-card-wrap {
    display: flex;
    margin-bottom: 24px;
}

.hawker-pain-grid-new .hawker-pain-card {
    background: #fff;
    border: 1.5px solid #e8ecf0;
    border-radius: 14px;
    padding: 26px;
    height: 100%;
    width: 100%;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hawker-pain-grid-new .hawker-pain-card:hover {
    border-color: rgba(255, 90, 31, 0.35);
    box-shadow: 0 12px 32px rgba(255, 90, 31, 0.1);
    transform: translateY(-4px);
}
.hawker-pain-grid-new {
    display: flex;
    flex-wrap: wrap;
}

.hawker-pain-grid-new .hawker-pain-card-wrap {
    display: flex;
    margin-bottom: 24px;
}

.hawker-pain-grid-new .hawker-pain-card {
    background: #fff;
    border: 1.5px solid #e8ecf0;
    border-radius: 14px;
    padding: 26px;
    height: 100%;
    width: 100%;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hawker-pain-grid-new .hawker-pain-card:hover {
    border-color: rgba(255, 90, 31, 0.35);
    box-shadow: 0 12px 32px rgba(255, 90, 31, 0.1);
    transform: translateY(-4px);
}
/* ============================================
   FnB HERO — PREMIUM v2
   ============================================ */
.hero-photo-wrapper {
  min-height: 680px;
  padding: 70px 0 60px;
}

/* deeper, richer overlay */
.hero-photo-wrapper .hero-photo-overlay {
  background: linear-gradient(
    100deg,
    rgba(8, 20, 46, 0.97) 0%,
    rgba(8, 20, 46, 0.90) 40%,
    rgba(8, 20, 46, 0.55) 58%,
    rgba(8, 20, 46, 0.12) 74%,
    rgba(8, 20, 46, 0) 88%
  );
}

/* decorative glow blobs */
.hero-photo-wrapper::before {
  content: '';
  position: absolute;
  top: -15%; left: -8%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,90,31,0.16) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.hero-photo-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20%; left: 20%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-photo-wrapper .hero-content { max-width: 640px; }

/* badge */
.hero-photo-wrapper .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffd9c2 !important;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  padding: 8px 18px;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(12px);
  animation: fnbFadeUp 0.6s 0.1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-photo-wrapper .hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 0 4px rgba(255,90,31,0.22);
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,90,31,0.22); }
  50% { box-shadow: 0 0 0 7px rgba(255,90,31,0.1); }
}

.hero-photo-wrapper .hero-heading-split {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
}
.hero-photo-wrapper .hero-heading-sub {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(16px);
  animation: fnbFadeUp 0.6s 0.22s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-photo-wrapper .hero-heading-main {
  position: relative;
  display: inline-block;
  font-weight: 800;
  font-size: 3.4rem;
  line-height: 1.12;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #ffb347 0%, #ff5a1f 55%, #ff5a1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(18px);
  animation: fnbFadeUp 0.65s 0.36s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-photo-wrapper .hero-heading-main::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 2px;
  width: 0%; height: 4px;
  background: linear-gradient(90deg, var(--accent-orange), transparent);
  border-radius: 2px;
  animation: fnbUnderline 0.8s 0.95s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes fnbFadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fnbUnderline { to { width: 88%; } }

.hero-photo-wrapper .hero-para {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78) !important;
  max-width: 540px;
  opacity: 0;
  transform: translateY(16px);
  animation: fnbFadeUp 0.65s 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-photo-wrapper .hero-btns {
  margin-top: 32px !important;
  opacity: 0;
  transform: translateY(16px);
  animation: fnbFadeUp 0.65s 0.62s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-photo-wrapper .orderz-btn-orange {
  padding: 15px 34px !important;
  font-size: 1rem !important;
  box-shadow: 0 10px 28px rgba(255,90,31,0.35) !important;
}
.hero-photo-wrapper .orderz-btn-outline {
  padding: 15px 30px !important;
  font-size: 1rem !important;
}

/* trust row — proper cards with icon circles */
.fnb-trust-row {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 16px;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(16px);
  animation: fnbFadeUp 0.65s 0.75s cubic-bezier(0.16,1,0.3,1) forwards;
}
.fnb-trust-row span {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: #e2e8f5 !important;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.fnb-trust-row span:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,90,31,0.3);
  transform: translateY(-3px);
}
.fnb-trust-row span i {
  color: var(--accent-orange);
  font-size: 15px;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .hero-photo-wrapper .hero-heading-sub { font-size: 1.2rem; }
  .hero-photo-wrapper .hero-heading-main { font-size: 2.1rem; }
  .fnb-trust-row { grid-template-columns: 1fr; }
}
/* ============================================
   PAIN POINTS — TILT CARD DESIGN (final)
   ============================================ */
.pain-points-wrapper .orderz-card {
  background: #ffffff;
  border: 1.5px solid #eef1f5;
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.45s ease;
}

.pain-points-wrapper .orderz-card:hover {
  transform: perspective(1000px) rotateX(4deg) rotateY(-3deg) translateY(-8px);
  box-shadow: 0 30px 50px rgba(16, 44, 86, 0.14);
  border-color: rgba(255, 90, 31, 0.4);
}

/* left accent bar */
.pain-points-wrapper .orderz-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0%;
  background: linear-gradient(180deg, var(--accent-orange), #ffb347);
  transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pain-points-wrapper .orderz-card:hover::before {
  height: 100%;
}

/* icon — spins on hover, glyph stays visible */
.pain-points-wrapper .orderz-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--soft-peach);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transform-style: flat;
  backface-visibility: visible;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.4s ease,
              color 0.4s ease;
}
.pain-points-wrapper .orderz-card-icon i {
  color: inherit !important;
  position: relative;
  z-index: 2;
}
.pain-points-wrapper .orderz-card:hover .orderz-card-icon {
  transform: rotate(360deg) scale(1.05);
  background: var(--accent-orange);
  color: #ffffff;
}

/* number badge */
.pain-points-wrapper .orderz-card .pain-index {
  position: absolute;
  top: 24px;
  right: 26px;
  font-size: 2rem;
  font-weight: 800;
  color: #eef1f5;
  line-height: 1;
  transition: color 0.4s ease, transform 0.4s ease;
}
.pain-points-wrapper .orderz-card:hover .pain-index {
  color: rgba(255, 90, 31, 0.18);
  transform: scale(1.1);
}

.pain-points-wrapper .orderz-card h4 {
  font-size: 1.12rem;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.pain-points-wrapper .orderz-card:hover h4 {
  color: var(--accent-orange);
}

.pain-points-wrapper .orderz-card p {
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* reveal on scroll */
.pain-points-wrapper .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.pain-points-wrapper .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.pain-points-wrapper { position: relative; }
.pain-points-wrapper::before {
  content: '';
  position: absolute;
  top: 0; right: -5%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,90,31,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* ============================================
   FORCE FIX — icon color on hover (put at very end of CSS file)
   ============================================ */
.pain-points-wrapper .orderz-card:hover .orderz-card-icon,
.pain-points-wrapper .orderz-card:hover .orderz-card-icon i,
.pain-points-wrapper .orderz-card:hover .orderz-card-icon i.fa {
  color: #ffffff !important;
}

.pain-points-wrapper .orderz-card .orderz-card-icon i,
.pain-points-wrapper .orderz-card .orderz-card-icon i.fa {
  color: var(--accent-orange) !important;
}


/* ============================================
   STEPS — CONNECTOR LINE (measured via JS, not guessed)
   ============================================ */
#stepLineTrack.step-line-track {
  position: relative !important;
}

/* kill every possible old/conflicting line rule on step-item, regardless of source order */
#stepLineTrack .step-item::before,
#stepLineTrack .step-item.active::before,
#stepLineTrack .step-item.active:not(:last-child)::before,
#stepLineTrack .step-item.active ~ .step-item::before {
  content: none !important;
  display: none !important;
  background: none !important;
}

#stepLineBg,
#stepLineFill {
  position: absolute;
  top: 0;
  width: 2px;
  height: 0px;
  border-radius: 2px;
  z-index: 0;
}
#stepLineBg {
  background: rgba(255, 255, 255, 0.2);
}
#stepLineFill {
  background: linear-gradient(180deg, var(--accent-orange), #ffb347);
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1), top 0.3s ease;
}

#stepLineTrack .step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 1;
  padding: 14px 16px 14px 0;
  margin-bottom: 6px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.3s ease;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  transform: none !important;
}
#stepLineTrack .step-item:hover { background: rgba(255, 255, 255, 0.05) !important; }
#stepLineTrack .step-item:not(.active) { opacity: 0.55; }
#stepLineTrack .step-item:not(.active):hover { opacity: 0.85; }
#stepLineTrack .step-item.active {
  background: rgba(255, 255, 255, 0.05) !important;
  opacity: 1;
}

#stepLineTrack .step-dot {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding-top: 4px;
  position: relative;
  z-index: 1;
}
#stepLineTrack .step-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: block;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#stepLineTrack .step-item.active .step-dot span {
  width: 14px;
  height: 14px;
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 5px rgba(255, 90, 31, 0.2), 0 0 0 10px rgba(255, 90, 31, 0.08);
  animation: dotPulseStep 2s ease-in-out infinite;
}
@keyframes dotPulseStep {
  0%, 100% { box-shadow: 0 0 0 5px rgba(255, 90, 31, 0.2), 0 0 0 10px rgba(255, 90, 31, 0.08); }
  50%      { box-shadow: 0 0 0 7px rgba(255, 90, 31, 0.14), 0 0 0 14px rgba(255, 90, 31, 0.04); }
}

#stepLineTrack .step-details h4 { color: #ffffff !important; font-size: 1.1rem; margin-bottom: 8px; line-height: 1.4; }
#stepLineTrack .step-details p { color: rgba(255, 255, 255, 0.65) !important; font-size: 0.9rem; line-height: 1.6; }
#stepLineTrack .step-item.active .step-details p { color: rgba(255, 255, 255, 0.88) !important; }
/* =========================================================
   OrderZ – Radial Features Diagram
   Requires features-radial.html + features-radial.js
   ========================================================= */

.orderz-diagram-wrapper {
  padding: 90px 0 60px;
  background: #fbfbfe;
  overflow: hidden;
}

.diagram-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  background: rgba(255, 122, 26, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
}

.orderz-diagram-wrapper h2 {
  font-weight: 800;
  font-size: 2.1rem;
  color: #101534;
  line-height: 1.35;
}

.orderz-diagram-wrapper .text-orange {
  color: var(--accent-orange, #ff7a1a);
}

/* ---------- 3-column grid: left cards | ring | right cards ---------- */
.orderz-diagram {
  display: grid;
  grid-template-columns: 1fr 360px 1fr;
  align-items: center;
  gap: 34px;
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
}

.diagram-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.diagram-arrow-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.diagram-arrow-path.flowing {
  animation: diagramDashFlow 0.9s linear infinite;
}

@keyframes diagramDashFlow {
  to { stroke-dashoffset: -22; }
}

.diagram-arrow-path.path-active {
  stroke-width: 2.6 !important;
}

/* ---------- individual item: card + line + icon ---------- */
.diagram-item {
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.diagram-col-right .diagram-item {
  transform: translateX(24px);
}

.diagram-item.in-view {
  opacity: 1;
  transform: translateX(0);
}

.diagram-text {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 12px 32px rgba(16, 21, 52, 0.07);
  position: relative;
  flex: 1;
  min-width: 0;
}

.diagram-num {
  position: absolute;
  top: -12px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.diagram-col-left .diagram-num { right: -10px; }
.diagram-col-right .diagram-num { left: -10px; }

.diagram-text h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #101534;
  margin: 0 0 6px;
}

.diagram-text p {
  font-size: 0.86rem;
  color: #6b7086;
  margin: 0;
  line-height: 1.5;
}

.diagram-line {
  flex: 0 0 auto;
  width: 34px;
  height: 2px;
  background-repeat: repeat-x;
  background-image: linear-gradient(90deg, currentColor 50%, transparent 50%);
  background-size: 8px 2px;
  opacity: 0.55;
}

.diagram-icon {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(16, 21, 52, 0.1), 0 0 0 6px rgba(16, 21, 52, 0.02);
  font-size: 22px;
}

.diagram-icon img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.diagram-icon svg { display: block; }

/* ---------- center ring ---------- */
.diagram-center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.diagram-ring {
  position: relative;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 0 14px rgba(16, 21, 52, 0.015);
}

.diagram-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(16, 21, 52, 0.16);
  animation: diagramRingSpin 40s linear infinite;
}

@keyframes diagramRingSpin {
  to { transform: rotate(360deg); }
}

.diagram-hub {
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 24px 55px rgba(16, 21, 52, 0.14), 0 0 0 10px rgba(255, 122, 26, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.diagram-hub.in-view {
  opacity: 1;
  transform: scale(1);
}

.diagram-hub-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 122, 26, 0.12);
  color: var(--accent-orange, #ff7a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.diagram-hub strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: #101534;
  letter-spacing: 0.2px;
}

.diagram-hub-sub {
  font-size: 0.78rem;
  color: #6b7086;
  margin-top: 6px;
  line-height: 1.4;
}

/* dots injected by JS */
.diagram-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18), 0 0 0 5px currentColor, 0 0 14px 2px currentColor;
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  transition-delay: var(--dot-delay, 0s);
}

.diagram-dot.in-view {
  transform: translate(-50%, -50%) scale(1);
  animation: dotPulseGlow 2.4s ease-in-out infinite;
  animation-delay: calc(var(--dot-delay, 0s) + 0.5s);
}

.diagram-dot.dot-active {
  transform: translate(-50%, -50%) scale(1.35) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22), 0 0 0 6px currentColor, 0 0 22px 6px currentColor !important;
  animation: none !important;
}

@keyframes dotPulseGlow {
  0%, 100% { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18), 0 0 0 5px currentColor, 0 0 14px 2px currentColor; }
  50%      { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18), 0 0 0 7px currentColor, 0 0 22px 6px currentColor; }
}

.diagram-hub.in-view {
  animation: hubFloat 4.5s 0.6s ease-in-out infinite;
}

@keyframes hubFloat {
  0%, 100% { transform: scale(1) translateY(0); }
  50%      { transform: scale(1) translateY(-6px); }
}

.diagram-hub-icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.diagram-hub:hover .diagram-hub-icon {
  transform: scale(1.12) rotate(-6deg);
}

/* card hover lift + highlight, also toggled via JS for hover-sync with the line/dot */
.diagram-item {
  cursor: pointer;
}
.diagram-text {
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}
.diagram-item:hover .diagram-text,
.diagram-item.item-active .diagram-text {
  box-shadow: 0 18px 40px rgba(16, 21, 52, 0.14);
  transform: translateY(-3px);
}
.diagram-item:hover .diagram-icon,
.diagram-item.item-active .diagram-icon {
  transform: scale(1.1);
  box-shadow: 0 14px 30px rgba(16, 21, 52, 0.16);
}
.diagram-icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

/* ---------- footer strip ---------- */
.diagram-footer {
  max-width: 1300px;
  margin: 60px auto 0;
  background: #101534;
  border-radius: 20px;
  padding: 26px 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.diagram-footer.in-view {
  opacity: 1;
  transform: translateY(0);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}

.footer-brand-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 122, 26, 0.18);
  color: var(--accent-orange, #ff7a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex: 0 0 auto;
}

.footer-brand h5 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: #fff;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 600;
}

.badge-item svg {
  color: var(--accent-orange, #ff7a1a);
}

/* ---------- responsive ---------- */
@media (max-width: 991px) {
  .orderz-diagram {
    grid-template-columns: 1fr;
  }
  .diagram-center {
    order: -1;
    margin-bottom: 20px;
  }
  .diagram-ring {
    width: 220px;
    height: 220px;
  }
  .diagram-item,
  .diagram-item-reverse {
    flex-direction: row;
  }
  .diagram-col-right .diagram-item {
    flex-direction: row-reverse;
  }
  .diagram-num {
    display: none;
  }
}

@media (max-width: 575px) {
  .diagram-line { display: none; }
  .diagram-icon { width: 46px; height: 46px; font-size: 16px; }
  .diagram-text { padding: 14px 16px; }
  .footer-badges { gap: 20px; }
}
/* ============================================
   RADIAL DIAGRAM — v2 polish
   ============================================ */

/* smoother stroke rendering */
.diagram-arrow-path {
  stroke-linecap: round;
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.06));
}

/* traveling glow particle that flows along each connector */
.diagram-flow-dot {
  filter: drop-shadow(0 0 4px currentColor);
}

/* ring dot upgrade — soft breathing glow instead of static */
.diagram-dot {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.3s ease;
}

/* icon bubble: subtle idle float so the diagram feels alive even without hover */
.diagram-icon {
  animation: iconIdleFloat 3.6s ease-in-out infinite;
  animation-delay: calc(var(--float-delay, 0) * 1s);
}
@keyframes iconIdleFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* hub — soft outer glow ring pulsing behind it */
.diagram-hub::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,26,0.10) 0%, transparent 70%);
  animation: hubGlowPulse 3s ease-in-out infinite;
  z-index: -1;
}
@keyframes hubGlowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.08); }
}

/* card + connector highlight sync (stronger than before) */
.diagram-item.item-active .diagram-text {
  box-shadow: 0 20px 44px rgba(16,21,52,0.18) !important;
}
.diagram-arrow-path.path-active {
  filter: drop-shadow(0 0 6px currentColor);
}
/* ============================================
   SG CATEGORY CARDS — equal height + bottom-aligned link
   ============================================ */
.sg-category-card {
    height: 100% !important;   /* stretch to fill the slide */
}

.sg-category-content {
    display: flex !important;
    flex-direction: column;
    flex: 1;
}

.sg-category-content p {
    flex: 1;   /* description grows/shrinks so footer stays aligned */
}

.sg-category-explore {
    margin-top: auto;   /* pushes the "Explore →" link to the bottom, same for every card */
}

/* ============================================
   RADIAL DIAGRAM — NAVY (#102C56) THEME
   Add this at the END of features-radial.css
   ============================================ */

/* Remove number badges */
.diagram-num {
  display: none !important;
}

/* Connector lines */
.diagram-line {
  background: #102C56 !important;
}

/* Icon circles — border + icon color */
.diagram-icon {
  border-color: #102C56 !important;
}
.diagram-icon svg,
.diagram-icon i {
  color: #102C56 !important;
}

/* Ring dots */
.diagram-dot {
  background: #102C56 !important;
  color: #102C56 !important;
}

/* Arrow paths (SVG connectors drawn by JS) */
.diagram-arrow-path {
  stroke: #102C56 !important;
}
.diagram-flow-dot {
  fill: #102C56 !important;
  color: #102C56 !important;
}

/* Hover / active highlight also stays navy, not orange */
.diagram-item:hover .diagram-icon,
.diagram-item.item-active .diagram-icon {
  border-color: #102C56 !important;
  box-shadow: 0 14px 30px rgba(16, 44, 86, 0.25) !important;
}
.diagram-arrow-path.path-active {
  filter: drop-shadow(0 0 6px #102C56) !important;
}

/* ============================================
   MOBILE VIEW — cards only, hide ring/center
   ============================================ */
@media (max-width: 767.98px) {
  .diagram-center,
  .diagram-arrow-svg {
    display: none !important;
  }
  .orderz-diagram {
    display: flex !important;
    flex-direction: column;
    gap: 14px;
  }
  .diagram-col {
    gap: 14px;
  }
  .diagram-item,
  .diagram-item-reverse,
  .diagram-col-right .diagram-item {
    flex-direction: row !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .diagram-line { display: none; }
  .diagram-icon {
    width: 46px;
    height: 46px;
  }
}
/* ============================================
   RECOLOR ORANGE PNG ICONS → NAVY (#102C56)
   Add at the END of features-radial.css
   ============================================ */
.diagram-icon img {
  filter: brightness(0) invert(13%) sepia(50%) saturate(1826%)
          hue-rotate(190deg) brightness(93%) contrast(101%);
}
/* ============================================
   ARROWHEAD TIPS — force navy
   ============================================ */
.diagram-arrow-svg marker path,
.diagram-arrow-svg marker polygon,
.diagram-arrow-svg .diagram-arrow-head,
.diagram-arrow-svg polygon {
  fill: #102C56 !important;
  stroke: #102C56 !important;
}
.diagram-text {
  border-left: 3px solid #102C56;
  border-radius: 4px 16px 16px 4px;
  box-shadow: 0 8px 24px rgba(16, 44, 86, 0.08);
  transition: all 0.35s ease;
}
.diagram-item:hover .diagram-text {
  border-left-color: var(--accent-orange, #ff5a1f);
  box-shadow: 0 14px 32px rgba(16, 44, 86, 0.14);
  transform: translateY(-4px);
}
.orderz-card-icon,
.orderz-card-icon i {
  color: #102C56 !important;
}
.orderz-card-icon {
  background: rgba(16, 44, 86, 0.08) !important; /* soft navy bg instead of peach/orange bg */
}
.orderz-card:hover .orderz-card-icon,
.orderz-card:hover .orderz-card-icon i {
  color: #ffffff !important;
  background: #102C56 !important;
}
.diagram-item:hover .diagram-icon {
  border-color: var(--accent-orange, #ff5a1f) !important;
  background: #fff !important;
}
.diagram-item:hover .diagram-icon svg,
.diagram-item:hover .diagram-icon svg path {
  stroke: var(--accent-orange, #ff5a1f) !important;
}
.diagram-item:hover .diagram-line {
  background: var(--accent-orange, #ff5a1f) !important;
}
/* ============================================
   DIAGRAM FOOTER — CENTERED + REFRESHED UI
   ============================================ */
.diagram-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  background: linear-gradient(135deg, #102C56 0%, #16386b 100%);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
}

/* subtle glow accent */
.diagram-footer::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,90,31,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.footer-brand {
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.footer-brand-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 90, 31, 0.15);
  border: 1px solid rgba(255, 90, 31, 0.3);
}

.footer-brand h5 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 420px;
}

.footer-badges {
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 600px;
}

.badge-item {
  transition: transform 0.3s ease;
}
.badge-item:hover {
  transform: translateY(-4px);
}
.badge-item svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 767.98px) {
  .diagram-footer { padding: 32px 20px; }
  .footer-badges { gap: 20px; flex-wrap: wrap; }
}
/* ============================================
   FOOTER — COMPLETE FIX (icon + missing badges)
   ============================================ */

.diagram-footer {
  max-width: 720px;
  margin: 60px auto 0 auto !important;
  width: 100%;
  padding: 36px 40px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Icon — cover both svg and img cases */
.footer-brand-icon {
  background: rgba(255, 90, 31, 0.18) !important;
  border: 1px solid rgba(255, 90, 31, 0.35) !important;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand-icon svg,
.footer-brand-icon svg path {
  color: #ffffff !important;
  stroke: #ffffff !important;
  fill: none !important;
}
.footer-brand-icon img {
  filter: brightness(0) invert(1) !important;
}
.footer-brand-icon i {
  color: #ffffff !important;
}

/* Force badges row to show — in case display:none or 0 height somewhere */
.footer-badges {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
}
.badge-item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #ffffff !important;
}
.badge-item span {
  color: #ffffff !important;
  font-size: 12.5px;
}
.badge-item svg {
  color: #ff8a4c !important;
  stroke: #ff8a4c !important;
  width: 20px;
  height: 20px;
}
/* ============================================
   OUTCOME SECTION v3 — EXACT MATCH to reference
   ============================================ */
.outcome-v3 {
  padding: 90px 0;
  background: #fbfbfe;
  position: relative;
  overflow: hidden;
}
.outcome-v3 .container { max-width: 1180px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }

/* decorative glow blob top-left */
.outcome-v3::before {
  content: '';
  position: absolute;
  top: -10%; left: -8%;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(255,90,31,0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* decorative ring top-right */
.outcome-v3::after {
  content: '';
  position: absolute;
  top: -18%; right: -10%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,44,86,0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* small sparkle decorations */
.outcome-v3 .sparkle {
  position: absolute;
  color: #c9cfdb;
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}
.outcome-v3 .sparkle::before { content: '✦'; }
.spk-1 { top: 8%;  left: 8%;   font-size: 18px; color: #fff; opacity: 0.9; }
.spk-2 { top: 18%; left: 16%;  font-size: 10px; }
.spk-3 { top: 5%;  right: 22%; font-size: 12px; }
.spk-4 { top: 14%; right: 6%;  font-size: 16px; }

.outcome-v3 .head { text-align: center; margin-bottom: 60px; }
.outcome-v3 .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,90,31,0.08);
  border: 1px solid rgba(255,90,31,0.25);
  color: var(--accent-orange, #ff5a1f);
  font-size: 12.5px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px; border-radius: 30px;
}
.outcome-v3 h2 {
  font-size: 2.3rem; font-weight: 800; color: #102C56;
  line-height: 1.3; margin: 18px 0 10px;
}
.outcome-v3 h2 .accent { color: var(--accent-orange, #ff5a1f); }
.outcome-v3 .subhead { color: #6b7086; font-size: 1rem; margin-bottom: 18px; }
.outcome-v3 .dots { display: flex; justify-content: center; gap: 6px; }
.outcome-v3 .dots span { width: 20px; height: 3px; border-radius: 2px; background: #e2e6eb; }
.outcome-v3 .dots span.active { width: 30px; background: var(--accent-orange, #ff5a1f); }

.outcome-v3 .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.outcome-v3 .card {
  background: #ffffff;
  border-radius: 20px;
  padding: 34px 30px 30px 30px;
  position: relative;
  box-shadow: 0 4px 24px rgba(16, 44, 86, 0.06);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s cubic-bezier(0.16,1,0.3,1);
}
.outcome-v3 .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(16, 44, 86, 0.12);
}

/* number badge floating top-left, overlapping card edge */
.outcome-v3 .num-badge {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 36px; height: 36px;
  background: #ffffff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 800; color: #102C56;
  box-shadow: 0 8px 18px rgba(16, 44, 86, 0.15);
  z-index: 3;
}

/* top row: icon box + title */
.outcome-v3 .card-top {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 18px;
}

/* icon box — layered/stacked card effect like reference */
.outcome-v3 .icon-box {
  flex-shrink: 0;
  width: 78px; height: 78px;
  border-radius: 20px;
  background: #f4f5f8;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 12px 26px rgba(16, 44, 86, 0.08);
}
.outcome-v3 .icon-box svg { width: 34px; height: 34px; position: relative; z-index: 2; }

/* stacked card behind — rotated, peeking out bottom-left */
.outcome-v3 .icon-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: #f4f5f8;
  transform: rotate(-8deg) scale(0.92) translate(-6px, 4px);
  z-index: 0;
  box-shadow: 0 6px 14px rgba(16, 44, 86, 0.05);
}
/* small circle peeking bottom-left, like reference */
.outcome-v3 .icon-box::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #f4f5f8;
  bottom: -8px;
  left: -8px;
  box-shadow: 0 4px 8px rgba(16, 44, 86, 0.06);
  z-index: 0;
}

.outcome-v3 .title-col { padding-top: 10px; }
.outcome-v3 .title-col h4 {
  font-size: 1.15rem; font-weight: 800; color: #102C56;
  line-height: 1.4; margin: 0 0 10px 0;
}
.outcome-v3 .title-line {
  display: block;
  width: 28px; height: 3px;
  background: var(--accent-orange, #ff5a1f);
  border-radius: 2px;
}

.outcome-v3 .card p.desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #6b7086;
  margin: 0;
}

.outcome-v3 .cta-wrap {
  text-align: center;
  margin-top: 48px;
  position: relative;
}
.outcome-v3 .cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent-orange, #ff5a1f);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 36px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(255,90,31,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.outcome-v3 .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(255,90,31,0.4);
  color: #fff !important;
}

/* small dashed arrow + paper-plane decoration near CTA, like reference */
.outcome-v3 .cta-decor {
  position: absolute;
  width: 26px; height: 26px;
  opacity: 0.55;
  pointer-events: none;
}
.outcome-v3 .cta-decor.left {
  left: 12%;
  top: -10px;
  border-left: 2px dashed #c8ccd2;
  border-bottom: 2px dashed #c8ccd2;
  border-radius: 0 0 0 14px;
  transform: rotate(-10deg);
}
.outcome-v3 .cta-decor.right {
  right: 12%;
  top: -6px;
  color: var(--accent-orange, #ff5a1f);
  font-size: 20px;
  border: none;
}

@media (max-width: 767.98px) {
  .outcome-v3 .grid { grid-template-columns: 1fr; }
  .outcome-v3 h2 { font-size: 1.6rem; }
  .outcome-v3 .card { padding: 30px 22px 26px 22px; }
  .outcome-v3 .cta-decor { display: none; }
}

/* background dot grid patterns for outcome-v3 */
.outcome-v3 .dots-decor {
  position: absolute;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(rgba(16, 44, 86, 0.12) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
  z-index: 1;
}
.outcome-v3 .dots-decor.top-left {
  top: 6%;
  left: 3%;
}
.outcome-v3 .dots-decor.bottom-left {
  bottom: 6%;
  left: 3%;
}
.outcome-v3 .dots-decor.bottom-right {
  bottom: 8%;
  right: 3%;
}
/* ============================================
   6. OUTCOME SECTION — RICHER BACKGROUND VERSION
   Replace the ENTIRE old ".outcome-v3 ..." block
   in orderz-landing.css with everything below.
   (Relies on the global .reveal / .in-view rules
   already defined elsewhere in the stylesheet —
   do not remove those.)
   ============================================ */

.outcome-v3 {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 600px at 12% 0%,  rgba(255,90,31,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 700px 700px at 100% 10%, rgba(16,44,86,0.08)  0%, transparent 55%),
    radial-gradient(ellipse 800px 500px at 50% 100%, rgba(255,90,31,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #f7f8fc 0%, #fbfbfe 45%, #f5f6fa 100%);
}

/* fine grid texture across the whole section, fading toward the edges */
.outcome-v3::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16,44,86,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,44,86,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 40%, transparent 90%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 40%, transparent 90%);
  z-index: 0;
  pointer-events: none;
}

/* large soft blurred blob top-left */
.outcome-v3::after {
  content: '';
  position: absolute;
  top: -22%; left: -12%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,90,31,0.20) 0%, rgba(255,90,31,0.05) 45%, transparent 72%);
  filter: blur(6px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: blobFloat1 9s ease-in-out infinite;
}

.outcome-v3 .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* navy dashed ring blob, top-right */
.outcome-v3 .bg-ring-tr {
  position: absolute;
  top: -20%; right: -12%;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,44,86,0.09) 0%, transparent 68%);
  border: 1px dashed rgba(16,44,86,0.10);
  z-index: 0;
  pointer-events: none;
  animation: ringSpin 60s linear infinite;
}
.outcome-v3 .bg-ring-tr::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px dashed rgba(255,90,31,0.14);
}

/* soft orange blob, bottom-right */
.outcome-v3 .bg-blob-br {
  position: absolute;
  bottom: -18%; right: -8%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,90,31,0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: blobFloat2 11s ease-in-out infinite;
}

/* navy blob, bottom-left */
.outcome-v3 .bg-blob-bl {
  position: absolute;
  bottom: -14%; left: -6%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(16,44,86,0.07) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(18px, 14px) scale(1.05); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-16px, -10px) scale(1.06); }
}
@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

/* sparkles — animated twinkle */
.outcome-v3 .sparkle {
  position: absolute;
  color: #c9cfdb;
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
  animation: sparkleTwinkle 3.2s ease-in-out infinite;
}
.outcome-v3 .sparkle::before { content: '✦'; }
.outcome-v3 .spk-1 { top: 6%;  left: 9%;   font-size: 20px; color: var(--accent-orange); opacity: 0.85; animation-delay: 0s; }
.outcome-v3 .spk-2 { top: 20%; left: 17%;  font-size: 11px; color: #b7bfd6; animation-delay: 0.6s; }
.outcome-v3 .spk-3 { top: 4%;  right: 24%; font-size: 13px; color: #b7bfd6; animation-delay: 1.2s; }
.outcome-v3 .spk-4 { top: 12%; right: 7%;  font-size: 18px; color: var(--primary-navy); opacity: 0.55; animation-delay: 1.8s; }
.outcome-v3 .spk-5 { bottom: 10%; left: 6%; font-size: 14px; color: #b7bfd6; animation-delay: 0.9s; }
.outcome-v3 .spk-6 { bottom: 16%; right: 10%; font-size: 16px; color: var(--accent-orange); opacity: 0.6; animation-delay: 1.5s; }

@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.9) rotate(0deg); }
  50%      { opacity: 1;    transform: scale(1.15) rotate(8deg); }
}

.outcome-v3 .head { text-align: center; margin-bottom: 64px; position: relative; z-index: 2; }
.outcome-v3 .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,90,31,0.08);
  border: 1px solid rgba(255,90,31,0.25);
  box-shadow: 0 4px 18px rgba(255,90,31,0.12);
  color: var(--accent-orange);
  font-size: 12.5px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px; border-radius: 30px;
}
.outcome-v3 h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 2.3rem; font-weight: 800; color: #102C56;
  line-height: 1.3; margin: 18px 0 10px;
}
.outcome-v3 h2 .accent {
  background: linear-gradient(90deg, #ff8a3d, var(--accent-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.outcome-v3 .dots { display: flex; justify-content: center; gap: 6px; }
.outcome-v3 .dots span { width: 20px; height: 3px; border-radius: 2px; background: #e2e6eb; }
.outcome-v3 .dots span.active { width: 30px; background: var(--accent-orange); }

.outcome-v3 .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.outcome-v3 .card {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(16,44,86,0.05);
  border-radius: 20px;
  padding: 34px 30px 30px 30px;
  position: relative;
  box-shadow: 0 4px 24px rgba(16, 44, 86, 0.07);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s cubic-bezier(0.16,1,0.3,1);
}
.outcome-v3 .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(16, 44, 86, 0.14);
  border-color: rgba(255,90,31,0.18);
}

.outcome-v3 .num-badge {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 36px; height: 36px;
  background: #ffffff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 800; color: #102C56;
  box-shadow: 0 8px 18px rgba(16, 44, 86, 0.15);
  z-index: 3;
}

.outcome-v3 .card-top {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 18px;
}

.outcome-v3 .icon-box {
  flex-shrink: 0;
  width: 78px; height: 78px;
  border-radius: 20px;
  background: linear-gradient(145deg, #f6f7fb, #eef0f6);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 12px 26px rgba(16, 44, 86, 0.08);
}
.outcome-v3 .icon-box svg { width: 34px; height: 34px; position: relative; z-index: 2; }

.outcome-v3 .icon-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: #f4f5f8;
  transform: rotate(-8deg) scale(0.92) translate(-6px, 4px);
  z-index: 0;
  box-shadow: 0 6px 14px rgba(16, 44, 86, 0.05);
}
.outcome-v3 .icon-box::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #f4f5f8;
  bottom: -8px;
  left: -8px;
  box-shadow: 0 4px 8px rgba(16, 44, 86, 0.06);
  z-index: 0;
}

.outcome-v3 .title-col { padding-top: 10px; }
.outcome-v3 .title-col h4 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 1.15rem; font-weight: 800; color: #102C56;
  line-height: 1.4; margin: 0 0 10px 0;
}
.outcome-v3 .title-line {
  display: block;
  width: 28px; height: 3px;
  background: var(--accent-orange);
  border-radius: 2px;
}

.outcome-v3 .card p.desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #6b7086;
  margin: 0;
}

.outcome-v3 .cta-wrap {
  text-align: center;
  margin-top: 52px;
  position: relative;
  z-index: 2;
}
.outcome-v3 .cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #ff8a3d, var(--accent-orange));
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 36px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(255,90,31,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.outcome-v3 .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(255,90,31,0.45);
  color: #fff !important;
}

.outcome-v3 .cta-decor {
  position: absolute;
  width: 26px; height: 26px;
  opacity: 0.55;
  pointer-events: none;
}
.outcome-v3 .cta-decor.left {
  left: 12%;
  top: -10px;
  border-left: 2px dashed #c8ccd2;
  border-bottom: 2px dashed #c8ccd2;
  border-radius: 0 0 0 14px;
  transform: rotate(-10deg);
}
.outcome-v3 .cta-decor.right {
  right: 12%;
  top: -6px;
  color: var(--accent-orange);
  font-size: 20px;
  border: none;
}

@media (max-width: 767.98px) {
  .outcome-v3 { padding: 60px 0; }
  .outcome-v3 .grid { grid-template-columns: 1fr; }
  .outcome-v3 h2 { font-size: 1.6rem; }
  .outcome-v3 .card { padding: 30px 22px 26px 22px; }
  .outcome-v3 .cta-decor { display: none; }
  .outcome-v3::before { background-size: 30px 30px; }
  .outcome-v3 .bg-ring-tr,
  .outcome-v3 .bg-blob-br,
  .outcome-v3 .bg-blob-bl { display: none; }
}
/* ============================================
   7. TESTIMONIALS SECTION v2 — CAROUSEL STYLE
   Add this as a NEW block in orderz-landing.css
   (does not touch the old .testimonials-wrapper
   rules — uses fresh .testi2- class names so
   nothing else breaks).
   ============================================ */

.testi2-wrapper {
  background: #fbfbfe;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.testi2-wrapper .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* background decorations */
.testi2-glow-tl {
  position: absolute;
  top: -18%; left: -10%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,90,31,0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.testi2-ring-tr {
  position: absolute;
  top: -16%; right: -10%;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px dashed rgba(16,44,86,0.12);
  pointer-events: none;
  z-index: 0;
}
.testi2-ring-tr::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px dashed rgba(255,90,31,0.14);
}
.testi2-sparkle {
  position: absolute;
  color: #c9cfdb;
  font-size: 14px;
  z-index: 1;
  pointer-events: none;
}
.testi2-sparkle::before { content: '✦'; }
.t2-spk-1 { top: 22%; left: 10%; font-size: 16px; color: #d8dce6; }
.t2-spk-2 { top: 10%; right: 14%; font-size: 12px; color: #d8dce6; }
.t2-spk-3 { top: 30%; right: 5%; font-size: 15px; color: var(--accent-orange, #ff5a1f); opacity: 0.7; }

/* heading */
.testi2-head { text-align: center; margin-bottom: 44px; position: relative; z-index: 2; }
.testi2-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,90,31,0.08);
  border: 1px solid rgba(255,90,31,0.25);
  color: var(--accent-orange, #ff5a1f);
  font-size: 12.5px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px; border-radius: 30px;
}
.testi2-heading {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 2.2rem; font-weight: 800; color: #102C56;
  line-height: 1.3; margin: 18px 0 10px;
}
.testi2-accent { color: var(--accent-orange, #ff5a1f); }
.testi2-subhead {
  color: #6b7086;
  font-size: 1rem;
  margin: 0;
}

/* carousel wrap: arrows + grid */
.testi2-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.testi2-arrow {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e8ecf0;
  color: #102C56;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(16,44,86,0.08);
  transition: all 0.25s ease;
}
.testi2-arrow:hover {
  background: var(--accent-orange, #ff5a1f);
  border-color: var(--accent-orange, #ff5a1f);
  color: #fff;
  transform: translateY(-2px);
}

.testi2-cards-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* card */
.testi2-card {
  background: #ffffff;
  border-top: 3px solid var(--accent-orange, #ff5a1f);
  border-radius: 4px 4px 16px 16px;
  padding: 26px 24px 22px 24px;
  box-shadow: 0 4px 20px rgba(16,44,86,0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: testi2FadeUp 0.5s ease both;
}
.testi2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(16,44,86,0.12);
}
@keyframes testi2FadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testi2-quote-mark {
  position: absolute;
  top: 18px; right: 20px;
  font-size: 2.2rem;
  font-family: Georgia, serif;
  color: rgba(255,90,31,0.18);
  line-height: 1;
  user-select: none;
}

.testi2-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.testi2-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #102C56;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi2-card-name { font-weight: 700; color: #102C56; font-size: 0.95rem; margin: 0; }
.testi2-card-biz { font-size: 0.8rem; color: #8a94a6; margin: 2px 0 0; }

.testi2-stars {
  color: var(--accent-orange, #ff5a1f);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testi2-quote {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #4a5568;
  margin: 0 0 16px 0;
}
.testi2-quote strong { color: #102C56; font-weight: 700; }

.testi2-divider {
  border-top: 1px solid #eef1f5;
  margin-bottom: 12px;
}

.testi2-verified {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem;
  color: #6b7086;
  font-weight: 500;
}
.testi2-verified i {
  color: #fff;
  background: var(--accent-orange, #ff5a1f);
  width: 15px; height: 15px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
}

/* pagination dots */
.testi2-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}
.testi2-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e2e6eb;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}
.testi2-dot.active {
  width: 22px;
  border-radius: 4px;
  background: var(--accent-orange, #ff5a1f);
}

@media (max-width: 991.98px) {
  .testi2-cards-grid { grid-template-columns: 1fr 1fr; }
  .testi2-arrow { width: 40px; height: 40px; font-size: 13px; }
}
@media (max-width: 767.98px) {
  .testi2-wrapper { padding: 60px 0; }
  .testi2-heading { font-size: 1.6rem; }
  .testi2-carousel-wrap { gap: 10px; }
  .testi2-cards-grid { grid-template-columns: 1fr; }
  .testi2-arrow { width: 36px; height: 36px; font-size: 12px; }
}
.hawker-split-hero {
    background-color: #0a1a3d;   /* dark navy, ungaloda brand color match pannunga */
    overflow: hidden;
}

.hero-content-col {
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-content-inner {
    padding: 80px 60px 80px 80px;
    max-width: 640px;
}

.hawker-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 24px;
}

.hawker-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff5a1f;
    display: inline-block;
}

.hawker-hero-heading {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.text-orange {
    color: #ff5a1f;
}

.hawker-hero-para {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.hawker-hero-trust {
    margin-top: 24px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.hawker-trust-dot {
    margin: 0 10px;
}

.hero-image-col {
    height: auto;
    min-height: 100%;
}

.hawker-split-img {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 991px) {
    .hero-content-inner {
        padding: 50px 24px;
        max-width: 100%;
    }
    .hawker-hero-heading {
        font-size: 30px;
    }
    .hawker-split-img {
        min-height: 320px;
    }
}
.hawker-pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.hawker-pain-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 28px;
    height: 100%;
}

.hawker-pain-card-title-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.hawker-pain-x {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hawker-pain-card-title-row h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0a1a3d;
    margin: 0;
    line-height: 1.35;
}

.hawker-pain-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .hawker-pain-grid {
        grid-template-columns: 1fr;
    }
}
/* CAFE-POS pain section - Bootstrap row based (3-column) */
.hawker-pain-wrapper .row.hawker-pain-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.hawker-pain-card-wrap {
    padding: 0 12px;
    margin-bottom: 24px;
}

.hawker-pain-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 28px;
    height: 100%;
}

.hawker-pain-card-title-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.hawker-pain-x {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hawker-pain-card-title-row h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0a1a3d;
    margin: 0;
    line-height: 1.35;
}

.hawker-pain-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
.hawker-split-hero {
    background-color: #0a1a3d;
    overflow: hidden;
}

.hero-content-col {
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-content-inner {
    padding: 80px 60px 80px 80px;
    max-width: 640px;
}

.hawker-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 24px;
}

.hawker-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff5a1f;
    display: inline-block;
}

.hawker-hero-heading {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hawker-hero-para {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.hawker-hero-trust {
    margin-top: 24px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.hawker-trust-dot {
    margin: 0 10px;
}

.hero-image-col {
    height: auto;
    min-height: 100%;
}

.hawker-split-img {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

@media (max-width: 991px) {
    .hero-content-inner {
        padding: 50px 24px;
        max-width: 100%;
    }
    .hawker-hero-heading {
        font-size: 30px;
    }
    .hawker-split-img {
        min-height: 320px;
    }
}
.hawker-pain-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.hawker-pain-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 28px;
    height: 100%;
}

.hawker-pain-card-title-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.hawker-pain-x {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hawker-pain-card-title-row h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0a1a3d;
    margin: 0;
    line-height: 1.35;
}

.hawker-pain-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .hawker-pain-grid-2col {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   LIGHTEN NAVY ICON BORDERS — dimmed version
   ============================================ */
.diagram-icon {
  border-color: rgba(16, 44, 86, 0.35) !important; /* was solid #102C56 */
}

.diagram-item:hover .diagram-icon,
.diagram-item.item-active .diagram-icon {
  border-color: rgba(16, 44, 86, 0.55) !important; /* slightly deeper on hover, still lighter than before */
}
/* ============================================
   LIGHTEN NAVY ICON BORDERS — FINAL OVERRIDE
   (must stay at the very bottom of the file)
   ============================================ */
.orderz-diagram .diagram-icon {
  border-color: rgba(16, 44, 86, 0.3) !important;
}

.orderz-diagram .diagram-item:hover .diagram-icon,
.orderz-diagram .diagram-item.item-active .diagram-icon {
  border-color: rgba(16, 44, 86, 0.5) !important;
}
/* ============================================
   ICON COLOR — MEDIUM DIM NAVY (balanced)
   (add at the very end of the CSS file)
   ============================================ */
.orderz-diagram .diagram-icon svg,
.orderz-diagram .diagram-icon i {
  color: rgba(16, 44, 86, 0.7) !important;
}

.orderz-diagram .diagram-icon img {
  filter: brightness(0) invert(13%) sepia(50%) saturate(1826%)
          hue-rotate(190deg) brightness(93%) contrast(101%);
  opacity: 0.75;
}
.orderz-diagram .diagram-item:hover .diagram-icon img,
.orderz-diagram .diagram-item.item-active .diagram-icon img {
  opacity: 1;
}