/* ══════════════════════════════════════════════════
   ORIGINATE SOFT — ON-DEMAND MARKETPLACE SAAS THEME
   ══════════════════════════════════════════════════ */

/* ─── RESET & BASE (SCOPED TO ON-DEMAND CONTENT) ─── */
.on-demand-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #0F172A;
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.on-demand-page *, 
.on-demand-page *::before, 
.on-demand-page *::after {
  box-sizing: border-box;
}

.on-demand-page img, 
.on-demand-page svg {
  display: block;
  max-width: 100%;
}

.on-demand-page a {
  text-decoration: none;
  transition: all 0.18s ease;
}

.on-demand-page button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

.on-demand-page ul {
  list-style: none;
  padding-left: 0;
}

/* ─── DESIGN TOKENS ─── */
:root {
  /* Brand Palette */
  --blue:           #004DE6;
  --blue-hover:     #003BB5;
  --blue-light:     #EFF5FF;
  --blue-subtle:    rgba(0, 77, 230, 0.06);
  --blue-glow:      rgba(0, 77, 230, 0.22);
  
  --indigo:         #004DE6;
  --indigo-hover:   #003BB5;
  --indigo-light:   #EFF5FF;
  --indigo-subtle:  rgba(0, 77, 230, 0.06);
  --indigo-glow:    rgba(0, 77, 230, 0.22);
  
  --coral:          #F15A24;
  --coral-hover:    #DE4C17;
  --coral-light:    #FFF2ED;
  --amber:          #F59E0B;
  --emerald:        #10B981;
  --emerald-light:  #ECFDF5;

  /* Premium Dark / Navy Palette */
  --slate-950:      #080C16;
  --slate-900:      #0D1322;
  --slate-850:      #131B2E;
  --slate-800:      #1E293B;
  --slate-700:      #334155;
  
  /* Text & Surfaces */
  --text-main:      #0F172A;
  --text-body:      #475569;
  --text-muted:     #64748B;
  --text-light:     #94A3B8;
  --text-white:     #FFFFFF;

  --bg-page:        #FFFFFF;
  --bg-subtle:      #F8FAFC;
  --bg-card:        #FFFFFF;
  --border-light:   #E2E8F0;
  --border-subtle:  #EDF2F7;
  --border-dark:    rgba(255, 255, 255, 0.08);

  /* Shadows */
  --shadow-xs:      0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm:      0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-md:      0 6px 18px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg:      0 12px 28px -4px rgba(15, 23, 42, 0.08);
  --shadow-xl:      0 20px 35px -5px rgba(15, 23, 42, 0.1);
  --shadow-glow:    0 0 24px rgba(0, 77, 230, 0.2);

  /* Radii */
  --radius-sm:      8px;
  --radius:         12px;
  --radius-md:      16px;
  --radius-lg:      20px;
  --radius-full:    9999px;

  /* Layout */
  --max-w:          1560px;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

h3 {
  font-size: 20px;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 16px;
  font-weight: 600;
}

p {
  color: var(--text-body);
  line-height: 1.7;
  font-size: 15.5px;
}

.lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 820px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-subtle);
  border: 1px solid rgba(79, 70, 229, 0.16);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section--dark .section-label {
  color: #A5B4FC;
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
}

.section-head {
  margin-bottom: 48px;
}

.section-head.center {
  text-align: center;
  margin-bottom: 40px;
}

.section-head.center .section-label {
  margin-left: auto;
  margin-right: auto;
}

/* ─── LAYOUT ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section--alt {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section--border-top {
  border-top: 1px solid var(--border-light);
}

.section--dark {
  background: var(--slate-950);
  color: var(--text-white);
  border-top: 1px solid var(--slate-800);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-white);
}

.section--dark p {
  color: var(--text-light);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.btn--primary {
  background: var(--indigo);
  color: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px var(--indigo-glow);
}

.btn--primary:hover {
  background: var(--indigo-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--indigo-glow);
  color: #FFFFFF;
}

.btn--outline {
  background: #FFFFFF;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

.btn--outline:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: var(--indigo-light);
  transform: translateY(-1px);
}

.btn--white {
  background: #FFFFFF;
  color: var(--slate-900);
  border: 1px solid #FFFFFF;
  font-weight: 700;
}

.btn--white:hover {
  background: #F1F5F9;
  border-color: #F1F5F9;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn--outline-white {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* ─── NAVIGATION / HEADER (GROCERY STYLE) ─── */
.navbar {
  padding: 0.85rem 0;
  transition: all 0.3s ease;
  z-index: 1030;
  background-color: #FFFFFF;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(16, 32, 48, 0.10) !important;
  padding: 0.6rem 0;
}

.navbar-brand img {
  transition: all 0.3s ease;
}

.navbar .nav-link {
  font-weight: 500;
  color: #334155 !important;
  margin: 0 2px;
  padding: 0.5rem 0.9rem !important;
  border-radius: 8px;
  font-size: 0.94rem;
  transition: all 0.2s ease;
}

.navbar .nav-link:hover, .navbar .nav-link.active {
  color: var(--blue) !important;
  background: var(--blue-light);
}

.btn-demo {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff !important;
  font-weight: 600;
  border-radius: 50px;
  padding: 9px 22px;
  transition: all 0.3s ease;
}

.btn-demo:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px var(--blue-glow);
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 18px;
    border-radius: 16px;
    margin-top: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
}

/* ─── HERO SECTION (LIGHT 2026 SAAS HERO) ─── */
.hero {
  background: url('../images/banner-bg.png') no-repeat center top / cover, #FFFFFF;
  padding: 135px 0 20px;
  position: relative;
  overflow: hidden;
  border-bottom: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  padding-bottom: 0;
  max-width: 920px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 82, 204, 0.05);
  border: 1px solid rgba(0, 82, 204, 0.18);
  color: #0052CC;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero-badge i {
  color: #F59E0B;
  font-size: 13px;
}

.hero h1 {
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.2;
  color: #1E293B;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.hero-blue-text {
  color: #1E40AF;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #475569;
  margin: 0 auto 30px;
  max-width: 780px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn--coral-pill {
  background: #F15A24;
  color: #FFFFFF;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  box-shadow: 0 4px 16px rgba(241, 90, 36, 0.32);
}

.btn--coral-pill:hover {
  background: #DE4C17;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(241, 90, 36, 0.4);
}

.btn--gray-pill {
  background: #F1F5F9;
  color: #334155;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 1px solid #E2E8F0;
}

.btn--gray-pill:hover {
  background: #E2E8F0;
  color: #0F172A;
  transform: translateY(-1px);
}

/* Hero Center Mockup Frame */
.hero-visual {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
}

.hero-mockup-frame-box {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px -10px rgba(0, 0, 0, 0.22);
  display: block;
}

.hero-mockup-bg-img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.hero-frames-inner {
  position: absolute;
  top: 7.5%;
  left: 4.5%;
  right: -1px;
  bottom: -1px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  box-sizing: border-box;
}

.hero-frame-item {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  object-fit: contain;
  object-position: bottom right;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

.hero-frame-item.active {
  opacity: 1;
  pointer-events: auto;
}

/* Trust Badges & Available Strip */
.hero-reviews-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 4px 30px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-trust-img {
  max-width: 310px;
  width: 100%;
  height: auto;
  display: block;
}

.hero-available-badge-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ─── STATS SECTION (FLOATING WHITE CARDS) ─── */
.stats-bar {
  background: transparent;
  padding: 24px 0 16px;
  border: none;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.stats-intro-head {
  text-align: center;
  margin-bottom: 32px;
}

.stats-intro-head h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stats-intro-head p {
  font-size: 14.5px;
  color: #64748B;
  font-weight: 500;
  margin: 0;
}

.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1480px;
  margin: 0 auto;
}

.stat-card {
  background: #FFFFFF;
  border: 1px solid #EEF2F6;
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 77, 230, 0.08);
  border-color: rgba(0, 77, 230, 0.2);
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #004DE6;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 13.5px;
  color: #475569;
  font-weight: 500;
  line-height: 1.45;
}
/* ─── THE CHALLENGE (SECTION 1) ─── */
.challenge-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  margin-top: 36px;
  align-items: start;
}

.q-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ─── THE CHALLENGE (BESPOKE ARCHITECTURE LAYOUT) ─── */
.challenge-triad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 36px 0 28px;
}

.triad-card {
  background: #FFFFFF;
  border: 1px solid #EEF2F6;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  position: relative;
}

.triad-card.customer { border-top: 3.5px solid var(--blue); }
.triad-card.provider { border-top: 3.5px solid var(--coral); }
.triad-card.admin { border-top: 3.5px solid #0F172A; }

.triad-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 77, 230, 0.08);
}

.triad-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.triad-card.customer .triad-icon-wrap {
  background: var(--blue-subtle);
  color: var(--blue);
}

.triad-card.provider .triad-icon-wrap {
  background: var(--coral-light);
  color: var(--coral);
}

.triad-card.admin .triad-icon-wrap {
  background: #F1F5F9;
  color: #0F172A;
}

.triad-card h4 {
  font-size: 16.5px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.triad-card p {
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.6;
}

/* Architecture Matrix Box */
.arch-matrix-box {
  background: #F8FAFC;
  border: 1px solid #EEF2F6;
  border-radius: 20px;
  padding: 30px 28px;
  margin-bottom: 24px;
}

.arch-matrix-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.arch-matrix-badge {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid rgba(0, 77, 230, 0.18);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.arch-matrix-head h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
}

.arch-questions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.arch-q-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.arch-q-card:hover {
  border-color: rgba(0, 77, 230, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 77, 230, 0.06);
}

.arch-q-card--wide {
  grid-column: span 2;
}

.arch-q-num {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
  background: var(--blue-light);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.arch-q-text {
  font-size: 14px;
  font-weight: 600;
  color: #1E293B;
  line-height: 1.45;
  margin: 0;
}

/* Key Callout Card */
.key-callout-card {
  background: #0D1322;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.kcc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(241, 90, 36, 0.15);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.kcc-content p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #E2E8F0;
  margin: 0;
}

/* ─── DECISION TABLE (2026 COMPARISON MATRIX) ─── */
.table-container-wrap {
  position: relative;
  width: 100%;
}
.table-scroll-hint-wrap,
.table-mobile-toggle,
.table-scroll-cue,
.table-bottom-nav,
.table-nav-arrow {
  display: none;
}

.table-wrap {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  margin-top: 40px;
}

.decision-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.decision-table th {
  background: #F8FAFC;
  padding: 22px 28px;
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748B;
  border-bottom: 1px solid #E2E8F0;
}

.decision-table th.col-custom {
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.08) 0%, rgba(0, 82, 255, 0.03) 100%);
  border-bottom: 2px solid #0052FF;
  position: relative;
}

.custom-badge-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0052FF;
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.25);
}

.decision-table td {
  padding: 20px 28px;
  font-size: 15px;
  border-bottom: 1px solid #F1F5F9;
  color: #334155;
  vertical-align: middle;
  transition: background 0.2s ease;
}

.decision-table tr:last-child td {
  border-bottom: none;
}

.decision-table tr:hover td {
  background: #F8FAFC;
}

.decision-table tr:hover td.td-custom {
  background: rgba(0, 82, 255, 0.07);
}

.decision-table .situation {
  font-weight: 700;
  color: #0F172A;
  font-size: 15.5px;
}

.decision-table .td-custom {
  background: rgba(0, 82, 255, 0.035);
  font-weight: 600;
}

.status-cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 9999px;
  transition: transform 0.2s ease;
}

.status-cell.ok {
  background: #F1F5F9;
  color: #475569;
}

.status-cell.warn {
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid rgba(220, 38, 38, 0.18);
}

.status-cell.neutral {
  background: #F8FAFC;
  color: #64748B;
  border: 1px solid #E2E8F0;
}

.status-cell.advantage {
  background: #ECFDF5;
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
}

.compare-note {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid #E2E8F0;
  border-left: 4px solid #0052FF;
  border-radius: 18px;
  padding: 26px 30px;
  margin-top: 28px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.compare-note-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 82, 255, 0.1);
  color: #0052FF;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.compare-note-content {
  flex: 1;
}

.compare-lead {
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

.compare-highlight {
  font-size: 15px;
  line-height: 1.65;
  color: #0F172A;
  margin: 10px 0 0;
}

/* ─── CONTRAST BLOCK (WHY BUILD FROM SCRATCH) ─── */
.contrast-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.contrast-col {
  border-radius: 20px;
  padding: 34px 32px;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.contrast-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -10px rgba(15, 23, 42, 0.1);
}

.contrast-col.before {
  background: linear-gradient(180deg, #FFF8F8 0%, #FFFFFF 100%);
  border: 1px solid #FEE2E2;
  border-top: 5px solid #EF4444;
}

.contrast-col.after {
  background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 100%);
  border: 1px solid #DCFCE7;
  border-top: 5px solid #10B981;
}

.contrast-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contrast-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}

.contrast-icon-badge.warn {
  background: #FEE2E2;
  color: #DC2626;
}

.contrast-icon-badge.success {
  background: #DCFCE7;
  color: #059669;
}

.contrast-label {
  font-size: 18px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.01em;
}

.contrast-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contrast-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14.5px;
  color: #475569;
  line-height: 1.55;
  font-weight: 500;
}

.contrast-item .c-icon {
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 2px;
}

.contrast-item .c-icon.warn {
  color: #EF4444;
}

.contrast-item .c-icon.success {
  color: #10B981;
}

.scratch-summary-box {
  margin-top: 36px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 26px 30px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
}

.scratch-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

.benefit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #0052FF;
  background: rgba(0, 82, 255, 0.08);
  border: 1px solid rgba(0, 82, 255, 0.2);
  padding: 7px 18px;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.benefit-pill:hover {
  background: #0052FF;
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* ─── WHAT WE BUILD (CENTERED HEADER + TABS + SLIDER) ─── */
.build-header-center {
  text-align: center;
  margin-bottom: 44px;
}

.build-header-center h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.25;
  color: #111827;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.build-header-center .highlight-blue {
  color: #1D4ED8;
}

.build-tabs-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
  flex-wrap: wrap;
}

.build-tab-btn {
  border-radius: var(--radius-full);
  padding: 10px 26px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  color: #475569;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.build-tab-btn:hover {
  border-color: #CBD5E1;
  color: #0F172A;
  transform: translateY(-1px);
}

.build-tab-btn.active {
  background: linear-gradient(135deg, #FF6B4A 0%, #FF512F 100%);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(255, 81, 47, 0.32);
}

.build-tab-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.build-tab-panel.active {
  display: block;
  opacity: 1;
  animation: buildFadeIn 0.4s ease forwards;
}

@keyframes buildFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

#what-we-build .container {
  max-width: 1560px;
  width: 100%;
}

.build-showcase-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 52px;
  align-items: center;
}

.build-showcase-content {
  display: block;
  padding: 0;
}

.build-showcase-content h3 {
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.22;
  color: #0F172A;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.build-trust-sub {
  font-size: 15px;
  color: #64748B;
  font-weight: 600;
  margin-bottom: 26px;
}

.build-feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.build-feature-item {
  position: relative;
}

.build-feat-title {
  font-size: 17px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.build-feat-desc {
  font-size: 14.5px;
  color: #64748B;
  line-height: 1.55;
  margin: 0;
}

.build-cta-wrap {
  margin-top: 32px;
}

.build-showcase-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.build-slider-card {
  width: 100%;
  border-radius: 0;
  padding: 0;
  position: relative;
  background: transparent;
  box-shadow: none;
  border: none;
}

.build-slides-track {
  position: relative;
  width: 100%;
  display: block;
}

.build-slide {
  display: none;
  width: 100%;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.build-slide.active {
  display: block;
  opacity: 1;
}

.build-feature-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 22px 55px -10px rgba(0, 0, 0, 0.2);
}



.build-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  position: relative;
  z-index: 5;
}

.build-slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.build-slider-dots .dot.active {
  width: 24px;
  border-radius: 10px;
  background: #FF6B4A;
}

/* ─── BUSINESS RULES & WORKFLOW (SECTION 3) ─── */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.rule-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: all 0.2s ease;
}

.rule-card:hover {
  border-color: var(--indigo);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.rule-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--indigo-subtle);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 18px;
}

.rule-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.rule-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
}

.rule-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rule-tag {
  font-size: 11.5px;
  font-weight: 600;
  background: #F1F5F9;
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

/* Booking Flow Strip */
.booking-flow-strip {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 36px;
  box-shadow: var(--shadow-xs);
}

.bfs-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}

.bfs-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bfs-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bfs-node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 2px solid var(--border-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.25s ease;
}

.bfs-node.active {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #FFFFFF;
  box-shadow: 0 0 12px var(--indigo-glow);
}

.bfs-label-txt {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
}

.bfs-arrow {
  flex: 1;
  height: 2px;
  background: var(--border-light);
  margin: 0 8px;
  position: relative;
  top: -14px;
}

/* ─── INDUSTRY SHOWCASE ─── */
.ind-showcase-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  margin-top: 36px;
}

.ind-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ind-nav-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  text-align: left;
  transition: all 0.2s ease;
}

.ind-nav-card:hover {
  border-color: var(--indigo);
  transform: translateX(3px);
}

.ind-nav-card.active {
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.ind-nav-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background: #F1F5F9;
  color: #64748B;
  transition: all 0.25s ease;
}

.ind-nav-card[data-cat="home"] .ind-nav-icon {
  background: #EFF6FF;
  color: #0052FF;
}

.ind-nav-card[data-cat="care"] .ind-nav-icon {
  background: #FFF1F2;
  color: #E11D48;
}

.ind-nav-card[data-cat="beauty"] .ind-nav-icon {
  background: #FAF5FF;
  color: #9333EA;
}

.ind-nav-card[data-cat="pro"] .ind-nav-icon {
  background: #ECFDF5;
  color: #059669;
}

.ind-nav-card[data-cat="home"].active {
  border-color: rgba(0, 82, 255, 0.4);
  border-left: 4px solid #0052FF;
  box-shadow: 0 6px 20px rgba(0, 82, 255, 0.08);
}
.ind-nav-card[data-cat="home"].active .ind-nav-icon {
  background: #0052FF;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.25);
}
.ind-nav-card[data-cat="home"].active .ind-nav-arrow {
  color: #0052FF;
}

.ind-nav-card[data-cat="care"].active {
  border-color: rgba(225, 29, 72, 0.4);
  border-left: 4px solid #E11D48;
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.08);
}
.ind-nav-card[data-cat="care"].active .ind-nav-icon {
  background: #E11D48;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
}
.ind-nav-card[data-cat="care"].active .ind-nav-arrow {
  color: #E11D48;
}

.ind-nav-card[data-cat="beauty"].active {
  border-color: rgba(147, 51, 234, 0.4);
  border-left: 4px solid #9333EA;
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.08);
}
.ind-nav-card[data-cat="beauty"].active .ind-nav-icon {
  background: #9333EA;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(147, 51, 234, 0.25);
}
.ind-nav-card[data-cat="beauty"].active .ind-nav-arrow {
  color: #9333EA;
}

.ind-nav-card[data-cat="pro"].active {
  border-color: rgba(5, 150, 105, 0.4);
  border-left: 4px solid #059669;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.08);
}
.ind-nav-card[data-cat="pro"].active .ind-nav-icon {
  background: #059669;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}
.ind-nav-card[data-cat="pro"].active .ind-nav-arrow {
  color: #059669;
}

.ind-nav-text {
  flex: 1;
}

.ind-nav-title {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-main);
}

.ind-nav-sub {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.ind-nav-arrow {
  color: var(--text-light);
  font-size: 13px;
  transition: transform 0.2s ease;
}

.ind-nav-card.active .ind-nav-arrow {
  color: var(--indigo);
  transform: translateX(3px);
}

.ind-nav-custom-box {
  background: var(--indigo-light);
  border: 1px dashed rgba(79, 70, 229, 0.4);
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 6px;
}

.incb-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.incb-icon {
  color: var(--indigo);
  font-size: 16px;
}

.incb-header h4 {
  font-size: 14px;
  color: var(--indigo);
}

.ind-panel {
  display: none;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s ease;
}

.ind-panel.active {
  display: block;
}

/* ─── Distinct Visible Background Tint & Themes per Category Tab ─── */
/* 1. Home Services (Subtle Ice Blue) */
#ind-home.ind-panel {
  background: linear-gradient(180deg, #F0F6FF 0%, #FFFFFF 45%, #F8FAFC 100%);
  border: 1px solid rgba(0, 82, 255, 0.22);
  box-shadow: 0 16px 42px rgba(0, 82, 255, 0.09), 0 2px 10px rgba(0, 82, 255, 0.04);
}
#ind-home .ind-hero-badge {
  color: #0052FF;
  background: #DBEAFE;
}
#ind-home .ind-grid-item {
  background: #FFFFFF;
  border-color: rgba(0, 82, 255, 0.15);
  box-shadow: 0 2px 8px rgba(0, 82, 255, 0.03);
}
#ind-home .igi-icon {
  color: #0052FF;
}
#ind-home .ind-fit-note {
  background: rgba(0, 82, 255, 0.05);
  border-color: rgba(0, 82, 255, 0.18);
  border-left-color: #0052FF;
}
#ind-home .ind-fit-icon {
  color: #0052FF;
}

/* 2. Care Services (Subtle Rose Pink) */
#ind-care.ind-panel {
  background: linear-gradient(180deg, #FFF1F3 0%, #FFFFFF 45%, #FDF4F5 100%);
  border: 1px solid rgba(225, 29, 72, 0.22);
  box-shadow: 0 16px 42px rgba(225, 29, 72, 0.09), 0 2px 10px rgba(225, 29, 72, 0.04);
}
#ind-care .ind-hero-badge {
  color: #E11D48;
  background: #FFE4E6;
}
#ind-care .ind-grid-item {
  background: #FFFFFF;
  border-color: rgba(225, 29, 72, 0.15);
  box-shadow: 0 2px 8px rgba(225, 29, 72, 0.03);
}
#ind-care .igi-icon {
  color: #E11D48;
}
#ind-care .ind-fit-note {
  background: rgba(225, 29, 72, 0.05);
  border-color: rgba(225, 29, 72, 0.18);
  border-left-color: #E11D48;
}
#ind-care .ind-fit-icon {
  color: #E11D48;
}

/* 3. Beauty and Wellness (Subtle Lavender / Purple) */
#ind-beauty.ind-panel {
  background: linear-gradient(180deg, #FAF5FF 0%, #FFFFFF 45%, #F8F4FC 100%);
  border: 1px solid rgba(147, 51, 234, 0.22);
  box-shadow: 0 16px 42px rgba(147, 51, 234, 0.09), 0 2px 10px rgba(147, 51, 234, 0.04);
}
#ind-beauty .ind-hero-badge {
  color: #9333EA;
  background: #F3E8FF;
}
#ind-beauty .ind-grid-item {
  background: #FFFFFF;
  border-color: rgba(147, 51, 234, 0.15);
  box-shadow: 0 2px 8px rgba(147, 51, 234, 0.03);
}
#ind-beauty .igi-icon {
  color: #9333EA;
}
#ind-beauty .ind-fit-note {
  background: rgba(147, 51, 234, 0.05);
  border-color: rgba(147, 51, 234, 0.18);
  border-left-color: #9333EA;
}
#ind-beauty .ind-fit-icon {
  color: #9333EA;
}

/* 4. Professional and Local (Subtle Mint / Emerald) */
#ind-pro.ind-panel {
  background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 45%, #F2FBF6 100%);
  border: 1px solid rgba(5, 150, 105, 0.22);
  box-shadow: 0 16px 42px rgba(5, 150, 105, 0.09), 0 2px 10px rgba(5, 150, 105, 0.04);
}
#ind-pro .ind-hero-badge {
  color: #059669;
  background: #D1FAE5;
}
#ind-pro .ind-grid-item {
  background: #FFFFFF;
  border-color: rgba(5, 150, 105, 0.15);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.03);
}
#ind-pro .igi-icon {
  color: #059669;
}
#ind-pro .ind-fit-note {
  background: rgba(5, 150, 105, 0.05);
  border-color: rgba(5, 150, 105, 0.18);
  border-left-color: #059669;
}
#ind-pro .ind-fit-icon {
  color: #059669;
}

.ind-card-hero {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
  margin-bottom: 22px;
}

.ind-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.ind-card-hero h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.ind-card-hero p {
  font-size: 14px;
  color: var(--text-body);
}

.ind-grid-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.ind-grid-item {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.igi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.igi-icon {
  font-size: 18px;
}

.igi-tag {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-muted);
  background: #FFFFFF;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.ind-grid-item h4 {
  font-size: 14.5px;
  margin-bottom: 6px;
}

.ind-ui-preview-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.ind-ui-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--border-light);
}

.ind-ui-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ind-ui-sub {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.ind-fit-note {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-left: 4px solid #0052FF;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}

.ind-fit-icon {
  font-size: 17px;
  color: #0052FF;
  flex-shrink: 0;
  margin-top: 1px;
}

.ind-action-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 4px;
}

/* ─── ROADMAP (PHASED BUILD) ─── */
.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.rm-phase {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  position: relative;
}

.rm-phase:hover {
  border-color: rgba(0, 77, 230, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 77, 230, 0.08);
}

.rm-phase-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid rgba(0, 77, 230, 0.16);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.rm-phase h3 {
  font-size: 18px;
  margin-bottom: 18px;
  color: var(--text-main);
}

.rm-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rm-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.55;
}

.rm-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 7px;
  flex-shrink: 0;
}

.roadmap-note {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--text-muted);
  text-align: center;
  box-shadow: var(--shadow-xs);
}

/* ─── TECHNOLOGY STACK (DARK SECTION) ─── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.tech-card {
  background: var(--slate-900);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tech-card:hover {
  background: var(--slate-850);
  border-color: rgba(0, 77, 230, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 77, 230, 0.2);
}

.tech-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.tech-name {
  font-size: 15.5px;
  font-weight: 700;
  color: #FFFFFF;
}

.tech-use {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.5;
}

.tech-note {
  font-size: 13.5px;
  color: var(--text-light);
  text-align: center;
  margin-top: 30px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── DEVELOPMENT PROCESS ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.ps-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.ps-card:hover {
  border-color: rgba(0, 77, 230, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 77, 230, 0.08);
}

.ps-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  margin-bottom: 12px;
}

.ps-body h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-main);
  font-weight: 700;
}

.ps-body p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ─── TRUST & WHY US ─── */
.trust-cols {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  margin-top: 36px;
  align-items: start;
}

.trust-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.trust-note {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 13.5px;
  color: var(--text-body);
  margin-top: 20px;
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-xs);
  transition: all 0.2s ease;
}

.trust-point:hover {
  border-color: var(--indigo);
  transform: translateX(4px);
}

.trust-pt-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--indigo-subtle);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.trust-pt-body h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.trust-pt-body p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.55;
}

/* ─── PROJECT INVESTMENT & COST ─── */
.cost-factors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.cost-factor {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-xs);
}

.cost-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--indigo-subtle);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.cost-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.cost-note {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.cost-cta-bar {
  background: var(--slate-950);
  border: 1px solid var(--slate-800);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #FFFFFF;
}

.cost-cta-bar h3 {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.cost-cta-bar p {
  font-size: 14px;
  color: var(--text-light);
  max-width: 580px;
}

/* ─── FAQ ACCORDION ─── */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(0, 77, 230, 0.3);
  box-shadow: 0 6px 18px rgba(0, 77, 230, 0.06);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
  background: none;
}

.faq-chevron {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  transition: transform 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-q.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-a {
  display: none;
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

.faq-a.open {
  display: block;
}

/* ─── FINAL CTA ─── */
.final-cta {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding: 90px 0 60px;
  text-align: center;
  position: relative;
}

.final-cta h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--text-main);
  margin-bottom: 14px;
  font-weight: 800;
}

.final-cta .lead {
  color: var(--text-body);
  margin: 0 auto 30px;
  max-width: 680px;
}

.cta-bullets {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.cta-bullet {
  font-size: 13px;
  font-weight: 600;
  color: #004DE6;
  background: #EFF5FF;
  border: 1px solid rgba(0, 77, 230, 0.15);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.final-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-no-obligation {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── FOOTER (ORIGINATESOFT WORDPRESS THEME DESIGN) ─── */
footer {
  background-color: #fff;
  background-image: linear-gradient(90deg, #ffd5a6, #fef2eb);
  color: #1e223b;
  min-height: 250px;
  position: relative;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
  margin-top: 0;
  border-top: none;
}

.wave-footer {
  top: 0;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 1;
}

.wave-footer img {
  width: 100%;
  display: block;
  height: auto;
}

footer .footer-top {
  padding-top: clamp(120px, 15vw, 190px);
  padding-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.footer-links {
  margin-bottom: 1.5rem;
}

.footer-links.company-address {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

.footer-links h4 {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1e223b;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
  font-family: 'Poppins', 'Inter', sans-serif !important;
}

.footer-links h4 > a {
  display: none;
}

.footer-links p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #1e223b;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif !important;
}

.footer-links p i {
  margin-right: 6px;
  color: #1e223b;
}

.footer-links h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e223b;
  margin-top: 1.2rem;
  margin-bottom: 0.35rem;
  font-family: 'Poppins', 'Inter', sans-serif !important;
}

.footer-links address {
  font-size: 0.92rem;
  color: #1e223b;
  font-style: normal;
  margin-bottom: 0.25rem;
  font-family: 'Inter', sans-serif !important;
}

ul.foot-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.foot-nav > li {
  margin-bottom: 0.45rem;
  font-size: 0.94rem !important;
  color: #1e223b !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
}

ul.foot-nav > li > a {
  color: #1e223b !important;
  text-decoration: none !important;
  font-size: 0.94rem !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  transition: all 0.25s ease-in-out;
  display: inline-block;
}

ul.foot-nav > li > a:hover {
  color: #ff512f !important;
  padding-left: 4px;
}

ul.foot-nav ul.foot-nav {
  padding-left: 14px;
  margin-top: 4px;
}

footer .social-links {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin-top: 1.25rem;
}

footer .social-links li a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ff7f00;
  color: #ff7f00;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s ease;
  background: transparent;
}

footer .social-links li a:hover {
  background: #ff7f00;
  color: #fff;
}

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: #1e223b;
  font-family: 'Inter', sans-serif !important;
}

/* ─── SHORTCUT CONTACT (FLOATING LEFT BADGE) ─── */
.shortcut-contact {
  position: fixed;
  left: 0;
  top: 45%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #0d1927;
  border-radius: 0 10px 10px 0;
  padding: 6px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.shortcut-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 2px;
}

.shortcut-contact a img {
  width: 28px;
  height: 28px;
}

.shortcut-contact a span {
  display: none;
}

.small-footer {
  display: none;
}

@media (max-width: 768px) {
  .small-footer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    z-index: 999;
  }
  .footer-links h4 > a {
    display: block;
  }
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 14px var(--blue-glow);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1040;
  border: none;
}

.back-to-top.show,
.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  color: #fff;
  background: var(--blue-hover);
}

/* ─── RESPONSIVE BREAKPOINTS ─── */

/* Global Overflow Protection */
html, body, .on-demand-page {
  overflow-x: hidden !important;
  max-width: 100vw;
}

@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
    padding: 0 20px;
  }
  .build-showcase-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
  }
  .hero h1 {
    font-size: clamp(28px, 3.6vw, 42px);
  }
}

@media (max-width: 1024px) {
  .navbar-collapse {
    background: #FFFFFF;
    padding: 20px 24px;
    border-radius: 18px;
    margin-top: 12px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.09);
    border: 1px solid #EDF2F7;
  }
  .navbar .nav-link {
    padding: 10px 14px !important;
    font-size: 1rem;
  }
  .navbar .btn-demo {
    width: 100%;
    margin-top: 12px;
    text-align: center;
  }
  .stats-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .build-showcase-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .build-showcase-content {
    text-align: left;
  }
  .challenge-triad-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .ind-showcase-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ind-nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .trust-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .roadmap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 56px 0;
  }
  .section-head {
    margin-bottom: 28px;
  }
  .section-head.center {
    margin-bottom: 28px;
  }
  .section-label {
    font-size: 11px;
    padding: 4px 10px;
    margin-bottom: 12px;
  }
  h1, .hero h1 {
    font-size: clamp(24px, 6.2vw, 34px);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }
  h2, .section-head h2, .build-header-center h2 {
    font-size: clamp(22px, 5.4vw, 30px);
    letter-spacing: -0.015em;
  }
  .hero {
    padding: 95px 0 15px;
  }
  .hero-inner {
    padding: 0 12px;
  }
  .hero-badge {
    font-size: 11.5px;
    padding: 5px 14px;
    margin-bottom: 14px;
    line-height: 1.35;
  }
  .hero-sub {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 22px;
  }
  .hero-ctas {
    gap: 10px;
    margin-bottom: 24px;
    width: 100%;
    max-width: 360px;
  }
  .hero-ctas .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 14.5px;
  }
  .hero-mockup-frame-box {
    border-radius: 12px;
    box-shadow: 0 12px 30px -6px rgba(0, 0, 0, 0.16);
  }
  .hero-reviews-strip {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 14px 0 20px;
  }
  .hero-trust-img {
    max-width: 250px;
  }
  .hero-available-badge-img {
    height: 32px;
  }
  .stats-bar {
    padding: 16px 0 10px;
  }
  .stats-intro-head {
    margin-bottom: 20px;
  }
  .stats-intro-head h2 {
    font-size: clamp(20px, 4.8vw, 26px);
  }
  .stats-intro-head p {
    font-size: 13px;
  }
  .stats-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-card {
    padding: 20px 14px;
    border-radius: 14px;
  }
  .stat-number {
    font-size: 28px;
    margin-bottom: 6px;
  }
  .stat-desc {
    font-size: 12px;
    line-height: 1.35;
  }
  .challenge-triad-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 24px 0 20px;
  }
  .triad-card {
    padding: 22px 18px;
    border-radius: 14px;
  }
  .arch-matrix-box {
    padding: 22px 16px;
    border-radius: 16px;
    margin-bottom: 18px;
  }
  .arch-matrix-head {
    margin-bottom: 14px;
  }
  .arch-matrix-head h3 {
    font-size: 15.5px;
    line-height: 1.4;
  }
  .arch-questions-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .arch-q-card {
    padding: 12px 14px;
    border-radius: 10px;
  }
  .arch-q-card--wide {
    grid-column: span 1;
  }
  .arch-q-text {
    font-size: 13.5px;
  }
  .key-callout-card {
    flex-direction: column;
    gap: 12px;
    padding: 20px 18px;
    border-radius: 14px;
  }
  .kcc-content p {
    font-size: 13.5px;
    line-height: 1.6;
  }
  .build-header-center {
    margin-bottom: 28px;
  }
  .build-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }
  .build-tab-btn {
    padding: 8px 18px;
    font-size: 13.5px;
    border-radius: var(--radius-full);
  }
  .build-showcase-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  .build-showcase-visual {
    order: -1 !important;
    margin-bottom: 8px !important;
    width: 100% !important;
  }
  .build-slider-card {
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08) !important;
  }
  .build-feature-img {
    border-radius: 16px !important;
    width: 100% !important;
  }
  .build-slider-dots {
    margin-top: 12px !important;
  }
  .build-showcase-content h3 {
    font-size: clamp(20px, 4.8vw, 26px) !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
  }
  .build-trust-sub {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    color: #64748B !important;
    margin-bottom: 20px !important;
  }
  .build-feature-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  .build-feature-item {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 14px !important;
    padding: 16px 18px !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03) !important;
    transition: transform 0.2s ease, border-color 0.2s ease !important;
  }
  .build-feat-title {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin-bottom: 6px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .build-feat-title::before {
    content: '' !important;
    display: inline-block !important;
    width: 6px !important;
    height: 6px !important;
    background: #0052FF !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
  }
  .build-feat-desc {
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: #64748B !important;
    margin: 0 !important;
  }
  .build-cta-wrap {
    margin-top: 20px !important;
    text-align: center !important;
  }
  .build-cta-wrap .btn,
  .build-cta-wrap .btn--coral-pill {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 13px 20px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 14px rgba(241, 90, 36, 0.25) !important;
  }
  .table-container-wrap {
    position: relative !important;
    width: 100% !important;
    margin-top: 14px !important;
  }
  .table-container-wrap::after,
  .table-scroll-cue,
  .table-mobile-toggle,
  .table-scroll-hint-wrap,
  .table-nav-arrow {
    display: none !important;
  }
  .table-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px -6px rgba(15, 23, 42, 0.06) !important;
    margin-top: 0 !important;
    scroll-behavior: smooth !important;
  }
  /* Arrow Navigation Bar Under Table */
  .table-bottom-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-top: 12px !important;
    padding: 0 4px !important;
  }
  .tbn-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 9999px !important;
    color: #475569 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 8px 16px !important;
    cursor: pointer !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  .tbn-btn:hover {
    border-color: #0052FF !important;
    color: #0052FF !important;
  }
  .tbn-btn.active {
    background: #0052FF !important;
    border-color: #0052FF !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(0, 82, 255, 0.28) !important;
  }
  .tbn-dots {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }
  .tbn-dot {
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background: #CBD5E1 !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
  }
  .tbn-dot.active {
    width: 20px !important;
    border-radius: 9999px !important;
    background: #0052FF !important;
  }
  .decision-table {
    display: table !important;
    width: 100% !important;
    min-width: 480px !important;
    border-collapse: collapse !important;
  }
  .decision-table thead {
    display: table-header-group !important;
  }
  .decision-table tbody {
    display: table-row-group !important;
  }
  .decision-table tr {
    display: table-row !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #F1F5F9 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .decision-table th {
    display: table-cell !important;
    padding: 12px 14px !important;
    font-size: 11.5px !important;
    background: #F8FAFC !important;
    white-space: nowrap !important;
  }
  .decision-table th.col-custom {
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.08) 0%, rgba(0, 82, 255, 0.03) 100%) !important;
  }
  .decision-table td {
    display: table-cell !important;
    padding: 12px 14px !important;
    font-size: 13px !important;
    border-bottom: 1px solid #F1F5F9 !important;
    vertical-align: middle !important;
  }
  .decision-table td.situation {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    white-space: normal !important;
    min-width: 135px !important;
    max-width: 150px !important;
    line-height: 1.4 !important;
  }
  .decision-table td.td-custom {
    background: rgba(0, 82, 255, 0.035) !important;
    font-weight: 600 !important;
  }
  .decision-table .status-cell {
    font-size: 11px !important;
    padding: 5px 10px !important;
    border-radius: 9999px !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-weight: 700 !important;
  }
  .decision-table .status-cell.ok {
    background: #F1F5F9 !important;
    color: #475569 !important;
  }
  .decision-table .status-cell.warn {
    background: #FEF2F2 !important;
    color: #DC2626 !important;
    border: 1px solid rgba(220, 38, 38, 0.18) !important;
  }
  .decision-table .status-cell.neutral {
    background: #F8FAFC !important;
    color: #64748B !important;
    border: 1px solid #E2E8F0 !important;
  }
  .decision-table .status-cell.advantage {
    background: #ECFDF5 !important;
    color: #059669 !important;
    border: 1px solid rgba(16, 185, 129, 0.25) !important;
  }
  .compare-note {
    flex-direction: column;
    gap: 14px;
    padding: 20px 18px;
    border-radius: 14px;
    margin-top: 20px;
  }
  .compare-note-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 19px;
  }
  .compare-lead, .compare-highlight {
    font-size: 13.5px;
    line-height: 1.6;
  }
  .contrast-block {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }
  .contrast-col {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .contrast-head {
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
  .contrast-label {
    font-size: 16px;
  }
  .contrast-item {
    font-size: 13.5px;
    gap: 10px;
  }
  .scratch-summary-box {
    padding: 20px 16px;
    border-radius: 14px;
    margin-top: 22px;
  }
  .scratch-desc {
    font-size: 13.5px;
    line-height: 1.6;
  }
  .benefit-pills {
    gap: 8px;
    margin-top: 14px;
    justify-content: center;
  }
  .benefit-pill {
    font-size: 12px;
    padding: 6px 12px;
  }
  .rules-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }
  .rule-card {
    padding: 22px 18px;
    border-radius: 14px;
  }
  .rule-card h3 {
    font-size: 16px;
  }
  .rule-card p {
    font-size: 13.5px;
  }
  .booking-flow-strip {
    padding: 20px 14px;
    border-radius: 16px;
    margin-top: 24px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
  }
  .bfs-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #64748B;
    margin-bottom: 16px;
    text-align: center;
  }
  .bfs-steps {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .bfs-steps::-webkit-scrollbar {
    display: none;
  }
  .bfs-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    min-width: 52px;
  }
  .bfs-node {
    width: 36px;
    height: 36px;
    font-size: 14px;
    border-radius: 50%;
  }
  .bfs-arrow {
    display: block;
    min-width: 14px;
    flex: 1;
    height: 2px;
    background: #E2E8F0;
    margin: 0 2px;
    position: relative;
    top: -11px;
  }
  .bfs-label-txt {
    font-size: 11px;
    font-weight: 600;
    color: #0F172A;
    white-space: nowrap;
  }
  .ind-showcase-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin-top: 20px !important;
  }
  .ind-nav-list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 8px !important;
    padding: 4px 2px 8px !important;
    margin: 0 -12px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    scrollbar-width: none !important;
  }
  .ind-nav-list::-webkit-scrollbar {
    display: none !important;
  }
  .ind-nav-card {
    flex: 0 0 auto !important;
    width: auto !important;
    padding: 8px 16px !important;
    border-radius: 9999px !important;
    border: 1.5px solid #E2E8F0 !important;
    background: #FFFFFF !important;
    gap: 8px !important;
    align-items: center !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
    transform: none !important;
  }
  .ind-nav-icon {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    font-size: 13px !important;
    border-radius: 50% !important;
  }
  .ind-nav-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #1E293B !important;
  }
  .ind-nav-sub,
  .ind-nav-arrow {
    display: none !important;
  }
  .ind-nav-card.active {
    background: #0052FF !important;
    border-color: #0052FF !important;
    box-shadow: 0 4px 14px rgba(0, 82, 255, 0.25) !important;
  }
  .ind-nav-card.active .ind-nav-title {
    color: #FFFFFF !important;
  }
  .ind-nav-card.active .ind-nav-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #FFFFFF !important;
    box-shadow: none !important;
  }
  .ind-nav-custom-box {
    display: none !important;
  }
  .ind-display-wrap {
    width: 100% !important;
  }
  .ind-card-hero {
    padding: 18px 16px;
    border-radius: 14px;
    margin-bottom: 12px;
  }
  .ind-card-hero h3 {
    font-size: 17px;
  }
  .ind-card-hero p {
    font-size: 13px;
  }
  .ind-grid-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ind-grid-item {
    padding: 16px 14px;
    border-radius: 12px;
  }
  .ind-grid-item h4 {
    font-size: 14.5px;
  }
  .ind-grid-item p {
    font-size: 12.5px;
  }
  .ind-fit-note {
    padding: 14px 12px;
    font-size: 12.5px;
    border-radius: 10px;
    gap: 8px;
    margin-top: 14px;
  }
  .ind-action-bar {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
  .ind-action-bar .btn,
  .ind-action-bar .btn--coral-pill {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    padding: 13px 18px !important;
    border-radius: 12px !important;
    text-align: center !important;
    white-space: normal !important;
    box-shadow: 0 4px 14px rgba(241, 90, 36, 0.25) !important;
  }
  .roadmap {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .rm-phase {
    padding: 22px 18px;
    border-radius: 14px;
  }
  .rm-phase h3 {
    font-size: 16px;
  }
  .rm-item {
    font-size: 13.5px;
  }
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .tech-card {
    padding: 16px 12px;
    border-radius: 12px;
  }
  .tech-icon {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .tech-name {
    font-size: 13.5px;
  }
  .tech-use {
    font-size: 11.5px;
    line-height: 1.35;
  }
  .tech-note {
    padding: 16px 14px;
    font-size: 12.5px;
    border-radius: 12px;
    margin-top: 24px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ps-card {
    padding: 18px 16px;
    border-radius: 12px;
  }
  .ps-num {
    font-size: 22px;
  }
  .ps-body h4 {
    font-size: 15px;
  }
  .ps-body p {
    font-size: 13px;
  }
  .trust-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .trust-point {
    padding: 14px;
    border-radius: 12px;
    gap: 12px;
  }
  .trust-pt-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .trust-pt-body h4 {
    font-size: 14.5px;
  }
  .trust-pt-body p {
    font-size: 12.5px;
  }
  .cost-factors {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cost-factor {
    padding: 14px 12px;
    border-radius: 12px;
    gap: 12px;
  }
  .cost-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .cost-name {
    font-size: 14px;
  }
  .cost-note {
    font-size: 12px;
  }
  .cost-cta-bar {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 22px 18px;
    border-radius: 14px;
    margin-top: 22px;
  }
  .cost-cta-bar h3 {
    font-size: 16px;
  }
  .cost-cta-bar p {
    font-size: 13px;
  }
  .cost-cta-bar .btn {
    width: 100%;
    max-width: 280px;
  }
  .faq-q {
    padding: 16px 18px;
    font-size: 14px;
    gap: 10px;
  }
  .faq-a {
    padding: 0 18px 16px;
    font-size: 13px;
    line-height: 1.6;
  }
  .final-cta {
    padding: 60px 0 45px;
  }
  .final-cta h2 {
    font-size: clamp(22px, 5.4vw, 32px);
  }
  .final-cta .lead {
    font-size: 14.5px;
    margin-bottom: 20px;
  }
  .cta-bullets {
    gap: 8px;
    margin-bottom: 24px;
  }
  .cta-bullet {
    font-size: 12px;
    padding: 5px 12px;
  }
  .final-cta-btns {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .final-cta-btns .btn {
    width: 100%;
    padding: 13px 20px !important;
    font-size: 14px !important;
  }
  .cta-no-obligation {
    font-size: 12px;
    margin-top: 16px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 44px 0;
  }
  .stats-cards-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .stat-card {
    padding: 16px 12px;
  }
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .tech-card {
    padding: 14px 8px;
  }
  .tech-icon {
    font-size: 26px;
  }
  .tech-name {
    font-size: 12.5px;
  }
  .tech-use {
    font-size: 10.5px;
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
  }
}

