/**
 * @file
 * Shared page layout styles for Solution, Service and Industry content types.
 * Provides hero, overview grid, card grids, workflow, trust table, FAQ,
 * related links grid, and final CTA sections.
 */
/**
 * @file
 * Shared LESS variables — imported by general.less and component files.
 *
 * Breakpoint variables used in @media queries across the theme.
 */
/**
 * @file
 * Layout mixins — shared across content types.
 */
/* Full-bleed: break out of parent container to fill viewport width.
   Uses margin-left: calc(50% - 50vw) — the percentage resolves against the
   direct parent's width, cancelling out any centering offset, so the element
   always aligns with the viewport's left edge regardless of nesting depth. */
/**
 * @file
 * Floating side jumpnav for Solution pages.
 *
 * Matching the design reference from /var/www/docs/design/solutions/
 * Section: "Floating side jumpnav (left margin)"
 *
 * Behavior:
 * - Collapsed: dot strip only, no labels
 * - Hover / focus-within / .is-open: labels and title appear
 * - Mobile (< 1080px): toggle button + .is-open class control
 */
/* =========================================================================
   Floating side jumpnav (left margin)
   ========================================================================= */
.side-jumpnav {
  position: fixed;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 8px;
  background: rgba(0, 48, 80, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl, 16px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0, 16, 32, 0.28);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, padding 0.3s ease-out, background 0.3s ease-out;
  /* ---- Expand on hover / focus ---- */
}
.side-jumpnav__title {
  font-family: var(--font-display, sans-serif);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: var(--tracking-caps, 0.12em);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom-color: transparent;
  transition: max-width 0.3s ease-out, max-height 0.3s ease-out, padding 0.3s ease-out, margin 0.3s ease-out, border-color 0.3s ease-out;
}
.side-jumpnav a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 8px 8px;
  border-radius: var(--radius-md, 6px);
  font-family: var(--font-display, sans-serif);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-caps, 0.12em);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  transition: color 0.15s ease-out, background 0.15s ease-out, gap 0.3s ease-out, padding 0.3s ease-out;
}
.side-jumpnav a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  flex-shrink: 0;
  transition: background 0.15s ease-out, transform 0.15s ease-out, box-shadow 0.15s ease-out;
}
.side-jumpnav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.side-jumpnav a:hover::before {
  background: var(--al-orange-300, #f3c483);
  transform: scale(1.2);
}
.side-jumpnav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.side-jumpnav a.is-active::before {
  background: var(--al-orange, #e09030);
  transform: scale(1.35);
  box-shadow: 0 0 0 3px rgba(224, 144, 48, 0.22);
}
.side-jumpnav a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(224, 144, 48, 0.45);
}
.side-jumpnav .side-jumpnav__label {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.3s ease-out, opacity 0.3s ease-out;
}
.side-jumpnav:hover,
.side-jumpnav:focus-within {
  padding: 12px 10px;
}
.side-jumpnav:hover .side-jumpnav__title,
.side-jumpnav:focus-within .side-jumpnav__title {
  max-width: 200px;
  max-height: 32px;
  padding: 4px 10px 8px;
  margin-bottom: 4px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.side-jumpnav:hover a,
.side-jumpnav:focus-within a {
  gap: 10px;
  padding: 7px 10px;
}
.side-jumpnav:hover .side-jumpnav__label,
.side-jumpnav:focus-within .side-jumpnav__label {
  max-width: 160px;
  opacity: 1;
}
/* =========================================================================
   Mobile toggle button
   ========================================================================= */
.side-jumpnav__toggle {
  display: none;
  position: fixed;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 41;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--al-navy, #003050);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 20px rgba(0, 16, 32, 0.25);
  cursor: pointer;
  padding: 0;
}
.side-jumpnav__toggle svg {
  transition: transform 0.15s ease-out;
}
/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1080px) {
  .side-jumpnav {
    opacity: 0;
    pointer-events: none;
    transform: translate(-12px, -50%);
    padding: 12px 10px;
  }
  .side-jumpnav.is-open {
    left: 60px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%);
  }
  .side-jumpnav.is-open .side-jumpnav__title {
    max-width: 200px;
    max-height: 32px;
    padding: 4px 10px 8px;
    margin-bottom: 4px;
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
  .side-jumpnav.is-open a {
    gap: 10px;
    padding: 7px 10px;
  }
  .side-jumpnav.is-open .side-jumpnav__label {
    max-width: 160px;
    opacity: 1;
  }
  .side-jumpnav__toggle {
    display: inline-flex;
  }
  .side-jumpnav__toggle.is-open svg {
    transform: rotate(180deg);
  }
}
@media (max-width: 640px) {
  .side-jumpnav {
    left: 8px;
  }
  .side-jumpnav.is-open {
    left: 52px;
  }
  .side-jumpnav__toggle {
    left: 10px;
  }
}
/**
 * Shared breadcrumb mixin.
 * Used by solutions.less and blog.less.
 */
/* =========================================================================
    Full-bleed: break out of Bootstrap .container parent
    overflow-x already handled by general.less
    ========================================================================= */
.node--type-solution {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
/* =========================================================================
   Container
   ========================================================================= */
.node--type-solution .container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 20px;
}
/* =========================================================================
   HERO SECTION
   ========================================================================= */
.node--type-solution .al-hero {
  position: relative;
  background: var(--al-navy);
  color: #fff;
  padding: 72px 0 128px;
  overflow: hidden;
}
.node--type-solution .al-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 30%, rgba(224, 144, 48, 0.1), transparent 55%), linear-gradient(180deg, rgba(0, 31, 54, 0) 0%, rgba(0, 31, 54, 0.65) 100%);
  pointer-events: none;
}
.node--type-solution .al-hero__orbit {
  position: absolute;
  top: -120px;
  right: -180px;
  width: 720px;
  height: 720px;
  pointer-events: none;
  opacity: 0.55;
}
.node--type-solution .al-hero__inner {
  position: relative;
}
.node--type-solution .al-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}
.node--type-solution .al-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--dur-1) var(--ease-out);
}
.node--type-solution .al-hero .breadcrumb a:hover {
  color: #fff;
}
.node--type-solution .al-hero .breadcrumb__sep {
  color: rgba(255, 255, 255, 0.3);
}
.node--type-solution .al-hero .breadcrumb__current {
  color: var(--al-orange-300);
}
.node--type-solution .al-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 64px;
  align-items: end;
}
.node--type-solution .al-hero__iso-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.node--type-solution .iso-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.node--type-solution .iso-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--al-orange);
  display: inline-block;
}
.node--type-solution .al-hero__h1 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 16ch;
  text-wrap: balance;
}
.node--type-solution .al-hero__sub {
  font-size: 21px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 60ch;
  margin: 0 0 36px;
}
.node--type-solution .al-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.node--type-solution .al-hero__cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-md);
  background: var(--al-orange);
  color: #fff;
  text-decoration: none;
  transition: background var(--dur-2) var(--ease-out), transform var(--dur-1) var(--ease-out);
}
.node--type-solution .al-hero__cta a:hover {
  background: var(--al-orange-700);
  transform: translateY(-1px);
}
/* Hero Panel (At a glance) */
.node--type-solution .al-hero__panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.node--type-solution .al-hero__panel-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--al-orange);
  margin: 0 0 18px;
}
.node--type-solution .al-hero__panel-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}
.node--type-solution .al-hero__panel-row:first-of-type {
  border-top: 0;
}
.node--type-solution .al-hero__panel-row svg {
  flex-shrink: 0;
  color: var(--al-orange);
  margin-top: 2px;
}
.node--type-solution .al-hero__panel-row b {
  color: #fff;
  font-weight: 700;
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  margin-bottom: 2px;
}
/* =========================================================================
   HERO PARAGRAPHS (Overview section)
   ========================================================================= */
.node--type-solution .heroparas {
  background: var(--al-navy-50);
  padding: 112px 0;
  border-bottom: 1px solid var(--al-gray-100);
}
.node--type-solution .al-heroparas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.node--type-solution .heropara {
  padding: 0;
  position: relative;
}
.node--type-solution .heropara::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--al-orange);
  margin-bottom: 18px;
}
.node--type-solution .heropara__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--al-orange);
  margin: 0 0 6px;
}
.node--type-solution .heropara h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--al-navy);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.node--type-solution .heropara p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--al-navy-600);
  margin: 0;
}
/* =========================================================================
   SECTION HEAD (shared by benefits, problems, solutions, workflow, etc.)
   ========================================================================= */
.node--type-solution section.padded {
  padding: 128px 0;
}
.node--type-solution .al-section-head {
  max-width: 760px;
  margin: 0 0 56px;
}
.node--type-solution .al-section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--al-orange);
  margin-bottom: 14px;
}
.node--type-solution .al-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.55vw, 44px);
  font-weight: 800;
  color: var(--al-navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 18px;
  text-wrap: balance;
}
.node--type-solution .al-section-head .lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--al-navy-600);
  max-width: 68ch;
  margin: 0;
}
.node--type-solution section.dark .al-section-head h2 {
  color: #fff;
}
.node--type-solution section.dark .al-section-head .lede {
  color: rgba(255, 255, 255, 0.78);
}
/* =========================================================================
   BENEFITS
   ========================================================================= */
.node--type-solution .benefits {
  background: #fff;
}
.node--type-solution .al-benefits__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.node--type-solution .al-benefits__grid .al-b-card {
  flex: 0 1 calc((100% - 40px) / 3);
  min-width: 0;
}
.node--type-solution .al-b-card {
  background: #fff;
  border: 1px solid var(--al-gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: all var(--dur-2) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
}
.node--type-solution .al-b-card:hover {
  border-color: var(--al-navy-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.node--type-solution .al-b-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--al-navy);
  margin: 0;
  letter-spacing: -0.005em;
}
.node--type-solution .al-b-card p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--al-navy-600);
  margin: 0;
}
.node--type-solution .al-b-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--al-navy-50);
  color: var(--al-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out);
}
.node--type-solution .al-b-card:hover .al-b-card__icon {
  background: var(--al-orange);
  color: #fff;
}
/* =========================================================================
   PROBLEMS
   ========================================================================= */
.node--type-solution .problems {
  background: var(--al-navy-50);
}
.node--type-solution .al-problems__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.node--type-solution .al-problems__grid .al-p-card {
  flex: 0 1 calc((100% - 40px) / 3);
  min-width: 0;
}
.node--type-solution .al-p-card {
  background: #fff;
  border: 1px solid var(--al-gray-100);
  border-radius: var(--radius-lg);
  padding: 26px 26px 26px 30px;
  position: relative;
  transition: all var(--dur-2) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.node--type-solution .al-p-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--al-orange);
}
.node--type-solution .al-p-card:hover {
  border-color: var(--al-navy-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.node--type-solution .al-p-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.node--type-solution .al-p-card__icon {
  width: 28px;
  height: 28px;
  color: var(--al-orange);
  flex-shrink: 0;
}
.node--type-solution .al-p-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--al-navy);
  margin: 0;
  letter-spacing: -0.005em;
}
.node--type-solution .al-p-card p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--al-navy-600);
  margin: 0;
}
/* =========================================================================
   SOLUTIONS
   ========================================================================= */
.node--type-solution .solutions {
  background: #ffffff;
}
section.solutions.padded {
  background-color: #ffffff;
}
.node--type-solution .al-solutions__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.node--type-solution .al-s-card {
  flex: 0 1 calc((100% - 60px) / 4);
  min-width: 0;
  background: #fff;
  border: 1px solid var(--al-gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-2) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
}
.node--type-solution .al-s-card:nth-last-child(-n+3):nth-child(4n+1),
.node--type-solution .al-s-card:nth-last-child(-n+3):nth-child(4n+1) ~ .al-s-card {
  flex: 0 1 calc((100% - 40px) / 3);
}
.node--type-solution .al-s-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--al-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--al-navy-100);
}
.node--type-solution .al-s-card__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--al-orange);
  margin: 0 0 -4px;
}
/* =========================================================================
   WORKFLOW
   ========================================================================= */
.node--type-solution .workflow {
  background: var(--al-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.node--type-solution .workflow::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -160px;
  width: 480px;
  height: 480px;
  border: 2px solid var(--al-orange);
  border-radius: 50%;
  transform: rotate(-22deg) scale(1, 0.32);
  opacity: 0.18;
  pointer-events: none;
}
.node--type-solution .workflow .container {
  position: relative;
}
.node--type-solution .al-workflow__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
  position: relative;
}
.node--type-solution .w-step {
  position: relative;
  padding: 0 4px;
}
.node--type-solution .w-step:not(:nth-child(4n))::after {
  content: '';
  position: absolute;
  top: 21px;
  left: 56px;
  right: -24px;
  height: 2px;
  background-image: linear-gradient(to right, rgba(243, 196, 131, 0.55) 50%, transparent 50%);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  z-index: 1;
}
.node--type-solution .w-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--al-orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(224, 144, 48, 0.1);
}
.node--type-solution .w-step h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.node--type-solution .w-step p {
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
/* =========================================================================
   TRUST / PROOF
   ========================================================================= */
.node--type-solution .trust {
  background: #fff;
}
.node--type-solution .trust__section-head {
  max-width: none;
}
.node--type-solution .trust__title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.node--type-solution .trust__title-row h2 {
  flex: 1 1 auto;
  max-width: 760px;
  margin-bottom: 0;
}
.node--type-solution .trust__iso {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding-bottom: 8px;
}
.node--type-solution .trust__iso .iso-pill {
  background: var(--al-navy-50);
  color: var(--al-navy);
  border-color: var(--al-navy-100);
}
.node--type-solution .trust__iso .iso-pill::before {
  background: var(--al-orange);
}
.node--type-solution .trust__paras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.node--type-solution .trust__paras p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--al-navy-600);
  margin: 0;
}
.node--type-solution .trust__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--al-gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.node--type-solution .trust__table thead th {
  background: var(--al-navy);
  color: #fff;
  text-align: left;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.node--type-solution .trust__table th:first-child {
  width: 32%;
}
.node--type-solution .trust__table tbody tr:nth-child(odd) td {
  background: var(--al-navy-50);
}
.node--type-solution .trust__table tbody tr:nth-child(even) td {
  background: #fff;
}
.node--type-solution .trust__table td {
  padding: 18px 24px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--al-navy-600);
  border-top: 1px solid var(--al-gray-100);
  vertical-align: top;
}
.node--type-solution .trust__table td:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--al-navy);
}
/* =========================================================================
   RELATED SOLUTIONS
   ========================================================================= */
.node--type-solution .related {
  background: var(--al-navy-50);
}
.node--type-solution .al-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.node--type-solution .al-related__grid a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--al-gray-100);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--al-navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  transition: all var(--dur-2) var(--ease-out);
}
.node--type-solution .al-related__grid a::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--al-orange);
  background: transparent;
  flex-shrink: 0;
  transition: background var(--dur-2) var(--ease-out);
}
.node--type-solution .al-related__grid a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.node--type-solution .al-related__grid a:hover::before {
  background: var(--al-orange);
}
.node--type-solution .al-related__grid .r-link__chev {
  margin-left: auto;
  font-size: 12px;
  color: var(--al-navy-400);
  transition: color var(--dur-2) var(--ease-out);
}
.node--type-solution .al-related__grid a:hover .r-link__chev {
  color: var(--al-orange);
}
/* =========================================================================
   FAQ
   ========================================================================= */
.node--type-solution .faq {
  background: #fff;
}
.node--type-solution .faq .al-section-head {
  text-align: center;
  margin: 0 auto 48px;
}
.node--type-solution .faq__wrap {
  max-width: 880px;
  margin: 0 auto;
}
.node--type-solution .faq__wrap > .field {
  margin: 0;
  padding: 0;
}
.node--type-solution .faq-item {
  border-top: 1px solid var(--al-gray-100);
}
.node--type-solution .faq-item:last-child,
.node--type-solution .faq-item:last-of-type {
  border-bottom: 1px solid var(--al-gray-100);
}
.node--type-solution .faq-item__btn {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--al-navy);
  letter-spacing: -0.005em;
  list-style: none;
  transition: color var(--dur-1) var(--ease-out);
}
.node--type-solution .faq-item__btn::-webkit-details-marker {
  display: none;
}
.node--type-solution .faq-item__btn::marker {
  content: '';
}
.node--type-solution .faq-item__btn:hover {
  color: var(--al-orange-700);
}
.node--type-solution .faq-item__btn:focus-visible {
  outline: 2px solid var(--al-orange);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}
.node--type-solution .faq-item__btn > span:first-child {
  flex: 1;
  padding-top: 2px;
}
.node--type-solution .faq-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--al-navy-100);
  color: var(--al-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}
.node--type-solution .faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
  background: var(--al-orange);
  color: #fff;
  border-color: var(--al-orange);
}
.node--type-solution .faq-item__body {
  padding: 0 56px 28px 0;
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--al-navy-600);
  max-width: 78ch;
}
.node--type-solution .faq-item__body p {
  margin: 0;
}
/* =========================================================================
   FINAL CTA
   ========================================================================= */
.node--type-solution .al-finalcta {
  background: var(--al-navy-900);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.node--type-solution .al-finalcta::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  border: 2px solid var(--al-orange);
  border-radius: 50%;
  transform: rotate(-15deg) scale(1, 0.34);
  opacity: 0.22;
  pointer-events: none;
}
.node--type-solution .al-finalcta::after {
  content: '';
  position: absolute;
  bottom: -180px;
  left: -160px;
  width: 480px;
  height: 480px;
  border: 1px solid var(--al-orange);
  border-radius: 50%;
  transform: rotate(28deg) scale(1, 0.4);
  opacity: 0.14;
  pointer-events: none;
}
.node--type-solution .al-finalcta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.node--type-solution .al-finalcta__inner.with-form {
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.node--type-solution .al-finalcta__copy {
  max-width: 680px;
  padding-top: 8px;
}
.node--type-solution .al-finalcta__mailto {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  margin-top: 24px;
  text-decoration: none;
  transition: border-color var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out);
}
.node--type-solution .al-finalcta__mailto:hover {
  color: #fff;
  border-color: var(--al-orange);
  background: rgba(224, 144, 48, 0.1);
  text-decoration: none;
}
.node--type-solution .al-finalcta h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.15vw, 50px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 24px;
  max-width: 16ch;
  text-wrap: balance;
}
.node--type-solution .al-finalcta p {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 16px;
  max-width: 60ch;
}
/* =========================================================================
   INLINE LINKS (within body text)
   ========================================================================= */
.node--type-solution a.inline-link,
.node--type-solution .heropara a,
.node--type-solution .al-b-card a,
.node--type-solution .al-p-card a,
.node--type-solution .al-s-card a,
.node--type-solution .faq-item__body a,
.node--type-solution .w-step a,
.node--type-solution .trust__paras a,
.node--type-solution .trust__table a {
  color: var(--fg-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 144, 48, 0.35);
  transition: color var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out);
}
.node--type-solution a.inline-link:hover,
.node--type-solution .heropara a:hover,
.node--type-solution .al-b-card a:hover,
.node--type-solution .al-p-card a:hover,
.node--type-solution .al-s-card a:hover,
.node--type-solution .faq-item__body a:hover,
.node--type-solution .w-step a:hover,
.node--type-solution .trust__paras a:hover,
.node--type-solution .trust__table a:hover {
  color: var(--al-orange-700);
  border-bottom-color: var(--al-orange-700);
}
.node--type-solution section.dark a {
  color: var(--al-orange-300);
  border-bottom-color: rgba(243, 196, 131, 0.45);
}
.node--type-solution section.dark a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.node--type-solution section.al-finalcta .al-finalcta__copy a {
  color: var(--fg-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 144, 48, 0.35);
  transition: color var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out);
}
.node--type-solution section.al-finalcta .al-finalcta__copy a:hover {
  color: var(--al-orange-700);
  border-bottom-color: var(--al-orange-700);
}
/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .node--type-solution .al-benefits__grid .al-b-card,
  .node--type-solution .al-problems__grid .al-p-card {
    flex: 0 1 calc((100% - 20px) / 2);
  }
  .node--type-solution .al-heroparas__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .node--type-solution .al-workflow__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .node--type-solution .w-step::after {
    display: none;
  }
  .node--type-solution .al-solutions__grid .al-s-card {
    flex: 0 1 calc((100% - 20px) / 2);
  }
}
@media (max-width: 768px) {
  .node--type-solution .al-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .node--type-solution .al-hero__panel {
    max-width: 520px;
  }
  .node--type-solution .al-heroparas__grid,
  .node--type-solution .al-related__grid {
    grid-template-columns: 1fr;
  }
  .node--type-solution .al-benefits__grid .al-b-card,
  .node--type-solution .al-problems__grid .al-p-card {
    flex: 0 1 100%;
  }
  .node--type-solution .al-workflow__grid {
    grid-template-columns: 1fr;
  }
  .node--type-solution .w-step::after {
    display: none !important;
  }
  .node--type-solution .al-solutions__grid .al-s-card {
    flex: 0 1 100%;
  }
  .node--type-solution .faq-item__btn {
    gap: 16px;
    font-size: 18px;
    padding: 20px 0;
  }
  .node--type-solution .faq-item__body {
    padding: 0 0 24px;
    font-size: 16.5px;
  }
  .node--type-solution .trust__paras {
    grid-template-columns: 1fr;
  }
  .node--type-solution .al-finalcta__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .node--type-solution .al-finalcta__inner.with-form {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .node--type-solution section.padded {
    padding: 64px 0;
  }
}
/* =========================================================================
   BUTTONS
   ========================================================================= */
.node--type-solution .al-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--dur-2) var(--ease-out), transform var(--dur-1) var(--ease-out);
  cursor: pointer;
  border: none;
}
.node--type-solution .al-btn--primary {
  background: var(--al-orange);
  color: #fff;
}
.node--type-solution .al-btn--primary:hover {
  background: var(--al-orange-700);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}
.node--type-solution .al-btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}
/* =========================================================================
   DARK THEME — solution / service / industry pages
   ---------------------------------------------------------------------------
   Ported from design-review/service_pages/service_pages.html (body.dark …),
   mapped onto the harmonized .al-* class names. Activated by the global
   body.dark toggle; the main hero/breadcrumb is already navy in light mode so
   it needs no override here. Sections alternate navy / navy-900.
   ========================================================================= */
body.dark .node--type-solution {
  /* Section backgrounds — alternate navy / navy-900 */
  /* Hero-paragraphs / overview strip */
  /* Section headings */
  /* Benefit cards */
  /* Problem cards */
  /* Solution cards */
  /* Trust / proof */
  /* Related links (design .r-link → .al-related__grid a) */
  /* FAQ accordion */
}
body.dark .node--type-solution .heroparas {
  background: var(--al-navy-900);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
body.dark .node--type-solution .benefits {
  background: var(--al-navy);
}
body.dark .node--type-solution .problems {
  background: var(--al-navy-900);
}
body.dark .node--type-solution .solutions {
  background: var(--al-navy);
}
body.dark .node--type-solution .trust {
  background: var(--al-navy-900);
}
body.dark .node--type-solution .related {
  background: var(--al-navy);
}
body.dark .node--type-solution .faq {
  background: var(--al-navy-900);
}
body.dark .node--type-solution .heropara h3 {
  color: var(--article-heading);
}
body.dark .node--type-solution .heropara p {
  color: var(--article-text);
}
body.dark .node--type-solution .al-section-head h2 {
  color: var(--article-heading);
}
body.dark .node--type-solution .al-section-head .lede {
  color: var(--article-text);
}
body.dark .node--type-solution .al-b-card {
  background: var(--card-bg);
  border-color: var(--card-border-subtle);
}
body.dark .node--type-solution .al-b-card:hover {
  background: var(--al-navy-700);
  border-color: var(--card-hover-border);
}
body.dark .node--type-solution .al-b-card h3 {
  color: var(--article-heading);
}
body.dark .node--type-solution .al-b-card p {
  color: var(--article-text);
}
body.dark .node--type-solution .al-b-card__icon {
  background: rgba(255, 255, 255, 0.06);
}
body.dark .node--type-solution .al-p-card {
  background: var(--card-bg);
  border-color: var(--card-border-subtle);
}
body.dark .node--type-solution .al-p-card:hover {
  background: var(--al-navy-700);
  border-color: var(--card-hover-border);
}
body.dark .node--type-solution .al-p-card h3 {
  color: var(--article-heading);
}
body.dark .node--type-solution .al-p-card p {
  color: var(--article-text);
}
body.dark .node--type-solution .al-s-card {
  background: var(--card-bg);
  border-color: var(--card-border-subtle);
}
body.dark .node--type-solution .al-s-card:hover {
  background: var(--al-navy-700);
  border-color: var(--card-hover-border);
}
body.dark .node--type-solution .al-s-card h3 {
  color: var(--article-heading);
}
body.dark .node--type-solution .al-s-card p {
  color: var(--article-text);
}
body.dark .node--type-solution .al-s-card__icon {
  background: var(--al-navy-700);
  border-color: rgba(255, 255, 255, 0.1);
}
body.dark .node--type-solution .trust__paras p {
  color: rgba(255, 255, 255, 0.8);
}
body.dark .node--type-solution .trust__iso .iso-pill {
  background: rgba(255, 255, 255, 0.06);
  color: var(--article-heading);
  border-color: rgba(255, 255, 255, 0.16);
}
body.dark .node--type-solution .trust__table {
  border-color: rgba(255, 255, 255, 0.1);
}
body.dark .node--type-solution .trust__table thead th {
  background: var(--table-header-bg);
  color: #fff;
}
body.dark .node--type-solution .trust__table tbody tr:nth-child(odd) td {
  background: var(--al-navy-800);
}
body.dark .node--type-solution .trust__table tbody tr:nth-child(even) td {
  background: var(--table-row-alt);
}
body.dark .node--type-solution .trust__table td {
  color: var(--article-text);
  border-top-color: var(--table-border);
}
body.dark .node--type-solution .trust__table td:first-child {
  color: var(--article-heading);
}
body.dark .node--type-solution .al-related__grid a {
  background: var(--card-bg);
  border-color: var(--card-border-subtle);
  color: #fff;
}
body.dark .node--type-solution .al-related__grid a:hover {
  background: var(--al-navy-700);
  border-color: var(--al-orange);
  color: #fff;
}
body.dark .node--type-solution .faq-item {
  border-top-color: rgba(255, 255, 255, 0.1);
}
body.dark .node--type-solution .faq-item:last-child {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
body.dark .node--type-solution .faq-item__btn {
  color: var(--article-heading);
}
body.dark .node--type-solution .faq-item__btn:hover {
  color: var(--al-orange-300);
}
body.dark .node--type-solution .faq-item__body {
  color: var(--article-text);
}
body.dark .node--type-solution .faq-item__icon {
  border-color: rgba(255, 255, 255, 0.18);
}
