


/* ---------- shared utility patterns (section scoped copies) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1E6FFF;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #1E6FFF;
  display: inline-block;
}

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
  background: linear-gradient(180deg, #F3F6FB 0%, #FFFFFF 70%);
  overflow: hidden;
  position: relative;
}
.hero-section .hero-inner {
  padding-top: 40px;
  padding-bottom: 20px;
}
.hero-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #E1E8F2;
  color: #0B3D91;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: 0 6px 16px rgba(11,30,57,0.06);
}
.hero-section .hero-badge svg { flex-shrink: 0; }
.hero-section .hero-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #0B1E39;
  margin-bottom: 20px;
}
.hero-section .hero-title .accent { color: #1E6FFF; }
.hero-section .hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #4A5872;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-section .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.hero-section .hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding-top: 22px;
  border-top: 1px solid #E1E8F2;
}
.hero-section .hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: #23324D;
}
.hero-section .hero-highlight-item svg { color: #0FBFA5; flex-shrink: 0; }

/* --- Hero visual: rotating HL7/FHIR wheel (signature element) --- */
.hero-section .hero-visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  margin: 40px auto 0;
}

@media (min-width: 992px) {
  .hero-section .hero-visual {
    max-width: 520px;
    margin: -10px 0 0 auto;
  }
}
.hero-section .wheel-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.hero-section .wheel-rotator {
  transform-origin: 200px 200px;
  animation: wheel-spin 42s linear infinite;
}
.hero-section .hero-visual:hover .wheel-rotator,
.hero-section .hero-visual:hover .label-counter {
  animation-play-state: paused;
}
.hero-section .wedge {
  cursor: pointer;
  transform-origin: 200px 200px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.hero-section .wedge:hover {
  transform: scale(1.14);
}
.hero-section .wedge:hover .wedge-path {
  filter: drop-shadow(0 18px 30px rgba(11,30,57,0.45));
}
.hero-section .wedge:hover .wedge-path {
  filter: drop-shadow(0 18px 26px rgba(11,30,57,0.4));
}
.hero-section .wedge-path {
  stroke: #F3F6FB;
  stroke-width: 3;
  transition: filter .35s ease;
}
.hero-section .wedge--0 .wedge-path { fill: #FFC24B; }
.hero-section .wedge--1 .wedge-path { fill: #E4572E; }
.hero-section .wedge--2 .wedge-path { fill: #0FBFA5; }
.hero-section .wedge--3 .wedge-path { fill: #1E6FFF; }
.hero-section .wedge--4 .wedge-path { fill: #0B3D91; }
.hero-section .wedge--5 .wedge-path { fill: #6C63FF; }

.hero-section .label-counter {
  animation: wheel-spin-reverse 42s linear infinite;
  pointer-events: none;
}
.hero-section .label-text {
  font-size: 10px;
  font-weight: 700;
  fill: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 5px rgba(11,30,57,0.45);
}

.hero-section .wheel-core-ring {
  fill: #0B1E39;
  filter: drop-shadow(0 20px 40px rgba(11,30,57,0.35));
}

.hero-section .wheel-core-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36%;
  text-align: center;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  pointer-events: none;
}

.hero-section .hv-stat-card {
  position: absolute;
  bottom: -8px;
  left: -14px;
  background: #FFFFFF;
  border: 1px solid #E1E8F2;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 16px 30px rgba(11,30,57,0.14);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-section .hv-stat-card strong { display: block; font-size: 16px; color: #0B1E39; line-height: 1.1; }
.hero-section .hv-stat-card span { font-size: 11px; color: #5B6B85; }

@keyframes wheel-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes wheel-spin-reverse { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

@media (prefers-reduced-motion: reduce) {
  .hero-section .wheel-rotator,
  .hero-section .label-counter { animation: none; }
}

@keyframes hv-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes hv-spin-rev { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes hv-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (prefers-reduced-motion: reduce) {
  .hero-section .hv-ring--spin,
  .hero-section .hv-ring--spin-rev,
  .hero-section .hv-node { animation: none; }
}

@media (max-width: 767px) {
  .hero-section .hero-title { font-size: 32px; }
  .hero-section .hero-desc { font-size: 15.5px; }
}

/* =========================================================
   STATS / PROOF BAR
   ========================================================= */
.stats-section {
  padding: 30px 0;
  background: #0B1E39;
}
.stats-section .stat-item {
  text-align: center;
  padding: 14px 10px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stats-section .stat-item:last-child { border-right: none; }
.stats-section .stat-number {
  font-size: 34px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stats-section .stat-label {
  font-size: 13px;
  color: #9FB2D6;
  font-weight: 500;
}
@media (max-width: 767px) {
  .stats-section .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stats-section .stat-item:last-child { border-bottom: none; }
}

/* =========================================================
   WHY PROJECTS FAIL
   ========================================================= */
.fail-section { padding: 30px 0; background: #FFFFFF; }
.fail-section .fail-intro { font-size: 16px; line-height: 1.75; color: #4A5872; max-width: 780px; margin-bottom: 30px; }
.fail-section .fail-card {
  background: #F3F6FB;
  border: 1px solid #E1E8F2;
  border-radius: 14px;
  padding: 22px 20px;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.fail-section .fail-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(11,30,57,0.1); }
.fail-section .fail-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(30,111,255,0.1); color: #1E6FFF;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.fail-section .fail-card p { font-size: 14.5px; color: #33415C; line-height: 1.6; margin: 0; }
.fail-section .fail-close {
  background: #0B1E39; border-radius: 14px; padding: 26px 28px; color: #FFFFFF; margin-top: 10px;
}
.fail-section .fail-close p { color: #C8D5EC; margin: 0; font-size: 15px; line-height: 1.7; }
.fail-section .fail-close strong { color: #FFFFFF; }

/* =========================================================
   FEATURED ANSWER / WHAT IS HL7
   ========================================================= */
.answer-section { padding: 30px 0; background: #F3F6FB; }
.answer-section .answer-card {
  background: #FFFFFF;
  border: 1px solid #E1E8F2;
  border-left: 4px solid #1E6FFF;
  border-radius: 12px;
  padding: 26px 28px;
  margin-bottom: 22px;
}
.answer-section .answer-card .answer-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #1E6FFF; margin-bottom: 10px; display: block;
}
.answer-section .answer-card p { font-size: 15.5px; line-height: 1.75; color: #23324D; margin-bottom: 12px; }
.answer-section .answer-card p:last-child { margin-bottom: 0; }
.answer-section .answer-note { font-size: 15px; color: #4A5872; line-height: 1.75; max-width: 820px; }

/* =========================================================
   SERVICE CARDS (4)
   ========================================================= */
.services-section { padding: 30px 0; background: #FFFFFF; }
.services-section .service-card {
  background: #FFFFFF;
  border: 1px solid #E1E8F2;
  border-radius: 16px;
  padding: 26px 22px;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.services-section .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(11,30,57,0.12);
  border-color: #1E6FFF;
}
.services-section .service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(145deg, #0B1E39, #0B3D91);
  color: #FFFFFF; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.services-section .service-card h3 { font-size: 18px; font-weight: 700; color: #0B1E39; margin-bottom: 10px; }
.services-section .service-card p { font-size: 14.5px; color: #4A5872; line-height: 1.65; margin: 0; }

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.compare-section { padding: 30px 0; background: #F3F6FB; }
.compare-section .compare-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid #E1E8F2;
  background: #FFFFFF;
}
.compare-section table { width: 100%; margin: 0; min-width: 640px; }
.compare-section thead th {
  background: #0B1E39; color: #FFFFFF; font-size: 13px; font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase; padding: 16px 18px; border: none;
}
.compare-section tbody td { padding: 16px 18px; font-size: 14.5px; color: #23324D; border-top: 1px solid #E1E8F2; vertical-align: middle; }
.compare-section tbody tr:nth-child(even) { background: #F8FAFD; }
.compare-section .compare-standard { font-weight: 700; color: #0B3D91; }
.compare-section .compare-cta { text-align: center; margin-top: 26px; }
.compare-section .compare-cta p { font-size: 15px; color: #4A5872; margin-bottom: 16px; }

/* =========================================================
   FEATURE TRIO (Data mapping / testing / messaging)
   ========================================================= */
.feature-section { padding: 30px 0; background: #FFFFFF; }
.feature-section .feature-card {
  padding: 24px 22px;
  border-radius: 16px;
  height: 100%;
  background: #F3F6FB;
  border: 1px solid #E1E8F2;
}
.feature-section .feature-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: #FFFFFF; color: #1E6FFF; border: 1px solid #E1E8F2;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature-section .feature-card h3 { font-size: 17px; font-weight: 700; color: #0B1E39; margin-bottom: 10px; }
.feature-section .feature-card p { font-size: 14px; color: #4A5872; line-height: 1.65; margin: 0; }

/* =========================================================
   COMPLIANCE CHECKLIST
   ========================================================= */
.compliance-section { padding: 30px 0; background: #0B1E39; }
.compliance-section .compliance-heading { color: #FFFFFF; }
.compliance-section .compliance-heading .eyebrow { color: #6FA0FF; }
.compliance-section .compliance-heading .eyebrow::before { background: #6FA0FF; }
.compliance-section .compliance-intro { color: #AFC0DE; font-size: 15px; line-height: 1.75; max-width: 760px; margin-bottom: 30px; }
.compliance-section .compliance-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 16px 18px; height: 100%; margin-bottom: 20px;
}
.compliance-section .compliance-item svg { color: #0FBFA5; flex-shrink: 0; margin-top: 2px; }
.compliance-section .compliance-item strong { display: block; color: #FFFFFF; font-size: 14.5px; margin-bottom: 4px; }
.compliance-section .compliance-item span { color: #AFC0DE; font-size: 13.5px; line-height: 1.55; }
.compliance-section .compliance-footnote { color: #7C8EAF; font-size: 13.5px; margin-top: 6px; }

/* =========================================================
   IMPLEMENTATION SERVICES (6 cards)
   ========================================================= */
.implementation-section { padding: 30px 0; background: #FFFFFF; }
.implementation-section .impl-card {
  border: 1px solid #E1E8F2; border-radius: 16px; padding: 24px 20px; height: 100%;
  transition: box-shadow .25s ease, transform .25s ease;
}
.implementation-section .impl-card:hover { box-shadow: 0 18px 34px rgba(11,30,57,0.1); transform: translateY(-4px); }
.implementation-section .impl-icon {
  width: 48px; height: 48px; border-radius: 12px; background: rgba(15,191,165,0.12); color: #0FBFA5;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.implementation-section .impl-card h3 { font-size: 17px; font-weight: 700; color: #0B1E39; margin-bottom: 10px; }
.implementation-section .impl-card p { font-size: 14px; color: #4A5872; line-height: 1.6; margin: 0; }

/* =========================================================
   SYSTEMS GRID (6 cards, w/ image)
   ========================================================= */
.systems-section { padding: 30px 0; background: #F3F6FB; }
.systems-section .system-card {
  background: #FFFFFF; border: 1px solid #E1E8F2; border-radius: 16px; overflow: hidden; height: 100%;
  transition: box-shadow .25s ease, transform .25s ease;
}
.systems-section .system-card:hover { box-shadow: 0 20px 36px rgba(11,30,57,0.12); transform: translateY(-4px); }
.systems-section .system-img { width: 100%; height: 150px; object-fit: cover; display: block; background: #E1E8F2; }
.systems-section .system-body { padding: 20px; }
.systems-section .system-icon {
  width: 40px; height: 40px; border-radius: 10px; background: #0B1E39; color: #FFFFFF;
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px; margin-top: -42px; position: relative; z-index: 2;
  box-shadow: 0 8px 18px rgba(11,30,57,0.25);
}
.systems-section .system-body h3 { font-size: 16.5px; font-weight: 700; color: #0B1E39; margin-bottom: 8px; }
.systems-section .system-body p { font-size: 13.5px; color: #4A5872; line-height: 1.6; margin: 0; }

/* =========================================================
   ARCHITECTURE FLOW DIAGRAM (signature element, reused)
   ========================================================= */
.architecture-section { padding: 30px 0; background: #FFFFFF; }
.architecture-section .arch-intro { font-size: 15.5px; color: #4A5872; line-height: 1.75; max-width: 780px; margin: 0 auto 10px; }
.architecture-section .arch-flow-title { font-size: 19px; font-weight: 700; color: #0B1E39; margin: 0 auto; max-width: 780px; }
.architecture-section .arch-flow { position: relative; margin: 34px auto; padding-left: 0; list-style: none; max-width: 780px; }
.architecture-section .arch-flow::before {
  content: "";
  position: absolute;
  left: 27px; top: 10px; bottom: 10px; width: 2px;
  background: repeating-linear-gradient(180deg, #1E6FFF 0, #1E6FFF 8px, transparent 8px, transparent 16px);
}
.architecture-section .arch-step {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 0 0 30px 0;
}
.architecture-section .arch-step:last-child { padding-bottom: 0; }
.architecture-section .arch-num {
  flex-shrink: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(145deg, #0B1E39, #0B3D91);
  color: #FFFFFF; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; z-index: 1;
  box-shadow: 0 10px 22px rgba(11,30,57,0.22);
}
.head-center{
    padding-bottom: 1rem;
    text-align: center!important;
    margin: auto 0!important;
}
.badge-center{
    display: block!important;
    width: fit-content!important;
    margin: 0 auto 20px!important;
}
.architecture-section .arch-content { padding-top: 8px; }
.architecture-section .arch-content h3 { font-size: 16.5px; font-weight: 700; color: #0B1E39; margin-bottom: 6px; }
.architecture-section .arch-content p { font-size: 14px; color: #4A5872; line-height: 1.65; margin: 0; max-width: 680px; }
.architecture-section .arch-benefits { background: #F3F6FB; border: 1px solid #E1E8F2; border-radius: 16px; padding: 26px 26px; margin: 10px auto 0; max-width: 780px; }
.architecture-section .arch-benefits h3 { font-size: 17px; font-weight: 700; color: #0B1E39; margin-bottom: 6px; }
.architecture-section .arch-benefits .arch-benefits-sub { font-size: 14px; color: #4A5872; margin-bottom: 18px; }
.architecture-section .arch-benefit-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; color: #23324D; }
.architecture-section .arch-benefit-item svg { color: #0FBFA5; flex-shrink: 0; margin-top: 2px; }

/* =========================================================
   METHODOLOGY TIMELINE (5 steps)
   ========================================================= */
.methodology-section { padding: 30px 0; background: #0B1E39; }
.methodology-section .method-heading { color: #FFFFFF; }
.methodology-section .method-heading .eyebrow { color: #6FA0FF; }
.methodology-section .method-heading .eyebrow::before { background: #6FA0FF; }
.methodology-section .method-intro { color: #AFC0DE; font-size: 15px; max-width: 760px; margin-bottom: 34px; line-height: 1.7; }
.methodology-section .method-track { display: flex; overflow-x: auto; gap: 0; padding-bottom: 10px; }
.methodology-section .method-step {
  flex: 1 1 220px; min-width: 220px; position: relative; padding: 0 18px 0 0;
}
.methodology-section .method-step::after {
  content: ""; position: absolute; top: 26px; right: 0; width: 18px; height: 2px; background: rgba(255,255,255,0.2);
}
.methodology-section .method-step:last-child::after { display: none; }
.methodology-section .method-index {
  width: 52px; height: 52px; border-radius: 50%; border: 2px solid #1E6FFF; color: #FFFFFF;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 17px; margin-bottom: 16px;
}
.methodology-section .method-step h3 { color: #FFFFFF; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.methodology-section .method-step p { color: #AFC0DE; font-size: 13.5px; line-height: 1.6; }

/* =========================================================
   INDUSTRIES (6 cards)
   ========================================================= */
.industries-section { padding: 30px 0; background: #FFFFFF; }
.industries-section .industry-card {
  position: relative; border-radius: 16px; overflow: hidden; height: 230px;
  display: flex; align-items: flex-end;
}
.industries-section .industry-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.industries-section .industry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,30,57,0) 30%, rgba(11,30,57,0.92) 100%);
}
.industries-section .industry-content { position: relative; padding: 20px; color: #FFFFFF; }
.industries-section .industry-content h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.industries-section .industry-content p { font-size: 12.5px; color: #D6E0F2; line-height: 1.5; margin: 0; }

/* =========================================================
   SECURITY & GOVERNANCE (8 items)
   ========================================================= */
.security-section { padding: 30px 0; background: #F3F6FB; }
.security-section .security-item {
  background: #FFFFFF; border: 1px solid #E1E8F2; border-radius: 14px; padding: 20px 18px; height: 100%; margin-bottom: 20px;
}
.security-section .security-icon {
  width: 42px; height: 42px; border-radius: 10px; background: rgba(30,111,255,0.1); color: #1E6FFF;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.security-section .security-item strong { display: block; font-size: 14.5px; color: #0B1E39; margin-bottom: 6px; }
.security-section .security-item span { font-size: 13px; color: #4A5872; line-height: 1.55; }

/* =========================================================
   TECH STACK
   ========================================================= */
.stack-section { padding: 30px 0; background: #FFFFFF; }
.stack-section .stack-col { background: #F3F6FB; border: 1px solid #E1E8F2; border-radius: 14px; padding: 20px 20px; height: 100%; margin-bottom: 20px; }
.stack-section .stack-col h3 { font-size: 14.5px; font-weight: 700; color: #0B3D91; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; }
.stack-section .stack-list { list-style: none; padding: 0; margin: 0; }
.stack-section .stack-list li {
  display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: #23324D; padding: 6px 0;
}
.stack-section .stack-list li svg { color: #1E6FFF; flex-shrink: 0; }

/* =========================================================
   TESTIMONIALS SLIDER
   ========================================================= */
.testimonial-section { padding: 30px 0; background: #0B1E39; }
.testimonial-section .testimonial-heading { color: #FFFFFF; }
.testimonial-section .testimonial-heading .eyebrow { color: #6FA0FF; }
.testimonial-section .testimonial-heading .eyebrow::before { background: #6FA0FF; }
.testimonial-section .testimonial-track-wrap { position: relative; overflow: hidden; padding: 10px 4px 20px; }
.testimonial-section .testimonial-track {
  display: flex; gap: 20px; transition: transform .5s ease; cursor: grab;
}
.testimonial-section .testimonial-track:active { cursor: grabbing; }
.testimonial-section .testimonial-card {
  flex: 0 0 340px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 24px 22px;
}
.testimonial-section .testimonial-quote-icon { color: #1E6FFF; margin-bottom: 12px; }
.testimonial-section .testimonial-card p.testimonial-text { color: #D6E0F2; font-size: 14px; line-height: 1.7; margin-bottom: 18px; min-height: 150px; }
.testimonial-section .testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-section .testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-section .testimonial-person strong { display: block; color: #FFFFFF; font-size: 13.5px; }
.testimonial-section .testimonial-person span { color: #8FA6CC; font-size: 12px; }
.testimonial-section .testimonial-stars { color: #FFC24B; font-size: 12px; margin-top: 6px; }
.testimonial-section .testimonial-controls { display: flex; justify-content: center; gap: 12px; margin-top: 8px; }
.testimonial-section .testimonial-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
  background: transparent; color: #FFFFFF; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s ease;
}
.testimonial-section .testimonial-btn:hover { background: rgba(255,255,255,0.1); }

/* =========================================================
   WHY CHOOSE (4 blocks)
   ========================================================= */
.whychoose-section { padding: 30px 0; background: #FFFFFF; }
.whychoose-section .whychoose-block { display: flex; gap: 18px; margin-bottom: 24px; }
.whychoose-section .whychoose-icon {
  width: 50px; height: 50px; border-radius: 12px; background: #F3F6FB; border: 1px solid #E1E8F2; color: #1E6FFF;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.whychoose-section .whychoose-block h3 { font-size: 16.5px; font-weight: 700; color: #0B1E39; margin-bottom: 8px; }
.whychoose-section .whychoose-block p { font-size: 14px; color: #4A5872; line-height: 1.65; margin: 0; }
.whychoose-section .whychoose-cta {
  background: linear-gradient(135deg, #0B1E39, #0B3D91); border-radius: 18px; padding: 34px 30px; text-align: center; color: #FFFFFF; margin-top: 10px;
}
.whychoose-section .whychoose-cta h3 { font-size: 20px; font-weight: 700; margin-bottom: 18px; }
.whychoose-section .whychoose-cta-text { max-width: 640px; margin: 0 auto 22px; color: #C8D5EC; font-size: 14.5px; line-height: 1.7; }
.whychoose-section .whychoose-cta-subhead { margin-bottom: 20px; font-weight: 700; color: #FFFFFF; }
.whychoose-section .whychoose-cta-note { max-width: 600px; margin: 0 auto 22px; color: #C8D5EC; font-size: 14px; }

/* =========================================================
   ENGAGEMENT MODELS TABLE
   ========================================================= */
.engagement-section { padding: 30px 0; background: #F3F6FB; }
.engagement-section .engagement-table-wrap { border-radius: 14px; overflow-x: auto; border: 1px solid #E1E8F2; background: #FFFFFF; }
.engagement-section table { width: 100%; min-width: 620px; margin: 0; }
.engagement-section thead th { background: #0B1E39; color: #FFFFFF; font-size: 13px; padding: 16px 18px; border: none; text-transform: uppercase; letter-spacing: 0.03em; }
.engagement-section tbody td { padding: 16px 18px; font-size: 14.5px; color: #23324D; border-top: 1px solid #E1E8F2; }
.engagement-section .engagement-type { font-weight: 700; color: #0B3D91; }
.engagement-section .engagement-cta-box {
  margin-top: 30px; background: #FFFFFF; border: 1px solid #E1E8F2; border-radius: 16px; padding: 28px; text-align: center;
}
.engagement-section .engagement-cta-box h3 { font-size: 19px; font-weight: 700; color: #0B1E39; margin-bottom: 10px; }
.engagement-section .engagement-cta-box p { font-size: 14.5px; color: #4A5872; margin-bottom: 20px; max-width: 620px; margin-left: auto; margin-right: auto; }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-section { padding: 30px 0; background: #FFFFFF; }
.faq-section .faq-item { border: 1px solid #E1E8F2; border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.faq-section .faq-question {
  width: 100%; text-align: left; background: #FFFFFF; border: none; padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.faq-section .faq-question h3 { font-size: 15.5px; font-weight: 700; color: #0B1E39; margin: 0; padding-right: 16px; }
.faq-section .faq-question .faq-icon { flex-shrink: 0; color: #1E6FFF; transition: transform .25s ease; }
.faq-section .faq-item.is-open .faq-question .faq-icon { transform: rotate(45deg); }
.faq-section .faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; background: #F8FAFD; }
.faq-section .faq-answer p { padding: 0 20px 18px; font-size: 14px; color: #4A5872; line-height: 1.7; margin: 0; }
.faq-section .faq-item.is-open .faq-answer { max-height: 400px; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.finalcta-section { padding: 30px 0; }
.finalcta-section .finalcta-box {
  background: linear-gradient(135deg, #0B1E39 0%, #0B3D91 100%);
  border-radius: 22px; padding: 46px 34px; text-align: center; color: #FFFFFF; position: relative; overflow: hidden;
}
.finalcta-section .finalcta-box::before {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,111,255,0.35), transparent 70%);
  top: -140px; right: -80px;
}
.finalcta-section .finalcta-box h2 { position: relative; }
.finalcta-section .finalcta-box p { position: relative; color: #C8D5EC; font-size: 15.5px; max-width: 560px; margin: 0 auto 26px; line-height: 1.7; }
.finalcta-section .finalcta-btns { position: relative; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* =========================================================
   SHARED HEADINGS / BUTTONS (section scoped duplicates on purpose)
   ========================================================= */
.hero-section h1,
.fail-section h2, .answer-section h2, .services-section h2, .compare-section h2,
.feature-section h2, .compliance-section h2, .implementation-section h2,
.systems-section h2, .architecture-section h2, .methodology-section h2,
.industries-section h2, .security-section h2, .stack-section h2,
.testimonial-section h2, .whychoose-section h2, .engagement-section h2,
.faq-section h2, .finalcta-section h2 {
  font-size: 30px; font-weight: 800; color: #0B1E39; letter-spacing: -0.01em; margin-bottom: 14px;
}
.methodology-section h2, .compliance-section h2, .testimonial-section h2, .finalcta-section h2 { color: #FFFFFF; }
@media (max-width: 767px) {
  .fail-section h2, .answer-section h2, .services-section h2, .compare-section h2,
  .feature-section h2, .compliance-section h2, .implementation-section h2,
  .systems-section h2, .architecture-section h2, .methodology-section h2,
  .industries-section h2, .security-section h2, .stack-section h2,
  .testimonial-section h2, .whychoose-section h2, .engagement-section h2,
  .faq-section h2, .finalcta-section h2 { font-size: 25px; }
}

.btn-primary-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1E6FFF; color: #FFFFFF; font-weight: 700; font-size: 14.5px;
  padding: 13px 26px; border-radius: 10px; border: 1px solid #1E6FFF;
  cursor: pointer; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 10px 22px rgba(30,111,255,0.28);
}
.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(30,111,255,0.36); background: #1259D6; color: #FFFFFF; text-decoration: none; }
.btn-secondary-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FFFFFF; color: #0B1E39; font-weight: 700; font-size: 14.5px;
  padding: 13px 26px; border-radius: 10px; border: 1px solid #C9D6EC;
  cursor: pointer; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn-secondary-custom:hover { transform: translateY(-2px); border-color: #1E6FFF; color: #0B1E39; text-decoration: none; }
.btn-outline-light-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #FFFFFF; font-weight: 700; font-size: 14.5px;
  padding: 13px 26px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer; text-decoration: none; transition: background .2s ease, transform .2s ease;
}
.btn-outline-light-custom:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); color: #FFFFFF; text-decoration: none; }

/* fade/slide-up reveal animation, lightweight, IO-driven */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}