/* 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;   /* ✅ absolute-ஐ கலைச்சு, order வேலை செய்ய வைக்கும் */
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 30%;
    order: -1;                     /* ✅ image எப்பவும் முதலில் */
    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;        /* ✅ full width column இல்ல, side-by-side */
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }

  .hero-photo-wrapper .hero-btns .btn {
    width: auto;                 /* ✅ full width அகற்றி, content-க்கு தகுந்த அளவு */
    flex: 1 1 auto;
    min-width: 140px;
    text-align: center;
    padding: 10px 18px !important;   /* ✅ padding குறைச்சு button சின்னதா */
    font-size: 0.85rem !important;   /* ✅ font size குறைச்சது */
    border-radius: 14px !important;  /* button சின்னதா ஆகும் போது radius-ம் சின்னதா */
  }
}

@media (max-width: 480px) {
  .hero-photo-wrapper .hero-btns {
    flex-direction: column;      /* மிக சின்ன screen-ல மட்டும் 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%;
    }
}
/* ============================================
   HERO PHOTO — MOBILE FINAL FIX
   (buttons one line + proper spacing above them)
   Applies at 991.98px AND explicitly again at 767.98px
   ============================================ */
@media (max-width: 991.98px) {
  .hero-photo-wrapper .hero-content .hero-para {
    margin-bottom: 28px !important;
  }
  .hero-photo-wrapper .hero-content .hero-btns {
    margin-top: 8px !important;
    margin-bottom: 12px !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    width: 100% !important;
  }
  .hero-photo-wrapper .hero-content .hero-btns a.btn {
    flex: 1 1 0 !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    white-space: nowrap;
    text-align: center !important;
    padding: 13px 8px !important;
    font-size: 0.82rem !important;
    border-radius: 14px !important;
  }
}

/* explicit re-declare at 767.98px so it overrides the earlier
   generic `.hero-btns { flex-direction: column }` rule in this breakpoint */
@media (max-width: 767.98px) {
  .hero-photo-wrapper .hero-content .hero-para {
    margin-bottom: 24px !important;
  }
  .hero-photo-wrapper .hero-content .hero-btns {
    margin-top: 8px !important;
    margin-bottom: 12px !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .hero-photo-wrapper .hero-content .hero-btns a.btn {
    flex: 1 1 0 !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    white-space: nowrap;
    text-align: center !important;
    padding: 12px 6px !important;
    font-size: 0.78rem !important;
    border-radius: 14px !important;
  }
}

/* extra-small phones — shrink text a touch more so both buttons still fit one line */
@media (max-width: 380px) {
  .hero-photo-wrapper .hero-content .hero-btns a.btn {
    font-size: 0.72rem !important;
    padding: 12px 4px !important;
    letter-spacing: 0.1px;
  }
}
/* ============================================
   HERO PHOTO — MOBILE: fix Bootstrap row negative-margin
   cancelling out container padding
   ============================================ */
@media (max-width: 991.98px) {
  .hero-photo-wrapper .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* neutralize Bootstrap's .row negative margin that was
     eating the container padding */
  .hero-photo-wrapper .container > .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* remove any col padding and apply padding directly
     on the content block instead */
  .hero-photo-wrapper .hero-content {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .hero-photo-wrapper .hero-eyebrow,
  .hero-photo-wrapper #hero-typewriter,
  .hero-photo-wrapper .hero-para,
  .hero-photo-wrapper .hero-btns {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 767.98px) {
  .hero-photo-wrapper .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

@media (max-width: 400px) {
  .hero-photo-wrapper .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
/* ============================================
   HERO PHOTO — MOBILE ENTRANCE ANIMATION (SAFE VERSION)
   ============================================ */
@media (max-width: 991.98px) {

  .hero-photo-wrapper .hero-photo-img {
    animation: heroImgDropInFinal 0.9s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both !important;
  }

  .hero-photo-wrapper .hero-eyebrow {
    animation: heroTextSlideInFinal 0.6s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both !important;
  }

  .hero-photo-wrapper #hero-typewriter {
    animation: heroTextSlideInFinal 0.6s 0.52s cubic-bezier(0.16, 1, 0.3, 1) both !important;
  }

  .hero-photo-wrapper .hero-para {
    animation: heroTextSlideInFinal 0.6s 0.64s cubic-bezier(0.16, 1, 0.3, 1) both !important;
  }

  .hero-photo-wrapper .hero-btns {
    animation: heroTextSlideInFinal 0.6s 0.76s cubic-bezier(0.16, 1, 0.3, 1) both !important;
  }
}

@keyframes heroImgDropInFinal {
  0%   { opacity: 0; transform: translateY(-40px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroTextSlideInFinal {
  0%   { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0); }
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
  background-color: #0d2240; /* உங்க navy color code */
}

.hero-photo-wrapper {
  overflow-x: hidden;
}
/* ============================================
   STEP INLINE IMAGES — MOBILE ONLY
   Desktop: these are always hidden.
   The existing right-side sticky image column
   (.col-lg-6.mt-5.mt-lg-0.reveal-right) keeps
   working exactly as before on desktop.
   ============================================ */

/* Default: hide inline images everywhere (desktop safe) */
.step-inline-img {
  display: none;
}

@media (max-width: 991.98px) {

  /* Hide the desktop right-side image block completely on mobile/tablet */
  .col-lg-6.mt-5.mt-lg-0.reveal-right {
    display: none !important;
  }

  /* Inline image sits inside step-details, hidden by default */
  .step-inline-img {
    display: none;
    width: 100%;
    border-radius: 12px;
    margin-top: 14px;
    margin-bottom: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  /* Only the ACTIVE step's image shows */
  .step-item.active .step-inline-img {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  /* Non-active step images stay hidden (in case display:block gets
     triggered by any other rule, opacity/height guard keeps it collapsed) */
  .step-item:not(.active) .step-inline-img {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .workflow-visual-frame {
    height: 800px !important;   /* was 600px */
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .workflow-visual-frame {
    height: 700px !important;   /* was 500px */
  }
}
/* ============================================
   SG CATEGORIES SWIPER — MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .myIndustrySlider .swiper-slide {
    width: 300px !important;
  }
}

@media (max-width: 767.98px) {
  .myIndustrySlider .swiper-slide {
    width: 260px !important;
  }
  .sg-category-img {
    height: 160px !important;
  }
  .sg-card-title {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 400px) {
  .myIndustrySlider .swiper-slide {
    width: 220px !important;
  }
  .sg-category-img {
    height: 140px !important;
  }
}

/* ============================================
   SG HOVER/CLICK DETAIL MODAL — STACK ON MOBILE
   Image on top, text below (instead of side-by-side)
   ============================================ */
@media (max-width: 767.98px) {
  .sg-hover-card {
    flex-direction: column !important;
    width: 92vw !important;
    max-height: 85vh;
    overflow-y: auto;
  }
  .sg-hover-card-img {
    width: 100% !important;
    min-height: 180px !important;
    flex-shrink: 0;
  }
  .sg-hover-card-body {
    width: 100% !important;
    padding: 22px 20px !important;
  }
  .sg-hover-card-title {
    font-size: 1.2rem !important;
  }
  .sg-hover-card-body li {
    font-size: 0.88rem !important;
  }
}

@media (max-width: 400px) {
  .sg-hover-card-img {
    min-height: 150px !important;
  }
  .sg-hover-card-body {
    padding: 18px 16px !important;
  }
}
.sg-hover-card.visible {
  pointer-events: auto !important;
}

.sg-hover-backdrop.visible {
  pointer-events: auto !important;
  cursor: pointer; /* tap anywhere on backdrop to close */
}
/* ============================================
   HERO PHOTO WRAPPER — CONSOLIDATED (DESKTOP + MOBILE)
   ============================================ */
.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;
  opacity: 0;
  transform: translateX(60px);
  animation: heroImgSlideIn 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.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;
  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 {
  color: #ffffff !important;
  font-size: 2.15rem;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 18px;
  white-space: normal;      /* FIX: nowrap ஆ இருந்தது, அதனால text cut ஆனது */
  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 {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 470px;
  margin-bottom: 28px;
  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); }
}

/* ============================================
   RESPONSIVE FONT SCALING (DESKTOP ONLY — no layout change)
   ============================================ */
@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; }
}

/* ============================================
   TABLET / MOBILE — STACKED LAYOUT (image top, text bottom)
   ============================================ */
@media (max-width: 991.98px) {
  .hero-photo-wrapper {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 0 0 40px 0;
    overflow: hidden;
  }

  .hero-photo-img {
    position: static !important;
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 30%;
    order: -1;
    z-index: 0;
    left: auto; right: auto; top: auto; bottom: auto;
  }

  .hero-photo-overlay {
    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%
    );
    pointer-events: none;
  }

  .hero-photo-wrapper .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .hero-photo-wrapper .container > .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-photo-wrapper .hero-content {
    max-width: 100%;
    padding: 24px 4px 0 4px;
    text-align: left;
    background-color: var(--primary-navy);
  }

  .hero-photo-wrapper .hero-eyebrow {
    font-size: 0.72rem;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .hero-photo-wrapper #hero-typewriter {
    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: 28px;
  }

  .hero-photo-wrapper .hero-btns {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 12px;
  }

  .hero-photo-wrapper .hero-btns a.btn {
    flex: 1 1 0;
    width: auto;
    max-width: none;
    margin: 0 !important;
    white-space: nowrap;
    text-align: center;
    padding: 13px 8px !important;
    font-size: 0.82rem !important;
    border-radius: 14px !important;
  }
}

@media (max-width: 767.98px) {
  .hero-photo-wrapper .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .hero-photo-img { height: 220px; }
  .hero-photo-wrapper #hero-typewriter { font-size: 1.4rem; }

  .hero-photo-wrapper .hero-btns {
    gap: 10px;
  }
  .hero-photo-wrapper .hero-btns a.btn {
    padding: 12px 6px !important;
    font-size: 0.78rem !important;
  }
}

@media (max-width: 480px) {
  .hero-photo-wrapper .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .hero-photo-img { height: 190px; }
  .hero-photo-wrapper #hero-typewriter { font-size: 1.25rem; }

  .hero-photo-wrapper .hero-btns {
    flex-direction: column;
  }
  .hero-photo-wrapper .hero-btns a.btn {
    width: 100%;
    font-size: 0.85rem !important;
    padding: 11px 16px !important;
  }
}

@media (max-width: 380px) {
  .hero-photo-wrapper .hero-btns a.btn {
    font-size: 0.72rem !important;
    padding: 12px 4px !important;
    letter-spacing: 0.1px;
  }
}
 
