/* ==========================================================================
   1. UNIVERSAL RESETS & CSS VARIABLES
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box !important;
}

html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
  margin: 0;
  padding: 0;
}

:root {
  --font-stack: "Inter", system-ui, -apple-system, sans-serif;
  --primary-navy: #0f172a;
  --primary-navy-hover: #1e293b;
  --accent-red: #dc2626;
  --accent-red-hover: #b91c1c;
  --bg-light: #45a2fe;
  --bg-white: #fef3c7;
  --bg-offwhite: #fde893;
  --bg-main: #e0f7fa;
  --white: #ffffff;
  --govt-navy: #00205b;
  --govt-saffron: #f58220;
  --govt-green: #138808;
  --text-main: #334155;
  --text-heading: #0f172a;
  --text-inverse: #ffffff;
  --text-muted: #64748b;
  --success: #16a34a;
  --warning: #d97706;
  --max-width: 1200px;
  --section-padding: 5rem 1.5rem;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

/* ==========================================================================
   2. GLOBAL BASE STYLES & TYPOGRAPHY
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-stack);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-top: 0px !important;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 25px !important;
  padding-right: 25px !important;
  width: 100%;
  box-sizing: border-box;
}

.bg-light {
  background-color: #e0c0ff47;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

h1, h2, h3, h4 {
  color: var(--text-heading);
  font-weight: 800;
  line-height: 1.2;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-description {
  text-align: center;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-title {
  text-align: center;
  color: var(--govt-navy);
  font-size: 2.3rem;
  margin-bottom: 35px;
  text-transform: uppercase;
  border-bottom: 3px solid var(--govt-saffron);
  display: inline-block;
  padding-bottom: 8px;
}

/* ==========================================================================
   3. GLOBAL ANIMATIONS & HARDWARE ACCELERATION
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  animation: slideUpAnim 0.7s ease-out forwards;
  opacity: 0;
}

@keyframes slideUpAnim {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.modern-tile, .service-card, .reality-card, .card, .compare-tile, .killer-tile, .e-tile {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease, background-color 0.4s ease !important;
  will-change: transform;
}

/* ==========================================================================
   4. NAVIGATION & HEADER
   ========================================================================== */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  z-index: 9999 !important;
  background-color: #00103a !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
  padding-bottom: 0.3%;
  padding-top: 0.3%;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav {
  margin: 0 auto !important;
  flex: 1;
  display: flex;
  justify-content: center;
}

.logo {
  color: var(--text-inverse);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-highlight {
  color: var(--accent-red);
}

.main-nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--text-inverse);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-toggle {
  display: none !important;
  font-size: 28px;
  color: white;
  cursor: pointer;
  user-select: none;
}

.ng-mob a {
  font-weight: 600 !important;
  letter-spacing: 0.2px !important;
  text-transform: none !important;
  color: #e2e8f0 !important;
  transition: color 0.3s ease !important;
}

.ng-mob a:hover, .ng-mob a:active {
  color: #00d9ff !important;
}

@media (min-width: 768px) {
  .main-nav {
    margin: 0 auto !important;
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .ng-mob {
    display: flex;
    flex-direction: row;
    gap: 40px !important;
    align-items: center;
  }
  .ng-mob > a {
    position: relative;
    padding-bottom: 6px;
    text-decoration: none !important;
  }
  .ng-mob > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #00fbff 20%, #47f6ff 60%, #018dff 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
  }
  .ng-mob > a:hover::after, .ng-mob > a:active::after {
    transform: scaleX(1);
    box-shadow: 0 0 12px rgba(245, 130, 32, 0.8);
  }
}

/* ==========================================================================
   5. BUTTONS & GLOBAL CTA COMPONENTS
   ========================================================================== */
.btn-nav, .btn-audit {
  text-decoration: none !important;
}

.btn-nav {
  background-color: var(--accent-red);
  color: var(--text-inverse) !important;
  padding: 0.4rem 1.1rem;
  border-radius: 25rem;
}

.btn-nav:hover {
  background-color: var(--accent-red-hover);
}

.btn-primary, .btn-secondary, .btn-submit {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary, .btn-submit {
  background-color: var(--accent-red);
  color: var(--text-inverse);
}

.btn-primary:hover, .btn-submit:hover {
  background-color: var(--accent-red-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-inverse);
  border: 2px solid #334155;
}

.btn-secondary:hover {
  border-color: #cbd5e1;
  background-color: rgba(255, 255, 255, 0.05);
}

a.btn-nav, a.btn-audit, a.btn-nav:hover, a.btn-audit:hover, a.btn-nav:visited, a.btn-audit:visited, a.btn-nav:active, a.btn-audit:active {
  text-decoration: none !important;
  border-bottom: none !important;
}

.sticky-cta-bar {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
  padding: 12px 20px;
  z-index: 9999;
  transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-top: 3px solid var(--govt-saffron);
}

.sticky-cta-bar.visible {
  bottom: 0;
}

.sticky-cta-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-text strong {
  display: block;
  color: var(--govt-navy);
  font-size: 1.1rem;
}

.sticky-text span {
  font-size: 0.85rem;
  color: #666;
}

.btn-pulse {
  background: var(--govt-saffron);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 0 0 0 rgba(245, 130, 32, 0.7);
  animation: pulseEyeCatcher 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulseEyeCatcher {
  to { box-shadow: 0 0 0 15px rgba(245, 130, 32, 0); }
}

.ticker-wrap {
  background-color: #fff3cd;
  color: #856404;
  padding: 8px 0;
  overflow: hidden;
  border-bottom: 1px solid #ffeeba;
  font-size: 0.95rem;
  font-weight: 500;
}

.ticker {
  display: inline-block;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}

.ticker-item {
  margin-right: 60px;
}

@keyframes tickerScroll {
  0% { transform: translate3d(100%, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */
.hero-section {
  background-color: var(--primary-navy);
  color: var(--text-inverse);
  padding: 6rem 1.5rem;
  text-align: center;
  padding-top: 120px !important;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-section h1 {
  color: var(--text-inverse);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  margin-bottom: 3rem;
}

.hero-subtitle strong {
  color: var(--text-inverse);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   7. LAYOUT GRIDS & CARDS
   ========================================================================== */
.pipeline-section, .realities-section, .matrix-section, .contact-section {
  padding: var(--section-padding);
}

.cards-grid {
  display: grid;
  gap: 25px;
}

@media (min-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1099px) and (min-width: 768px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .cards-grid { grid-template-columns: 1fr; }
}

.pipeline-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #cacaca 0%, #fad0b9 50%, #929292 100%);
  box-shadow: inset 0 10px 30px rgba(0, 28, 79, 0.059);
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 32, 91, 0.08);
  border-top: 8px solid var(--govt-navy);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--govt-saffron), #ffb84d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 10;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 32, 91, 0.08), 0 10px 20px rgba(245, 130, 32, 0.12);
  border-color: transparent;
}

.card:hover::before { transform: scaleX(1); }

.card-step {
  background: var(--govt-navy);
  color: var(--white);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}

.card:hover .card-step {
  background: var(--govt-saffron);
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 10px 20px rgba(245, 130, 32, 0.4);
}

.service-card h3 {
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.4;
  border-bottom: 2px solid #fcede9;
  padding-bottom: 0.8rem;
  transition: all 0.4s ease;
}

.card:hover h3 { color: var(--govt-saffron); padding-left: 5px; }

.feature-list { list-style: none; font-size: 0.95rem; color: #475569; }

.feature-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--govt-green);
  font-weight: bold;
  transition: transform 0.4s ease, color 0.4s ease;
}

.card:hover .feature-list li { transform: translateX(8px); }

.card:hover .feature-list li:nth-child(1) { transition-delay: 0.05s; }
.card:hover .feature-list li:nth-child(2) { transition-delay: 0.1s; }
.card:hover .feature-list li:nth-child(3) { transition-delay: 0.15s; }

.card:hover .feature-list li::before {
  color: var(--govt-saffron);
  transform: scale(1.3);
}

.rescue-card { background-color: #fffbeb; border-top-color: var(--warning); }

.rescue-card::before { background: linear-gradient(90deg, #dc2626, #f97316); }

.rescue-card:hover { box-shadow: 0 20px 40px rgba(0, 32, 91, 0.08), 0 10px 20px rgba(220, 38, 38, 0.15); }

.rescue-card:hover .card-step { background: #dc2626; box-shadow: 0 10px 20px rgba(220, 38, 38, 0.4); }

.rescue-card:hover h3, .rescue-card:hover .feature-list li::before { color: #dc2626; }

.warning-text { color: #b45309; font-weight: 700; margin-bottom: 1rem; font-size: 0.95rem; }

/* REALITIES SECTION */
.realities-section { padding: 80px 0; background-color: hsla(270, 100%, 88%, 0.486); }
.mt-5 { margin-top: 50px; }

.compare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 20px; }

.compare-tile {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 32, 91, 0.08);
  border: 1px solid #cbd5e1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.compare-tile:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 32, 91, 0.18);
  border-color: transparent;
}

.trap-zone, .fix-zone { padding: 25px; transition: background 0.4s ease; }
.trap-zone { background-color: #fef2f2; border-bottom: 2px dashed #f99d9d; flex-grow: 2; }
.fix-zone { background-color: #f0fdf4; position: relative; }

.compare-tile:hover .fix-zone { background-color: #89ffb2; }
.compare-tile:hover .trap-zone { background-color: #fdb0b0; }


.badge-red, .badge-green {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.badge-red { background: #fee2e2; color: #ee0d0d; border: 1px solid #fca5a5; }
.badge-green { background: #dcfce7; color: #10a045; border: 1px solid #86efac; }

.compare-tile h4 { color: var(--govt-navy); font-size: 1.15rem; margin-bottom: 10px; }
.compare-tile p { font-size: 0.95rem; color: #475569; }
.fix-zone p { color: #166534; font-weight: 500; }

.killers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }

.killer-tile {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #cbd5e1;
  border-top: 6px solid #dc2626;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.killer-tile:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(255, 98, 98, 0.46);
}

.killer-tile:nth-child(2) { border-top-color: var(--warning); }
.killer-tile:nth-child(2):hover { box-shadow: 0 15px 35px rgba(217, 119, 6, 0.46); }

.killer-header { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; flex-wrap: wrap; }
.killer-header h3 { color: var(--govt-navy); margin: 0; font-size: 1.3rem; }

.sub-badge { background: #f1f5f9; color: #64748b; font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; }

.pulse-dot { width: 12px; height: 12px; border-radius: 80%; position: relative; }
.pulse-dot.red { background: #dc2626; animation: pulseRed 2s infinite; }
.pulse-dot.orange { background: var(--warning); animation: pulseOrange 2s infinite; }

@keyframes pulseRed {
  0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

@keyframes pulseOrange {
  0% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(217, 119, 6, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
}

.killer-list { list-style: none; padding: 0; margin: 0; }

.killer-list li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  color: #334155;
  line-height: 1.5;
  transition: transform 0.4s ease;
}

.killer-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.killer-tile:nth-child(2) .killer-list li::before { color: var(--warning); }
.killer-tile:hover .killer-list li { transform: translateX(5px); }
.killer-tile:hover .killer-list li::before { transform: translateX(3px); }

/* ACCORDION */
.accordion-container { max-width: 900px; margin: 0 auto; }

.accordion-item {
  margin-bottom: 15px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.accordion-item:hover { box-shadow: 0 10px 20px rgba(0, 32, 91, 0.08); transform: translateY(-2px); }

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.accordion-header[aria-expanded="true"] { background: var(--govt-navy); color: var(--white); }

.icon { font-size: 1.5rem; line-height: 1; transition: transform 0.4s ease; }

.accordion-header[aria-expanded="true"] .icon { transform: rotate(180deg); }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: #f8fafc;
}

.matrix-grid {
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.trap, .tactic, .win {
  padding: 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trap strong, .tactic strong, .win strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trap { background: #fef2f2; border: 1px solid #fecaca; border-left: 5px solid #dc2626; }
.trap strong { color: #dc2626; }
.trap:hover { transform: translateY(-6px); box-shadow: 0 12px 25px rgba(220, 38, 38, 0.2); }

.tactic { background: #fffbeb; border: 1px solid #fde68a; border-left: 5px solid #d97706; }
.tactic strong { color: #d97706; }
.tactic:hover { transform: translateY(-6px); box-shadow: 0 12px 25px rgba(217, 119, 6, 0.2); }

.win { background: #f0fdf4; border: 1px solid #bbf7d0; border-left: 5px solid #16a34a; }
.win strong { color: #16a34a; }
.win:hover { transform: translateY(-6px); box-shadow: 0 12px 25px rgb(22, 163, 74); }

.animate-row { opacity: 0; transform: translateY(20px); transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.accordion-content.active .animate-row { opacity: 1; transform: translateY(0); }

/* WHY US SECTION */
.why-us-section { padding: 60px 0; background: var(--govt-navy); color: var(--white); }
.why-us-section .section-title { color: var(--white); border-bottom-color: var(--govt-saffron); }
.section-subtitle { text-align: center; margin-bottom: 40px; color: #a9bce1; font-size: 1.1rem; }
.ecommerce-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

.e-tile {
  background: var(--bg-offwhite);
  color: var(--text-dark);
  padding: 35px 25px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.e-tile::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--govt-saffron), #ffca7a);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
}

.e-tile:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 15px 35px rgba(245, 130, 32, 0.25); }

.e-tile:hover::before { transform: scaleX(1); transform-origin: left; }

.e-tile-badge {
  position: absolute;
  top: 25px;
  right: -35px;
  background: var(--govt-green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: bold;
  padding: 6px 40px;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.e-tile:hover .e-tile-badge { background: #ffb84d; box-shadow: 0 5px 15px rgba(245, 130, 32, 0.6); }

.e-tile h4 { color: var(--govt-navy); font-size: 1.35rem; font-weight: 800; margin-bottom: 12px; margin-top: 10px; transition: color 0.4s ease; }
.e-tile p { color: #1e293b !important; font-size: 0.95rem; line-height: 1.6; font-weight: 500; }
.e-tile:hover h4 { color: var(--govt-saffron); }

/* SERVICES GRID */
.services-section {
  padding: 80px 0;
  position: relative !important;
  background: linear-gradient(135deg, #f1f5f9 0%, #9ccbfa 10%, #ffffff 100%) !important;
  z-index: 10 !important;
}

.modern-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 30px !important;
  padding-top: 40px !important;
}

.modern-tile {
  background: rgba(122, 122, 122, 0.244) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  border-radius: 16px !important;
  padding: 40px 20px !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  box-shadow: 0 10px 30px rgba(0, 32, 91, 0.05) !important;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.modern-tile::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 5px !important;
  background: linear-gradient(90deg, #f97316, #ffb84d) !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.modern-tile:hover {
  background: rgba(255, 255, 255, 0.65) !important;
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 25px 50px rgba(0, 32, 91, 0.12), 0 15px 35px rgba(245, 130, 32, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
}

.modern-tile:hover::after { transform: scaleX(1) !important; }

.modern-tile:active {
  transform: translateY(-2px) scale(0.97) !important;
  transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  box-shadow: 0 10px 20px rgba(0, 32, 91, 0.05) !important;
}

.tile-icon-wrap {
  width: 85px !important;
  height: 85px !important;
  margin: 0 auto 25px auto !important;
  background: #f8fcff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.modern-tile:hover .tile-icon-wrap {
  background: #ff5959 !important;
  transform: translateY(-10px) !important;
  box-shadow: 15px 15px 25px -5px rgba(255, 41, 102, 0.632) !important;
}

.tile-icon { font-size: 2.5rem !important; transition: all 1s ease !important; }

.modern-tile:hover .tile-icon { transform: scale(1.2) rotate(6deg) !important; }

.modern-tile h4 {
  color: #003aa5 !important;
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  margin-bottom: 15px !important;
  transition: color 0.7s ease !important;
}

.modern-tile:hover h4 { color: #f97316 !important; background-color: #ffff77b7; }

.modern-tile p { color: #313b48 !important; font-size: 0.95rem !important; line-height: 1.6 !important; font-weight: 500; }

/* ==========================================================================
   8. CONTACT FORM (Desktop Base)
   ========================================================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2.5rem;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

.contact-text h2 { margin-bottom: 1rem; }

.contact-info { margin-top: 2rem; list-style: none; }

.contact-info li { margin-bottom: 0.5rem; font-weight: 600; color: var(--primary-navy); }

.contact-form-container {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent-red);
}

fieldset { border: none; }

.form-group { margin-bottom: 1.5rem; width: 100%; box-sizing: border-box; }

label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--text-heading); }

.required { color: var(--accent-red); }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  font-family: var(--font-stack);
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

.file-upload-group {
  background: var(--bg-light);
  padding: 1.5rem;
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-md);
  text-align: center;
}

.btn-submit { width: 100%; font-size: 1.125rem; }

/* ==========================================================================
   FAQ SECTION (Premium Accordion Style)
   ========================================================================== */
.faq-section { background-color: #dcdcdceb; padding: 100px 20px; border-top: 1px solid #ffffff; }

.faq-container { max-width: 850px; margin: 0 auto; }

.faq-eyebrow {
  text-align: center;
  color: var(--govt-saffron);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 700;
}

.faq-eyebrow::before, .faq-eyebrow::after { content: ""; height: 1px; width: 40px; background-color: var(--govt-saffron); opacity: 0.5; }

.faq-title { text-align: center; color: var(--govt-navy); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 15px; font-weight: 800; }

.faq-lede { text-align: center; color: #64748b; margin-bottom: 60px; font-size: 1.1rem; }

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid #e2e8f0; }

.faq-item:first-child { border-top: 1px solid #e2e8f0; }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-weight: 700;
  color: var(--govt-navy);
  font-size: 1.15rem;
  list-style: none;
  transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after { content: "+"; color: var(--govt-saffron); font-size: 1.8rem; font-weight: 300; line-height: 1; transition: transform 0.3s ease, color 0.3s ease; }

.faq-item[open] summary::after { content: "−"; color: var(--govt-navy); }

.faq-item[open] summary { color: var(--govt-saffron); }

.faq-item p {
  padding-bottom: 24px;
  padding-right: 40px;
  color: #475569;
  line-height: 1.7;
  font-size: 1rem;
  animation: faqFadeIn 0.4s ease-out forwards;
}

.faq-link { color: var(--govt-saffron); text-decoration: underline; font-weight: 600; }

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */
.site-footer { background-color: var(--primary-navy); color: #94a3b8; padding: 3rem 1.5rem; border-top: 1px solid #1e293b; }

.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }

.footer-brand h3 { color: var(--text-inverse); margin-bottom: 0.5rem; }

.footer-legal { text-align: right; }

.footer-legal strong { color: var(--text-inverse); }

/* ==========================================================================
   DOCUMENTS REQUIRED SECTION
   ========================================================================== */
.documents-section {
  padding: 80px 40px;
  background-color: #ac86a82a;
  border-top: 1px solid #e2e8f0;
  width: 100% !important;
  grid-column: 1 / -1 !important;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.doc-item {
  background: var(--white);
  border: 3px solid #84bbff;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  box-sizing: border-box;
}

.doc-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 32, 91, 0.08); border-color: var(--govt-saffron); }

.doc-number {
  background: var(--govt-navy);
  color: var(--white);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.doc-item:hover .doc-number { background: var(--govt-saffron); transform: scale(1.1); box-shadow: 0 5px 15px rgba(245, 130, 32, 0.3); }

.doc-text { color: var(--text-main); font-size: 0.95rem; font-weight: 600; line-height: 1.4; }

/* ==========================================================================
   TRANSPARENT PRICING SECTION
   ========================================================================== */
.pricing-section { background-color: #eaf5ff; padding: 100px 20px 40px 20px; }

.pricing-header { text-align: center; margin-bottom: 50px; }

.pricing-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--govt-saffron);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}

.pricing-eyebrow::before, .pricing-eyebrow::after { content: ""; height: 1px; width: 40px; background-color: var(--govt-saffron); opacity: 0.5; }

.pricing-title { color: var(--govt-navy); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 15px; }

.pricing-lede { color: #64748b; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.pricing-table-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 32, 91, 0.08);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent !important;
}

.pricing-table-wrapper:hover { transform: translateY(-1px); box-shadow: 0 15px 30px rgba(0, 32, 91, 0.08); }

.pricing-table-wrapper:active { transform: translateY(2px) scale(99.9%); box-shadow: 0 4px 10px rgba(0, 32, 91, 0.05); transition: all 0.1s ease; }

.premium-pricing-table tbody tr { transition: all 0.3s ease; }

.premium-pricing-table tbody tr:hover { background-color: #fff2e1; box-shadow: inset 4.5px 0 0 var(--govt-saffron); }

.premium-pricing-table tbody tr:active { background-color: #f1f5f9; box-shadow: inset 6px 0 0 var(--govt-saffron); transition: all 0.1s ease; }

.premium-pricing-table { width: 100%; border-collapse: collapse; text-align: left; }

.premium-pricing-table th { background-color: var(--govt-navy); color: #ffca7a; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; padding: 20px 30px; font-weight: 700; }

.premium-pricing-table td { padding: 25px 30px; border-bottom: 1px solid #f1f5f9; vertical-align: middle; }

.premium-pricing-table tr:last-child td { border-bottom: none; }

.row-title { display: block; color: var(--govt-navy);font-family: 'Geneva', 'Verdana', 'sans-serif'; font-weight: 800; font-size: 1.2rem; margin-bottom: 6px; }

.row-desc { display: block; color: #64748b; font-size: 0.9rem; }

.align-middle { color: #475569; font-weight: 500; font-size: 0.95rem; }

.text-right { text-align: right; }

.cost-value { display: block; color: var(--govt-navy); font-weight: 800; font-size: 1.35rem; }

.cost-value.highlight-gold { color: #b48530; }

.cost-label { display: block; color: #94a3b8; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.pricing-guarantee { text-align: center; margin-top: 30px; font-size: 0.95rem; color: #64748b; }

.pricing-guarantee strong { color: var(--govt-saffron); }

/* ==========================================================================
   ANIMATIONS & RESPONSIVE DESIGN
   ========================================================================== */
.input-attention-glow { animation: inputRedPulse 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important; border-color: #dc2626 !important; }

@keyframes inputRedPulse {
  0% { border-color: #dc2626; box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.2); }
  50% { border-color: #ef4444; box-shadow: 0 0 15px 4px rgba(220, 38, 38, 0.4); }
  100% { border-color: #dc2626; box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.btn-pulse-ring { animation: radarPulse 2s infinite; }

@keyframes radarPulse {
  0% { box-shadow: 0 10px 25px rgba(220, 38, 38, 0.25), 0 0 0 0 rgba(220, 38, 38, 0.6); }
  70% { box-shadow: 0 10px 25px rgba(220, 38, 38, 0.25), 0 0 0 15px rgba(220, 38, 38, 0); }
  100% { box-shadow: 0 10px 25px rgba(220, 38, 38, 0.25), 0 0 0 0 rgba(220, 38, 38, 0); }
}










@media (max-width: 992px) {
  .contact-wrapper, .contact-section-wrapper { display: block !important; width: 100% !important; padding-left: 15px !important; padding-right: 15px !important; box-sizing: border-box !important; margin: 0 auto !important; }
  .contact-form-box, .contact-form-container, .form-container, form#auditForm { display: block !important; width: 100% !important; max-width: 100% !important; margin-top: 35px !important; padding: 30px 24px !important; border-radius: 12px !important; box-sizing: border-box !important; }
  .contact-form-box label, .form-group label { white-space: normal !important; word-wrap: break-word !important; display: block !important; line-height: 1.4 !important; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: block !important; font-size: 28px; color: white; cursor: pointer; user-select: none; }
  .main-nav { display: none !important; position: absolute; top: 100%; left: 0; width: 100%; height: auto !important; background-color: #0b1120 !important; padding: 10px 0 !important; margin: 0 !important; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important; border-bottom: 2px solid var(--govt-saffron); z-index: 99999 !important; }
  .main-nav.nav-active { display: flex !important; flex-direction: column; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul li { width: 100%; }
  .main-nav ul li a { display: block; padding: 15px 20px; text-align: center; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
  .btn-nav { padding: 5px 8px !important; font-size: 0.95rem !important; font-weight: 700; }
  .nav-container { padding-left: 20px !important; padding-right: 20px !important; width: 100% !important; box-sizing: border-box !important; }
  .sticky-text span { display: none; }
  .sticky-text strong { font-size: 0.95rem; }
  .btn-pulse { padding: 10px 20px; font-size: 1rem; }
  h1 { font-size: 1.7rem !important; line-height: 1.2 !important; }
  h2 { font-size: 1.1rem !important; line-height: 1.3 !important; }
  .hero-container { padding: 40px 20px !important; text-align: center !important; }
  .hero-actions, .hero-buttons-wrapper { display: flex !important; flex-direction: column !important; gap: 15px !important; width: 100% !important; }
  .btn-primary, .btn-secondary, .hero-buttons-wrapper a, .hero-buttons-wrapper button { width: 100% !important; }
  .modern-grid, .services-grid, .realities-container { display: flex !important; flex-direction: column !important; width: 100% !important; gap: 25px !important; padding-left: 20px !important; padding-right: 20px !important; }
  .cards-grid, .killers-grid, .compare-grid, .realities-container, .modern-grid, .services-grid { gap: 12px !important; padding-left: 10px !important; padding-right: 10px !important; }
  .pipeline-section, .realities-section, .matrix-section, .contact-section, .hero-section { padding-top: 45px !important; padding-bottom: 45px !important; }
  .card, .service-card, .killer-tile, .compare-tile, .modern-tile, .e-tile, .reality-card { padding: 16px 14px !important; border-radius: 10px !important; margin-bottom: 8px !important; }
  .pipeline-section .cards-grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 11px !important; padding-left: 15px !important; padding-right: 15px !important; }
  .pipeline-section .service-card { padding: 15px 10px !important; }
  .pipeline-section .card-step { width: 32px !important; height: 32px !important; font-size: 0.9rem !important; line-height: 32px !important; margin-bottom: 12px !important; }
  .pipeline-section .service-card h3 { font-size: 0.95rem !important; line-height: 1.2 !important; margin-bottom: 10px !important; }
  .pipeline-section .feature-list li, .pipeline-section .warning-text { font-size: 0.75rem !important; line-height: 1.3 !important; }
  .service-card h3, .compare-tile h4, .killer-header h3, .modern-tile h3 { margin-bottom: 8px !important; }
  .feature-list li, .killer-list li { margin-bottom: 8px !important; padding-left: 1.2rem ; }
  .realities-container { gap: 15px !important; padding-left: 15px !important; padding-right: 15px !important; }
  .realities-container .card, .realities-container .reality-card { padding: 15px !important; border-radius: 12px !important; margin-bottom: 0 !important; }
  .realities-container .badge, .realities-container [class*="badge"] { padding: 4px 8px !important; font-size: 0.65rem !important; margin-bottom: 8px !important; display: inline-block !important; }
  .realities-container h3 { font-size: 1.1rem !important; line-height: 1.2 !important; margin-bottom: 6px !important; }
  .realities-container p { font-size: 0.85rem !important; line-height: 1.3 !important; margin-bottom: 8px !important; }
  .compare-tile, .killer-tile, .e-tile { padding: 10px 15px ; border-radius: 12px !important; margin-bottom: 7px !important; width: 100% !important; box-sizing: border-box !important; }
  .compare-tile h4, .killer-header h3, .e-tile h4 { font-size: 1.15rem !important; line-height: 1.3 !important; }
  .compare-tile p, .killer-list li, .e-tile p { font-size: 0.85rem !important; line-height: 1.4 !important; }
  .compliance-section .modern-tile, .compliance-section .card, .modern-tile { padding: 18px 15px !important; border-radius: 12px !important; margin-bottom: 15px !important; }
  .compliance-section h3, .modern-tile h3 { font-size: 1.1rem !important; line-height: 1.3 !important; margin-bottom: 8px !important; }
  .compliance-section p, .modern-tile p { font-size: 0.85rem !important; line-height: 1.4 !important; }
  .compliance-section .ribbon, .compliance-section [class*="ribbon"], .modern-tile .ribbon, .modern-tile [class*="ribbon"] { font-size: 0.65rem !important; padding: 4px 25px !important; }
  .contact-form-box input, .contact-form-box select, .contact-form-box textarea, .form-container input, .form-container select, .form-container textarea, form input, form select, form textarea { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; display: block !important; margin-left: 0 !important; margin-right: 0 !important; }
  .btn-submit, form button[type="submit"] { position: relative !important; display: block !important; width: 100% !important; margin-top: 20px !important; margin-bottom: 10px !important; bottom: auto !important; transform: none !important; }
  #heroUploadBtn { width: 100% !important; box-sizing: border-box !important; padding: 15px !important; flex-direction: column !important; text-align: center !important; border-left: 10px solid #ec0000d2 !important; }
  #heroUploadBtn span { font-size: 0.9rem !important; white-space: normal !important; line-height: 1.4 !important; }
  .footer-wrapper, .footer-content { display: flex !important; flex-direction: column !important; gap: 30px !important; text-align: center !important; padding: 40px 20px !important; }
  .footer-legal { text-align: center !important; }
  .documents-section { padding: 45px 0 !important; }
  .docs-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; padding-left: 12px !important; padding-right: 12px !important; }
  .doc-item { padding: 12px 10px !important; gap: 8px !important; align-items: flex-start !important; }
  .doc-number { width: 26px !important; height: 26px !important; font-size: 1.5rem !important; }
  .doc-text { font-size: 0.85rem !important; line-height: 1.3 !important; word-wrap: break-word !important; }
  .ng-mob { display: flex; flex-direction: column; width: 100%; padding: 20px 0; }
  .ng-mob > a { display: block; padding: 18px 25px; font-size: 1.1rem !important; font-weight: 600; color: #ffffff; border-bottom: 1px solid rgba(255, 255, 255, 0.05); text-align: left !important; }
  .hide-on-mobile { display: none !important; }
  .premium-pricing-table th, .premium-pricing-table td { padding: 18px 15px !important; }
  .row-title { font-size: 0.99rem !important; }
  .cost-value { font-size: 1.15rem !important; }
  .modern-tile.active-focus {
    transform: translateY(-5px)  scale(1.02) !important;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    z-index: 10 ease-in-out !important;
    background: #e0eeff !important;
    backdrop-filter: blur(20px) !important;
  }




}

@media (max-width: 430px) {
  .contact-section-wrapper, .contact-wrapper { padding-left: 5px !important; padding-right: 5px !important; width: 100% !important; }
  .contact-form-box, .contact-form-container, .form-container, form#auditForm { padding: 25px 15px !important; border-radius: 8px !important; margin-top: 25px !important; width: 100% !important; box-sizing: border-box !important; }
  .contact-form-box label, .form-group label { font-size: 0.9rem !important; padding-right: 5px !important; }
  .killers-grid, .compare-grid { display: flex !important; flex-direction: column !important; width: 100% !important; padding-left: 5px !important; padding-right: 5px !important; box-sizing: border-box !important; }
  .killer-tile, .compare-tile { width: 100% !important; min-width: 0 !important; box-sizing: border-box !important; }
  .cards-grid{
    grid-template-columns: repeat (2, 1fr);
    gap: 25px;
    max-width: 100%;
    margin: 0 -8% auto;
    padding-left: 500px;
  }
  .service-card{
    width: 45.5vw;
  }
  /* --- MOBILE HIGHLIGHT FOR PIPELINE CARDS ONLY --- */
  .pipeline-mobile-card {
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  }
  
  /* Triggers when scrolling (if you use your JS active-focus) or when tapped */
  .pipeline-mobile-card.active-focus,
  .pipeline-mobile-card:active {
    transform: translateY(-8px) scale(1.02) !important;
    border: 1.5px solid var(--govt-saffron) !important;
    box-shadow: 0 15px 30px rgba(0, 32, 91, 0.15) !important;
    z-index: 10 !important;
  }
  
  /* Keeps the Warning card looking correct when highlighted */
  .pipeline-mobile-card.rescue-card.active-focus,
  .pipeline-mobile-card.rescue-card:active {
    background: #fff5f5 !important; /* Soft red/warning highlight */
    border: 1.5px solid #dc2626 !important;
  }
  
  /* --- FORCES A SEQUENTIAL HIGHLIGHT FOR SIDE-BY-SIDE CARDS --- */
  
  /* Card 1: Highlights instantly when scrolling hits it */
  .pipeline-mobile-card:nth-child(1).active-focus {
      transition-delay: 0s !important;
  }
  
  /* Card 2: Waits 0.4 seconds so it highlights AFTER Card 1 */
  .pipeline-mobile-card:nth-child(2).active-focus {
      transition-delay: 0.5s !important;
  }
  
  /* Card 3: Highlights instantly when you scroll down to row 2 */
  .pipeline-mobile-card:nth-child(3).active-focus {
      transition-delay: 0.5s !important;
  }
  
  /* Card 4: Waits 0.4 seconds so it highlights AFTER Card 3 */
  .pipeline-mobile-card:nth-child(4).active-focus {
      transition-delay: 0.5s !important;
  }
  







}