:root {
  --orch-navy: #07152d;
  --orch-navy-soft: #0b1f3f;
  --orch-blue: #176bff;
  --orch-blue-dark: #0e46d8;
  --orch-cyan: #18d7f3;
  --orch-cyan-soft: #dffaff;
  --orch-gray: #8a94a6;
  --orch-light: #f7faff;
  --orch-white: #ffffff;
  --orch-border: #e6edf7;
  --orch-text: #0f172a;
  --orch-muted: #64748b;
  --shadow-soft: 0 18px 50px rgba(7, 21, 45, 0.08);
  --shadow-medium: 0 28px 80px rgba(7, 21, 45, 0.14);
  --shadow-blue: 0 24px 70px rgba(23, 107, 255, 0.18);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--orch-text);
  background: var(--orch-white);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 237, 247, 0.82);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(7, 21, 45, 0.08);
}

.nav-container {
  width: min(1180px, calc(100% - 40px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 168px;
}

.brand-logo {
  height: 50px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

.brand-fallback {
  display: none;
  font-size: 24px;
  font-weight: 900;
  color: var(--orch-navy);
  letter-spacing: -0.04em;
}

.brand-fallback small {
  color: var(--orch-blue);
  font-size: 14px;
  letter-spacing: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
}

.nav-menu a {
  color: var(--orch-muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--orch-blue);
}

.nav-menu a:hover {
  transform: translateY(-1px);
}

.nav-cta,
.btn-primary {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  box-shadow: 0 14px 32px rgba(23, 107, 255, 0.24);
}

.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--orch-border);
  background: #ffffff;
  border-radius: 14px;
  padding: 11px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--orch-navy);
  margin: 5px 0;
  border-radius: 99px;
  transition: 0.22s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(23, 107, 255, 0.30);
}

.btn-secondary {
  color: var(--orch-navy);
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: 0 10px 30px rgba(7, 21, 45, 0.06);
}

.btn-secondary:hover {
  border-color: rgba(23, 107, 255, 0.26);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 98px 0 64px;
  background:
    radial-gradient(circle at 12% 8%, rgba(24, 215, 243, 0.18), transparent 34rem),
    radial-gradient(circle at 88% 4%, rgba(23, 107, 255, 0.14), transparent 36rem),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.parallax-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(4px);
  will-change: transform;
}

.orb-one {
  width: 420px;
  height: 420px;
  left: -170px;
  top: 40px;
  background: radial-gradient(circle, rgba(24, 215, 243, 0.25), transparent 64%);
}

.orb-two {
  width: 460px;
  height: 460px;
  right: -180px;
  top: 20px;
  background: radial-gradient(circle, rgba(23, 107, 255, 0.20), transparent 66%);
}

.orb-three {
  width: 230px;
  height: 230px;
  left: 48%;
  bottom: -95px;
  background: radial-gradient(circle, rgba(24, 215, 243, 0.18), transparent 68%);
}

.parallax-grid {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  pointer-events: none;
  will-change: transform;
  background-image:
    linear-gradient(rgba(23, 107, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 107, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.soft-grid {
  opacity: 0.22;
  mask-image: linear-gradient(to bottom, transparent, black 20%, transparent 92%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orch-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(24, 215, 243, 0.12);
  margin-bottom: 22px;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--orch-cyan);
  box-shadow: 0 0 18px var(--orch-cyan);
  flex: 0 0 auto;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--orch-navy);
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(42px, 5.8vw, 74px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

h3 {
  font-size: 22px;
  line-height: 1.22;
}

p {
  color: var(--orch-muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 30px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span {
  padding: 9px 13px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  color: var(--orch-navy-soft);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(7, 21, 45, 0.05);
}

.hero-visual {
  position: relative;
}

.dashboard-card {
  position: relative;
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-medium);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(23,107,255,0.26), rgba(24,215,243,0.22), transparent 55%);
  z-index: -1;
}

.dashboard-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  right: 16px;
  top: 14px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(24, 215, 243, 0.22), transparent 70%);
  pointer-events: none;
}

.dashboard-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 0%, rgba(24, 215, 243, 0.22), transparent 12rem),
    var(--orch-navy);
  color: #ffffff;
  margin-bottom: 16px;
}

.dashboard-top strong {
  display: block;
  margin-top: 4px;
  font-size: 19px;
}

.dash-label {
  color: #98b2d8;
  font-size: 12px;
  font-weight: 800;
}

.dash-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bff5ff;
  font-size: 13px;
  font-weight: 900;
}

.dash-status span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orch-cyan);
  box-shadow: 0 0 18px var(--orch-cyan);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.metric-card {
  min-height: 128px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
}

.metric-card span {
  display: block;
  color: var(--orch-muted);
  font-size: 13px;
  font-weight: 800;
}

.metric-card strong {
  display: block;
  margin: 12px 0 4px;
  color: var(--orch-navy);
  font-size: 34px;
  letter-spacing: -0.04em;
}

.metric-card small {
  color: var(--orch-blue);
  font-weight: 800;
}

.flow-preview {
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(23, 107, 255, 0.08), rgba(24, 215, 243, 0.12));
  display: flex;
  align-items: center;
}

.flow-node {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  color: var(--orch-navy);
  font-size: 12px;
  font-weight: 900;
  flex: 0 0 auto;
}

.flow-node.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
}

.flow-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--orch-blue), var(--orch-cyan));
  opacity: 0.6;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.trust-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-logo {
  width: 64px;
  height: auto;
  flex: 0 0 auto;
}

.trust-strip strong {
  display: block;
  color: var(--orch-navy);
  margin-bottom: 4px;
}

.trust-strip span {
  color: var(--orch-muted);
  font-size: 14px;
  line-height: 1.6;
}

.trust-mini-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.trust-mini-grid span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(23, 107, 255, 0.08);
  color: var(--orch-blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.problem-section,
.solution-section,
.modules-preview-section,
.workflow-section,
.final-cta-section,
.industries-section,
.workshop-section,
.partner-section {
  padding: 86px 0;
}

.problem-section,
.modules-preview-section,
.partner-section {
  background: #ffffff;
}

.solution-section,
.workflow-section,
.industries-section {
  position: relative;
  overflow: hidden;
  background: var(--orch-light);
}

.workshop-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 0%, rgba(24, 215, 243, 0.16), transparent 32rem),
    linear-gradient(180deg, #ffffff, #f7faff);
}

.section-heading {
  max-width: 820px;
}

.section-heading.center {
  margin: 0 auto 42px;
}

.section-heading h2,
.workshop-panel h2,
.partner-card h2 {
  margin-top: 14px;
}

.section-heading p,
.workshop-panel p,
.partner-card p {
  margin-top: 18px;
  font-size: 17px;
}

.cards-three,
.module-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.industry-grid {
  grid-template-columns: repeat(4, 1fr);
}

.info-card,
.module-card,
.solution-item,
.industry-card {
  background: #ffffff;
  border: 1px solid var(--orch-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.info-card:hover,
.module-card:hover,
.solution-item:hover,
.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 107, 255, 0.20);
  box-shadow: var(--shadow-blue);
}

.card-number,
.module-card span {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  font-weight: 900;
}

.info-card p,
.module-card p,
.industry-card p {
  margin-bottom: 0;
}

.split-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.solution-list {
  display: grid;
  gap: 14px;
}

.solution-item strong {
  display: block;
  color: var(--orch-navy);
  font-size: 17px;
  margin-bottom: 8px;
}

.solution-item span {
  color: var(--orch-muted);
  line-height: 1.65;
}

.workshop-grid {
  align-items: stretch;
}

.workshop-panel,
.demo-flow-card,
.partner-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-medium);
}

.workshop-panel {
  padding: 38px;
  background: #ffffff;
}

.demo-flow-card {
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 215, 243, 0.24), transparent 22rem),
    linear-gradient(135deg, var(--orch-navy), var(--orch-navy-soft));
}

.demo-flow-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: #ffffff;
  margin-bottom: 20px;
}

.demo-flow-header span {
  color: #bff5ff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.demo-flow-header strong {
  font-size: 24px;
}

.demo-flow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.demo-flow-grid div {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 900;
  line-height: 1.35;
}

.industry-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.industry-card h3 {
  font-size: 21px;
}

.module-cta {
  margin-top: 36px;
}

.workflow-track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.workflow-step {
  position: relative;
  min-height: 96px;
  padding: 16px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
  color: var(--orch-navy);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
}

.workflow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  color: var(--orch-blue);
  z-index: 2;
}

.partner-card {
  padding: 42px;
  background:
    radial-gradient(circle at 0% 0%, rgba(24, 215, 243, 0.16), transparent 24rem),
    #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.partner-card > div {
  max-width: 760px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(24,215,243,0.22), transparent 24rem),
    linear-gradient(135deg, var(--orch-navy), var(--orch-navy-soft));
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-medium);
}

.final-cta > div,
.final-cta .hero-actions {
  position: relative;
  z-index: 1;
}

.final-cta-watermark {
  position: absolute;
  right: -28px;
  bottom: -58px;
  width: 230px;
  opacity: 0.10;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

.final-cta h2,
.final-cta p {
  color: #ffffff;
}

.final-cta p {
  color: #bdd0eb;
}

.final-cta .btn-secondary {
  border-color: rgba(255,255,255,0.16);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--orch-border);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--orch-muted);
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 82px;
  height: auto;
}

.footer-inner strong {
  color: var(--orch-navy);
}

.footer-inner p {
  margin: 6px 0 0;
}

.footer-meta {
  display: grid;
  gap: 6px;
  text-align: right;
  font-size: 14px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav-menu {
    gap: 16px;
    font-size: 13px;
  }

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

@media (max-width: 980px) {
  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .cards-three,
  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-step::after {
    display: none;
  }

  .final-cta,
  .partner-card,
  .trust-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-mini-grid {
    justify-content: flex-start;
  }

  .footer-meta {
    text-align: left;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid var(--orch-border);
    box-shadow: var(--shadow-medium);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px 10px;
  }

  .nav-cta {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-container {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    height: 40px;
    max-width: 176px;
  }

  .hero-section {
    padding: 66px 0 48px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .cards-three,
  .module-grid,
  .metric-grid,
  .workflow-track,
  .industry-grid,
  .demo-flow-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-top {
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }

  .flow-preview {
    overflow-x: auto;
  }

  .problem-section,
  .solution-section,
  .modules-preview-section,
  .workflow-section,
  .final-cta-section,
  .industries-section,
  .workshop-section,
  .partner-section {
    padding: 64px 0;
  }

  .workshop-panel,
  .demo-flow-card,
  .partner-card,
  .final-cta {
    padding: 30px;
  }

  .footer-brand,
  .trust-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 68px;
  }

  .trust-logo {
    width: 54px;
  }

  .final-cta-watermark {
    width: 180px;
    right: -44px;
    bottom: -48px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

/* =========================================================
   ORCHESTRA MODULES PAGE
   Path: /orchestra-erp/modules/
   ========================================================= */

.modules-hero-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 12% 6%, rgba(24, 215, 243, 0.18), transparent 34rem),
    radial-gradient(circle at 92% 8%, rgba(23, 107, 255, 0.16), transparent 36rem),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.modules-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 58px;
  align-items: center;
}

.modules-hero-copy h1 {
  max-width: 850px;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--orch-muted);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--orch-border);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(7, 21, 45, 0.04);
}

.page-breadcrumb a {
  color: var(--orch-blue);
}

.page-breadcrumb strong {
  color: var(--orch-navy);
}

.modules-points {
  max-width: 780px;
}

.module-system-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 215, 243, 0.22), transparent 22rem),
    linear-gradient(135deg, var(--orch-navy), var(--orch-navy-soft));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-medium);
}

.module-system-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  pointer-events: none;
}

.module-system-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 22px;
  color: #ffffff;
}

.module-system-top span {
  color: #bff5ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.module-system-top strong {
  font-size: 24px;
  letter-spacing: -0.04em;
}

.module-system-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.system-node {
  min-height: 76px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  border-radius: 20px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}

.system-node.active {
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 42px rgba(23, 107, 255, 0.28);
}

.module-system-note {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.module-system-note span {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--orch-cyan);
  box-shadow: 0 0 18px var(--orch-cyan);
  flex: 0 0 auto;
}

.module-system-note p {
  margin: 0;
  color: #bdd0eb;
  font-size: 14px;
  line-height: 1.7;
}

.module-overview-section,
.module-detail-section,
.implementation-note-section {
  padding: 86px 0;
  background: #ffffff;
}

.module-flow-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background: var(--orch-light);
}

.module-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.module-overview-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.module-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 107, 255, 0.22);
  box-shadow: var(--shadow-blue);
}

.module-overview-card span {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  font-weight: 900;
}

.module-overview-card h3 {
  margin-top: 22px;
  font-size: 24px;
}

.module-overview-card p {
  margin: 14px 0 0;
}

.module-flow-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.module-flow-step {
  position: relative;
  min-height: 98px;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  color: var(--orch-navy);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 900;
}

.module-flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  color: var(--orch-blue);
  z-index: 2;
}

.flow-support-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.flow-support-card {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
}

.flow-support-card strong {
  display: block;
  color: var(--orch-navy);
  font-size: 17px;
  margin-bottom: 8px;
}

.flow-support-card span {
  color: var(--orch-muted);
  line-height: 1.65;
}

.module-detail-list {
  display: grid;
  gap: 20px;
}

.module-detail-card {
  scroll-margin-top: 110px;
  padding: 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 215, 243, 0.10), transparent 20rem),
    #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.module-detail-card:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 107, 255, 0.18);
  box-shadow: var(--shadow-blue);
}

.module-detail-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.module-detail-head > span {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  font-weight: 900;
  flex: 0 0 auto;
}

.module-detail-head small {
  display: block;
  margin-bottom: 4px;
  color: var(--orch-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.module-detail-head h3 {
  font-size: 28px;
}

.module-detail-card > p {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: 16px;
}

.module-detail-columns {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  padding: 22px;
  border-radius: 24px;
  background: var(--orch-light);
  border: 1px solid var(--orch-border);
}

.module-detail-columns strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orch-navy);
  font-size: 15px;
}

.module-detail-columns ul {
  margin: 0;
  padding-left: 18px;
  color: var(--orch-muted);
  line-height: 1.75;
}

.module-detail-columns li {
  margin-bottom: 6px;
}

.module-detail-columns p {
  margin: 0;
}

.module-tags,
.implementation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.module-tags span,
.implementation-badges span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(23, 107, 255, 0.08);
  color: var(--orch-blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.implementation-note-section {
  background: var(--orch-light);
}

.implementation-note-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(24, 215, 243, 0.16), transparent 24rem),
    #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-medium);
}

.implementation-note-card h2 {
  margin-top: 14px;
}

.implementation-note-card p {
  margin-top: 18px;
  font-size: 17px;
}

.implementation-badges {
  justify-content: flex-end;
}

.implementation-badges span {
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: 0 8px 24px rgba(7, 21, 45, 0.05);
}

@media (max-width: 1100px) {
  .module-flow-track {
    grid-template-columns: repeat(4, 1fr);
  }

  .module-flow-step::after {
    display: none;
  }
}

@media (max-width: 980px) {
  .modules-hero-grid,
  .module-detail-columns,
  .implementation-note-card {
    grid-template-columns: 1fr;
  }

  .module-overview-grid,
  .flow-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .implementation-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .modules-hero-section {
    padding: 66px 0 54px;
  }

  .module-system-card,
  .module-detail-card,
  .implementation-note-card {
    padding: 28px;
  }

  .module-system-flow,
  .module-overview-grid,
  .module-flow-track,
  .flow-support-grid {
    grid-template-columns: 1fr;
  }

  .module-detail-head {
    align-items: flex-start;
  }

  .module-detail-head h3 {
    font-size: 24px;
  }

  .module-overview-section,
  .module-flow-section,
  .module-detail-section,
  .implementation-note-section {
    padding: 64px 0;
  }
}


/* =====================================================
   INDUSTRIES / USE CASES PAGE
   Path: /orchestra-erp/industries/
   ===================================================== */

.industries-hero-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 78px;
  background:
    radial-gradient(circle at 8% 10%, rgba(24, 215, 243, 0.18), transparent 34rem),
    radial-gradient(circle at 90% 6%, rgba(23, 107, 255, 0.14), transparent 36rem),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.industries-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.industries-hero-copy {
  position: relative;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--orch-border);
  color: var(--orch-muted);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(7, 21, 45, 0.05);
}

.page-breadcrumb a {
  color: var(--orch-blue);
}

.page-breadcrumb strong {
  color: var(--orch-navy);
}

.industry-map-card {
  position: relative;
  padding: 28px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 215, 243, 0.18), transparent 24rem),
    linear-gradient(180deg, #ffffff, #f4f8ff);
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-medium);
}

.industry-map-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(23,107,255,0.24), rgba(24,215,243,0.20), transparent 56%);
  z-index: -1;
}

.industry-map-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding: 18px;
  margin-bottom: 16px;
  border-radius: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 215, 243, 0.22), transparent 13rem),
    var(--orch-navy);
}

.industry-map-top span {
  color: #bff5ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.industry-map-top strong {
  display: block;
  margin-top: 5px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.industry-map-badge {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.industry-map-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.industry-map-item {
  min-height: 112px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: 0 12px 32px rgba(7, 21, 45, 0.06);
}

.industry-map-item small {
  display: block;
  margin-bottom: 10px;
  color: var(--orch-blue);
  font-size: 12px;
  font-weight: 900;
}

.industry-map-item strong {
  display: block;
  color: var(--orch-navy);
  font-size: 17px;
  line-height: 1.25;
}

.usecase-overview-section,
.industry-detail-section,
.fit-check-section,
.industry-problem-section {
  padding: 86px 0;
}

.usecase-overview-section,
.industry-detail-section {
  background: #ffffff;
}

.industry-problem-section,
.fit-check-section {
  position: relative;
  overflow: hidden;
  background: var(--orch-light);
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.usecase-card {
  position: relative;
  overflow: hidden;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 215, 243, 0.10), transparent 18rem),
    #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.usecase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 107, 255, 0.22);
  box-shadow: var(--shadow-blue);
}

.usecase-card > span {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  font-weight: 900;
}

.usecase-card h3 {
  margin-top: 22px;
  font-size: 24px;
}

.usecase-card p {
  margin: 14px 0 0;
}

.usecase-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  color: var(--orch-blue);
  font-size: 13px;
  font-weight: 900;
}

.usecase-card-footer::after {
  content: "→";
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
}

.industry-problem-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.problem-panel,
.solution-panel {
  padding: 36px;
  border-radius: 34px;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-medium);
}

.problem-panel {
  background: #ffffff;
}

.solution-panel {
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 215, 243, 0.22), transparent 24rem),
    linear-gradient(135deg, var(--orch-navy), var(--orch-navy-soft));
  color: #ffffff;
}

.problem-panel h2,
.solution-panel h2 {
  margin-top: 14px;
}

.solution-panel h2,
.solution-panel p {
  color: #ffffff;
}

.solution-panel p {
  color: #bdd0eb;
}

.problem-list,
.solution-list-compact {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.problem-list div,
.solution-list-compact div {
  padding: 16px;
  border-radius: 20px;
  font-weight: 850;
  line-height: 1.45;
}

.problem-list div {
  color: var(--orch-navy);
  background: var(--orch-light);
  border: 1px solid var(--orch-border);
}

.solution-list-compact div {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.industry-detail-list {
  display: grid;
  gap: 20px;
}

.industry-detail-card {
  scroll-margin-top: 110px;
  padding: 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 215, 243, 0.10), transparent 22rem),
    #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.industry-detail-card:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 107, 255, 0.18);
  box-shadow: var(--shadow-blue);
}

.industry-detail-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.industry-detail-head > span {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  font-weight: 900;
  flex: 0 0 auto;
}

.industry-detail-head small {
  display: block;
  margin-bottom: 4px;
  color: var(--orch-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.industry-detail-head h3 {
  font-size: 28px;
}

.industry-detail-card > p {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: 16px;
}

.industry-detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 18px;
}

.industry-detail-block {
  padding: 22px;
  border-radius: 24px;
  background: var(--orch-light);
  border: 1px solid var(--orch-border);
}

.industry-detail-block strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orch-navy);
  font-size: 15px;
}

.industry-detail-block ul {
  margin: 0;
  padding-left: 18px;
  color: var(--orch-muted);
  line-height: 1.75;
}

.industry-detail-block li {
  margin-bottom: 6px;
}

.industry-module-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-module-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(23, 107, 255, 0.08);
  color: var(--orch-blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.fit-check-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-medium);
}

.fit-check-card h2 {
  margin-top: 14px;
}

.fit-check-card p {
  margin-top: 18px;
  font-size: 17px;
}

.fit-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.fit-check-item {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: var(--orch-light);
  border: 1px solid var(--orch-border);
  color: var(--orch-navy);
  font-weight: 900;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .industry-detail-columns {
    grid-template-columns: 1fr 1fr;
  }

  .industry-detail-block:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .industries-hero-grid,
  .industry-problem-grid,
  .fit-check-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .industries-hero-section {
    padding: 66px 0 54px;
  }

  .industry-map-card,
  .problem-panel,
  .solution-panel,
  .industry-detail-card,
  .fit-check-card {
    padding: 28px;
  }

  .industry-map-grid,
  .usecase-grid,
  .industry-detail-columns,
  .fit-check-grid {
    grid-template-columns: 1fr;
  }

  .usecase-overview-section,
  .industry-detail-section,
  .fit-check-section,
  .industry-problem-section {
    padding: 64px 0;
  }

  .industry-detail-head {
    align-items: flex-start;
  }

  .industry-detail-head h3 {
    font-size: 24px;
  }
}

/* =====================================================
   Demo & Partnership Page
   Path: /orchestra-erp/demo/
   ===================================================== */

.demo-hero-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 78px;
  background:
    radial-gradient(circle at 12% 8%, rgba(24, 215, 243, 0.18), transparent 34rem),
    radial-gradient(circle at 88% 4%, rgba(23, 107, 255, 0.14), transparent 36rem),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.demo-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 58px;
  align-items: center;
}

.demo-hero-copy h1 {
  max-width: 760px;
}

.demo-points span {
  background: rgba(255, 255, 255, 0.86);
}

.demo-session-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 215, 243, 0.24), transparent 22rem),
    linear-gradient(135deg, var(--orch-navy), var(--orch-navy-soft));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-medium);
}

.demo-session-card::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -88px;
  bottom: -96px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(24, 215, 243, 0.20), transparent 68%);
  pointer-events: none;
}

.demo-session-top {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  color: #ffffff;
  margin-bottom: 18px;
}

.demo-session-top span {
  color: #bff5ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.demo-session-top strong {
  font-size: 26px;
  line-height: 1.1;
}

.demo-session-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.demo-date-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.demo-date-card small {
  display: block;
  color: #bff5ff;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.demo-date-card strong {
  display: block;
  font-size: 34px;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.demo-date-card span {
  display: block;
  color: #bdd0eb;
  line-height: 1.65;
}

.demo-session-list {
  display: grid;
  gap: 10px;
}

.demo-session-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: #ffffff;
  font-weight: 800;
}

.demo-session-list span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  font-size: 12px;
  font-weight: 900;
}

.demo-session-footer {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.demo-session-footer span {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 99px;
  background: var(--orch-cyan);
  box-shadow: 0 0 18px var(--orch-cyan);
  flex: 0 0 auto;
}

.demo-session-footer p {
  margin: 0;
  color: #bdd0eb;
  font-size: 14px;
  line-height: 1.7;
}

.demo-options-section,
.demo-walkthrough-section,
.partner-detail-section,
.request-demo-section {
  padding: 86px 0;
}

.demo-options-section,
.partner-detail-section {
  background: #ffffff;
}

.demo-walkthrough-section,
.request-demo-section {
  position: relative;
  overflow: hidden;
  background: var(--orch-light);
}

.demo-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.demo-option-card {
  min-height: 360px;
  padding: 28px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.demo-option-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 107, 255, 0.20);
  box-shadow: var(--shadow-blue);
}

.demo-option-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  font-weight: 900;
}

.demo-option-card p {
  margin-bottom: 18px;
}

.demo-option-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.demo-option-card li {
  position: relative;
  padding-left: 22px;
  color: var(--orch-muted);
  line-height: 1.55;
  font-weight: 700;
}

.demo-option-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--orch-cyan);
  box-shadow: 0 0 14px rgba(24, 215, 243, 0.50);
}

.walkthrough-timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.walkthrough-step {
  position: relative;
  min-height: 250px;
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
}

.walkthrough-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 42px;
  color: var(--orch-blue);
  z-index: 2;
  font-weight: 900;
}

.walkthrough-step span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  font-weight: 900;
  font-size: 13px;
}

.walkthrough-step strong {
  display: block;
  color: var(--orch-navy);
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.walkthrough-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.partner-detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.partner-copy p {
  font-size: 17px;
  margin: 18px 0 26px;
}

.partner-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.partner-type-card {
  min-height: 168px;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.partner-type-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 107, 255, 0.20);
  box-shadow: var(--shadow-blue);
}

.partner-type-card strong {
  display: block;
  color: var(--orch-navy);
  font-size: 18px;
  margin-bottom: 10px;
}

.partner-type-card span {
  display: block;
  color: var(--orch-muted);
  line-height: 1.65;
}

.request-demo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.request-copy p {
  font-size: 17px;
  margin: 18px 0 24px;
}

.request-contact-card {
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 8px;
}

.request-contact-card strong {
  color: var(--orch-navy);
}

.request-contact-card a {
  color: var(--orch-blue);
  font-weight: 900;
  word-break: break-word;
}

.request-contact-card span {
  color: var(--orch-muted);
  font-size: 14px;
}

.demo-form {
  padding: 30px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-medium);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row.two-columns {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-row.two-columns > div {
  display: grid;
  gap: 8px;
}

.demo-form label {
  color: var(--orch-navy);
  font-size: 13px;
  font-weight: 900;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid var(--orch-border);
  background: var(--orch-light);
  color: var(--orch-text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.demo-form textarea {
  resize: vertical;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  background: #ffffff;
  border-color: rgba(23, 107, 255, 0.44);
  box-shadow: 0 0 0 4px rgba(23, 107, 255, 0.08);
}

.demo-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .walkthrough-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .walkthrough-step::after {
    display: none;
  }
}

@media (max-width: 980px) {
  .demo-hero-grid,
  .partner-detail-grid,
  .request-demo-grid {
    grid-template-columns: 1fr;
  }

  .demo-option-grid,
  .walkthrough-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .demo-hero-section {
    padding: 66px 0 54px;
  }

  .demo-options-section,
  .demo-walkthrough-section,
  .partner-detail-section,
  .request-demo-section {
    padding: 64px 0;
  }

  .demo-session-card,
  .demo-option-card,
  .partner-type-card,
  .demo-form,
  .request-contact-card {
    padding: 26px;
  }

  .demo-option-grid,
  .walkthrough-timeline,
  .partner-type-grid,
  .form-row.two-columns {
    grid-template-columns: 1fr;
  }

  .demo-date-card strong {
    font-size: 28px;
  }

  .walkthrough-step {
    min-height: auto;
  }
}

/* =====================================================
   WORKSHOP PAGE
   ===================================================== */

.workshop-hero-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 76px;
  background:
    radial-gradient(circle at 12% 8%, rgba(24, 215, 243, 0.18), transparent 34rem),
    radial-gradient(circle at 88% 0%, rgba(23, 107, 255, 0.14), transparent 36rem),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.workshop-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 58px;
  align-items: center;
}

.workshop-session-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 215, 243, 0.24), transparent 22rem),
    linear-gradient(135deg, var(--orch-navy), var(--orch-navy-soft));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-medium);
}

.workshop-session-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  bottom: -90px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(24, 215, 243, 0.18), transparent 68%);
  pointer-events: none;
}

.workshop-session-top {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  color: #ffffff;
}

.workshop-session-top span {
  display: block;
  color: #bff5ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.workshop-session-top strong {
  display: block;
  max-width: 440px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.workshop-session-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
}

.workshop-focus-card,
.workshop-session-list div {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.workshop-focus-card {
  padding: 22px;
}

.workshop-focus-card small {
  display: block;
  color: #bff5ff;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.workshop-focus-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.workshop-focus-card span {
  display: block;
  color: #d9ecff;
  line-height: 1.6;
  font-size: 14px;
}

.workshop-session-list {
  display: grid;
  gap: 10px;
}

.workshop-session-list div {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-weight: 900;
  line-height: 1.35;
}

.workshop-session-list span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  color: #ffffff;
  font-size: 12px;
}

.workshop-session-footer {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.workshop-session-footer span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--orch-cyan);
  box-shadow: 0 0 18px var(--orch-cyan);
}

.workshop-session-footer p {
  margin: 0;
  color: #d9ecff;
  font-size: 14px;
  line-height: 1.65;
}

.workshop-audience-section,
.workshop-flow-section,
.workshop-benefit-section,
.workshop-format-section {
  padding: 86px 0;
  background: #ffffff;
}

.workshop-materials-section,
.workshop-demo-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background: var(--orch-light);
}

.workshop-audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.workshop-audience-card,
.workshop-material-item,
.workshop-flow-step,
.workshop-benefit-card,
.workshop-format-card,
.workshop-format-list div {
  border: 1px solid var(--orch-border);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.workshop-audience-card:hover,
.workshop-material-item:hover,
.workshop-flow-step:hover,
.workshop-benefit-card:hover,
.workshop-format-list div:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 107, 255, 0.20);
  box-shadow: var(--shadow-blue);
}

.workshop-audience-card {
  min-height: 250px;
  padding: 24px;
  border-radius: 26px;
}

.workshop-audience-card span,
.workshop-flow-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  font-weight: 900;
  font-size: 13px;
}

.workshop-audience-card h3 {
  font-size: 20px;
}

.workshop-audience-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.65;
}

.workshop-materials-grid,
.workshop-format-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.workshop-materials-copy p,
.workshop-format-card p {
  font-size: 17px;
  margin: 18px 0 26px;
}

.workshop-material-list,
.workshop-format-list {
  display: grid;
  gap: 14px;
}

.workshop-material-item,
.workshop-format-list div {
  padding: 24px;
  border-radius: 24px;
}

.workshop-material-item strong,
.workshop-benefit-card strong,
.workshop-format-list strong {
  display: block;
  color: var(--orch-navy);
  font-size: 18px;
  margin-bottom: 8px;
}

.workshop-material-item span,
.workshop-benefit-card span,
.workshop-format-list span {
  display: block;
  color: var(--orch-muted);
  line-height: 1.65;
}

.workshop-flow-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.workshop-flow-step {
  position: relative;
  min-height: 290px;
  padding: 22px;
  border-radius: 24px;
}

.workshop-flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 42px;
  color: var(--orch-blue);
  z-index: 2;
  font-weight: 900;
}

.workshop-flow-step strong {
  display: block;
  color: var(--orch-navy);
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.workshop-flow-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.workshop-demo-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 215, 243, 0.24), transparent 22rem),
    linear-gradient(135deg, var(--orch-navy), var(--orch-navy-soft));
  box-shadow: var(--shadow-medium);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: center;
}

.workshop-demo-copy h2,
.workshop-demo-copy p {
  color: #ffffff;
}

.workshop-demo-copy p {
  color: #bdd0eb;
  font-size: 17px;
}

.workshop-module-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.workshop-module-map div {
  min-height: 74px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  border-radius: 20px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 900;
}

.workshop-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.workshop-benefit-card {
  min-height: 210px;
  padding: 28px;
  border-radius: 28px;
}

.workshop-format-card {
  padding: 38px;
  border-radius: 34px;
}

.workshop-format-list div {
  min-height: 132px;
}

@media (max-width: 1180px) {
  .workshop-audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .workshop-flow-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .workshop-flow-step::after {
    display: none;
  }
}

@media (max-width: 980px) {
  .workshop-hero-grid,
  .workshop-materials-grid,
  .workshop-demo-card,
  .workshop-format-grid {
    grid-template-columns: 1fr;
  }

  .workshop-audience-grid,
  .workshop-flow-timeline,
  .workshop-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .workshop-hero-section {
    padding: 66px 0 54px;
  }

  .workshop-audience-section,
  .workshop-materials-section,
  .workshop-flow-section,
  .workshop-demo-section,
  .workshop-benefit-section,
  .workshop-format-section {
    padding: 64px 0;
  }

  .workshop-session-card,
  .workshop-demo-card,
  .workshop-format-card {
    padding: 28px;
  }

  .workshop-session-body,
  .workshop-audience-grid,
  .workshop-flow-timeline,
  .workshop-benefit-grid,
  .workshop-module-map {
    grid-template-columns: 1fr;
  }

  .workshop-flow-step,
  .workshop-audience-card,
  .workshop-benefit-card {
    min-height: auto;
  }
}


/* =====================================================
   INDUSTRIES PAGE REVAMP WITH DUMMY PHOTOS
   Path: /orchestra-erp/industries/
   Notes: replace files inside assets/img/industries/ with real photos later
   ===================================================== */

.industries-editorial-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 86px;
  background:
    radial-gradient(circle at 10% 8%, rgba(24, 215, 243, 0.20), transparent 34rem),
    radial-gradient(circle at 86% 12%, rgba(23, 107, 255, 0.22), transparent 38rem),
    linear-gradient(135deg, #061226 0%, #081a38 48%, #0b2248 100%);
}

.industries-editorial-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(247, 250, 255, 0.94));
  pointer-events: none;
}

.industries-editorial-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: center;
}

.industries-editorial-copy h1 {
  max-width: 760px;
  color: #ffffff;
}

.industries-editorial-copy .hero-text {
  color: #c7d7ee;
}

.page-breadcrumb-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #b9c9df;
  box-shadow: none;
}

.page-breadcrumb-light a,
.page-breadcrumb-light strong {
  color: #ffffff;
}

.eyebrow-light {
  color: #bff5ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-glass {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  border-color: rgba(24, 215, 243, 0.46);
}

.industry-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
  max-width: 690px;
}

.industry-hero-stats div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.industry-hero-stats strong {
  display: block;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.industry-hero-stats span {
  display: block;
  color: #b9c9df;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.industry-photo-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 16px;
  min-height: 540px;
}

.mosaic-stack {
  display: grid;
  gap: 16px;
}

.mosaic-card,
.usecase-photo-media,
.industry-story-media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(23, 107, 255, 0.18), rgba(24, 215, 243, 0.12));
}

.mosaic-card {
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.mosaic-card img,
.usecase-photo-media img,
.industry-story-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.mosaic-large {
  min-height: 540px;
}

.mosaic-small {
  min-height: 262px;
}

.mosaic-card::after,
.usecase-photo-media::after,
.industry-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 21, 45, 0.58), transparent 58%);
  pointer-events: none;
}

.mosaic-card span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 900;
}

.image-fallback {
  display: none;
  width: 100%;
  height: 100%;
  min-height: inherit;
  place-items: center;
  padding: 28px;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 215, 243, 0.32), transparent 20rem),
    linear-gradient(135deg, var(--orch-navy), var(--orch-blue));
  font-weight: 900;
  letter-spacing: -0.02em;
}

.industry-floating-card {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 36px;
  z-index: 3;
  max-width: 430px;
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 70px rgba(7, 21, 45, 0.24);
  backdrop-filter: blur(16px);
}

.industry-floating-card small {
  display: block;
  margin-bottom: 7px;
  color: var(--orch-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-floating-card strong {
  display: block;
  color: var(--orch-navy);
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.industry-floating-card span {
  display: block;
  color: var(--orch-muted);
  font-size: 13px;
  line-height: 1.55;
}

.industry-gallery-section,
.industry-story-section,
.industry-fit-section,
.industry-shift-section {
  padding: 86px 0;
}

.industry-gallery-section,
.industry-story-section {
  background: #ffffff;
}

.industry-shift-section,
.industry-fit-section {
  position: relative;
  overflow: hidden;
  background: var(--orch-light);
}

.usecase-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.usecase-photo-card {
  overflow: hidden;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.usecase-photo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 107, 255, 0.22);
  box-shadow: var(--shadow-blue);
}

.usecase-photo-card:hover img,
.industry-story-card:hover img {
  transform: scale(1.06);
}

.usecase-photo-media {
  height: 245px;
}

.usecase-photo-media > span {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(23, 107, 255, 0.28);
}

.usecase-photo-content {
  padding: 26px;
}

.usecase-photo-content small,
.industry-story-content small {
  display: block;
  margin-bottom: 8px;
  color: var(--orch-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.usecase-photo-content h3 {
  font-size: 24px;
}

.usecase-photo-content p {
  margin: 13px 0 18px;
}

.industry-shift-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.industry-shift-copy {
  padding: 38px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-medium);
}

.industry-shift-copy h2 {
  margin-top: 14px;
}

.industry-shift-copy p {
  margin-top: 18px;
  font-size: 17px;
}

.industry-shift-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.industry-shift-list div {
  min-height: 170px;
  padding: 24px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
}

.industry-shift-list strong {
  display: block;
  color: var(--orch-navy);
  font-size: 18px;
  margin-bottom: 9px;
}

.industry-shift-list span {
  color: var(--orch-muted);
  line-height: 1.65;
}

.industry-story-list {
  display: grid;
  gap: 26px;
}

.industry-story-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  overflow: hidden;
  border-radius: 36px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 110px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.industry-story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 107, 255, 0.20);
  box-shadow: var(--shadow-blue);
}

.industry-story-card.reverse .industry-story-media {
  order: 2;
}

.industry-story-card.reverse .industry-story-content {
  order: 1;
}

.industry-story-media {
  min-height: 480px;
}

.industry-story-content {
  position: relative;
  padding: 38px;
}

.industry-story-number {
  position: absolute;
  right: 32px;
  top: 28px;
  color: rgba(23, 107, 255, 0.10);
  font-size: 86px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.industry-story-content h3 {
  position: relative;
  z-index: 1;
  font-size: 34px;
}

.industry-story-content > p {
  position: relative;
  z-index: 1;
  margin: 16px 0 22px;
  font-size: 16px;
}

.story-columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.story-columns div {
  padding: 20px;
  border-radius: 22px;
  background: var(--orch-light);
  border: 1px solid var(--orch-border);
}

.story-columns strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orch-navy);
  font-size: 15px;
}

.story-columns ul {
  margin: 0;
  padding-left: 18px;
  color: var(--orch-muted);
  line-height: 1.7;
}

.story-columns li {
  margin-bottom: 6px;
}

.industry-fit-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(24, 215, 243, 0.16), transparent 24rem),
    #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-medium);
}

.industry-fit-card h2 {
  margin-top: 14px;
}

.industry-fit-card p {
  margin-top: 18px;
  font-size: 17px;
}

.industry-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.industry-fit-grid div {
  min-height: 110px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: var(--orch-light);
  border: 1px solid var(--orch-border);
  color: var(--orch-navy);
  font-weight: 900;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .industries-editorial-grid,
  .industry-shift-grid,
  .industry-fit-card {
    grid-template-columns: 1fr;
  }

  .industry-photo-mosaic {
    min-height: 460px;
  }

  .mosaic-large,
  .mosaic-small {
    min-height: auto;
  }

  .usecase-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-story-card,
  .industry-story-card.reverse {
    grid-template-columns: 1fr;
  }

  .industry-story-card.reverse .industry-story-media,
  .industry-story-card.reverse .industry-story-content {
    order: initial;
  }

  .industry-story-media {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .industries-editorial-hero {
    padding: 66px 0 58px;
  }

  .industry-hero-stats,
  .industry-photo-mosaic,
  .usecase-photo-grid,
  .industry-shift-list,
  .story-columns,
  .industry-fit-grid {
    grid-template-columns: 1fr;
  }

  .industry-photo-mosaic {
    min-height: auto;
  }

  .mosaic-large,
  .mosaic-small {
    min-height: 240px;
  }

  .industry-floating-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: -42px;
    margin-inline: 18px;
  }

  .industry-gallery-section,
  .industry-story-section,
  .industry-fit-section,
  .industry-shift-section {
    padding: 64px 0;
  }

  .usecase-photo-media {
    height: 220px;
  }

  .industry-shift-copy,
  .industry-story-content,
  .industry-fit-card {
    padding: 28px;
  }

  .industry-story-media {
    min-height: 260px;
  }

  .industry-story-number {
    right: 20px;
    top: 22px;
    font-size: 62px;
  }

  .industry-story-content h3 {
    font-size: 27px;
  }
}


/* =====================================================
   DEMO & PARTNERSHIP PAGE REVAMP
   Path: /orchestra-erp/demo/
   Notes: photo files are prepared in assets/img/demo/
   ===================================================== */

.demo-revamp-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 86px;
  background:
    radial-gradient(circle at 10% 4%, rgba(24, 215, 243, 0.18), transparent 34rem),
    radial-gradient(circle at 86% 0%, rgba(23, 107, 255, 0.18), transparent 38rem),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.demo-revamp-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}

.demo-revamp-copy h1 {
  max-width: 840px;
}

.demo-revamp-copy .hero-text {
  max-width: 760px;
}

.demo-revamp-points {
  max-width: 720px;
}

.demo-hero-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(23, 107, 255, 0.18), rgba(24, 215, 243, 0.12));
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-medium);
}

.demo-hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.demo-hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 21, 45, 0.70), transparent 58%),
    linear-gradient(135deg, rgba(23, 107, 255, 0.18), transparent 42%);
  pointer-events: none;
}

.demo-hero-session-overlay {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  padding: 22px;
  border-radius: 28px;
  color: #ffffff;
  background: rgba(7, 21, 45, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
}

.demo-hero-session-overlay small {
  display: block;
  color: #bff5ff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.demo-hero-session-overlay strong {
  display: block;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.demo-hero-session-overlay span {
  display: block;
  margin-top: 8px;
  color: #c7d7ee;
  line-height: 1.55;
  font-size: 14px;
}

.demo-session-pill {
  min-width: 118px;
  padding: 16px 18px;
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  box-shadow: 0 18px 44px rgba(23, 107, 255, 0.32);
}

.demo-session-pill b {
  display: block;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.demo-session-pill em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-float-card {
  position: absolute;
  z-index: 3;
  width: 230px;
  right: -18px;
  top: 38px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(230, 237, 247, 0.90);
  box-shadow: 0 22px 58px rgba(7, 21, 45, 0.18);
  backdrop-filter: blur(14px);
}

.demo-float-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  font-weight: 900;
  margin-bottom: 12px;
}

.demo-float-card strong {
  display: block;
  color: var(--orch-navy);
  font-size: 16px;
  margin-bottom: 6px;
}

.demo-float-card p {
  margin: 0;
  color: var(--orch-muted);
  font-size: 13px;
  line-height: 1.55;
}

.demo-photo-fallback {
  display: none;
  width: 100%;
  height: 100%;
  min-height: inherit;
  place-items: center;
  padding: 32px;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 215, 243, 0.30), transparent 20rem),
    linear-gradient(135deg, var(--orch-navy), var(--orch-blue));
  font-weight: 900;
}

.demo-type-section,
.demo-see-section,
.demo-journey-section,
.demo-partner-revamp-section,
.demo-request-revamp-section,
.demo-proof-section {
  padding: 86px 0;
}

.demo-type-section,
.demo-partner-revamp-section {
  background: #ffffff;
}

.demo-see-section,
.demo-request-revamp-section,
.demo-proof-section {
  position: relative;
  overflow: hidden;
  background: var(--orch-light);
}

.demo-journey-section {
  background: #ffffff;
}

.demo-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.demo-type-card {
  overflow: hidden;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.demo-type-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 107, 255, 0.20);
  box-shadow: var(--shadow-blue);
}

.demo-type-media {
  position: relative;
  overflow: hidden;
  height: 232px;
  background: linear-gradient(135deg, rgba(23, 107, 255, 0.14), rgba(24, 215, 243, 0.10));
}

.demo-type-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.demo-type-card:hover .demo-type-media img {
  transform: scale(1.045);
}

.demo-type-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 21, 45, 0.58), transparent 64%);
  pointer-events: none;
}

.demo-type-label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 11px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
}

.demo-type-body {
  padding: 26px;
}

.demo-type-body h3 {
  font-size: 25px;
}

.demo-type-body p {
  margin: 14px 0 18px;
}

.demo-type-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.demo-type-list li {
  position: relative;
  padding-left: 24px;
  color: var(--orch-muted);
  line-height: 1.55;
  font-weight: 750;
}

.demo-type-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orch-cyan);
  box-shadow: 0 0 14px rgba(24, 215, 243, 0.58);
}

.demo-see-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: center;
}

.demo-see-photo {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(23, 107, 255, 0.16), rgba(24, 215, 243, 0.10));
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-medium);
}

.demo-see-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.demo-see-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 21, 45, 0.56), transparent 58%);
  pointer-events: none;
}

.demo-see-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  color: #ffffff;
  background: rgba(7, 21, 45, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
}

.demo-see-badge span {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  font-weight: 900;
}

.demo-see-badge strong {
  display: block;
  font-size: 17px;
}

.demo-see-badge small {
  display: block;
  margin-top: 4px;
  color: #c7d7ee;
  line-height: 1.4;
}

.demo-see-list {
  display: grid;
  gap: 14px;
}

.demo-see-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.demo-see-item:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 107, 255, 0.18);
  box-shadow: var(--shadow-blue);
}

.demo-see-number {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  font-weight: 900;
  flex: 0 0 auto;
}

.demo-see-item strong {
  display: block;
  color: var(--orch-navy);
  font-size: 18px;
  margin-bottom: 6px;
}

.demo-see-item p {
  margin: 0;
  line-height: 1.65;
}

.demo-journey-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 215, 243, 0.24), transparent 24rem),
    linear-gradient(135deg, var(--orch-navy), var(--orch-navy-soft));
  box-shadow: var(--shadow-medium);
}

.demo-journey-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
}

.demo-journey-head h2,
.demo-journey-head p {
  color: #ffffff;
}

.demo-journey-head p {
  max-width: 560px;
  color: #bdd0eb;
  margin: 0;
}

.demo-journey-flow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.demo-journey-step {
  position: relative;
  min-height: 112px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  border-radius: 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-weight: 900;
  line-height: 1.35;
}

.demo-journey-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  color: var(--orch-cyan);
  z-index: 2;
}

.demo-journey-note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.demo-journey-note {
  padding: 20px;
  border-radius: 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.demo-journey-note strong {
  display: block;
  margin-bottom: 8px;
}

.demo-journey-note span {
  display: block;
  color: #bdd0eb;
  line-height: 1.6;
}

.demo-partner-revamp-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.demo-partner-photo {
  position: relative;
  overflow: hidden;
  min-height: 490px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(23, 107, 255, 0.16), rgba(24, 215, 243, 0.10));
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-medium);
}

.demo-partner-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.demo-partner-copy p {
  font-size: 17px;
  margin: 18px 0 26px;
}

.demo-partner-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.demo-partner-type {
  min-height: 154px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.demo-partner-type:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 107, 255, 0.18);
  box-shadow: var(--shadow-blue);
}

.demo-partner-type strong {
  display: block;
  color: var(--orch-navy);
  margin-bottom: 8px;
  font-size: 17px;
}

.demo-partner-type span {
  display: block;
  color: var(--orch-muted);
  line-height: 1.6;
}

.demo-proof-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 42px;
  border-radius: 36px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-medium);
}

.demo-proof-photo {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(23, 107, 255, 0.16), rgba(24, 215, 243, 0.10));
}

.demo-proof-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.demo-proof-copy p {
  font-size: 17px;
  margin: 18px 0 24px;
}

.demo-proof-points {
  display: grid;
  gap: 12px;
}

.demo-proof-points div {
  padding: 16px 18px;
  border-radius: 20px;
  color: var(--orch-navy);
  background: var(--orch-light);
  border: 1px solid var(--orch-border);
  font-weight: 900;
  line-height: 1.45;
}

.demo-request-revamp-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.demo-request-copy p {
  font-size: 17px;
  margin: 18px 0 24px;
}

.demo-request-actions-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
}

.demo-request-actions-card strong {
  color: var(--orch-navy);
}

.demo-request-actions-card span {
  color: var(--orch-muted);
  line-height: 1.6;
}

.demo-request-actions-card a:not(.btn) {
  color: var(--orch-blue);
  font-weight: 900;
  word-break: break-word;
}

.demo-revamp-form {
  padding: 30px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-medium);
}

.demo-revamp-form .form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.demo-revamp-form .form-row.two-columns {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.demo-revamp-form .form-row.two-columns > div {
  display: grid;
  gap: 8px;
}

.demo-revamp-form label {
  color: var(--orch-navy);
  font-size: 13px;
  font-weight: 900;
}

.demo-revamp-form input,
.demo-revamp-form select,
.demo-revamp-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid var(--orch-border);
  background: var(--orch-light);
  color: var(--orch-text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.demo-revamp-form textarea {
  resize: vertical;
}

.demo-revamp-form input:focus,
.demo-revamp-form select:focus,
.demo-revamp-form textarea:focus {
  background: #ffffff;
  border-color: rgba(23, 107, 255, 0.44);
  box-shadow: 0 0 0 4px rgba(23, 107, 255, 0.08);
}

.demo-revamp-form .form-note {
  margin: 14px 0 0;
  color: var(--orch-muted);
  font-size: 13px;
  line-height: 1.6;
}

.demo-revamp-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.demo-form-actions {
  display: grid;
  gap: 12px;
}

.demo-form-actions .btn-secondary {
  width: 100%;
}

@media (max-width: 1180px) {
  .demo-journey-flow {
    grid-template-columns: repeat(4, 1fr);
  }

  .demo-journey-step::after {
    display: none;
  }
}

@media (max-width: 980px) {
  .demo-revamp-grid,
  .demo-see-grid,
  .demo-partner-revamp-grid,
  .demo-proof-card,
  .demo-request-revamp-grid {
    grid-template-columns: 1fr;
  }

  .demo-type-grid,
  .demo-journey-note-grid,
  .demo-partner-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo-float-card {
    right: 18px;
  }

  .demo-journey-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .demo-revamp-hero {
    padding: 66px 0 54px;
  }

  .demo-type-section,
  .demo-see-section,
  .demo-journey-section,
  .demo-partner-revamp-section,
  .demo-request-revamp-section,
  .demo-proof-section {
    padding: 64px 0;
  }

  .demo-hero-photo-card,
  .demo-see-photo,
  .demo-partner-photo,
  .demo-proof-photo {
    min-height: 360px;
    border-radius: 30px;
  }

  .demo-hero-session-overlay {
    grid-template-columns: 1fr;
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .demo-float-card {
    display: none;
  }

  .demo-session-pill {
    width: max-content;
  }

  .demo-type-grid,
  .demo-see-list,
  .demo-journey-flow,
  .demo-journey-note-grid,
  .demo-partner-type-grid,
  .demo-revamp-form .form-row.two-columns {
    grid-template-columns: 1fr;
  }

  .demo-journey-card,
  .demo-proof-card,
  .demo-revamp-form,
  .demo-type-body,
  .demo-request-actions-card {
    padding: 26px;
  }

  .demo-see-badge {
    align-items: flex-start;
  }
}


/* =====================================================
   WORKSHOP PAGE REVAMP - EVENT LANDING STYLE
   Path: /orchestra-erp/workshop/
   Notes: photo files are prepared in assets/img/workshop/
   ===================================================== */

.workshop-revamp-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  background:
    radial-gradient(circle at 12% 8%, rgba(24, 215, 243, 0.18), transparent 34rem),
    radial-gradient(circle at 88% 0%, rgba(23, 107, 255, 0.18), transparent 38rem),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.workshop-revamp-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.workshop-revamp-copy h1 {
  max-width: 820px;
}

.workshop-revamp-copy .hero-text {
  max-width: 760px;
}

.workshop-revamp-points {
  max-width: 720px;
}

.workshop-hero-photo-wrap {
  position: relative;
}

.workshop-hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(23, 107, 255, 0.16), rgba(24, 215, 243, 0.10));
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-medium);
}

.workshop-hero-photo img,
.workshop-photo-card img,
.workshop-split-photo img,
.workshop-format-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.workshop-hero-photo img {
  min-height: inherit;
}

.workshop-hero-photo::after,
.workshop-photo-card::after,
.workshop-split-photo::after,
.workshop-format-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 21, 45, 0.68), transparent 58%),
    linear-gradient(135deg, rgba(23, 107, 255, 0.16), transparent 46%);
  pointer-events: none;
}

.workshop-event-overlay {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  padding: 22px;
  border-radius: 28px;
  color: #ffffff;
  background: rgba(7, 21, 45, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
}

.workshop-event-overlay small {
  display: block;
  margin-bottom: 8px;
  color: #bff5ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.workshop-event-overlay strong {
  display: block;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.workshop-event-overlay span {
  display: block;
  margin-top: 8px;
  color: #c7d7ee;
  font-size: 14px;
  line-height: 1.55;
}

.workshop-event-pill {
  min-width: 132px;
  padding: 16px 18px;
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  box-shadow: 0 18px 44px rgba(23, 107, 255, 0.32);
}

.workshop-event-pill b {
  display: block;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.workshop-event-pill em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.workshop-hero-floating {
  position: absolute;
  z-index: 4;
  width: 238px;
  right: -20px;
  top: 42px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(230, 237, 247, 0.90);
  box-shadow: 0 22px 58px rgba(7, 21, 45, 0.18);
  backdrop-filter: blur(14px);
}

.workshop-hero-floating span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  font-weight: 900;
  margin-bottom: 12px;
}

.workshop-hero-floating strong {
  display: block;
  color: var(--orch-navy);
  font-size: 16px;
  margin-bottom: 6px;
}

.workshop-hero-floating p {
  margin: 0;
  color: var(--orch-muted);
  font-size: 13px;
  line-height: 1.55;
}

.workshop-photo-fallback {
  display: none;
  width: 100%;
  height: 100%;
  min-height: inherit;
  place-items: center;
  padding: 32px;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 215, 243, 0.30), transparent 20rem),
    linear-gradient(135deg, var(--orch-navy), var(--orch-blue));
  font-weight: 900;
}

.workshop-persona-section,
.workshop-agenda-revamp-section,
.workshop-live-demo-section,
.workshop-format-revamp-section,
.workshop-request-section {
  padding: 86px 0;
  background: #ffffff;
}

.workshop-pain-section,
.workshop-benefit-revamp-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background: var(--orch-light);
}

.workshop-persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.workshop-persona-card {
  min-height: 250px;
  padding: 28px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.workshop-persona-card:hover,
.workshop-agenda-item:hover,
.workshop-benefit-tile:hover,
.workshop-format-tile:hover,
.workshop-request-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 107, 255, 0.20);
  box-shadow: var(--shadow-blue);
}

.workshop-persona-icon,
.workshop-agenda-number,
.workshop-benefit-icon,
.workshop-format-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orch-blue), var(--orch-cyan));
  font-weight: 900;
}

.workshop-persona-card h3 {
  font-size: 23px;
}

.workshop-persona-card p {
  margin-bottom: 0;
}

.workshop-pain-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
}

.workshop-pain-copy {
  padding: 40px;
  border-radius: 36px;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 215, 243, 0.23), transparent 24rem),
    linear-gradient(135deg, var(--orch-navy), var(--orch-navy-soft));
  box-shadow: var(--shadow-medium);
}

.workshop-pain-copy h2,
.workshop-pain-copy p {
  color: #ffffff;
}

.workshop-pain-copy p {
  color: #bdd0eb;
  font-size: 17px;
}

.workshop-pain-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.workshop-pain-item {
  min-height: 162px;
  padding: 22px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
}

.workshop-pain-item strong {
  display: block;
  color: var(--orch-navy);
  font-size: 18px;
  margin-bottom: 9px;
}

.workshop-pain-item span {
  color: var(--orch-muted);
  line-height: 1.65;
}

.workshop-agenda-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: center;
}

.workshop-split-photo,
.workshop-format-photo {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(23, 107, 255, 0.16), rgba(24, 215, 243, 0.10));
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-medium);
}

.workshop-agenda-list {
  display: grid;
  gap: 14px;
}

.workshop-agenda-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.workshop-agenda-number {
  margin-bottom: 0;
  flex: 0 0 auto;
}

.workshop-agenda-item strong {
  display: block;
  color: var(--orch-navy);
  font-size: 18px;
  margin-bottom: 6px;
}

.workshop-agenda-item p {
  margin: 0;
  line-height: 1.65;
}

.workshop-live-demo-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 215, 243, 0.24), transparent 24rem),
    linear-gradient(135deg, var(--orch-navy), var(--orch-navy-soft));
  box-shadow: var(--shadow-medium);
}

.workshop-live-demo-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
}

.workshop-live-demo-head h2,
.workshop-live-demo-head p {
  color: #ffffff;
}

.workshop-live-demo-head p {
  max-width: 600px;
  margin: 0;
  color: #bdd0eb;
}

.workshop-demo-flow-revamp {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px;
}

.workshop-demo-flow-step {
  position: relative;
  min-height: 112px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 15px;
  border-radius: 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.workshop-demo-flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  color: var(--orch-cyan);
  z-index: 2;
}

.workshop-demo-note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.workshop-demo-note {
  padding: 20px;
  border-radius: 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.workshop-demo-note strong {
  display: block;
  margin-bottom: 8px;
}

.workshop-demo-note span {
  display: block;
  color: #bdd0eb;
  line-height: 1.6;
}

.workshop-benefit-revamp-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.workshop-benefit-tile {
  min-height: 216px;
  padding: 28px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.workshop-benefit-tile strong {
  display: block;
  color: var(--orch-navy);
  font-size: 19px;
  margin-bottom: 10px;
}

.workshop-benefit-tile span {
  display: block;
  color: var(--orch-muted);
  line-height: 1.65;
}

.workshop-format-revamp-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
}

.workshop-format-content p {
  margin: 18px 0 26px;
  font-size: 17px;
}

.workshop-format-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.workshop-format-tile {
  min-height: 156px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.workshop-format-tile strong {
  display: block;
  color: var(--orch-navy);
  margin-bottom: 8px;
  font-size: 17px;
}

.workshop-format-tile span {
  display: block;
  color: var(--orch-muted);
  line-height: 1.6;
}

.workshop-request-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: center;
  padding: 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 0% 0%, rgba(24, 215, 243, 0.18), transparent 26rem),
    #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: var(--shadow-medium);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.workshop-request-copy p {
  margin: 18px 0 26px;
  font-size: 17px;
}

.workshop-request-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.workshop-request-mini-grid div {
  padding: 18px;
  border-radius: 22px;
  background: var(--orch-light);
  border: 1px solid var(--orch-border);
}

.workshop-request-mini-grid strong {
  display: block;
  color: var(--orch-navy);
  margin-bottom: 6px;
}

.workshop-request-mini-grid span {
  display: block;
  color: var(--orch-muted);
  line-height: 1.55;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .workshop-demo-flow-revamp {
    grid-template-columns: repeat(3, 1fr);
  }

  .workshop-demo-flow-step::after {
    display: none;
  }
}

@media (max-width: 980px) {
  .workshop-revamp-grid,
  .workshop-pain-grid,
  .workshop-agenda-grid,
  .workshop-format-revamp-grid,
  .workshop-request-card {
    grid-template-columns: 1fr;
  }

  .workshop-persona-grid,
  .workshop-pain-list,
  .workshop-demo-note-grid,
  .workshop-format-tile-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workshop-hero-floating {
    right: 18px;
  }

  .workshop-live-demo-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .workshop-revamp-hero {
    padding: 66px 0 54px;
  }

  .workshop-persona-section,
  .workshop-pain-section,
  .workshop-agenda-revamp-section,
  .workshop-live-demo-section,
  .workshop-benefit-revamp-section,
  .workshop-format-revamp-section,
  .workshop-request-section {
    padding: 64px 0;
  }

  .workshop-hero-photo,
  .workshop-split-photo,
  .workshop-format-photo {
    min-height: 360px;
    border-radius: 30px;
  }

  .workshop-event-overlay {
    grid-template-columns: 1fr;
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .workshop-event-pill {
    width: max-content;
  }

  .workshop-hero-floating {
    display: none;
  }

  .workshop-persona-grid,
  .workshop-pain-list,
  .workshop-agenda-item,
  .workshop-demo-flow-revamp,
  .workshop-demo-note-grid,
  .workshop-benefit-revamp-grid,
  .workshop-format-tile-grid,
  .workshop-request-mini-grid {
    grid-template-columns: 1fr;
  }

  .workshop-pain-copy,
  .workshop-live-demo-card,
  .workshop-request-card,
  .workshop-persona-card,
  .workshop-agenda-item,
  .workshop-benefit-tile,
  .workshop-format-tile {
    padding: 26px;
  }

  .workshop-agenda-number {
    margin-bottom: 0;
  }
}
.form-note.is-success {
  color: #0f9f6e;
  font-weight: 800;
}

.form-note.is-error {
  color: #dc2626;
  font-weight: 800;
}

.workshop-request-form-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.workshop-request-copy p {
  font-size: 17px;
  margin: 18px 0 24px;
}

.workshop-revamp-form {
  position: relative;
}

@media (max-width: 980px) {
  .workshop-request-form-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   CAPTCHA / FORM SECURITY - CLEAN COMPACT VERSION
   ===================================================== */

.captcha-row {
  position: relative;
  z-index: 20;
  margin: 2px 0 18px;
}

.captcha-row label {
  display: block;
  color: var(--orch-navy);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
}

.captcha-box {
  position: relative;
  z-index: 21;
  width: fit-content;
  max-width: 100%;
  padding: 10px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--orch-border);
  box-shadow: 0 10px 28px rgba(7, 21, 45, 0.06);
  overflow: visible;
  isolation: isolate;
}

.captcha-box .h-captcha {
  position: relative;
  z-index: 22;
  display: block !important;
  transform: none !important;
  transform-origin: initial !important;
  pointer-events: auto !important;
}

.captcha-box iframe {
  display: block !important;
  position: relative;
  z-index: 23;
  max-width: none !important;
  pointer-events: auto !important;
}

.captcha-help {
  display: block;
  max-width: 360px;
  margin-top: 8px;
  color: var(--orch-muted);
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .captcha-row {
    margin-top: 4px;
    margin-bottom: 18px;
  }

  .captcha-box {
    width: fit-content;
    max-width: 100%;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(7, 21, 45, 0.05);
  }

  .captcha-help {
    max-width: 240px;
    font-size: 11.5px;
    line-height: 1.5;
  }
}

/* =====================================================
   MODULES PAGE MOBILE FIX
   Prevent hero content from sinking/clipping on mobile
   ===================================================== */

.modules-hero-copy,
.modules-hero-visual {
  transform: none;
}

@media (max-width: 760px) {
  .modules-hero-section {
    overflow: hidden;
    padding: 56px 0 54px;
  }

  .modules-hero-grid {
    gap: 34px;
    align-items: start;
  }

  .modules-hero-copy,
  .modules-hero-visual {
    transform: none !important;
  }

  .module-system-card {
    padding: 20px;
    border-radius: 28px;
    overflow: visible;
  }

  .module-system-card::before {
    inset: 10px;
    border-radius: 22px;
  }

  .module-system-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
  }

  .module-system-top strong {
    font-size: 21px;
  }

  .module-system-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .system-node {
    min-height: 58px;
    padding: 12px 14px;
    border-radius: 18px;
    font-size: 13px;
  }

  .module-system-note {
    margin-top: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .module-system-note p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* =====================================================
   INDUSTRIES PAGE MOBILE FIX
   Prevent hero photo mosaic from sinking/clipping on mobile
   ===================================================== */

.industries-editorial-copy,
.industry-photo-mosaic {
  transform: none;
}

@media (max-width: 760px) {
  .industries-editorial-hero {
    padding: 56px 0 58px;
    overflow: hidden;
  }

  .industries-editorial-grid {
    gap: 34px;
    align-items: start;
  }

  .industries-editorial-copy,
  .industry-photo-mosaic {
    transform: none !important;
  }

  .industry-photo-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
  }

  .mosaic-stack {
    display: grid;
    gap: 14px;
  }

  .mosaic-large,
  .mosaic-small {
    min-height: 260px;
  }

  .mosaic-card {
    border-radius: 26px;
  }

  .mosaic-card img {
    min-height: 260px;
    object-fit: cover;
  }

  .mosaic-card span {
    left: 14px;
    bottom: 14px;
    font-size: 12px;
  }

  .industry-floating-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -34px 14px 0;
    padding: 18px;
    border-radius: 24px;
  }

  .industry-floating-card strong {
    font-size: 16px;
  }

  .industry-floating-card span {
    font-size: 12.5px;
  }
}

@media (max-width: 420px) {
  .mosaic-large,
  .mosaic-small,
  .mosaic-card img {
    min-height: 230px;
  }

  .industry-floating-card {
    margin-top: -30px;
  }
}

/* =====================================================
   DEMO HERO MOBILE COMPACT FIX
   Keep Session Focus visible, but not covering the photo
   ===================================================== */

@media (max-width: 760px) {
  .demo-revamp-copy,
  .demo-hero-photo-card {
    transform: none !important;
  }

  .demo-revamp-grid {
    gap: 34px;
    align-items: start;
  }

  .demo-hero-photo-card {
    min-height: 360px;
    border-radius: 30px;
    overflow: hidden;
  }

  .demo-hero-photo-card img {
    min-height: 360px;
    object-fit: cover;
  }

  .demo-hero-session-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
    border-radius: 22px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    background: rgba(7, 21, 45, 0.74);
    backdrop-filter: blur(14px);
  }

  .demo-hero-session-overlay small {
    font-size: 10px;
    margin-bottom: 5px;
  }

  .demo-hero-session-overlay strong {
    font-size: 17px;
    line-height: 1.15;
    letter-spacing: -0.035em;
  }

  .demo-hero-session-overlay span {
    display: none;
  }

  .demo-session-pill {
    min-width: 74px;
    padding: 10px 12px;
    border-radius: 17px;
  }

  .demo-session-pill b {
    font-size: 22px;
  }

  .demo-session-pill em {
    margin-top: 4px;
    font-size: 9px;
  }
}

@media (max-width: 430px) {
  .demo-hero-photo-card,
  .demo-hero-photo-card img {
    min-height: 330px;
  }

  .demo-hero-session-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .demo-hero-session-overlay strong {
    font-size: 15.5px;
  }

  .demo-session-pill {
    min-width: 68px;
    padding: 9px 10px;
  }

  .demo-session-pill b {
    font-size: 20px;
  }
}

/* =====================================================
   WORKSHOP HERO MOBILE COMPACT FIX
   Keep intro overlay visible, but not covering the photo
   ===================================================== */

@media (max-width: 760px) {
  .workshop-revamp-copy,
  .workshop-hero-photo-wrap {
    transform: none !important;
  }

  .workshop-revamp-grid {
    gap: 34px;
    align-items: start;
  }

  .workshop-hero-photo {
    min-height: 360px;
    border-radius: 30px;
    overflow: hidden;
  }

  .workshop-hero-photo img {
    min-height: 360px;
    object-fit: cover;
  }

  .workshop-event-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
    border-radius: 22px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    background: rgba(7, 21, 45, 0.74);
    backdrop-filter: blur(14px);
  }

  .workshop-event-overlay small {
    font-size: 10px;
    margin-bottom: 5px;
  }

  .workshop-event-overlay strong {
    font-size: 16.5px;
    line-height: 1.15;
    letter-spacing: -0.035em;
  }

  .workshop-event-overlay span {
    display: none;
  }

  .workshop-event-pill {
    min-width: 78px;
    padding: 10px 12px;
    border-radius: 17px;
  }

  .workshop-event-pill b {
    font-size: 21px;
  }

  .workshop-event-pill em {
    margin-top: 4px;
    font-size: 9px;
  }
}

@media (max-width: 430px) {
  .workshop-hero-photo,
  .workshop-hero-photo img {
    min-height: 330px;
  }

  .workshop-event-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .workshop-event-overlay strong {
    font-size: 15px;
  }

  .workshop-event-pill {
    min-width: 70px;
    padding: 9px 10px;
  }

  .workshop-event-pill b {
    font-size: 19px;
  }
}