/* ORQIA landing — Apple-clean marketing layer */

:root {
  --orqia-navy: #0c2e8a;
  --orqia-navy-deep: #071a4f;
  --orqia-teal: #50d8af;
  --orqia-teal-deep: #0d9488;
  --orqia-health: #e11d48;
  --orqia-health-deep: #be123c;
  --orqia-health-soft: #fff1f2;
  --orqia-ink: #0b1220;
  --orqia-muted: #5b6578;
  --orqia-line: rgba(11, 18, 32, 0.1);
  --orqia-surface: #f5f7fb;
  --orqia-white: #ffffff;
  --orqia-font-display: "Sora", "Montserrat", sans-serif;
  --orqia-font-body: "Outfit", "Open Sans", sans-serif;
  --orqia-nav-h: 72px;
  --orqia-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --orqia-radius: 20px;
}

html {
  scroll-behavior: smooth;
}

body#body {
  background: var(--orqia-surface);
  color: var(--orqia-ink);
  font-family: var(--orqia-font-body);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
}

body#body p {
  margin: 0 0 1rem;
  padding: 0;
}

body#body h1,
body#body h2,
body#body h3,
body#body h4 {
  font-family: var(--orqia-font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--orqia-ink);
  margin: 0 0 0.75rem;
  padding: 0;
}

.orqia-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.orqia-container-wide {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

/* Hide legacy Reveal chrome when present */
#mobile-nav-toggle,
#mobile-nav,
#mobile-body-overly {
  display: none !important;
}

/* ---------- Nav ---------- */
.orqia-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--orqia-nav-h);
  display: flex;
  align-items: center;
  transition: background 280ms var(--orqia-ease), box-shadow 280ms var(--orqia-ease), backdrop-filter 280ms ease;
  background: transparent;
}

.orqia-nav.is-scrolled {
  background: rgba(245, 247, 251, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--orqia-line);
}

.orqia-nav-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.orqia-landing #nav-menu-container {
  margin: 0;
  float: none;
  padding: 0;
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.orqia-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
}

.orqia-nav-brand img:first-child {
  height: 36px;
  width: auto;
  display: block;
}

.orqia-nav-brand img:nth-of-type(2),
.orqia-nav-brand img:last-child {
  height: 26px;
  width: auto;
  display: block;
}

.orqia-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.orqia-nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--orqia-ink);
  text-decoration: none;
  border-radius: 999px;
  opacity: 0.78;
  transition: opacity 180ms ease, background 180ms ease;
}

.orqia-nav-links a:hover,
.orqia-nav-links a.is-active {
  opacity: 1;
  background: rgba(12, 46, 138, 0.06);
  color: var(--orqia-navy);
}

.orqia-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.orqia-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--orqia-line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--orqia-ink);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.orqia-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--orqia-font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 180ms var(--orqia-ease), box-shadow 180ms ease, background 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.orqia-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.orqia-btn-primary {
  background: linear-gradient(180deg, #5ce0bf 0%, var(--orqia-teal) 100%);
  color: var(--orqia-ink);
  box-shadow: 0 10px 28px rgba(80, 216, 175, 0.35);
}

.orqia-btn-primary:hover {
  color: var(--orqia-ink);
  box-shadow: 0 14px 34px rgba(80, 216, 175, 0.42);
}

.orqia-btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--orqia-ink);
  border: 1px solid var(--orqia-line);
}

.orqia-btn-ghost:hover {
  background: #fff;
  color: var(--orqia-ink);
}

.orqia-btn-dark {
  background: var(--orqia-navy);
  color: #fff;
  box-shadow: 0 12px 30px rgba(12, 46, 138, 0.28);
}

.orqia-btn-dark:hover {
  color: #fff;
  background: var(--orqia-navy-deep);
}

.orqia-btn-lg {
  min-height: 52px;
  padding: 0 24px;
  font-size: 15px;
}

/* ---------- Hero ---------- */
.orqia-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--orqia-nav-h) + 48px) 0 72px;
  overflow: hidden;
  isolation: isolate;
}

.orqia-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 78% 18%, rgba(80, 216, 175, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 12% 72%, rgba(12, 46, 138, 0.22) 0%, transparent 60%),
    linear-gradient(165deg, #e8eef8 0%, #f5f7fb 42%, #eef8f4 100%);
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 1100ms ease,
    transform 1400ms var(--orqia-ease);
}

.orqia-hero.is-ready .orqia-hero-bg {
  opacity: 1;
  transform: scale(1);
}

.orqia-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(12, 46, 138, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 46, 138, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.orqia-hero-inner {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.orqia-hero-inner > .orqia-hero-product,
.orqia-hero-inner > .orqia-hero-tagline,
.orqia-hero-inner > .orqia-hero-lead,
.orqia-hero-inner > .orqia-hero-ctas,
.orqia-hero-inner > .orqia-hero-pillars {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 820ms var(--orqia-ease),
    transform 820ms var(--orqia-ease);
}

.orqia-hero.is-ready .orqia-hero-inner > .orqia-hero-product,
.orqia-hero.is-ready .orqia-hero-inner > .orqia-hero-tagline,
.orqia-hero.is-ready .orqia-hero-inner > .orqia-hero-lead,
.orqia-hero.is-ready .orqia-hero-inner > .orqia-hero-ctas,
.orqia-hero.is-ready .orqia-hero-inner > .orqia-hero-pillars {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.orqia-hero.is-ready .orqia-hero-product { transition-delay: 90ms; }
.orqia-hero.is-ready .orqia-hero-tagline { transition-delay: 220ms; }
.orqia-hero.is-ready .orqia-hero-lead { transition-delay: 360ms; }
.orqia-hero.is-ready .orqia-hero-ctas { transition-delay: 500ms; }
.orqia-hero.is-ready .orqia-hero-pillars { transition-delay: 640ms; }

.orqia-hero-product {
  width: 100%;
  max-width: 16ch;
  margin: 0 auto 14px;
  font-size: clamp(2.85rem, 7.2vw, 4.75rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-align: center;
  color: var(--orqia-navy);
}

.orqia-hero-tagline {
  width: 100%;
  max-width: 22ch;
  margin: 0 auto 18px;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--orqia-ink);
}

.orqia-hero-tagline em {
  font-style: normal;
  color: var(--orqia-navy);
}

.orqia-hero-lead {
  width: 100%;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
  color: var(--orqia-muted);
  max-width: 44ch;
  margin: 0 auto 32px;
  text-align: center;
}

.orqia-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.orqia-hero-pillars {
  list-style: none;
  margin: 44px auto 0;
  padding: 18px 8px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 12px;
  width: 100%;
  max-width: 920px;
  border-top: 1px solid rgba(12, 46, 138, 0.1);
  justify-items: center;
}

.orqia-hero-pillars li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 14px 10px;
  text-align: center;
  width: 100%;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 650ms var(--orqia-ease),
    transform 650ms var(--orqia-ease);
}

.orqia-hero.is-ready .orqia-hero-pillars li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.orqia-hero.is-ready .orqia-hero-pillars li:nth-child(1) { transition-delay: 780ms; }
.orqia-hero.is-ready .orqia-hero-pillars li:nth-child(2) { transition-delay: 860ms; }
.orqia-hero.is-ready .orqia-hero-pillars li:nth-child(3) { transition-delay: 940ms; }
.orqia-hero.is-ready .orqia-hero-pillars li:nth-child(4) { transition-delay: 1020ms; }

.orqia-hero-pillar-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--orqia-navy);
  background: linear-gradient(180deg, rgba(80, 216, 175, 0.18), rgba(12, 46, 138, 0.06));
  border: 1px solid rgba(12, 46, 138, 0.08);
}

.orqia-hero-pillar-icon svg {
  width: 22px;
  height: 22px;
}

.orqia-hero-pillars span:last-child {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--orqia-ink);
  letter-spacing: -0.01em;
  max-width: 14ch;
  text-align: center;
}

.orqia-hero-hint {
  margin-top: 28px;
  font-size: 13px;
  color: var(--orqia-muted);
  opacity: 0.85;
  text-align: center;
}

/* ---------- Sections common ---------- */
.orqia-section {
  padding: 96px 0;
  position: relative;
}

.orqia-section-tight {
  padding: 72px 0;
}

.orqia-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orqia-teal-deep);
  margin: 0 0 12px;
}

.orqia-section-title {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  max-width: 18ch;
  margin: 0 0 14px;
}

.orqia-section-lead {
  font-size: 1.05rem;
  color: var(--orqia-muted);
  max-width: 46ch;
  margin: 0 0 40px;
}

.orqia-section-head {
  margin-bottom: 40px;
}

.orqia-section-head.center,
.orqia-section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.orqia-section-head.center .orqia-section-title,
.orqia-section-head.center .orqia-section-lead,
.orqia-section-head--center .orqia-section-title,
.orqia-section-head--center .orqia-section-lead,
.orqia-section-head--center .orqia-eyebrow {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.orqia-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--orqia-ease), transform 700ms var(--orqia-ease);
}

.orqia-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Problem ---------- */
#problema {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(80, 216, 175, 0.1), transparent 55%),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(12, 46, 138, 0.06), transparent 50%),
    linear-gradient(180deg, #fbfcfe 0%, #f4f6fa 100%);
  overflow: hidden;
}

#problema .orqia-section-head {
  max-width: 640px;
  margin-bottom: 36px;
}

#problema .orqia-section-title {
  max-width: 16ch;
}

.orqia-problem-stage {
  position: relative;
  border-radius: 28px;
  padding: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.55)),
    linear-gradient(135deg, rgba(12, 46, 138, 0.08), rgba(80, 216, 175, 0.12));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 24px 50px rgba(15, 23, 42, 0.06);
}

.orqia-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(15, 23, 42, 0.06);
  border-radius: 22px;
  overflow: hidden;
}

.orqia-problem-item {
  position: relative;
  padding: 32px 28px 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  transition: background 280ms var(--orqia-ease), transform 280ms var(--orqia-ease);
}

.orqia-problem-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 280ms ease;
}

.orqia-problem-item::after {
  content: attr(data-watermark);
  position: absolute;
  right: -4%;
  bottom: -12%;
  font-family: var(--orqia-font-display);
  font-size: clamp(4.5rem, 8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.8;
  color: rgba(12, 46, 138, 0.045);
  pointer-events: none;
  user-select: none;
}

.orqia-problem-item:nth-child(1)::after { content: "01"; }
.orqia-problem-item:nth-child(2)::after { content: "02"; }
.orqia-problem-item:nth-child(3)::after { content: "03"; }

.orqia-problem-item:hover {
  background: #ffffff;
  transform: none;
}

.orqia-problem-item:hover::before {
  background: linear-gradient(180deg, #50d8af, #0c2e8a);
}

.orqia-problem-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.orqia-problem-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--orqia-navy);
  background:
    linear-gradient(180deg, rgba(80, 216, 175, 0.16), rgba(12, 46, 138, 0.06));
  border: 1px solid rgba(12, 46, 138, 0.08);
  transition: transform 280ms var(--orqia-ease), background 280ms ease;
}

.orqia-problem-icon svg {
  width: 26px;
  height: 26px;
}

.orqia-problem-item:hover .orqia-problem-icon {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(80, 216, 175, 0.28), rgba(12, 46, 138, 0.1));
}

.orqia-problem-num {
  font-family: var(--orqia-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--orqia-teal-deep);
  opacity: 1;
  margin-bottom: 0;
}

.orqia-problem-item h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  max-width: 14ch;
}

.orqia-problem-item p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--orqia-muted);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 32ch;
}

.orqia-problem-bridge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
  padding: 26px 28px;
  border-radius: 22px;
  background:
    radial-gradient(ellipse 60% 120% at 100% 50%, rgba(80, 216, 175, 0.22), transparent 50%),
    linear-gradient(125deg, #071a4f 0%, #0c2e8a 48%, #0a3d4a 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(7, 26, 79, 0.28);
}

.orqia-problem-bridge-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orqia-teal);
  margin-bottom: 8px;
}

.orqia-problem-bridge-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.orqia-problem-bridge-copy p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
  max-width: 56ch;
}

.orqia-problem-bridge-copy strong {
  color: #fff;
  font-weight: 700;
}

.orqia-problem-bridge .orqia-btn-primary {
  flex: 0 0 auto;
  background: linear-gradient(180deg, #5ce0bf, #50d8af);
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(80, 216, 175, 0.28);
}

.orqia-problem-bridge .orqia-btn-primary:hover {
  filter: brightness(1.04);
}

/* ---------- Story scroll ---------- */
#como-funciona {
  background:
    radial-gradient(ellipse 80% 55% at 10% 0%, rgba(80, 216, 175, 0.12), transparent 50%),
    linear-gradient(180deg, #f3f5f8 0%, #eef1f5 45%, #f7f8fa 100%);
  padding-bottom: 56px;
}

#como-funciona .orqia-section-head {
  margin-bottom: 36px;
  max-width: 640px;
}

#como-funciona .orqia-section-title {
  max-width: 16ch;
}

.orqia-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: start;
}

.orqia-story-visual {
  position: sticky;
  top: calc(var(--orqia-nav-h) + 18px);
  height: min(80vh, 680px);
  border-radius: 32px;
  background: linear-gradient(160deg, #0b1220 0%, #12203a 48%, #0d3a45 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 70px rgba(7, 18, 40, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.orqia-story-glow {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(80, 216, 175, 0.35), transparent 42%),
    radial-gradient(circle at 85% 70%, rgba(59, 130, 246, 0.22), transparent 45%);
  animation: orqiaGlowDrift 14s ease-in-out infinite alternate;
}

@keyframes orqiaGlowDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4%, -3%, 0) scale(1.06); }
}

.orqia-story-mark {
  position: absolute;
  right: -2%;
  top: -6%;
  font-family: var(--orqia-font-display);
  font-size: clamp(8rem, 18vw, 14rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 0;
  user-select: none;
  transition: opacity 280ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.orqia-story-mark.is-swap {
  animation: orqiaMarkSwap 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes orqiaMarkSwap {
  from { opacity: 0.35; transform: translate3d(0, 8px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.orqia-story-panels {
  position: relative;
  z-index: 1;
  height: calc(100% - 118px);
  padding: 28px 28px 12px;
  isolation: isolate;
}

.orqia-story-panel {
  position: absolute;
  inset: 28px 28px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 360ms;
  pointer-events: none;
  backface-visibility: hidden;
  will-change: opacity, transform;
}

#como-funciona[data-dir="-1"] .orqia-story-panel {
  transform: translate3d(0, -10px, 0);
}

.orqia-story-panel.is-exit {
  opacity: 0;
  visibility: visible;
  transform: translate3d(0, -8px, 0);
  transition:
    opacity 300ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 300ms;
}

#como-funciona[data-dir="-1"] .orqia-story-panel.is-exit {
  transform: translate3d(0, 8px, 0);
}

.orqia-story-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  z-index: 1;
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

/* UI mock frames */
.orqia-ui {
  width: min(100%, 440px);
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  color: var(--orqia-ink);
}

.orqia-ui-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.orqia-ui-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(80, 216, 175, 0.18);
  color: #0d9488;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.orqia-ui-pill.ok {
  background: rgba(16, 185, 129, 0.16);
  color: #047857;
}

.orqia-ui-code {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  font-family: var(--orqia-font-display);
}

.orqia-ui-title {
  margin: 0 0 14px;
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.orqia-ui-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.orqia-ui-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  font-size: 13px;
}

.orqia-ui-row span {
  color: #64748b;
}

.orqia-ui-row strong.ok {
  color: #0d9488;
}

.orqia-ui-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 14px;
  background: #ecfdf5;
  margin-bottom: 14px;
}

.orqia-ui-note i {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: #50d8af;
  flex: 0 0 auto;
}

.orqia-ui-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #334155;
}

.orqia-ui-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.orqia-ui-actions .ghost,
.orqia-ui-actions .primary {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.orqia-ui-actions .ghost {
  color: #64748b;
  background: #f1f5f9;
}

.orqia-ui-actions .primary {
  color: #0f172a;
  background: linear-gradient(180deg, #5ce0bf, #50d8af);
}

.orqia-ui--live {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 14px;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.orqia-ui-phone {
  background: #ffffff;
  border-radius: 28px;
  padding: 14px 14px 16px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.orqia-ui-phone-bar {
  width: 42%;
  height: 5px;
  border-radius: 99px;
  background: #e2e8f0;
  margin: 0 auto 12px;
}

.orqia-ui-live-badge {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(80, 216, 175, 0.2);
  color: #0d9488;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}

.orqia-ui-map {
  position: relative;
  height: 120px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 60% 40%, rgba(80, 216, 175, 0.25), transparent 40%),
    linear-gradient(145deg, #e2e8f0, #f8fafc);
  margin-bottom: 12px;
  overflow: hidden;
}

.orqia-ui-map .pin {
  position: absolute;
  left: 58%;
  top: 38%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #50d8af;
  box-shadow: 0 0 0 6px rgba(80, 216, 175, 0.25);
  transform: translate(-50%, -50%);
}

.orqia-ui-map .ring {
  position: absolute;
  left: 58%;
  top: 38%;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(80, 216, 175, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orqia-story-panel.is-active .orqia-ui-map .ring {
  animation: orqiaRing 2.2s ease-out infinite;
}

.orqia-story-panel.is-active .orqia-ui-progress i {
  animation: orqiaFill 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.orqia-story-panel.is-active .orqia-ui-chart i {
  animation: orqiaBar 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.orqia-story-panel.is-active .orqia-ui-chart i:nth-child(2) { animation-delay: 40ms; }
.orqia-story-panel.is-active .orqia-ui-chart i:nth-child(3) { animation-delay: 80ms; }
.orqia-story-panel.is-active .orqia-ui-chart i:nth-child(4) { animation-delay: 120ms; }
.orqia-story-panel.is-active .orqia-ui-chart i:nth-child(5) { animation-delay: 160ms; }
.orqia-story-panel.is-active .orqia-ui-chart i:nth-child(6) { animation-delay: 200ms; }

@keyframes orqiaRing {
  0% { transform: translate(-50%, -50%) scale(0.55); opacity: 0.9; }
  100% { transform: translate(-50%, -50%) scale(1.55); opacity: 0; }
}

@keyframes orqiaFill {
  from { transform: scaleX(0); transform-origin: left center; }
  to { transform: scaleX(1); transform-origin: left center; }
}

@keyframes orqiaBar {
  from { transform: scaleY(0.15); transform-origin: bottom; opacity: 0.4; }
  to { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
}

.orqia-ui-live-meta strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.orqia-ui-live-meta span {
  font-size: 12px;
  color: #64748b;
}

.orqia-ui-progress {
  margin-top: 12px;
  height: 6px;
  border-radius: 99px;
  background: #e2e8f0;
  overflow: hidden;
}

.orqia-ui-progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #0c2e8a, #50d8af);
  border-radius: inherit;
}

.orqia-ui-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.orqia-ui-side-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.orqia-ui-side-card span {
  display: block;
  font-size: 11px;
  color: #64748b;
  margin-bottom: 4px;
}

.orqia-ui-side-card strong {
  font-size: 14px;
}

.orqia-ui-side-card.accent {
  background: linear-gradient(180deg, #5ce0bf, #50d8af);
}

.orqia-ui-side-card.accent span,
.orqia-ui-side-card.accent strong {
  color: #0f172a;
}

.orqia-ui-people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.orqia-ui-people .person {
  text-align: center;
  padding: 14px 8px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid transparent;
}

.orqia-ui-people .person.active {
  background: #ecfdf5;
  border-color: rgba(80, 216, 175, 0.5);
}

.orqia-ui-people b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #0c2e8a;
  color: #fff;
  font-size: 13px;
}

.orqia-ui-people .person.active b {
  background: #50d8af;
  color: #0f172a;
}

.orqia-ui-people span {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.orqia-ui-people em {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
}

.orqia-ui-transfer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}

.orqia-ui-transfer i {
  width: 36px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #0c2e8a, #50d8af);
  position: relative;
}

.orqia-ui-transfer i::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #50d8af;
  border-top: 2px solid #50d8af;
  transform: translateY(-50%) rotate(45deg);
}

.orqia-ui-caption {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

.orqia-ui-route-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.orqia-ui-route-list .stop {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  font-size: 13px;
}

.orqia-ui-route-list .stop b {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e2e8f0;
  color: #334155;
  font-size: 12px;
}

.orqia-ui-route-list .stop.done b {
  background: #50d8af;
  color: #0f172a;
}

.orqia-ui-route-list .stop.now {
  background: #ecfdf5;
  border: 1px solid rgba(80, 216, 175, 0.4);
}

.orqia-ui-route-list .stop.now b {
  background: #0c2e8a;
  color: #fff;
}

.orqia-ui-route-list em {
  font-style: normal;
  font-size: 11px;
  color: #64748b;
}

.orqia-ui-proof-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  margin-bottom: 14px;
}

.orqia-ui-proof-grid .shot,
.orqia-ui-proof-grid .sign {
  border-radius: 16px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}

.orqia-ui-proof-grid .shot {
  background:
    linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.45)),
    linear-gradient(135deg, #cbd5e1, #94a3b8);
  color: #fff;
}

.orqia-ui-proof-grid .sign {
  background: #f8fafc;
  border: 1px dashed rgba(15, 23, 42, 0.15);
}

.orqia-ui-proof-grid .sign svg {
  width: 100%;
  height: 44px;
  margin-bottom: 8px;
}

.orqia-ui-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.orqia-ui-kpis div {
  background: #f8fafc;
  border-radius: 14px;
  padding: 12px;
  text-align: center;
}

.orqia-ui-kpis strong {
  display: block;
  font-family: var(--orqia-font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: #0c2e8a;
}

.orqia-ui-kpis span {
  font-size: 11px;
  color: #64748b;
}

.orqia-ui-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #0d9488;
}

.orqia-ui-live-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #50d8af;
  box-shadow: 0 0 0 4px rgba(80, 216, 175, 0.25);
}

.orqia-ui-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 110px;
  padding: 8px 4px 0;
}

.orqia-ui-chart i {
  flex: 1;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #50d8af, #0c2e8a);
  display: block;
  min-height: 20%;
}

.orqia-story-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 16px 22px 18px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.orqia-story-footer-copy {
  min-height: 4.6em;
}

.orqia-story-footer-copy.is-swap {
  animation: orqiaFooterSwap 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes orqiaFooterSwap {
  from { opacity: 0.45; transform: translate3d(0, 4px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.orqia-story-footer-copy span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orqia-teal-deep);
  margin-bottom: 2px;
}

.orqia-story-footer-copy strong {
  display: block;
  font-family: var(--orqia-font-display);
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--orqia-ink);
  min-height: 1.25em;
}

.orqia-story-footer-copy p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--orqia-muted);
  line-height: 1.4;
  min-height: 2.8em;
}

.orqia-story-rail {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.orqia-story-rail i {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: rgba(15, 23, 42, 0.1);
}

.orqia-story-rail i.is-on {
  background: linear-gradient(90deg, #0c2e8a, #50d8af);
}

.orqia-story-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 4px;
}

.orqia-story-step {
  min-height: 34vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 8px 24px 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  border-left: 3px solid transparent;
  opacity: 0.38;
  transition: opacity 240ms ease, border-color 240ms ease, background 240ms ease;
}

.orqia-story-step:last-child {
  border-bottom: 0;
}

.orqia-story-step.is-active {
  opacity: 1;
  border-left-color: var(--orqia-teal);
  background: linear-gradient(90deg, rgba(80, 216, 175, 0.12), transparent 72%);
}

.orqia-story-step-index {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orqia-navy);
  margin-bottom: 10px;
}

.orqia-story-step h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.orqia-story-step p {
  margin: 0;
  color: var(--orqia-muted);
  max-width: 34ch;
  font-size: 1.02rem;
  line-height: 1.55;
}

.orqia-story-dots {
  display: none;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.orqia-story-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #cbd5e1;
  cursor: pointer;
}

.orqia-story-dot.is-active {
  background: var(--orqia-teal);
  transform: scale(1.25);
}

@media (prefers-reduced-motion: reduce) {
  .orqia-story-panel,
  .orqia-story-panel.is-active,
  .orqia-story-panel.is-exit,
  #como-funciona[data-dir="-1"] .orqia-story-panel,
  #como-funciona[data-dir="-1"] .orqia-story-panel.is-exit {
    transform: none;
    transition: opacity 180ms ease;
  }

  .orqia-story-mark.is-swap,
  .orqia-story-footer-copy.is-swap,
  .orqia-story-panel.is-active .orqia-ui-map .ring,
  .orqia-story-panel.is-active .orqia-ui-progress i,
  .orqia-story-panel.is-active .orqia-ui-chart i,
  .orqia-story-glow {
    animation: none !important;
  }
}

/* ---------- Platform ---------- */
#producto {
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(12, 46, 138, 0.05), transparent 55%),
    var(--orqia-white);
}

#producto .orqia-section-head {
  max-width: 640px;
  margin-bottom: 36px;
}

#producto .orqia-section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#producto .orqia-section-head--center .orqia-section-lead {
  margin-left: auto;
  margin-right: auto;
}

#producto .orqia-section-title {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.orqia-modules-stage {
  border-radius: 28px;
  padding: 10px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(245, 247, 251, 0.9)),
    linear-gradient(135deg, rgba(12, 46, 138, 0.08), rgba(80, 216, 175, 0.12));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 22px 48px rgba(15, 23, 42, 0.06);
}

.orqia-modules-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  background: rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  overflow: hidden;
}

.orqia-module {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.96);
  min-height: 96px;
  grid-column: span 3;
  transition: background 240ms var(--orqia-ease), transform 240ms var(--orqia-ease);
}

.orqia-module:nth-child(n+5) {
  grid-column: span 4;
}

.orqia-module:hover {
  background: #fff;
}

.orqia-module--core {
  background: linear-gradient(145deg, rgba(12, 46, 138, 0.06), rgba(80, 216, 175, 0.1));
}

.orqia-module--core:hover {
  background: linear-gradient(145deg, rgba(12, 46, 138, 0.09), rgba(80, 216, 175, 0.14));
}

.orqia-module-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orqia-teal-deep);
  background: rgba(80, 216, 175, 0.18);
  padding: 3px 8px;
  border-radius: 999px;
}

.orqia-module-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--orqia-navy);
  background: linear-gradient(180deg, rgba(80, 216, 175, 0.16), rgba(12, 46, 138, 0.06));
  border: 1px solid rgba(12, 46, 138, 0.08);
  transition: transform 240ms var(--orqia-ease);
}

.orqia-module:hover .orqia-module-icon {
  transform: translateY(-2px);
}

.orqia-module-icon svg {
  width: 26px;
  height: 26px;
}

.orqia-module strong {
  display: block;
  font-family: var(--orqia-font-display);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--orqia-ink);
  line-height: 1.2;
}

.orqia-module span:not(.orqia-module-icon):not(.orqia-module-badge) {
  display: block;
  margin-top: 2px;
  font-size: 0.9rem;
  color: var(--orqia-muted);
  line-height: 1.3;
}

/* legacy platform cards (trust/other reuse) */
.orqia-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.orqia-platform-grid--modules {
  grid-template-columns: repeat(3, 1fr);
}

.orqia-platform-item {
  padding: 32px 28px;
  border-radius: var(--orqia-radius);
  background: var(--orqia-surface);
  border: 1px solid var(--orqia-line);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.orqia-platform-item:hover {
  border-color: rgba(12, 46, 138, 0.2);
  box-shadow: 0 16px 40px rgba(12, 46, 138, 0.06);
}

.orqia-platform-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orqia-navy);
  opacity: 0.65;
  margin-bottom: 12px;
}

.orqia-platform-item h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.orqia-platform-item p {
  margin: 0;
  color: var(--orqia-muted);
}

@media (max-width: 991px) {
  .orqia-modules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .orqia-module,
  .orqia-module:nth-child(n+5) {
    grid-column: auto;
  }

  .orqia-platform-grid--modules {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .orqia-modules-stage {
    padding: 6px;
    border-radius: 22px;
  }

  .orqia-modules-grid {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .orqia-module,
  .orqia-module:nth-child(n+5) {
    grid-column: auto;
  }

  .orqia-platform-grid--modules {
    grid-template-columns: 1fr;
  }
}

/* ---------- Product picker (Orqia + Orqia Health) ---------- */
.orqia-product-pick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}

.orqia-product-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 38%) 1fr;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 251, 0.92));
  border: 0;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
  cursor: pointer;
  transition:
    box-shadow 220ms var(--orqia-ease),
    transform 220ms var(--orqia-ease);
}

.orqia-product-card-media {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 80% 70% at 30% 40%, rgba(80, 216, 175, 0.14), transparent 60%),
    linear-gradient(160deg, #f3f6fb 0%, #eef2f8 100%);
  overflow: hidden;
}

.orqia-product-card--health .orqia-product-card-media {
  background:
    radial-gradient(ellipse 80% 70% at 30% 40%, rgba(225, 29, 72, 0.12), transparent 60%),
    linear-gradient(160deg, #fff5f6 0%, #f8eef0 100%);
}

.orqia-product-card-symbol {
  width: min(58%, 132px);
  aspect-ratio: 1;
  color: var(--orqia-navy);
  opacity: 0.92;
  transition: transform 420ms var(--orqia-ease);
}

.orqia-product-card-symbol--health {
  color: var(--orqia-health-deep);
}

.orqia-product-card-symbol svg {
  display: block;
  width: 100%;
  height: 100%;
}

.orqia-product-card:hover .orqia-product-card-symbol {
  transform: scale(1.04);
}

.orqia-product-card-body {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "top top"
    "title title"
    "lead lead"
    "points points"
    "actions actions";
  align-items: start;
  column-gap: 12px;
  row-gap: 8px;
  padding: 16px 18px 14px;
}

.orqia-product-card-hit {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  text-indent: -9999px;
  overflow: hidden;
}

.orqia-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.orqia-product-card.is-active {
  box-shadow: 0 22px 48px rgba(12, 46, 138, 0.1);
}

.orqia-product-card--health {
  background:
    linear-gradient(165deg, rgba(255, 241, 242, 0.98), rgba(255, 255, 255, 0.98)),
    linear-gradient(135deg, rgba(225, 29, 72, 0.1), rgba(190, 18, 60, 0.04));
  border: 0;
}

.orqia-product-card--health:hover {
  box-shadow: 0 18px 40px rgba(225, 29, 72, 0.1);
}

.orqia-product-card-top {
  grid-area: top;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.orqia-product-card-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orqia-navy);
  background: rgba(12, 46, 138, 0.08);
  padding: 4px 9px;
  border-radius: 999px;
}

.orqia-product-card-badge--health {
  color: var(--orqia-health-deep);
  background: rgba(225, 29, 72, 0.14);
}

.orqia-product-card-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--orqia-navy);
  background: linear-gradient(180deg, rgba(80, 216, 175, 0.16), rgba(12, 46, 138, 0.06));
  border: 0;
}

.orqia-product-card-mark--health {
  color: var(--orqia-health-deep);
  background: linear-gradient(180deg, rgba(225, 29, 72, 0.18), rgba(190, 18, 60, 0.08));
}

.orqia-product-card-mark svg {
  width: 22px;
  height: 22px;
}

.orqia-product-card-title {
  grid-area: title;
  margin: 0;
  font-family: var(--orqia-font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--orqia-ink);
}

.orqia-product-card-lead {
  grid-area: lead;
  margin: 0;
  color: var(--orqia-muted);
  line-height: 1.4;
  font-size: 0.92rem;
  max-width: none;
}

.orqia-product-card-points {
  grid-area: points;
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-self: center;
}

.orqia-product-card-points li {
  position: relative;
  padding-left: 14px;
  font-size: 0.82rem;
  color: var(--orqia-ink);
  white-space: nowrap;
}

.orqia-product-card-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orqia-teal);
}

.orqia-product-card--health .orqia-product-card-points li::before {
  background: var(--orqia-health);
}

.orqia-product-card-actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 4px;
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.orqia-product-card-actions .orqia-btn {
  margin-top: 0;
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  position: relative;
  z-index: 1;
  box-shadow: none;
  transform: none;
  text-decoration: none;
}

.orqia-product-card-actions .orqia-btn-primary,
.orqia-product-card-actions .orqia-btn-dark {
  pointer-events: auto;
  color: #fff;
  border: 1px solid transparent;
  box-shadow: none;
}

.orqia-product-card-actions .orqia-product-card-explore {
  cursor: pointer;
}

/* Explorar — plano; color por producto */
.orqia-product-card-actions .orqia-btn-primary {
  background: #0d9488;
}

.orqia-product-card-actions .orqia-btn-primary:hover {
  background: #0f766e;
  color: #fff;
  box-shadow: none;
  transform: none;
}

.orqia-product-card-actions .orqia-btn-dark {
  background: var(--orqia-health);
}

.orqia-product-card--health .orqia-btn-dark:hover,
.orqia-product-card-actions .orqia-btn-dark:hover {
  background: var(--orqia-health-deep);
  color: #fff;
  box-shadow: none;
  transform: none;
}

/* Ingresar — sin borde; color por producto */
.orqia-product-card-actions .orqia-product-card-login {
  pointer-events: auto;
  cursor: pointer;
  z-index: 4;
  color: #0f766e;
  border: 0;
  background: rgba(13, 148, 136, 0.1);
  box-shadow: none;
}

.orqia-product-card-actions .orqia-product-card-login:hover {
  color: #fff;
  background: #0d9488;
  box-shadow: none;
  transform: none;
}

.orqia-product-card-actions .orqia-product-card-login--health {
  color: var(--orqia-health-deep);
  border: 0;
  background: rgba(225, 29, 72, 0.1);
}

.orqia-product-card-actions .orqia-product-card-login--health:hover {
  color: #fff;
  background: var(--orqia-health);
  box-shadow: none;
}

.orqia-hub-products .orqia-product-pick {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .orqia-product-card {
    grid-template-columns: 1fr;
  }

  .orqia-product-card-media {
    min-height: 140px;
    max-height: 160px;
  }

  .orqia-product-card-symbol {
    width: min(42%, 96px);
  }

  .orqia-product-card-body {
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "title"
      "lead"
      "points"
      "actions";
    row-gap: 10px;
  }

  .orqia-product-card-actions {
    justify-content: flex-start;
  }

  .orqia-product-card-points {
    flex-direction: column;
    gap: 6px;
  }

  .orqia-product-card-points li {
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .orqia-product-pick {
    grid-template-columns: 1fr;
  }
}

/* ---------- Multi-view: hub / ops / health ---------- */
.orqia-hub-view,
.orqia-ops-view,
.orqia-health-view {
  display: none;
}

body.orqia-view-hub .orqia-hub-view,
body.orqia-view-ops .orqia-ops-view,
body.orqia-view-health .orqia-health-view {
  display: block !important;
}

body.orqia-view-hub .orqia-howto-fab,
body.orqia-view-hub .orqia-howto-prompt,
body.orqia-view-health .orqia-howto-fab,
body.orqia-view-health .orqia-howto-prompt {
  display: none !important;
}

body.orqia-view-health {
  background: var(--orqia-health-soft);
}

body.orqia-view-health .orqia-nav--health {
  background: rgba(255, 241, 242, 0.9);
}

.orqia-nav-product {
  margin-left: 2px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orqia-health-deep);
  background: rgba(225, 29, 72, 0.14);
}

.orqia-nav-product--ops {
  color: var(--orqia-navy);
  background: rgba(12, 46, 138, 0.1);
}

.orqia-nav--ops .orqia-nav-brand img:nth-of-type(2),
.orqia-nav--health .orqia-nav-brand img:last-of-type {
  height: 26px;
}

body.orqia-view-health .orqia-nav--health .orqia-nav-links a.is-active {
  color: var(--orqia-health-deep);
}

body.orqia-view-health .orqia-nav--health .orqia-btn-primary {
  background: linear-gradient(180deg, #fb7185 0%, var(--orqia-health) 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(225, 29, 72, 0.32);
}

body.orqia-view-health .orqia-nav--health .orqia-nav-actions .orqia-btn-ghost[data-orqia-action="login"] {
  color: var(--orqia-health-deep);
  border: 1.5px solid rgba(225, 29, 72, 0.55);
  background: rgba(225, 29, 72, 0.12);
}

body.orqia-view-health .orqia-nav--health .orqia-nav-actions .orqia-btn-ghost[data-orqia-action="login"]:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, #fb7185 0%, var(--orqia-health) 100%);
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.28);
}

body.orqia-view-health .orqia-eyebrow {
  color: var(--orqia-health-deep);
}

/* ---------- Hub entry ---------- */
.orqia-hub-hero {
  position: relative;
  overflow: hidden;
  min-height: min(58vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 40px;
  text-align: center;
}

.orqia-hub-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 18% 10%, rgba(80, 216, 175, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 18%, rgba(12, 46, 138, 0.14), transparent 52%),
    linear-gradient(180deg, #eef3fb 0%, #f5f7fb 48%, #ffffff 100%);
  transform: scale(1.03);
  opacity: 0.92;
  transition: opacity 900ms var(--orqia-ease), transform 1200ms var(--orqia-ease);
}

.orqia-hub-hero.is-ready .orqia-hub-hero-bg {
  opacity: 1;
  transform: none;
}

.orqia-hub-hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, #fff);
}

.orqia-hub-hero-inner {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.orqia-hub-hero-inner > .orqia-hero-brand,
.orqia-hub-hero-inner > .orqia-hero-eyebrow,
.orqia-hub-hero-inner > h1,
.orqia-hub-hero-inner > .orqia-hero-lead {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 820ms var(--orqia-ease),
    transform 820ms var(--orqia-ease);
}

.orqia-hub-hero.is-ready .orqia-hub-hero-inner > .orqia-hero-brand,
.orqia-hub-hero.is-ready .orqia-hub-hero-inner > .orqia-hero-eyebrow,
.orqia-hub-hero.is-ready .orqia-hub-hero-inner > h1,
.orqia-hub-hero.is-ready .orqia-hub-hero-inner > .orqia-hero-lead {
  opacity: 1;
  transform: none;
}

.orqia-hub-hero.is-ready .orqia-hero-brand { transition-delay: 80ms; }
.orqia-hub-hero.is-ready .orqia-hero-eyebrow { transition-delay: 180ms; }
.orqia-hub-hero.is-ready .orqia-hub-hero-inner > h1 { transition-delay: 280ms; }
.orqia-hub-hero.is-ready .orqia-hero-lead { transition-delay: 400ms; }

.orqia-hub-hero .orqia-hero-brand {
  justify-content: center;
  margin: 0 auto 28px;
  gap: 16px;
}

.orqia-hub-hero .orqia-hero-brand img:first-child {
  height: 76px;
  width: auto;
}

.orqia-hub-hero .orqia-hero-brand img:last-child {
  height: 50px;
  width: auto;
}

.orqia-hub-hero .orqia-hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

.orqia-hub-hero h1 {
  margin: 0 auto 22px;
  font-family: var(--orqia-font-display);
  font-size: clamp(2.6rem, 6.2vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  max-width: 15ch;
  color: var(--orqia-ink);
  text-align: center;
}

.orqia-hub-hero h1 em {
  font-style: normal;
  color: var(--orqia-navy);
}

.orqia-hub-hero .orqia-hero-lead {
  margin: 0 auto;
  max-width: 48ch;
  text-align: center;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  color: var(--orqia-muted);
}

.orqia-hub-products.orqia-section {
  padding: 4px 0 32px;
  background: #fff;
}

.orqia-hub-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(280px, 55%);
  margin: 0 auto 18px;
}

.orqia-hub-divider-line {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(12, 46, 138, 0.22) 50%,
    transparent 100%
  );
}

.orqia-hub-divider-mark {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orqia-navy);
  box-shadow: 0 0 0 4px rgba(12, 46, 138, 0.08);
}

.orqia-hub-products-head,
.orqia-hub-products .orqia-section-head--center {
  text-align: center;
  margin: 0 auto 18px;
  max-width: 36rem;
}

.orqia-hub-products-head .orqia-section-title,
.orqia-hub-products-head .orqia-section-lead,
.orqia-hub-products .orqia-section-head--center .orqia-section-title,
.orqia-hub-products .orqia-section-head--center .orqia-section-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.orqia-hub-products-head .orqia-section-title {
  max-width: none;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: 8px;
}

.orqia-hub-products-head .orqia-section-lead {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.orqia-hub-contact.orqia-section {
  padding: 8px 0 88px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.orqia-hub-contact .orqia-hub-divider {
  margin-bottom: 28px;
}

.orqia-nav--hub .orqia-nav-inner {
  justify-content: space-between;
}

.orqia-nav--hub .orqia-nav-actions {
  margin-left: auto;
}

/* ---------- Orqia Health landing view ---------- */
.orqia-hero--health .orqia-hero-bg {
  background:
    radial-gradient(ellipse 70% 55% at 78% 18%, rgba(225, 29, 72, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 12% 72%, rgba(190, 18, 60, 0.14) 0%, transparent 60%),
    linear-gradient(165deg, #fff1f2 0%, #f8f5f6 42%, #ffffff 100%);
}

.orqia-hero--health .orqia-hero-bg::after {
  background-image:
    linear-gradient(rgba(225, 29, 72, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 29, 72, 0.05) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.orqia-hero--health .orqia-hero-product {
  color: var(--orqia-health-deep);
}

.orqia-hero--health .orqia-hero-tagline em {
  color: var(--orqia-health-deep);
}

.orqia-hero--health .orqia-hero-ctas .orqia-btn-primary {
  background: var(--orqia-health);
  color: #fff;
  border: 1px solid var(--orqia-health);
  box-shadow: none;
}

.orqia-hero--health .orqia-hero-ctas .orqia-btn-primary:hover {
  background: var(--orqia-health-deep);
  border-color: var(--orqia-health-deep);
  color: #fff;
  box-shadow: none;
}

.orqia-hero--health .orqia-hero-ctas .orqia-btn-ghost {
  background: #fff;
  color: var(--orqia-health-deep);
  border: 1px solid rgba(225, 29, 72, 0.35);
}

.orqia-hero--health .orqia-hero-ctas .orqia-btn-ghost:hover {
  background: #fff1f2;
  color: var(--orqia-health-deep);
  border-color: rgba(225, 29, 72, 0.55);
}

.orqia-hero--health .orqia-hero-pillars {
  border-top-color: rgba(225, 29, 72, 0.14);
}

.orqia-hero--health .orqia-hero-pillar-icon {
  color: var(--orqia-health-deep);
  background: linear-gradient(180deg, rgba(225, 29, 72, 0.14), rgba(190, 18, 60, 0.06));
  border-color: rgba(225, 29, 72, 0.12);
}

.orqia-health-problem-band {
  padding: 8px 0 0;
}

.orqia-health-section--soft {
  background:
    linear-gradient(180deg, rgba(255, 241, 242, 0.75), rgba(248, 245, 246, 0.9));
}

.orqia-health-section .orqia-eyebrow {
  color: var(--orqia-health-deep);
}

.orqia-health-section .orqia-section-head--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.orqia-health-section .orqia-section-head--center .orqia-eyebrow,
.orqia-health-section .orqia-section-head--center .orqia-section-title,
.orqia-health-section .orqia-section-head--center .orqia-section-lead {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.orqia-health-section .orqia-section-head--center .orqia-section-title {
  max-width: 36ch;
}

.orqia-health-section .orqia-section-head--center .orqia-section-lead {
  max-width: 68ch;
  margin-bottom: 0;
}

.orqia-health-problem {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.orqia-health-problem-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin: 0 0 22px;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--orqia-ink);
}

.orqia-health-problem-line span {
  position: relative;
  padding: 0 2px;
}

.orqia-health-problem-line span + span::before {
  content: "·";
  position: absolute;
  left: -12px;
  color: rgba(225, 29, 72, 0.45);
}

.orqia-health-problem-resolve {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: var(--orqia-health-deep);
}

.orqia-health-memphis {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.orqia-health-memphis-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 168px;
  padding: 28px 16px 22px;
  text-align: center;
  background: #fff;
  border: 3px solid var(--orqia-ink);
  box-shadow: 6px 6px 0 rgba(225, 29, 72, 0.85);
  overflow: hidden;
}

.orqia-health-memphis-item::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px dashed rgba(225, 29, 72, 0.28);
  pointer-events: none;
}

.orqia-health-memphis-item:nth-child(odd) {
  background:
    radial-gradient(circle at 12% 18%, rgba(225, 29, 72, 0.16) 0 7px, transparent 8px),
    radial-gradient(circle at 88% 78%, rgba(15, 23, 42, 0.12) 0 5px, transparent 6px),
    #fff;
}

.orqia-health-memphis-item:nth-child(even) {
  background:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 7px,
      rgba(225, 29, 72, 0.07) 7px,
      rgba(225, 29, 72, 0.07) 9px
    ),
    #fff7f8;
  box-shadow: 6px 6px 0 var(--orqia-ink);
}

.orqia-health-memphis-item:nth-child(3n) {
  transform: rotate(-1deg);
}

.orqia-health-memphis-item:nth-child(3n + 1) {
  transform: rotate(0.8deg);
}

.orqia-health-memphis-shape {
  position: relative;
  z-index: 1;
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 2px;
  flex: 0 0 auto;
}

.orqia-health-memphis-item:nth-child(1) .orqia-health-memphis-shape {
  background: var(--orqia-health);
  border: 3px solid var(--orqia-ink);
  border-radius: 50%;
}

.orqia-health-memphis-item:nth-child(2) .orqia-health-memphis-shape {
  background: #fda4af;
  border: 3px solid var(--orqia-ink);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.orqia-health-memphis-item:nth-child(3) .orqia-health-memphis-shape {
  width: 38px;
  height: 38px;
  background: var(--orqia-ink);
  border: 3px solid var(--orqia-health);
  transform: rotate(12deg);
}

.orqia-health-memphis-item:nth-child(4) .orqia-health-memphis-shape {
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--orqia-health) 50%, transparent 50%),
    linear-gradient(0deg, var(--orqia-ink) 50%, #fff 50%);
  background-size: 10px 10px;
  border: 3px solid var(--orqia-ink);
}

.orqia-health-memphis-item:nth-child(5) .orqia-health-memphis-shape {
  border-radius: 50% 12% 50% 12%;
  background: #fb7185;
  border: 3px solid var(--orqia-ink);
}

.orqia-health-memphis-item:nth-child(6) .orqia-health-memphis-shape {
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 38px solid var(--orqia-health-deep);
  background: transparent;
  filter: drop-shadow(2px 2px 0 var(--orqia-ink));
}

.orqia-health-memphis-item:nth-child(7) .orqia-health-memphis-shape {
  border-radius: 4px;
  background: repeating-linear-gradient(
    45deg,
    var(--orqia-health),
    var(--orqia-health) 5px,
    #fff 5px,
    #fff 10px
  );
  border: 3px solid var(--orqia-ink);
}

.orqia-health-memphis-item:nth-child(8) .orqia-health-memphis-shape {
  border-radius: 50%;
  background: conic-gradient(from 20deg, var(--orqia-health), #fda4af, var(--orqia-ink), var(--orqia-health));
  border: 3px solid var(--orqia-ink);
  box-shadow: inset 0 0 0 8px #fff;
}

.orqia-health-memphis-item strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--orqia-font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--orqia-ink);
}

.orqia-health-memphis-item p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 16ch;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--orqia-muted);
}

.orqia-health-clarify {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
}

.orqia-health-clarify article {
  padding: 8px 0 18px;
  border-bottom: 1px solid rgba(225, 29, 72, 0.12);
}

.orqia-health-clarify strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--orqia-font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--orqia-health-deep);
}

.orqia-health-clarify p {
  margin: 0;
  color: var(--orqia-muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

.orqia-health-aptitudes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
}

.orqia-health-aptitudes li {
  padding: 12px 18px;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--orqia-health-deep);
  border-bottom: 2px solid rgba(225, 29, 72, 0.35);
}

.orqia-health-section--cta {
  padding-bottom: 80px;
}

.orqia-health-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  align-items: center;
  gap: 28px 40px;
  padding: 42px 40px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(ellipse 55% 80% at 100% 0%, rgba(255, 255, 255, 0.16), transparent 55%),
    radial-gradient(circle at 8% 90%, rgba(0, 0, 0, 0.18), transparent 42%),
    linear-gradient(135deg, #9f1239 0%, #be123c 42%, #e11d48 100%);
  box-shadow: 0 28px 60px rgba(190, 18, 60, 0.28);
}

.orqia-health-cta-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  bottom: -60px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.14);
  background:
    repeating-linear-gradient(
      -28deg,
      transparent,
      transparent 8px,
      rgba(255, 255, 255, 0.06) 8px,
      rgba(255, 255, 255, 0.06) 10px
    );
  pointer-events: none;
}

.orqia-health-cta-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.orqia-health-cta-kicker {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.orqia-health-cta-copy h2 {
  margin: 0 0 12px;
  max-width: 18ch;
  font-family: var(--orqia-font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #fff;
}

.orqia-health-cta-copy p {
  margin: 0;
  max-width: 48ch;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 241, 242, 0.9);
}

.orqia-health-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 auto;
}

.orqia-health-cta-btn-primary,
.orqia-health-cta-btn-secondary {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.orqia-health-cta-btn-primary {
  background: #fff;
  color: var(--orqia-health-deep);
  border: 1.5px solid transparent;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.orqia-health-cta-btn-primary:hover {
  background: #fff1f2;
  color: var(--orqia-health-deep);
}

.orqia-health-cta-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.42);
}

.orqia-health-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
  .orqia-health-memphis {
    grid-template-columns: 1fr 1fr;
  }

  .orqia-health-memphis-item:nth-child(3n),
  .orqia-health-memphis-item:nth-child(3n + 1) {
    transform: none;
  }

  .orqia-health-cta {
    grid-template-columns: 1fr;
    padding: 32px 26px;
  }

  .orqia-health-cta-copy h2 {
    max-width: none;
  }
}

@media (max-width: 575px) {
  .orqia-health-memphis,
  .orqia-health-clarify {
    grid-template-columns: 1fr;
  }

  .orqia-health-problem-line span + span::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orqia-hub-hero-bg,
  .orqia-hub-hero-inner > .orqia-hero-brand,
  .orqia-hub-hero-inner > .orqia-hero-eyebrow,
  .orqia-hub-hero-inner > h1,
  .orqia-hub-hero-inner > .orqia-hero-lead {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Trust ---------- */
#confianza {
  background:
    linear-gradient(180deg, #071a4f 0%, #0c2e8a 55%, #0a3d6e 100%);
  color: #e8eef8;
}

#confianza .orqia-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#confianza .orqia-section-head {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#confianza .orqia-eyebrow {
  color: var(--orqia-teal);
}

#confianza .orqia-section-title,
#confianza h3 {
  color: #fff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#confianza .orqia-section-lead {
  color: rgba(232, 238, 248, 0.78);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.orqia-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  width: 100%;
}

.orqia-trust-stat {
  padding: 28px 22px;
  border-radius: var(--orqia-radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.orqia-trust-stat strong {
  display: block;
  font-family: var(--orqia-font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  color: var(--orqia-teal);
  margin-bottom: 8px;
}

.orqia-trust-stat span {
  display: block;
  font-size: 0.95rem;
  color: rgba(232, 238, 248, 0.8);
  line-height: 1.45;
  max-width: 28ch;
  margin: 0 auto;
}

.orqia-trust-note {
  font-size: 13px;
  color: rgba(232, 238, 248, 0.7);
  margin: 0 auto;
  max-width: 54ch;
  text-align: center;
  line-height: 1.5;
}

/* ---------- Trial ---------- */
#prueba {
  background: var(--orqia-surface);
}

.orqia-trial {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  padding: 40px 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #eef8f4 100%);
  border: 1px solid rgba(80, 216, 175, 0.35);
  box-shadow: 0 20px 50px rgba(12, 46, 138, 0.06);
}

.orqia-trial h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 16ch;
}

.orqia-trial p {
  color: var(--orqia-muted);
  margin-bottom: 0;
  max-width: 42ch;
}

.orqia-trial-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.orqia-trial-list li {
  position: relative;
  padding: 6px 0 6px 28px;
  color: var(--orqia-ink);
  font-size: 0.95rem;
}

.orqia-trial-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orqia-teal);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.55);
}

.orqia-trial-aside {
  text-align: center;
}

.orqia-trial-aside .orqia-btn {
  width: 100%;
  max-width: 280px;
}

.orqia-trial-aside small {
  display: block;
  margin-top: 12px;
  color: var(--orqia-muted);
  font-size: 12px;
}

/* ---------- Plans polish ---------- */
#planes {
  background: var(--orqia-white);
  padding: 96px 0;
}

#planes .section-header {
  text-align: center;
  margin-bottom: 36px;
}

#planes .section-header h2 {
  font-family: var(--orqia-font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

#planes .section-header p {
  color: var(--orqia-muted);
  max-width: 46ch;
  margin: 12px auto 0;
  font-size: 1.05rem;
}

#planes .orqia-plans-included {
  border-radius: var(--orqia-radius);
  border: 1px solid var(--orqia-line);
  box-shadow: none;
}

#planes .orqia-plans-howto {
  border-radius: var(--orqia-radius);
}

/* ---------- FAQ ---------- */
#faq {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(80, 216, 175, 0.1), transparent 55%),
    linear-gradient(180deg, #f5f7fa 0%, #eef2f5 100%);
}

#faq .orqia-faq-head {
  text-align: center;
  margin: 0 auto 36px;
  max-width: 520px;
}

#faq .orqia-faq-head .orqia-section-title {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

#faq .orqia-faq-head .orqia-section-lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 42ch;
}

#faq .orqia-faq-head a {
  color: var(--orqia-teal-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#faq .orqia-faq-shell {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 48px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

#faq .orqia-faq-item {
  background: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: none;
  overflow: hidden;
  transition: background 200ms ease;
}

#faq .orqia-faq-item:last-child {
  border-bottom: 0;
}

#faq .orqia-faq-item:hover {
  background: rgba(12, 46, 138, 0.02);
  box-shadow: none;
  border-color: rgba(15, 23, 42, 0.08);
}

#faq .orqia-faq-item.is-open {
  background: linear-gradient(90deg, rgba(80, 216, 175, 0.1) 0%, rgba(80, 216, 175, 0.03) 42%, transparent 100%);
  box-shadow: none;
  border-color: rgba(15, 23, 42, 0.08);
}

#faq .orqia-faq-item.is-open + .orqia-faq-item,
#faq .orqia-faq-item.is-open {
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

#faq .orqia-faq-q {
  width: 100%;
  display: grid !important;
  grid-template-columns: 48px 1fr 40px;
  gap: 14px;
  align-items: center;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 22px 24px;
  margin: 0;
  font-family: var(--orqia-font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--orqia-ink);
  cursor: pointer;
  line-height: 1.35;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

#faq .orqia-faq-q:hover,
#faq .orqia-faq-q:focus {
  color: var(--orqia-ink);
  background: transparent;
}

#faq .orqia-faq-q:focus-visible {
  outline: 2px solid rgba(80, 216, 175, 0.7);
  outline-offset: -2px;
}

#faq .orqia-faq-q::after {
  content: none !important;
}

#faq .orqia-faq-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #eef2f7;
  color: var(--orqia-navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: var(--orqia-font-display);
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

#faq .orqia-faq-item.is-open .orqia-faq-num {
  background: linear-gradient(180deg, #5ce0bf 0%, #50d8af 100%);
  color: #0f172a;
  box-shadow: 0 8px 18px rgba(80, 216, 175, 0.35);
}

#faq .orqia-faq-q-text {
  min-width: 0;
}

#faq .orqia-faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  position: relative;
  justify-self: end;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

#faq .orqia-faq-icon::before,
#faq .orqia-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--orqia-navy);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 180ms ease;
}

#faq .orqia-faq-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

#faq .orqia-faq-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

#faq .orqia-faq-item.is-open .orqia-faq-icon {
  background: rgba(80, 216, 175, 0.2);
  border-color: rgba(13, 148, 136, 0.4);
}

#faq .orqia-faq-item.is-open .orqia-faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

#faq .orqia-faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 320ms var(--orqia-ease), opacity 220ms ease;
}

#faq .orqia-faq-item.is-open .orqia-faq-a {
  max-height: 220px;
  opacity: 1;
}

#faq .orqia-faq-a-inner {
  padding: 0 24px 22px 82px;
  color: #5b6578;
  font-size: 1rem;
  line-height: 1.65;
  border-left: 3px solid transparent;
  margin-left: 24px;
}

#faq .orqia-faq-item.is-open .orqia-faq-a-inner {
  border-left-color: var(--orqia-teal);
  padding-left: 18px;
  margin-left: 40px;
}

#faq .orqia-faq-a-inner strong {
  color: var(--orqia-ink);
  font-weight: 600;
}

@media (max-width: 575px) {
  #faq .orqia-faq-q {
    grid-template-columns: 40px 1fr 34px;
    gap: 10px;
    padding: 18px 16px;
    font-size: 1rem;
  }

  #faq .orqia-faq-num {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 12px;
  }

  #faq .orqia-faq-icon {
    width: 32px;
    height: 32px;
  }

  #faq .orqia-faq-a-inner,
  #faq .orqia-faq-item.is-open .orqia-faq-a-inner {
    padding: 0 16px 18px 16px;
    margin-left: 16px;
  }

  #faq .orqia-faq-item.is-open .orqia-faq-a-inner {
    border-left-width: 3px;
    padding-left: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #faq .orqia-faq-a,
  #faq .orqia-faq-icon,
  #faq .orqia-faq-icon::before,
  #faq .orqia-faq-icon::after,
  #faq .orqia-faq-num {
    transition: none !important;
  }
}

/* ---------- Contact ---------- */
#contact {
  background: var(--orqia-white);
  padding: 96px 0 80px;
}

#contact .section-header {
  text-align: center;
  margin-bottom: 32px;
}

#contact .section-header h2 {
  font-family: var(--orqia-font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: none;
  padding-bottom: 0;
  color: var(--orqia-ink);
}

#contact .section-header h2::before {
  display: none;
}

#contact .section-header p {
  color: var(--orqia-muted);
  max-width: 46ch;
  margin: 12px auto 0;
}

#contact .form {
  max-width: 720px;
  margin: 0 auto;
}

#contact .form input,
#contact .form textarea {
  border-radius: 14px;
  border: 1px solid var(--orqia-line);
  padding: 14px 16px;
  font-family: var(--orqia-font-body);
  box-shadow: none;
}

#contact .form button[type="submit"] {
  background: var(--orqia-navy);
  border: 0;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: var(--orqia-font-body);
  font-weight: 600;
  min-height: 48px;
  transition: background 180ms ease, transform 180ms ease;
}

#contact .form button[type="submit"]:hover {
  background: var(--orqia-navy-deep);
  transform: translateY(-1px);
}

/* ---------- Footer ---------- */
.orqia-footer {
  background: #07121f;
  color: rgba(232, 238, 248, 0.72);
  padding: 48px 0 28px;
}

.orqia-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.orqia-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 12px;
}

.orqia-footer-brand img:last-child {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.orqia-footer-brand img:first-child {
  height: 34px;
  filter: none;
  opacity: 1;
}

/* Logos sin caja de fondo */
.orqia-nav-brand img,
.orqia-hero-brand img,
.orqia-footer-brand img,
.orqia-login-logo-link img {
  background: transparent;
}

.orqia-footer p {
  margin: 0;
  font-size: 0.9rem;
  max-width: 32ch;
  color: rgba(232, 238, 248, 0.62);
}

.orqia-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.orqia-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.orqia-footer li {
  margin-bottom: 8px;
}

.orqia-footer a {
  color: rgba(232, 238, 248, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
}

.orqia-footer a:hover {
  color: var(--orqia-teal);
}

.orqia-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(232, 238, 248, 0.45);
}

.orqia-footer-stores {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.orqia-footer-stores a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  color: rgba(232, 238, 248, 0.8);
}

/* Back to top */
.back-to-top {
  border-radius: 12px !important;
  z-index: 990;
}

/* ---------- Legacy overrides (Reveal) ---------- */
body.orqia-landing #operaciones.orqia-hero {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

body.orqia-landing #operaciones.orqia-hero p,
body.orqia-landing #operaciones.orqia-hero h1 {
  text-align: center;
}

body.orqia-landing #footer.orqia-footer {
  background: #07121f;
  padding: 48px 0 28px;
  color: rgba(232, 238, 248, 0.72);
  font-size: inherit;
}

body.orqia-landing #footer.orqia-footer a {
  color: rgba(232, 238, 248, 0.78);
}

body.orqia-landing #footer.orqia-footer a:hover {
  color: var(--orqia-teal);
}

body.orqia-landing #footer.orqia-footer p,
body.orqia-landing #footer.orqia-footer .orqia-footer-bottom {
  color: rgba(232, 238, 248, 0.62);
}

body.orqia-landing #footer.orqia-footer h4 {
  color: #ffffff;
}

body.orqia-landing #footer.orqia-footer .orqia-footer-bottom strong {
  color: #ffffff;
}

body.orqia-landing #footer.orqia-footer .orqia-footer-stores a {
  color: rgba(232, 238, 248, 0.88);
  border-color: rgba(255, 255, 255, 0.18);
}

body.orqia-landing #nav-menu-container {
  margin: 0;
  float: none;
  padding: 0;
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

body.orqia-landing .nav-menu {
  margin: 0;
  padding: 0;
  float: none;
}

body.orqia-landing .nav-menu > li {
  float: none;
  display: block;
  margin: 0;
  padding: 0;
}

body.orqia-landing .orqia-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

body.orqia-landing .orqia-nav-links > li {
  float: none;
  margin: 0;
}

body.orqia-landing .orqia-nav-links a {
  font-family: var(--orqia-font-body);
  font-weight: 500;
  color: var(--orqia-ink);
}

body.orqia-landing #contact {
  padding-top: 96px;
  padding-bottom: 80px;
}

body.orqia-landing p {
  padding: 0;
}

/* How-to fab in new layout */
.orqia-howto-fab--floating {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 980;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .orqia-nav-toggle {
    display: inline-flex;
  }

  body.orqia-landing #nav-menu-container {
    position: static;
    flex: 0 0 auto;
    display: block;
  }

  .orqia-nav-links {
    position: fixed;
    top: var(--orqia-nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(245, 247, 251, 0.97);
    backdrop-filter: blur(12px);
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--orqia-line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 280ms var(--orqia-ease), opacity 220ms ease;
    z-index: 999;
  }

  .orqia-nav-links.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .orqia-nav-actions .orqia-btn-primary {
    display: none;
  }

  .orqia-problem-grid,
  .orqia-trust-grid {
    grid-template-columns: 1fr;
  }

  .orqia-problem-stage {
    padding: 6px;
    border-radius: 22px;
  }

  .orqia-problem-grid {
    border-radius: 18px;
  }

  .orqia-problem-item {
    padding: 26px 22px 28px;
  }

  .orqia-problem-item h3 {
    max-width: none;
  }

  .orqia-problem-bridge {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 20px;
    border-radius: 18px;
  }

  .orqia-problem-bridge .orqia-btn-primary {
    width: 100%;
    justify-content: center;
  }

  .orqia-platform-grid,
  .orqia-platform-grid--modules {
    grid-template-columns: 1fr;
  }

  .orqia-story {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .orqia-story-visual {
    height: min(64vh, 520px);
    order: -1;
    position: sticky;
    top: calc(var(--orqia-nav-h) + 12px);
    z-index: 2;
    border-radius: 24px;
  }

  .orqia-story-panels {
    height: calc(100% - 108px);
    padding: 18px 16px 8px;
  }

  .orqia-story-panel {
    inset: 18px 16px 8px;
  }

  .orqia-story-mark {
    font-size: clamp(6rem, 28vw, 9rem);
    right: -4%;
    top: -4%;
  }

  .orqia-ui {
    width: min(100%, 360px);
    padding: 16px;
    border-radius: 18px;
  }

  .orqia-ui--live {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .orqia-ui-side {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .orqia-ui-side-card {
    flex: 1 1 40%;
  }

  .orqia-ui-people {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .orqia-story-footer {
    padding: 12px 16px 14px;
  }

  .orqia-story-footer-copy p {
    display: none;
  }

  .orqia-story-step {
    min-height: auto;
    padding: 18px 0 18px 14px;
  }

  .orqia-story-dots {
    display: flex;
  }

  .orqia-trial {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .orqia-footer-inner {
    grid-template-columns: 1fr;
  }

  .orqia-hero-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
    gap: 4px;
  }

  .orqia-hero-pillars li {
    padding: 12px 8px;
  }
}

@media (max-width: 575px) {
  .orqia-section {
    padding: 72px 0;
  }

  .orqia-nav-actions .orqia-btn-ghost {
    padding: 0 12px;
    min-height: 40px;
    font-size: 13px;
  }

  .orqia-hero {
    padding-top: calc(var(--orqia-nav-h) + 36px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .orqia-reveal,
  .orqia-story-panel,
  .orqia-btn {
    transition: none !important;
  }

  .orqia-reveal {
    opacity: 1;
    transform: none;
  }

  .orqia-hero-bg,
  .orqia-hero-inner > .orqia-hero-product,
  .orqia-hero-inner > .orqia-hero-tagline,
  .orqia-hero-inner > .orqia-hero-lead,
  .orqia-hero-inner > .orqia-hero-ctas,
  .orqia-hero-inner > .orqia-hero-pillars,
  .orqia-hero-pillars li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
