/* 
  CREO — Industries Page Styles
  Adapted from user design keeping CREO tokens.
*/

:root {
  --cream: var(--creo-light, #EFE5CF);
  --navy: var(--creo-dark, #0B173D);
  --orange: #FF751F; /* Specific page accent */
  --cream-dark: #D9C9A8;
  --cream-mid: #E2D4B8;
  --cream-light: #F7F1E4;
  
  --well: #5FB88A; 
  --hosp: #E8A030; 
  --re: #6B9DD4; 
  --ret: #D4607A;
}

/* ── REVEALS ── */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.rv.in { opacity: 1; transform: none; }

/* ════════════════════════════════════════
   S1 — HERO
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    90deg, transparent, transparent 79px,
    rgba(255,255,255,.018) 79px, rgba(255,255,255,.018) 80px
  );
  pointer-events: none;
}

.hero-orb {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  top: -280px; right: -180px;
  background: radial-gradient(circle, rgba(255,117,31,.18) 0%, transparent 60%);
  animation: orbP 7s ease-in-out infinite; pointer-events: none;
}

@keyframes orbP { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }

.hero-orb2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, rgba(95,184,138,.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--orange); z-index: 4; }

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding-top: 100px; padding-bottom: 80px;
}

.h-ey {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,117,31,.12); border: 1px solid rgba(255,117,31,.28);
  border-radius: 99px; padding: 5px 14px; width: fit-content;
  font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 28px;
}
.h-ey i { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: blink 2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.hero-h {
  font-size: clamp(46px, 8vw, 108px);
  font-weight: 800; line-height: .92;
  letter-spacing: -.04em; color: var(--creo-white);
  margin-bottom: 24px; max-width: 800px;
}
.hero-h .outline {
  display: block; color: transparent;
  -webkit-text-stroke: 2px rgba(255,117,31,.5);
}
.hero-h em { font-style: normal; color: var(--orange); }

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(239,229,207,.52); max-width: 500px;
  line-height: 1.7; margin-bottom: 52px;
}

.hero-ind-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 52px; flex-wrap: wrap;
}
.hero-ind-pill {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 18px; border-radius: 99px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  font-size: 12px; font-weight: 700; letter-spacing: .05em;
  color: rgba(255,255,255,.6);
  cursor: pointer; text-decoration: none;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.hero-ind-pill:hover { background: rgba(255,255,255,.1); color: var(--creo-white); transform: translateY(-2px); }
.hero-ind-pill .hip-dot { width: 8px; height: 8px; border-radius: 50%; }

.quiz-trigger {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 12px;
  background: var(--orange); color: var(--creo-white);
  font-family: inherit; font-size: 13px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  border: none; cursor: pointer;
  box-shadow: 0 8px 28px rgba(255,117,31,.4);
  transition: transform .2s, box-shadow .2s;
}
.quiz-trigger:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(255,117,31,.5); }
.quiz-trigger svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero-strip {
  position: absolute; bottom: 4px; left: 0; right: 0; z-index: 3;
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
}
.hs-item {
  flex: 1; padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column; gap: 4px;
}
.hs-item:last-child { border-right: none; }
.hs-num { font-size: clamp(18px, 2.5vw, 28px); font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1; }
.hs-lbl { font-size: 10.5px; font-weight: 600; color: rgba(255,255,255,.3); letter-spacing: .06em; }

/* ════════════════════════════════════════
   QUIZ MODAL OVERLAY
════════════════════════════════════════ */
.quiz-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(11,23,61,.88);
  backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.quiz-modal.open { opacity: 1; pointer-events: all; }

.quiz-box {
  background: var(--cream); border-radius: 24px;
  padding: 48px; max-width: 600px; width: 90%;
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  max-height: 90vh; overflow-y: auto;
}
.quiz-modal.open .quiz-box { transform: none; }

.quiz-close {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--cream-dark); background: transparent;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.quiz-close:hover { background: var(--cream-mid); }
.quiz-close svg { width: 13px; height: 13px; stroke: rgba(11,23,61,.6); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.q-step { display: none; }
.q-step.active { display: block; }
.q-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.q-title { font-size: clamp(20px, 3vw, 28px); font-weight: 800; line-height: 1.2; margin-bottom: 28px; color: var(--navy); }

.q-opts { display: flex; flex-direction: column; gap: 10px; }
.q-opt {
  padding: 16px 20px; border-radius: 14px;
  border: 1.5px solid var(--cream-dark); background: var(--cream-light);
  cursor: pointer; display: flex; align-items: center; gap: 14px;
  transition: border-color .2s, background .2s, transform .15s;
  font-size: 14px; font-weight: 600; color: var(--navy);
}
.q-opt:hover { border-color: var(--orange); background: #fff; transform: translateX(4px); }
.q-opt.selected { border-color: var(--orange); background: rgba(255,117,31,.06); }
.q-opt-ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(11,23,61,.07);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 18px;
}
.q-opt.selected .q-opt-ico { background: rgba(255,117,31,.14); }

.q-result { text-align: center; padding: 20px 0; }
.qr-ind {
  display: inline-block; padding: 6px 18px; border-radius: 99px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.qr-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-bottom: 12px; color: var(--navy); }
.qr-desc { font-size: 14px; color: rgba(11,23,61,.55); line-height: 1.65; margin-bottom: 28px; }
.qr-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px;
  background: var(--navy); color: var(--cream);
  font-family: inherit; font-size: 12px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  border: none; cursor: pointer; margin: 4px;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.qr-cta.primary { background: var(--orange); color: #fff; box-shadow: 0 6px 20px rgba(255,117,31,.3); }
.qr-cta:hover { transform: translateY(-1px); }
.qr-cta svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.q-dots { display: flex; gap: 6px; margin-bottom: 24px; }
.q-dot { width: 28px; height: 4px; border-radius: 99px; background: var(--cream-dark); transition: background .3s; }
.q-dot.done { background: var(--orange); }
.q-dot.cur { background: var(--navy); }

/* ════════════════════════════════════════
   S2 — ENFOQUE
════════════════════════════════════════ */
.approach { padding: 100px 0; background: var(--cream); position: relative; overflow: hidden; }
.approach::after {
  content: 'IA'; position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-size: 280px; font-weight: 800; letter-spacing: -.06em;
  color: rgba(11,23,61,.04); user-select: none; pointer-events: none;
  line-height: 1;
}

.approach-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
}
.sec-ey {
  display: inline-flex; align-items: center; gap: 7px;
  border-radius: 99px; padding: 5px 14px;
  font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 20px;
}
.ey-or { background: rgba(255,117,31,.1); border: 1px solid rgba(255,117,31,.22); color: var(--orange); }
.ey-nv { background: rgba(11,23,61,.07); border: 1px solid rgba(11,23,61,.12); color: rgba(11,23,61,.55); }
.sec-h { font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; line-height: 1.1; margin-bottom: 14px; }
.sec-h em { font-style: normal; color: var(--orange); }
.sec-d { font-size: 15px; color: rgba(11,23,61,.55); line-height: 1.72; margin-bottom: 0; }

.ia-diagram { position: relative; width: 100%; height: 320px; }
.ia-diagram svg { width: 100%; height: 100%; }

/* ════════════════════════════════════════
   S3 — LISTADO + FILTER
════════════════════════════════════════ */
.ind-list-section { padding: 0 0 100px; background: var(--cream);}

.filter-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 44px; flex-wrap: wrap;
}
.filter-label { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(11,23,61,.38); margin-right: 4px; }
.f-chip {
  padding: 8px 16px; border-radius: 99px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .05em;
  border: 1.5px solid var(--cream-dark); background: var(--cream-light);
  color: rgba(11,23,61,.5); cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.f-chip:hover { border-color: rgba(11,23,61,.3); color: var(--navy); }
.f-chip.on { border-color: var(--navy); background: var(--navy); color: #fff; }
.f-chip.on.ai-f { border-color: #5B8DEF; background: #5B8DEF; }
.f-chip.on.mk-f { border-color: #3DCB8A; background: #3DCB8A; }
.f-chip.on.ds-f { border-color: #F0A500; background: #F0A500; color: var(--navy); }

.ind-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ind-card-g {
  border-radius: 22px; overflow: hidden;
  position: relative; cursor: pointer;
  border: 1.5px solid var(--cream-dark);
  background: var(--cream-light);
  transition: border-color .3s, transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
  min-height: 280px;
  display: flex; flex-direction: column;
}
.ind-card-g:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(11,23,61,.14);
  border-color: rgba(11,23,61,.2);
}

.ind-card-g .icg-bg {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .4s; pointer-events: none;
  border-radius: 21px;
}
.ind-card-g:hover .icg-bg { opacity: 1; }
.ind-card-g.w-card .icg-bg { background: linear-gradient(135deg, rgba(95,184,138,.08) 0%, transparent 60%); }
.ind-card-g.h-card .icg-bg { background: linear-gradient(135deg, rgba(232,160,48,.08) 0%, transparent 60%); }
.ind-card-g.r-card .icg-bg { background: linear-gradient(135deg, rgba(107,157,212,.08) 0%, transparent 60%); }
.ind-card-g.rt-card .icg-bg { background: linear-gradient(135deg, rgba(212,96,122,.08) 0%, transparent 60%); }

.icg-top {
  padding: 32px 32px 0;
  display: flex; align-items: flex-start; gap: 14px;
  position: relative; z-index: 1;
}
.icg-ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .3s;
}
.w-card  .icg-ico { background: rgba(95,184,138,.12); }
.h-card  .icg-ico { background: rgba(232,160,48,.12); }
.r-card  .icg-ico { background: rgba(107,157,212,.12); }
.rt-card .icg-ico { background: rgba(212,96,122,.12); }
.ind-card-g:hover.w-card  .icg-ico { background: rgba(95,184,138,.22); }
.ind-card-g:hover.h-card  .icg-ico { background: rgba(232,160,48,.22); }
.ind-card-g:hover.r-card  .icg-ico { background: rgba(107,157,212,.22); }
.ind-card-g:hover.rt-card .icg-ico { background: rgba(212,96,122,.22); }
.icg-ico svg { width: 24px; height: 24px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.w-card  .icg-ico svg { stroke: var(--well); }
.h-card  .icg-ico svg { stroke: var(--hosp); }
.r-card  .icg-ico svg { stroke: var(--re); }
.rt-card .icg-ico svg { stroke: var(--ret); }

.icg-head { flex: 1; }
.icg-name { font-size: clamp(18px, 2.2vw, 24px); font-weight: 800; letter-spacing: -.015em; color: var(--navy); }
.icg-tag { font-size: 12px; color: rgba(11,23,61,.42); margin-top: 3px; font-weight: 500; }

.icg-body {
  padding: 20px 32px 0;
  position: relative; z-index: 1; flex: 1;
}
.icg-tagline {
  font-size: 13.5px; font-weight: 500; color: rgba(11,23,61,.6);
  line-height: 1.6; margin-bottom: 16px;
}

.icg-preview {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.22,1,.36,1), opacity .3s;
  opacity: 0;
}
.ind-card-g:hover .icg-preview { max-height: 160px; opacity: 1; }

.icg-prev-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.prev-chip {
  padding: 4px 10px; border-radius: 99px;
  font-size: 10.5px; font-weight: 700;
  background: rgba(11,23,61,.06); color: rgba(11,23,61,.55);
}

.icg-foot {
  padding: 16px 32px 28px;
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
}
.icg-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 8px;
  border: none; font-family: inherit; cursor: pointer;
  text-decoration: none; transition: transform .2s, opacity .2s;
}
.w-card  .icg-cta { background: rgba(95,184,138,.15); color: #2D8A5E; }
.h-card  .icg-cta { background: rgba(232,160,48,.15); color: #A06800; }
.r-card  .icg-cta { background: rgba(107,157,212,.15); color: #2A5F9E; }
.rt-card .icg-cta { background: rgba(212,96,122,.15); color: #A02848; }
.icg-cta:hover { transform: translateX(3px); }
.icg-cta svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.icg-num { font-size: 11px; font-weight: 700; color: rgba(11,23,61,.2); letter-spacing: .06em; }

/* ════════════════════════════════════════
   S4 — INDIVIDUAL INDUSTRY PANELS
════════════════════════════════════════ */
.ind-panels { padding: 0 0 100px; background: var(--cream);}

.ind-panel { display: none; animation: panelIn .5s cubic-bezier(.22,1,.36,1); }
.ind-panel.active { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.panel-header {
  border-radius: 24px;
  padding: 60px 56px;
  margin-bottom: 3px;
  position: relative; overflow: hidden;
}
.w-panel { background: linear-gradient(135deg, #0a2518, #0d3320); }
.h-panel { background: linear-gradient(135deg, #2a1800, #3e2600); }
.r-panel { background: linear-gradient(135deg, #0a1628, #0f2244); }
.rt-panel { background: linear-gradient(135deg, #280a14, #3d1020); }

.ph-orb {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  right: -150px; top: -150px; pointer-events: none;
}
.w-panel  .ph-orb { background: radial-gradient(circle, rgba(95,184,138,.15), transparent 65%); }
.h-panel  .ph-orb { background: radial-gradient(circle, rgba(232,160,48,.15), transparent 65%); }
.r-panel  .ph-orb { background: radial-gradient(circle, rgba(107,157,212,.15), transparent 65%); }
.rt-panel .ph-orb { background: radial-gradient(circle, rgba(212,96,122,.15), transparent 65%); }

.ph-inner { position: relative; z-index: 1; }
.ph-ey {
  display: inline-flex; align-items: center; gap: 7px;
  border-radius: 99px; padding: 5px 14px;
  font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 20px;
}
.w-panel  .ph-ey { background: rgba(95,184,138,.15); color: var(--well); }
.h-panel  .ph-ey { background: rgba(232,160,48,.15); color: var(--hosp); }
.r-panel  .ph-ey { background: rgba(107,157,212,.15); color: var(--re); }
.rt-panel .ph-ey { background: rgba(212,96,122,.15); color: var(--ret); }

.ph-title { font-size: clamp(30px, 5vw, 56px); font-weight: 800; line-height: 1.05; letter-spacing: -.03em; color: #fff; margin-bottom: 12px; }
.ph-sub { font-size: 15px; color: rgba(255,255,255,.5); max-width: 520px; line-height: 1.65; margin-bottom: 32px; }

.ph-stat-row { display: flex; gap: 32px; flex-wrap: wrap; }
.ph-stat { display: flex; flex-direction: column; gap: 2px; }
.phs-num { font-size: clamp(24px, 3vw, 38px); font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.w-panel  .phs-num { color: var(--well); }
.h-panel  .phs-num { color: var(--hosp); }
.r-panel  .phs-num { color: var(--re); }
.rt-panel .phs-num { color: var(--ret); }
.phs-lbl { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.35); letter-spacing: .05em; }

.panel-body {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 3px; margin-bottom: 3px;
}
.pb-col {
  background: var(--cream-light); border: 1px solid var(--cream-dark);
  padding: 32px 28px;
}
.pb-col:first-child { border-radius: 0 0 0 20px; }
.pb-col:last-child { border-radius: 0 0 20px 0; }

.pb-label {
  font-size: 9.5px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; margin-bottom: 14px;
  display: flex; align-items: center; gap: 7px;
}
.pb-label .pbl-dot { width: 6px; height: 6px; border-radius: 50%; }

.pb-list { list-style: none; display: flex; flex-direction: column; gap: 9px; padding:0;}
.pb-list li {
  font-size: 13.5px; font-weight: 500; color: var(--navy);
  display: flex; align-items: flex-start; gap: 9px; line-height: 1.45;
}
.pb-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  flex-shrink: 0; margin-top: 5px; background: var(--dot-c, var(--navy));
}

.panel-bottom {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 3px;
}
.pb-image-wrap {
  background: var(--cream-light); border: 1px solid var(--cream-dark);
  padding: 32px; border-radius: 0 0 0 20px;
}
.pb-image-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(11,23,61,.38); margin-bottom: 20px; }
.panel-industry-image { width: 100%; border-radius: 16px; overflow: hidden; aspect-ratio: 16 / 9; background: var(--creo-mid); }
.panel-industry-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.panel-industry-image:hover img { transform: scale(1.02); }

.pb-crosslinks {
  background: var(--navy);
  padding: 32px; border-radius: 0 0 20px 0;
  position: relative; overflow: hidden;
}
.pb-crosslinks::before {
  content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  right: -80px; bottom: -80px;
  background: radial-gradient(circle, rgba(255,117,31,.08), transparent 65%);
  pointer-events: none;
}
.cl-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.cl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cl-card {
  padding: 16px; border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer; text-decoration: none;
  transition: background .2s, transform .2s; display: block;
}
.cl-card:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.cl-type { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 5px; }
.cl-name { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; }
.cl-card.ai-cl  .cl-type { color: #5B8DEF; }
.cl-card.mk-cl  .cl-type { color: #3DCB8A; }
.cl-card.ds-cl  .cl-type { color: #F0A500; }
.cl-card.cs-cl  .cl-type { color: var(--orange); }

.panel-cta-row {
  padding: 28px 0 0;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  border-top: 1px solid var(--cream-dark); margin-top: 28px;
}
.btn-p {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px;
  font-family: inherit; font-size: 12px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; border: none;
  cursor: pointer; text-decoration: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.btn-p.pr { color: #fff; box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.btn-p.gh { background: rgba(11,23,61,.07); border: 1.5px solid var(--cream-dark); color: rgba(11,23,61,.6); }
.btn-p.gh:hover { border-color: var(--navy); color: var(--navy); }
.btn-p.pr:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.btn-p svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ════════════════════════════════════════
   S6 — GLOBAL RESULTS
════════════════════════════════════════ */
.results { background: var(--navy); padding: 100px 0; position: relative; overflow: hidden; }
.results::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,117,31,.1) 1px, transparent 1px);
  background-size: 30px 30px; pointer-events: none;
}
.results::after {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  right: -200px; top: -200px;
  background: radial-gradient(circle, rgba(255,117,31,.1), transparent 60%);
  pointer-events: none;
}
.res-inner { position: relative; z-index: 1; }

.res-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 60px;
}
.res-head .sec-h { color: #fff; }
.res-head .sec-h em { color: var(--orange); }
.res-sub { font-size: 14.5px; color: rgba(239,229,207,.48); line-height: 1.7; }

.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-bottom: 40px;
}
.sr-card {
  padding: 40px 28px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  position: relative; overflow: hidden; transition: background .25s;
}
.sr-card:first-child { border-radius: 16px 0 0 16px; }
.sr-card:last-child { border-radius: 0 16px 16px 0; }
.sr-card:hover { background: rgba(255,255,255,.07); }
.sr-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .32s; }
.sr-card:hover::before { transform: scaleX(1); }
.sr-num { font-size: clamp(38px, 4.5vw, 58px); font-weight: 800; color: var(--orange); line-height: 1; letter-spacing: -.03em; margin-bottom: 8px; }
.sr-u { font-size: .5em; font-weight: 300; opacity: .55; }
.sr-lbl { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.35; margin-bottom: 6px; }
.sr-src { font-size: 9.5px; color: rgba(255,255,255,.22); letter-spacing: .05em; text-transform: uppercase; }

.testimonial {
  background: rgba(255,117,31,.07); border: 1px solid rgba(255,117,31,.18);
  border-radius: 18px; padding: 36px 40px;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 24px; align-items: center;
}
.t-q { font-size: 52px; font-weight: 800; color: var(--orange); line-height: 1; opacity: .45; flex-shrink: 0; }
.t-text { font-size: clamp(14px, 1.8vw, 19px); font-weight: 600; color: #fff; line-height: 1.5; font-style: italic; }
.t-author { text-align: right; flex-shrink: 0; }
.t-name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.t-role { font-size: 11px; color: rgba(255,255,255,.35); }

/* ════════════════════════════════════════
   S7 — FINAL CTA
════════════════════════════════════════ */
.final-cta { padding: 120px 0; background: var(--cream); position: relative; overflow: hidden; }
.final-cta::before {
  content: 'INDUSTRIES';
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-size: clamp(60px, 11vw, 150px); font-weight: 800; letter-spacing: -.04em;
  color: rgba(11,23,61,.035); white-space: nowrap; user-select: none; pointer-events: none;
}
.cta-center { text-align: center; position: relative; z-index: 1; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1.5px solid var(--cream-dark); border-radius: 99px;
  padding: 6px 16px; font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(11,23,61,.45); margin-bottom: 28px;
}
.cta-h { font-size: clamp(34px, 6vw, 72px); font-weight: 800; line-height: 1.05; letter-spacing: -.03em; margin-bottom: 16px; color:var(--navy); }
.cta-h em { font-style: normal; color: var(--orange); }
.cta-d { font-size: 15.5px; color: rgba(11,23,61,.5); max-width: 520px; margin: 0 auto 20px; line-height: 1.7; }

.cta-extra {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 99px;
  background: rgba(255,117,31,.08); border: 1.5px solid rgba(255,117,31,.2);
  font-size: 12.5px; font-weight: 700; color: var(--orange);
  margin-bottom: 44px;
}
.cta-extra svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.cta-chips { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.cta-chip {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 99px;
  font-size: 12px; font-weight: 700;
  border: 1.5px solid var(--cream-dark); background: var(--cream-light); color: var(--navy);
  transition: border-color .2s, transform .2s; cursor: pointer; text-decoration: none;
}
.cta-chip:hover { transform: translateY(-2px); }
.cta-chip .cc-dot { width: 8px; height: 8px; border-radius: 50%; }

.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 16px 34px; border-radius: 12px;
  font-family: inherit; font-size: 13px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.cta-btn.pr { background: var(--navy); color: var(--cream); box-shadow: 0 8px 28px rgba(11,23,61,.18); }
.cta-btn.pr:hover { background: var(--orange); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(255,117,31,.35); }
.cta-btn.se { background: transparent; color: var(--navy); border: 1.5px solid var(--cream-dark); }
.cta-btn.se:hover { border-color: var(--navy); transform: translateY(-2px); }
.cta-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media(max-width: 960px) {
  .approach-layout, .res-head { grid-template-columns: 1fr; }
  .panel-body { grid-template-columns: 1fr; }
  .pb-col:first-child, .pb-col:last-child { border-radius: 0; }
  .panel-bottom { grid-template-columns: 1fr; }
  .pb-radar-wrap { border-radius: 0; } .pb-crosslinks { border-radius: 0 0 20px 20px; }
  .ind-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .testimonial { grid-template-columns: 1fr; text-align: center; }
  .t-author { text-align: center; }
}
@media(max-width: 640px) {
  .hero-inner { padding-left: 24px; padding-right: 24px; }
  .stats-row { grid-template-columns: 1fr; }
  .cl-grid { grid-template-columns: 1fr; }
  .ph-stat-row { gap: 20px; }
  .panel-header { padding: 40px 28px; }
}

/* --- NEW HERO STYLES --- */
.industries-hero .container.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: 24px;
}
@media(max-width: 992px) {
  .industries-hero .container.hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
.hero-left, .hero-right {
  position: relative;
  width: 100%;
}
.hero-h { max-width: 600px; margin-top: 24px; }
.hero-sub { max-width: 500px; margin-top: 16px; margin-bottom: 32px; }

/* Diagnostic Button with Tooltip */
.hero-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media(max-width: 992px) {
  .hero-actions { justify-content: center; }
}
.diagnostic-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.diagnostic-btn:hover {
  background: #ff5a00;
  transform: translateY(-2px);
}
.diagnostic-btn svg { width: 20px; height: 20px; }

/* Tooltip */
.diagnostic-tooltip {
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  color: var(--navy);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.diagnostic-tooltip::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px; height: 8px;
  background: #fff;
}
.diagnostic-btn:hover .diagnostic-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Floating Stickers Viral Effect */
.hero-stickers {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.sticker {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 8px 16px 8px 8px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  animation: float-viral 6s ease-in-out infinite alternate;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.sticker .st-ico {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  color: #fff;
}
.sticker .st-ico svg { width: 14px; height: 14px; }
.st-well { top: 10%; left: 4%; animation-delay: 0s; }
.st-well .st-ico { background: var(--well); }
.st-hosp { top: 75%; left: 2%; animation-delay: -2s; }
.st-hosp .st-ico { background: var(--hosp); }
.st-re { top: 15%; right: 4%; animation-delay: -1.5s; }
.st-re .st-ico { background: var(--re); }
.st-ret { top: 65%; right: 2%; animation-delay: -3s; }
.st-ret .st-ico { background: var(--ret); }
@media(max-width: 992px) { .sticker { display: none; } }

@keyframes float-viral {
  0% { transform: translateY(0px) rotate(-4deg); }
  100% { transform: translateY(-20px) rotate(4deg); }
}

/* Image Stack Animation Loop */
.stack-container {
  position: relative;
  width: 100%;
  height: 480px;
  perspective: 1200px;
  transform-style: preserve-3d;
}
@media(max-width: 992px) {
  .stack-container { height: 320px; margin-top: 32px; }
}
.stack-card {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: center center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  background: #1a1a1a;
}
.sc-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  filter: saturate(1.2);
}
.sc-label {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(11,23,61,0.85);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.1);
}
.bg-well { background-image: url('/assets/img/marketing/enfoque-strategy.webp'); }
.bg-hosp { background-image: url('/assets/img/marketing/enfoque-optimization.webp'); }
.bg-re { background-image: url('/assets/img/marketing/enfoque-systems.webp'); }
.bg-ret { background: #FF751F; }

/* Positions */
.stack-card[data-pos="0"] { z-index: 4; transform: scale(1) translateY(0) rotate(0deg); opacity: 1; }
.stack-card[data-pos="1"] { z-index: 3; transform: scale(0.92) translateY(-25px) translateX(15px) rotate(3deg); opacity: 0.85; filter: brightness(0.8); }
.stack-card[data-pos="2"] { z-index: 2; transform: scale(0.84) translateY(-50px) translateX(-10px) rotate(-3deg); opacity: 0.6; filter: brightness(0.5); }
.stack-card[data-pos="3"] { z-index: 1; transform: scale(0.76) translateY(-75px) rotate(5deg); opacity: 0; }
