/* ============================================================
   AiCOS — Ai Commerce Operating System
   Color Scheme: Navy (#0B1F6E) · Green (#149347) · Cream (#F4EFE3)
   Tagline: Voice enabled · Bills · Payments · Accounting
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Inter:wght@300;400;500;600;700;800;900&family=DM+Mono:wght@400;500&family=Anek+Devanagari:wght@400;600&family=Anek+Tamil:wght@400;600&family=Anek+Kannada:wght@400;600&family=Anek+Bangla:wght@400;600&family=Anek+Telugu:wght@400;600&display=swap');

/* ──────────────────── TOKENS ──────────────────── */
:root {
  /* Brand Colors — Navy & Green */
  --blue:         #0B1F6E;
  --blue-dark:    #142B87;
  --blue-deeper:  #081548;
  --blue-light:   #9AAEE8;
  --blue-50:      #EEF1FB;

  --green:        #149347;
  --green-dark:   #0F6E35;
  --green-light:  #BEE8CB;
  --green-50:     #EEF9F1;

  /* Aliases for strict Blue & Green theme compatibility */
  --orange:       #0B1F6E;
  --orange-dark:  #142B87;
  --orange-light: #9AAEE8;
  --orange-50:    #EEF1FB;

  /* Neutrals */
  --ink:          #0B1F6E;
  --ink-2:        #142B87;
  --ink-soft:     rgba(11,31,110,.62);
  --ink-faint:    rgba(11,31,110,.42);
  --paper:        #F4EFE3;
  --paper-hi:     #FBF8F1;
  --white:        #FFFFFF;
  --rule:         #DCD3C1;
  --rule-soft:    #E8E1D3;
  --gray-bg:      #EFE7D6;

  /* Accents */
  --vermilion:    #C6281C;
  --parrot:       #0D8425;

  /* Typography */
  --display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --body:    'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
  --data:    'DM Mono', monospace;

  /* Layout */
  --wrap:    1200px;
  --gut:     clamp(20px, 5vw, 48px);
  --r:       16px;
  --radius-lg: 24px;
  --nav-h:   84px;

  /* Shadows */
  --shadow-sm:     0 2px 4px rgba(0,0,0,0.05);
  --shadow-md:     0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg:     0 16px 36px -4px rgba(11,31,110,0.15);
  --shadow-orange: 0 12px 28px rgba(11,31,110,0.35);
  --shadow-blue:   0 12px 28px rgba(11,31,110,0.3);
  --shadow-green:  0 12px 28px rgba(20,147,71,0.3);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ──────────────────── RESET ──────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ──────────────────── LAYOUT ──────────────────── */
.container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gut);
}

.section-pad {
  padding-block: clamp(64px, 10vw, 100px);
}

.bg-blue-dark {
  background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--ink-2) 100%);
}

.bg-gray { background: #FFFFFF; }

.bg-orange-gradient {
  background: linear-gradient(135deg, var(--green-50) 0%, var(--blue-50) 100%);
}

/* ──────────────────── BRAND LOGO ──────────────────── */
.brand-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  padding: 6px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ──────────────────── NAVBAR ──────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: #FFFFFF;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gut);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-logo { display: flex; align-items: center; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}

.nav-links li { list-style: none; }

.nav-link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
  background: var(--orange-50);
}

.navbar-cta { flex-shrink: 0; }

/* ──────────────────── BUTTONS ──────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--display);
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(20,147,71,0.45);
}

.btn-outline {
  background: rgba(255,255,255,0.06);
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.75);
}
.btn-outline:hover {
  border-color: var(--green-light);
  color: var(--green-light);
  background: rgba(255,255,255,0.12);
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); }

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; border-radius: 8px; }
.btn-lg { padding: 0.95rem 1.8rem; font-size: 1rem; border-radius: 12px; }

/* ──────────────────── HAMBURGER ──────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ──────────────────── MOBILE MENU ──────────────────── */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 1.25rem var(--gut);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-link {
  display: block;
  padding: 0.7rem 1rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: var(--transition);
}

.mobile-link:hover { color: var(--orange); background: var(--orange-50); }

/* ──────────────────── HERO ──────────────────── */
.hero {
  background: linear-gradient(135deg, #0B1F6E 0%, #142B87 60%, #233FA6 100%);
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(11,31,110,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gut);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(11,31,110,0.2);
  border: 1px solid rgba(154,174,232,0.4);
  color: var(--blue-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.badge-dot {
  width: 7px; height: 7px;
  background: #5FD98A;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-line {
  display: inline-block;
  white-space: nowrap;
}

.highlight-orange,
.highlight-blue { color: #8FA3E0; }
.highlight-green { color: #5FD98A; }

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.94);
  max-width: 52ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  border-left: 2px solid rgba(11,31,110,0.6);
  padding-left: 1rem;
}

.stat-number {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ──────────────────── VOICE MACHINE ──────────────────── */
.machine {
  background: linear-gradient(160deg, var(--ink-2), #081548);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.machine-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.3rem;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.mic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.machine-top-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  flex: 1;
}

.wave {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.wave i {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.75);
  animation: wv 0.8s ease-in-out infinite alternate;
}

@keyframes wv {
  from { height: 4px; }
  to   { height: 14px; }
}

.machine-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 260px;
}

.said, .billed {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.said { border-right: 1px solid rgba(255,255,255,0.07); }

.panel-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.said-text {
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.98);
  min-height: 80px;
}

.said-text .w {
  opacity: 0;
  transition: opacity 0.25s;
}
.said-text .w.on { opacity: 1; }

.bill-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.bill-line.on { opacity: 1; transform: translateX(0); }

.bill-item {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.96);
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.bill-qty {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.68);
}
.bill-amt {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-light);
  white-space: nowrap;
  font-family: var(--data);
}

.money { font-family: var(--data); }

.bill-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.bill-total-l {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bill-total-v {
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange-light);
}

.machine-foot {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.chip {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.chip:hover { background: rgba(255,255,255,0.16); }
.chip[aria-pressed="true"] { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ──────────────────── SECTION LABELS & HEADINGS ──────────────────── */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header.centered { text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange-50);
  color: var(--orange-dark);
  border: 1px solid var(--orange-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-label.light {
  background: rgba(20,147,71,0.35);
  border-color: rgba(20,147,71,0.6);
  color: #FFFFFF;
}

.section-label.green-label {
  background: var(--green-50);
  border-color: var(--green-light);
  color: var(--green-dark);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.7;
}
.section-subtitle.light { color: rgba(255,255,255,0.92); }

.section-header.centered .section-subtitle { margin-inline: auto; }

.subsection-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.eyebrow-light {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

/* ──────────────────── ABOUT US ──────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.about-text p { color: var(--ink-soft); line-height: 1.7; margin-top: 0.6rem; }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.about-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.card-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.about-card h4 { font-weight: 700; margin-bottom: 0.35rem; font-size: 0.95rem; }
.about-card p  { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }

.about-right { display: flex; flex-direction: column; gap: 1rem; }

.about-illustration-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.illustration-img.rounded-photo { width: 100%; border-radius: var(--radius-lg); }

.ceo-card {
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  border-radius: var(--r);
  padding: 1.5rem;
  color: var(--white);
}

.ceo-avatar-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.85rem;
}

.ceo-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.25rem; }
.ceo-card p  { font-size: 0.85rem; color: rgba(255,255,255,0.85); margin-bottom: 0.85rem; }

.ceo-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.ceo-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.94);
}

/* ──────────────────── PRODUCT: HUB GRID ──────────────────── */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.hub-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 1.5rem 1.2rem;
  transition: var(--transition);
}
.hub-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}
.hub-card.hub-centre {
  background: rgba(20,147,71,0.15);
  border-color: rgba(20,147,71,0.4);
}

.hub-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.hub-dir { font-size: 0.7rem; font-weight: 700; color: var(--orange-light); text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 0.4rem; }
.hub-card h3 { font-size: 0.95rem; font-weight: 800; color: var(--white); margin-bottom: 0.4rem; }
.hub-card p  { font-size: 0.83rem; color: rgba(255,255,255,0.88); line-height: 1.55; }

/* ──────────────────── ORDERING GRID ──────────────────── */
.ordering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.order-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 1.75rem 1.5rem;
  transition: var(--transition);
}
.order-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-3px); }

.order-icon {
  font-size: 2rem;
  width: 52px; height: 52px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.order-icon.orange { background: rgba(20,147,71,0.2); }
.order-icon.green  { background: rgba(20,147,71,0.2); }
.order-icon.blue   { background: rgba(11,31,110,0.2); }

.order-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 0.6rem; }
.order-card > p { font-size: 0.88rem; color: rgba(255,255,255,0.9); line-height: 1.6; margin-bottom: 1rem; }

.order-steps { display: flex; flex-direction: column; gap: 0.4rem; }
.order-steps li {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.85);
  padding-left: 1.2rem;
  position: relative;
}
.order-steps li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
}

/* ──────────────────── QR SECTION ──────────────────── */
.qr-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.checks-light { display: flex; flex-direction: column; gap: 0.65rem; }
.checks-light li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.94);
  line-height: 1.5;
}

.qr-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.qr-img { width: 100%; border-radius: var(--radius-lg); }

.qr-badge {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.chat-preview {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.msg {
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 90%;
}

.msg-meta {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
  opacity: 0.6;
}

.msg-in {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.96);
  align-self: flex-start;
}

.msg-out {
  background: rgba(20,147,71,0.2);
  border: 1px solid rgba(20,147,71,0.3);
  color: rgba(255,255,255,0.98);
  align-self: flex-end;
  margin-left: auto;
}

/* ──────────────────── FEATURES GRID ──────────────────── */
.features-section { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.feature-icon {
  font-size: 1.8rem;
  width: 52px; height: 52px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-icon.orange { background: var(--orange-50); }
.feature-icon.green  { background: var(--green-50); }
.feature-icon.blue   { background: var(--blue-50); }

.feature-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; }
.feature-card p  { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; }

/* ──────────────────── BOOKS / REGISTERS ──────────────────── */
.books-section { border-top: 1px solid var(--rule); padding-top: clamp(3rem, 6vw, 5rem); }
.books-header { text-align: center; margin-bottom: 2.5rem; }
.books-header .section-subtitle { margin-inline: auto; }

.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.book-tile {
  border-radius: var(--r);
  padding: 1.5rem;
  position: relative;
  transition: var(--transition);
}

.active-tile {
  background: var(--green-50);
  border: 1px solid var(--green-light);
}
.active-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-green); }

.soon-tile {
  background: var(--blue-50);
  border: 1px solid var(--blue-light);
  opacity: 0.85;
}
.soon-tile:hover { opacity: 1; transform: translateY(-3px); }

.book-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.book-badge.active {
  background: var(--green-dark);
  color: var(--white);
}

.book-badge.soon {
  background: var(--blue);
  color: var(--white);
}

.book-tile h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.4rem; }
.active-tile h4 { color: var(--green-dark); }
.soon-tile h4   { color: var(--blue-dark); }

.book-tile p { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.55; }

/* ──────────────────── RAIL (NPCI FLOW) ──────────────────── */
.rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: rail;
}

.rail-step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition);
  counter-increment: rail;
}
.rail-step:hover { background: rgba(255,255,255,0.11); transform: translateY(-3px); }

.rail-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.rail-num::after { content: counter(rail); }

.rail-body h3 { font-size: 0.95rem; font-weight: 800; color: var(--white); margin-bottom: 0.35rem; }
.rail-body p  { font-size: 0.83rem; color: rgba(255,255,255,0.88); line-height: 1.55; }

.rail-actor {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: auto;
}
.rail-bank { background: rgba(11,31,110,0.25); color: var(--blue-light); }
.rail-auto { background: rgba(20,147,71,0.25); color: var(--green-light); }

/* ──────────────────── e-NACH ──────────────────── */
.enach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.enach-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.enach-tile {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 1.25rem;
  transition: var(--transition);
}
.enach-tile:hover { background: rgba(255,255,255,0.12); }
.enach-tile h4 { font-size: 0.9rem; font-weight: 800; color: var(--white); margin-bottom: 0.4rem; }
.enach-tile p  { font-size: 0.82rem; color: rgba(255,255,255,0.88); line-height: 1.5; }

/* ──────────────────── MULTILINGUAL ──────────────────── */
.scripts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.script-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.script-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-orange); border-color: var(--orange); }

.script-word {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.script-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ──────────────────── AUDIENCE / WHO LOGS IN ──────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.aud-icon {
  font-size: 2rem;
  width: 58px; height: 58px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.aud-icon.orange { background: var(--orange-50); }
.aud-icon.blue   { background: var(--blue-50); }
.aud-icon.green  { background: var(--green-50); }

.audience-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.3rem; }
.audience-card > p { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 1rem; }

.aud-list { display: flex; flex-direction: column; gap: 0.45rem; }
.aud-list li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.45;
}
.aud-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ──────────────────── CONTACT ──────────────────── */
.contact-section { background: #FFFFFF; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-info-box { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  flex: 1;
}

.contact-info-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.35rem; }
.contact-info-card > p { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 1.5rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.cd-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cd-icon.orange { background: var(--orange-50); }
.cd-icon.green  { background: var(--green-50); }

.cd-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-faint); margin-bottom: 0.2rem; }
.cd-value { font-size: 0.9rem; color: var(--ink); font-weight: 500; line-height: 1.45; }

.contact-download-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  color: white;
  text-align: center;
}
.contact-download-cta h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.5rem; color: white; }
.contact-download-cta p  { font-size: 0.88rem; color: rgba(255,255,255,0.96); margin-bottom: 1.25rem; line-height: 1.6; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.35rem; }
.contact-form-card > p { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 1.75rem; }

/* Form elements */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group { margin-bottom: 1.1rem; position: relative; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1.5px solid var(--rule);
  background: transparent;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(20,147,71,0.12);
  background: transparent;
}

.form-group textarea { min-height: 110px; resize: vertical; }

.error-msg {
  display: none;
  color: var(--vermilion);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 0.3rem;
}

.form-group.error input,
.form-group.error textarea {
  border-color: var(--vermilion);
  box-shadow: 0 0 0 3px rgba(198,40,28,0.1);
}

.form-group.error .error-msg { display: block; }

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem;
  background: var(--green-50);
  border: 1px solid var(--green-light);
  border-radius: var(--radius-lg);
  margin-top: 1rem;
}

.success-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.form-success h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.4rem; color: var(--green-dark); }
.form-success p  { color: var(--ink-soft); font-size: 0.9rem; }

/* ──────────────────── FOOTER ──────────────────── */
.footer {
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.85); margin-top: 0.5rem; line-height: 1.6; }

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover { background: rgba(20,147,71,0.25); border-color: rgba(20,147,71,0.4); }

.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.75); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li a { font-size: 0.88rem; color: rgba(255,255,255,0.85); transition: var(--transition); }
.footer-col li a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.footer-bottom a:hover { color: var(--orange); }

/* ──────────────────── BACK TO TOP ──────────────────── */
#back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: var(--shadow-orange);
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 900;
  transition: var(--transition);
}
#back-to-top:hover { transform: translateY(-3px); }

/* ──────────────────── SCROLL REVEAL ──────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.aos-delay-1 { transition-delay: 0.1s; }
.aos-delay-2 { transition-delay: 0.2s; }
.aos-delay-3 { transition-delay: 0.3s; }
.aos-delay-4 { transition-delay: 0.4s; }
.aos-delay-5 { transition-delay: 0.5s; }

/* ──────────────────── TEXT HELPERS ──────────────────── */
.text-orange { color: var(--orange); }
.text-green  { color: var(--green); }
.text-blue   { color: var(--blue); }
.rounded-photo { border-radius: var(--r); }
.shadow-lg  { box-shadow: var(--shadow-lg); }

/* ──────────────────── RESPONSIVE ──────────────────── */
@media (max-width: 1100px) {
  .hub-grid { grid-template-columns: repeat(3, 1fr); }
  .hub-grid .hub-card:nth-child(4),
  .hub-grid .hub-card:nth-child(5) { grid-column: span 1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .books-grid { grid-template-columns: repeat(2, 1fr); }
  .rail { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr 1fr; }
  .footer-main .footer-brand { grid-column: span 3; }
}

@media (max-width: 860px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 2rem); }
  .machine { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .ordering-grid { grid-template-columns: 1fr; }
  .qr-section { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .enach-grid { grid-template-columns: 1fr; }
  .enach-tiles { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main .footer-brand { grid-column: span 2; }

  /* Nav */
  .nav-links,
  .navbar-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .hub-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .scripts-grid { grid-template-columns: 1fr 1fr; }
  .rail { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main .footer-brand { grid-column: auto; }
  .enach-tiles { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ──────────────────── Print ──────────────────── */
@media print {
  .navbar, .mobile-menu, #back-to-top { display: none !important; }
  body { color: #000; background: #fff; }
}

/* ──────────────────── HERO APP SCREEN ──────────────────── */
.hero-app-badge {
  margin-top: 1.25rem;
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  max-width: 200px;
  margin-left: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.hero-app-screen {
  width: 100%;
  border-radius: var(--r);
  display: block;
}

.hero-app-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.98);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ──────────────────── ROLE CARDS (PRODUCT) ──────────────────── */
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.role-card {
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}
.role-card:hover { transform: translateY(-4px); }

.role-orange { background: rgba(20,147,71,0.12); border-color: rgba(20,147,71,0.55); border-width: 1.5px; }
.role-blue   { background: rgba(11,31,110,0.12); border-color: rgba(11,31,110,0.3); }
.role-green  { background: rgba(20,147,71,0.1);  border-color: rgba(20,147,71,0.3); }
.role-deep   { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }

.role-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.role-icon {
  font-size: 1.8rem;
  width: 52px; height: 52px;
  border-radius: var(--r);
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.role-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-light);
  margin-bottom: 0.25rem;
}

.role-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

.role-card > p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.role-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.role-list li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.92);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.45;
}
.role-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.role-list-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

.b2b-payment-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

/* ──────────────────── SUBSECTION DIVIDER ──────────────────── */
.subsection-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: clamp(3rem, 6vw, 5rem) 0;
}

/* ──────────────────── WORKFLOW TABS ──────────────────── */
.workflow-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.workflow-tab {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.workflow-tab:hover { background: rgba(255,255,255,0.09); }

.workflow-tab-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.3rem;
}
.workflow-tab-header.orange { background: rgba(20,147,71,0.25); }
.workflow-tab-header.blue   { background: rgba(11,31,110,0.25); }
.workflow-tab-header.green  { background: rgba(20,147,71,0.25); }

.wf-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}

.workflow-tab-header h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 0.15rem;
  line-height: 1.2;
}
.workflow-tab-header span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.workflow-steps {
  padding: 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wf-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.wf-step-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  margin-top: 2px;
}

.wf-step > div {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}
.wf-step strong {
  color: var(--white);
  font-weight: 700;
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.84rem;
}

/* ──────────────────── UPDATED RESPONSIVE ──────────────────── */
@media (max-width: 1100px) {
  .role-grid { grid-template-columns: repeat(2, 1fr); }
  .role-card.role-deep { grid-column: 1 / -1; }
  .b2b-payment-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .workflow-tabs { grid-template-columns: 1fr; }
  .role-list-2col { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .role-grid { grid-template-columns: 1fr; }
  .b2b-payment-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-app-badge { display: none; }
}

@media (max-width: 640px) {
  .role-list-2col { grid-template-columns: 1fr; }
}

/* ──────────────────── TEXT CONTRAST & VISIBILITY OVERRIDES ──────────────────── */
.bg-blue-dark p,
.bg-blue-dark .section-subtitle,
.role-card p,
.b2b-payment-inner p,
.workflow-tab p,
.workflow-steps p,
.wf-step > div,
.rail-body p,
.enach-tile p {
  color: rgba(255,255,255,0.98) !important;
}

.role-card h3,
.role-card h4,
.b2b-payment-inner h3,
.b2b-payment-inner h4,
.workflow-tab-header h4,
.wf-step strong,
.rail-body h3,
.enach-tile h4 {
  color: #FFFFFF !important;
}

.role-tag,
.workflow-tab-header span,
.eyebrow-light {
  color: #9AAEE8 !important;
  font-weight: 700;
}

.role-list li,
.checks-light li {
  color: rgba(255,255,255,0.97) !important;
}

.workflow-tab-header.orange,
.workflow-tab-header.blue,
.workflow-tab-header.green {
  background: rgba(255, 255, 255, 0.1) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.role-deep {
  background: rgba(11,31,110, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.workflow-tab {
  background: rgba(11,31,110, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

/* ──────────────────── HIGHLIGHT CALLOUT BOXES ──────────────────── */
.highlight-box {
  background: rgba(11,31,110, 0.22) !important;
  border-left: 4px solid #8FA3E0 !important;
  border-radius: 12px !important;
  padding: 0.9rem 1.15rem !important;
  margin-bottom: 1.25rem !important;
  color: #FFFFFF !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.highlight-green-box {
  background: rgba(20,147,71, 0.22) !important;
  border-left-color: #5FD98A !important;
}

