@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --navy: #1d1d49;
  --navy-grad-1: #15153a;
  --navy-grad-2: #2e2e70;
  --navy-mid: #252560;
  --orange: #df6719;
  --orange-light: #f07a30;
  --orange-glow: rgba(223, 103, 25, 0.4);
  --orange-subtle: rgba(223, 103, 25, 0.08);
  --orange-border: rgba(223, 103, 25, 0.25);
  --white: #ffffff;
  --off-white: #f7f8fc;
  --off-white-2: #f0f2f8;
  --light-gray: #e8eaf2;
  --mid-gray: #d0d4e8;
  --text-body: #4a4a75;
  --text-muted: #7a7aaa;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-bg-strong: rgba(255, 255, 255, 0.09);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-strong: rgba(255, 255, 255, 0.18);
  --card-shadow: 0 4px 20px rgba(29, 29, 73, 0.06);
  --card-shadow-hover: 0 20px 50px rgba(29, 29, 73, 0.14);
  --orange-shadow: 0 10px 30px rgba(223, 103, 25, 0.22);
  --orange-shadow-lg: 0 18px 48px rgba(223, 103, 25, 0.35);
  --transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.22s ease;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--off-white);
  color: var(--text-body);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   CONTAINER
═══════════════════════════════════════════ */
.container-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}
@media (max-width: 1024px) { .container-inner { padding: 0 32px; } }
@media (max-width: 768px)  { .container-inner { padding: 0 20px; } }

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 200px 0 140px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* background video fills hero */
.hero-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* overlay for text contrast — original value */
.hero-video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  pointer-events: none;
}

/* hero bg abstract shapes */
.hero-bg-shapes {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

.glow-orb-1 {
  position: absolute; top: 10%; left: -5%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
  border-radius: 50%; filter: blur(80px); opacity: 0.35;
}

.glow-orb-2 {
  position: absolute; bottom: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(46,46,112,0.8) 0%, transparent 60%);
  border-radius: 50%; filter: blur(80px); opacity: 0.7;
}

/* hero nav */
.hero-nav {
  position: absolute; top: 40px; left: 0; width: 100%; z-index: 10;
}

/* inside hero stacking */
.hero .hero-bg-shapes,
.hero .container-inner {
  position: relative;
  z-index: 2;
}

/* hero grid (2-col for pages that use it) */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* eyebrow tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(223, 103, 25, 0.12);
  color: var(--orange-light);
  padding: 9px 20px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid rgba(223, 103, 25, 0.35);
  position: relative;
  overflow: hidden;
}

.hero-tag::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmer-tag 3s ease-in-out infinite;
}

@keyframes shimmer-tag {
  0% { left: -100%; }
  60%, 100% { left: 200%; }
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 62px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  text-align: center;
}

.hero-title .accent {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(100deg, var(--orange-light) 0%, var(--orange-light) 50%, var(--orange-light) 100%);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
  margin-bottom: 44px;
  font-weight: 500;
  text-align: center;
  /* max-width: 860px; */
}

/* CTA button */
.cta-btn {
  background: linear-gradient(135deg, var(--orange) 0%, #c85610 100%);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 17px 44px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: var(--orange-shadow);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.55s ease;
}

.cta-btn:hover::before { left: 200%; }

.cta-btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
  box-shadow: var(--orange-shadow-lg);
  color: var(--white);
}

/* mobile/desktop btn visibility helpers */
.mobile-btn { display: none; }
@media (max-width: 767px) {
  .desktop-btn { display: none; }
  .mobile-btn  { display: flex; }
}

/* hero visual */
.hero-visual {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* abstract bar graphic */
.abstract-graphic {
  width: 100%;
  max-width: 500px;
  height: 500px;
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-strong);
  border-radius: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.ag-row { display: flex; gap: 15px; }
.ag-bar {
  height: 12px; border-radius: 12px;
  background: rgba(255,255,255,0.1); flex: 1;
  position: relative; overflow: hidden;
}
.ag-bar::after {
  content: ''; position: absolute; left: -100%; top: 0;
  height: 100%; width: 50%;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: sweep 3.2s infinite ease-in-out;
}
.ag-bar:first-child { flex: 2; }
.ag-bar:nth-child(2) { flex: 3; }
.ag-bar.accent { background: rgba(223, 103, 25, 0.2); }
.ag-bar.accent::after { background: linear-gradient(90deg, transparent, var(--white), transparent); animation-delay: 1.5s; }

@keyframes sweep { 0% { left: -100%; } 100% { left: 200%; } }

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { align-items: center; }
  .hero-title { font-size: 46px; }
  .abstract-graphic { display: none; }
  .hero { padding: 160px 0 90px; min-height: auto; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 34px; letter-spacing: -0.02em; }
  .hero-desc  { font-size: 15px; }
  .hero { padding: 140px 0 70px; }
}

/* ═══════════════════════════════════════════
   SECTION SHARED HEADERS
═══════════════════════════════════════════ */
.sec-header {
  text-align: center;
  margin-bottom: 72px;
  margin-left: auto;
  margin-right: auto;
}

.sec-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.sec-eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 28px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.sec-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.sec-title.light { color: var(--white); }

/* ═══════════════════════════════════════════
   SECTION: THE PROBLEM (q-cards)
═══════════════════════════════════════════ */
.sec-problem {
  padding: 110px 0;
  background: var(--off-white);
  position: relative;
}

.problem-intro {
  font-size: 19px;
  color: var(--text-body);
  text-align: center;
  margin: 0 auto 56px;
  line-height: 1.75;
  max-width: 820px;
}

.questions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.q-card {
  background: var(--white);
  border-radius: 22px;
  padding: 44px 32px 36px;
  text-align: center;
  border: 1px solid var(--light-gray);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* top accent: subtle by default, full on hover */
.q-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0.35);
  transform-origin: left;
  opacity: 0.35;
  transition: transform 0.4s ease, opacity 0.4s ease;
  border-radius: 2px 2px 0 0;
}

/* bottom glow */
.q-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 50%; transform: translateX(-50%);
  width: 60%; height: 60px;
  background: var(--orange-glow);
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.q-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--orange-border);
}

.q-card:hover::before { transform: scaleX(1); opacity: 1; }
.q-card:hover::after  { opacity: 0.4; }

.q-icon {
  width: 66px; height: 66px;
  margin: 0 auto 28px;
  background: var(--orange-subtle);
  color: var(--orange);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  transition: var(--transition);
  border: 1px solid var(--orange-border);
}

.q-card:hover .q-icon {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(223, 103, 25, 0.4);
  transform: scale(1.08) rotate(-3deg);
}

.q-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   SECTION: SITUATIONS (sticky sidebar layout)
═══════════════════════════════════════════ */
.sec-situations {
  padding: 110px 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
}

.sit-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 70px;
  align-items: start;
}

.sit-left { position: sticky; top: 110px; }

.sit-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sit-item {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-left: 4px solid transparent;
  border-radius: 20px;
  padding: 32px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* animated left bar fill */
/* .sit-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 0%;
  background: linear-gradient(180deg, var(--orange), var(--orange-light));
  transition: height 0.4s ease;
  border-radius: 0 0 0 20px;
}

.sit-item:hover::before { height: 100%; } */

.sit-item:hover {
  background: var(--white);
  border-color: rgba(223, 103, 25, 0.3);
  transform: translateX(8px);
  box-shadow: var(--card-shadow-hover);
}

.sit-item:hover p,
.sit-item:hover ul li,
.sit-item:hover .sit-desc { color: var(--navy) }

.sit-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.sit-item:hover .sit-title { color: var(--navy); }

/* .sit-title::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  display: block;
  transition: transform 0.3s ease;
}
.sit-item:hover .sit-title::before { transform: scale(1.5); } */

/* Hide default bullet if icon present */
.sit-item i.bx ~ .sit-title::before { display: none; }
.sit-item i.bx { transition: color 0.3s ease; }
.sit-item:hover i.bx { color: var(--orange-light) !important; }

.sit-desc {
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--text-body);
  transition: color 0.3s ease;
}

@media (max-width: 992px) {
  .sit-layout { grid-template-columns: 1fr; gap: 40px; }
  .sit-left { position: relative; top: 0; margin-bottom: 10px; }
  .sit-item:hover { transform: translateY(-4px) translateX(0); }
}

/* ═══════════════════════════════════════════
   SECTION: READINESS MODEL / DIMENSIONS
═══════════════════════════════════════════ */
.sec-model {
  padding: 130px 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.model-bg {
  position: absolute; top: -50%; left: -20%;
  width: 150%; height: 150%;
  background: radial-gradient(circle at 80% 50%, rgba(223, 103, 25, 0.07) 0%, transparent 55%),
              radial-gradient(circle at 10% 80%, rgba(46,46,112,0.5) 0%, transparent 50%);
  pointer-events: none;
}

.dimensions-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 65px;
}

.dim-row {
  display: flex;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 38px 44px;
  align-items: center;
  gap: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* left sweep fill on hover */
.dim-row::before {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 0%; height: 100%;
  background: linear-gradient(90deg, rgba(223, 103, 25, 0.12), transparent);
  transition: width 0.5s ease;
  z-index: 0;
}

/* left accent bar grows on hover — single border only */
.dim-row::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 0%;
  background: linear-gradient(180deg, var(--orange), transparent);
  transition: height 0.5s ease;
  border-radius: 0 2px 2px 0;
}

.dim-row:hover {
  border-color: rgba(223, 103, 25, 0.35);
  transform: translateX(8px);
  background: var(--glass-bg-strong);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.dim-row:hover::before { width: 100%; }
.dim-row:hover::after  { height: 100%; }

.dim-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 88px;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute;
  right: 40px; top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  transition: color 0.4s ease;
}

.dim-row:hover .dim-num { color: rgba(255,255,255,0.07); }

.dim-content {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  gap: 36px; flex: 1;
}

.dim-icon {
  width: 76px; height: 76px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  transition: var(--transition);
}

.dim-icon svg, .dim-icon i { width: 38px; height: 38px; font-size: 38px; }

.dim-row:hover .dim-icon {
  background: rgba(223, 103, 25, 0.18);
  border-color: rgba(223, 103, 25, 0.4);
  box-shadow: 0 0 28px rgba(223, 103, 25, 0.3);
  transform: scale(1.06);
}

.dim-text-wrap { flex: 1; }

.dim-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--white); margin-bottom: 10px;
}

.dim-desc {
  font-size: 15.5px;
  color: rgba(255,255,255,0.68);
  line-height: 1.68;
  max-width: 640px;
}

.dim-row:hover .dim-desc { color: rgba(255,255,255,0.85); }

@media (max-width: 900px) {
  .dim-content { flex-direction: column; text-align: center; gap: 18px; }
  .dim-num { display: none; }
  .dim-row { padding: 28px 28px; }
  .dim-row:hover { transform: translateY(-4px) translateX(0); }
}

/* ═══════════════════════════════════════════
   SECTION: METHODOLOGY TIMELINE
═══════════════════════════════════════════ */
.sec-method {
  padding: 110px 0;
  background: var(--off-white);
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 65px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 39px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--mid-gray));
  z-index: 0;
  border-radius: 2px;
}

.tl-step {
  position: relative; z-index: 1;
  flex: 1; text-align: center;
  padding: 0 16px;
}

.tl-node {
  width: 80px; height: 80px;
  margin: 0 auto 28px;
  background: var(--white);
  border: 2.5px solid var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--orange);
  box-shadow: 0 8px 24px rgba(223, 103, 25, 0.18);
  transition: var(--transition);
}

.tl-step:hover .tl-node {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.12);
  box-shadow: 0 12px 32px rgba(223, 103, 25, 0.4);
}

.tl-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.tl-desc {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .timeline { flex-direction: column; gap: 36px; }
  .timeline::before { display: none; }
  .tl-step { display: flex; text-align: left; align-items: flex-start; gap: 22px; padding: 0; }
  .tl-node { margin: 0; flex-shrink: 0; }
}
@media (max-width: 600px) {
  .tl-step { flex-direction: column; text-align: center; align-items: center; gap: 14px; }
}

/* ═══════════════════════════════════════════
   SECTION: OUTCOMES & DELIVERABLES (split panels)
═══════════════════════════════════════════ */
.sec-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.panel {
  padding: 110px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-dark {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.panel-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.panel-video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  pointer-events: none;
}

/* Only bring the content container above video — NOT the video/overlay themselves */
.panel-dark .container-inner { position: relative; z-index: 2; }
.panel-dark > h2,
.panel-dark > p,
.panel-dark > ul,
.panel-dark > div:not(.panel-bg-video):not(.panel-video-overlay) { position: relative; z-index: 2; }

.panel-light {
  background: var(--white);
  color: var(--text-body);
  position: relative;
}
/* subtle gradient tint on light panel */
.panel-light::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(247,248,252,1) 0%, rgba(240,242,248,0.5) 100%);
  pointer-events: none;
}

.panel-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px; font-weight: 800;
  margin-bottom: 32px;
  line-height: 1.2;
  position: relative;
}
.panel-dark .panel-title { color: var(--white); }
.panel-light .panel-title { color: var(--navy); }

/* out-list (checkmark outcomes) */
.out-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }

.out-item {
  display: flex; align-items: flex-start; gap: 18px;
  transition: var(--transition);
}

.out-item:hover { transform: translateX(5px); }

.out-mark {
  background: linear-gradient(135deg, rgba(223, 103, 25, 0.25), rgba(223, 103, 25, 0.1));
  color: var(--orange);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid rgba(223, 103, 25, 0.3);
  transition: var(--transition);
}

.out-item:hover .out-mark {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(223, 103, 25, 0.4);
}

.out-text {
  font-size: 17px; font-weight: 600;
  line-height: 1.55;
  padding-top: 4px;
}
.panel-dark .out-text { color: rgba(255,255,255,0.92); }
.panel-light .out-text { color: var(--navy); }

/* dlv-list (deliverable items) */
.dlv-list { display: flex; flex-direction: column; gap: 16px; }

.dlv-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-left: 3px solid rgba(223, 103, 25, 0.25);
  padding: 24px 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition);
}

.dlv-item:hover {
  border-left-color: var(--orange);
  border-color: var(--orange-border);
  box-shadow: var(--card-shadow-hover);
  transform: scale(1.02);
  background: var(--white);
}

.dlv-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 800;
  color: var(--navy);
  display: flex; align-items: center; gap: 10px;
}

.dlv-item:hover .dlv-title { color: var(--orange); }

.dlv-desc { font-size: 14.5px; color: var(--text-body); line-height: 1.65; }

@media (max-width: 900px) {
  .sec-outcomes { grid-template-columns: 1fr !important; }
  .panel { padding: 70px 6%; }
}

@media (max-width: 600px) {
  .sec-outcomes { grid-template-columns: 1fr !important; }
  .panel { padding: 50px 5%; }
  .panel-title { font-size: 28px; margin-bottom: 24px; }
}

/* ═══════════════════════════════════════════
   CTA FULL WIDTH BANNER
═══════════════════════════════════════════ */
.sec-cta-wrap {
  background: var(--white);
  padding: 80px 0;
}

.cta-banner {
  background: linear-gradient(135deg, var(--orange), #c75610);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 20px 40px rgba(223, 103, 25, 0.25);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  top: -100px; right: -50px;
}

/* large decorative circle top-right */
.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 65%);
  border-radius: 50%;
  top: -120px; right: -80px;
  z-index: 0;
}

.cb-title {
  font-size: 40px; font-weight: 800;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}

.cb-sub {
  font-size: 18px;
  opacity: 0.9;
  margin: 0 auto 35px;
  max-width: 600px;
  position: relative; z-index: 1;
  color: var(--white);
}

.cb-btn {
  background: var(--navy);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  transition: var(--transition);
  letter-spacing: 0.05em;
  position: relative; z-index: 1;
}

.cb-btn:hover {
  background: var(--navy-grad-1);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(29, 29, 73, 0.4);
  color: var(--white);
}

@media (max-width: 600px) {
  .cta-banner { padding: 40px 20px; }
  .cb-title { font-size: 32px; }
}

/* ═══════════════════════════════════════════
   WISDOM AI CAPABILITIES GRID
═══════════════════════════════════════════ */
.sec-capabilities {
  padding: 110px 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.cap-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 22px;
  padding: 40px 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

/* top gradient accent */
.cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.cap-card:hover::before { transform: scaleX(1); }

.cap-card:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(223, 103, 25, 0.25);
}

.cap-icon {
  width: 62px; height: 62px;
  background: var(--orange-subtle);
  color: var(--orange);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  transition: var(--transition);
  border: 1px solid var(--orange-border);
}

.cap-card:hover .cap-icon {
  background: rgba(223, 103, 25, 0.25);
  border-color: rgba(223, 103, 25, 0.5);
  box-shadow: 0 0 20px rgba(223, 103, 25, 0.3);
}

.cap-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 21px; font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  transition: color 0.3s ease;
}

.cap-card:hover .cap-title { color: var(--white); }

.cap-desc {
  font-size: 15px;
  line-height: 1.72;
  color: var(--text-body);
  transition: color 0.3s ease;
}
.cap-card:hover .cap-desc { color: rgba(255,255,255,0.78); }

.cap-list {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cap-list li {
  font-size: 14.5px;
  color: var(--text-body);
  position: relative;
  padding-left: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cap-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cap-card:hover .cap-list li { color: rgba(255,255,255,0.72); }
.cap-card:hover .cap-list li::before { transform: scale(1.3); }

/* cap-card icon used as bx icon */
.cap-card i.bx { transition: color 0.3s ease, transform 0.3s ease; }
.cap-card:hover i.bx { color: var(--orange-light) !important;  }

/* ═══════════════════════════════════════════
   WISDOM OUT LIST (full-width dark panel)
═══════════════════════════════════════════ */
.wisdom-out-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wisdom-out-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 28px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 18px;
}

.wisdom-out-item:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(223, 103, 25, 0.4);
  transform: translateX(6px);
  box-shadow: -3px 0 0 var(--orange), 0 10px 30px rgba(0,0,0,0.2);
}

/* ═══════════════════════════════════════════
   HUBSPOT MODAL
═══════════════════════════════════════════ */
.hs-modal-overlay {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(15, 15, 50, 0.82);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: all 0.4s ease;
}

.hs-modal-overlay.active { opacity: 1; pointer-events: auto; }

.hs-modal-content {
  background: var(--white);
  width: 100%; max-width: 520px;
  border-radius: 28px;
  padding: 48px;
  position: relative;
  transform: translateY(24px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.hs-modal-overlay.active .hs-modal-content {
  transform: translateY(0) scale(1);
}

.hs-modal-close {
  position: absolute; top: 18px; right: 18px;
  background: var(--off-white);
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--navy);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.hs-modal-close:hover {
  background: var(--orange);
  color: var(--white);
  transform: rotate(90deg);
}

/* ═══════════════════════════════════════════
   FOOTER CTA FIX
═══════════════════════════════════════════ */
#cta .container {
  background: var(--secondary);
  padding: 2rem;
  border-radius: 12px;
}

/* ═══════════════════════════════════════════
   FOOTER (p2-foot)
═══════════════════════════════════════════ */
.p2-foot {
  background: var(--navy);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.p2-foot .container-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.foot-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
@media (max-width: 600px) {
  .p2-foot .container-inner { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════
   WISDOM HERO (variant)
═══════════════════════════════════════════ */
.wisdom-hero {
  padding: 200px 0 150px;
  min-height: 85vh;
}

@media (max-width: 992px) { .wisdom-hero { padding: 160px 0 100px; min-height: auto; } }
@media (max-width: 600px) { .wisdom-hero { padding: 140px 0 80px; } }

/* ═══════════════════════════════════════════
   HIGHLIGHT / BLOCKQUOTE CALLOUT
═══════════════════════════════════════════ */
.highlight-callout {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--orange-subtle);
  border-left: 5px solid var(--orange);
  border-radius: 0 16px 16px 0;
  position: relative;
}

/* Used inline in HTML via style attribute usually, but ensure the pattern looks right */
[style*="border-left: 4px solid var(--orange)"] {
  transition: var(--transition);
}
[style*="border-left: 4px solid var(--orange)"]:hover {
  background: rgba(223, 103, 25, 0.12) !important;
  box-shadow: var(--card-shadow);
}

/* ═══════════════════════════════════════════
   UTILITY: ORANGE BADGE / PILL
═══════════════════════════════════════════ */
.orange-pill {
  display: inline-block;
  background: rgba(223, 103, 25, 0.15);
  border: 1px solid rgba(223, 103, 25, 0.3);
  padding: 14px 30px;
  border-radius: 30px;
  color: var(--orange-light);
  font-size: 17px;
  font-weight: 700;
  transition: var(--transition);
}
.orange-pill:hover {
  background: rgba(223, 103, 25, 0.25);
  border-color: rgba(223, 103, 25, 0.5);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   RESPONSIVE GLOBAL SAFETY
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .sec-header { margin-bottom: 48px; }
  .sec-title { font-size: 30px; }
  .sec-problem,
  .sec-situations,
  .sec-method,
  .sec-capabilities { padding: 72px 0; }
  .sec-model { padding: 80px 0; }
  .sec-cta-wrap { padding: 60px 0; }
  .problem-intro { font-size: 16px; }
}

@media (max-width: 480px) {
  .sec-title { font-size: 26px; }
  .panel { padding: 60px 5%; }
  .dlv-item { padding: 18px 20px; }
  .sit-item { padding: 24px 22px; }
  .dim-row { padding: 24px 20px; gap: 20px; }
  .q-card { padding: 32px 22px 28px; }
  .cap-card { padding: 30px 24px; }
  .panel-title { font-size: 28px; }
  .cb-title { font-size: 26px; }
  .cta-banner { padding: 44px 22px; }
  .cta-btn { padding: 14px 30px; font-size: 13px; }
}

/* ═══════════════════════════════════════════
   ANIMATIONS (keyframes)
═══════════════════════════════════════════ */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(223, 103, 25, 0); }
  50%       { box-shadow: 0 0 0 12px rgba(223, 103, 25, 0.15); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Apply fade-up to key visible components (works with scroll-animation.js) */
.q-card,
.sit-item,
.dim-row,
.dlv-item,
.cap-card,
.tl-step,
.out-item { animation: fade-up 0.6s both; }

/* stagger delays for grid children */
.q-card:nth-child(2)    { animation-delay: 0.08s; }
.q-card:nth-child(3)    { animation-delay: 0.16s; }
.q-card:nth-child(4)    { animation-delay: 0.24s; }
.sit-item:nth-child(2)  { animation-delay: 0.1s;  }
.sit-item:nth-child(3)  { animation-delay: 0.2s;  }
.sit-item:nth-child(4)  { animation-delay: 0.3s;  }
.sit-item:nth-child(5)  { animation-delay: 0.4s;  }
.dim-row:nth-child(2)   { animation-delay: 0.1s;  }
.dim-row:nth-child(3)   { animation-delay: 0.2s;  }
.dim-row:nth-child(4)   { animation-delay: 0.3s;  }
.dim-row:nth-child(5)   { animation-delay: 0.4s;  }
.cap-card:nth-child(2)  { animation-delay: 0.1s;  }
.cap-card:nth-child(3)  { animation-delay: 0.2s;  }
.cap-card:nth-child(4)  { animation-delay: 0.3s;  }
.cap-card:nth-child(5)  { animation-delay: 0.4s;  }
.cap-card:nth-child(6)  { animation-delay: 0.5s;  }
.tl-step:nth-child(2)   { animation-delay: 0.12s; }
.tl-step:nth-child(3)   { animation-delay: 0.24s; }
.tl-step:nth-child(4)   { animation-delay: 0.36s; }
.dlv-item:nth-child(2)  { animation-delay: 0.1s;  }
.dlv-item:nth-child(3)  { animation-delay: 0.2s;  }
.dlv-item:nth-child(4)  { animation-delay: 0.3s;  }
.dlv-item:nth-child(5)  { animation-delay: 0.4s;  }

/* Reduce motion: respect user preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
