/*
Theme Name: XL Software Asia
Theme URI: https://xlsoftwareasia.com
Author: XL Software Asia
Description: Elementor-ready WordPress theme for Agentic AI solutions and Microsoft adoption workshops.
Version: 2.17.3
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: xlsa
*/

:root {
  --primary: #002060;
  --secondary: #0050c0;
  --accent: #0080d0;
  --teal: #00a0b0;
  --aqua: #00b0b0;
  --white: #ffffff;
  --ice: #f2f8fa;
  --text: #10233f;
  --muted: #5d6f86;
  --line: #d6e6ed;
  --shadow: 0 18px 44px rgba(0, 32, 96, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--primary);
}

h1 {
  margin-bottom: 22px;
  font-size: 58px;
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 38px;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 84px;
  padding: 6px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(214, 230, 237, 0.92);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 20px rgba(0, 32, 96, 0.04);
  backdrop-filter: blur(16px);
}

.xlsa-elementor-header-location {
  position: sticky;
  top: 0;
  z-index: 50;
}

.xlsa-elementor-header-location .site-header {
  position: static;
}

.xlsa-site-template,
.xlsa-site-template > .e-con-inner,
.xlsa-site-template .elementor-widget-container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.xlsa-site-template .elementor-widget-xlsa-site-header,
.xlsa-site-template .elementor-widget-xlsa-site-footer {
  width: 100%;
}

.xlsa-elementor-footer-location,
.xlsa-elementor-footer-location > .elementor,
.xlsa-elementor-footer-location .xlsa-site-footer-template,
.xlsa-elementor-footer-location .xlsa-site-footer-template > .e-con-inner,
.xlsa-elementor-footer-location .elementor-element-populated,
.xlsa-elementor-footer-location .elementor-widget-xlsa-site-footer,
.xlsa-elementor-footer-location .elementor-widget-xlsa-site-footer > .elementor-widget-container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  --padding-top: 0;
  --padding-right: 0;
  --padding-bottom: 0;
  --padding-left: 0;
  --padding-block-start: 0;
  --padding-block-end: 0;
  --padding-inline-start: 0;
  --padding-inline-end: 0;
  --margin-top: 0;
  --margin-right: 0;
  --margin-bottom: 0;
  --margin-left: 0;
  --gap: 0;
  --container-widget-width: 100%;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 196px;
  height: 68px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 750;
}

.site-nav a {
  position: relative;
  padding: 28px 0;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--secondary), var(--aqua));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.site-nav .mobile-contact {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.btn,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--secondary);
  border-radius: var(--radius);
  color: var(--secondary);
  background: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn.primary,
.header-cta {
  color: var(--white);
  background: var(--secondary);
  box-shadow: 0 12px 26px rgba(0, 80, 192, 0.2);
}

.btn.secondary {
  color: var(--primary);
  border-color: var(--line);
  background: var(--white);
}

.btn.light {
  color: var(--primary);
  border-color: var(--white);
  background: var(--white);
}

.btn.outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 80, 192, 0.22);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero labels are intentionally omitted across theme and Elementor output. */
.hero > .hero-copy > .eyebrow,
.sub-hero > .sub-hero-copy > .eyebrow,
.xlsa-el-hero .xlsa-el-eyebrow,
.xlsa-why-hero .xlsa-why-kicker {
  display: none !important;
}

.lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--text);
  font-size: 19px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: 48px;
  min-height: 610px;
  padding: 50px 0 38px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-media {
  position: relative;
  min-height: 490px;
}

.hero-media > img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media::before {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 130px;
  height: 130px;
  border-top: 5px solid var(--accent);
  border-right: 5px solid var(--aqua);
  content: "";
}

.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 34px rgba(0, 32, 96, 0.14);
  backdrop-filter: blur(12px);
}

.hero-badge .line-icon {
  width: 42px;
  height: 42px;
  margin: 0;
}

.hero-badge strong,
.hero-badge small {
  display: block;
}

.hero-badge strong {
  color: var(--primary);
  font-size: 14px;
}

.hero-badge small {
  color: var(--muted);
  font-size: 12px;
}

.hero-badge-ai {
  top: 28px;
  left: -26px;
}

.hero-badge-learning {
  right: -20px;
  bottom: 34px;
}

.proof-strip,
.stat-strip {
  display: grid;
  overflow: hidden;
  margin-top: 8px;
  margin-bottom: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 32, 96, 0.07);
}

.proof-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 44px;
  background: var(--primary);
}

.proof-strip article,
.stat-strip article {
  display: grid;
  align-content: center;
  min-height: 130px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.proof-strip article:last-child,
.stat-strip article:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span:not(.line-icon),
.stat-strip strong,
.stat-strip span:not(.line-icon) {
  display: block;
}

.proof-strip strong {
  margin-top: 4px;
  color: var(--primary);
  font-size: 16px;
}

.proof-strip span:not(.line-icon) {
  color: var(--muted);
  font-size: 13px;
}

.stat-strip article {
  border-color: rgba(255, 255, 255, 0.16);
}

.stat-strip strong {
  color: var(--white);
  font-size: 30px;
  line-height: 1.1;
}

.stat-strip span:not(.line-icon) {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.page-section {
  padding: 64px 0;
}

.tinted-band,
.outcome-section {
  width: 100%;
  background: var(--ice);
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

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

.focus-card,
.split-panel,
.info-card,
.process-card,
.pillar-card,
.technology-card,
.jumpstart-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(0, 32, 96, 0.06);
}

.focus-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 32px;
  border-top: 4px solid var(--accent);
}

.focus-card > div:last-child,
.split-panel,
.info-card,
.jumpstart-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.focus-card a,
.split-panel > .text-link,
.info-card > a,
.jumpstart-card > a {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 18px;
}

.focus-card:nth-child(2) {
  border-top-color: var(--aqua);
}

.focus-card:nth-child(3) {
  border-top-color: var(--teal);
}

.focus-card-icon .line-icon {
  width: 58px;
  height: 58px;
  margin: 0;
}

.focus-card p,
.split-panel p,
.info-card p,
.process-card p,
.pillar-card p,
.technology-card p,
.jumpstart-card p {
  color: var(--muted);
}

.focus-card a,
.info-card a,
.jumpstart-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 800;
}

.split-panel {
  padding: 32px;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.technology-card {
  padding: 24px 20px;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  padding: 26px;
}

.line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0 0 18px;
  border: 1px solid rgba(0, 128, 208, 0.28);
  border-radius: var(--radius);
  color: var(--secondary);
  background: var(--ice);
  font-size: 15px;
  font-weight: 900;
  line-height: 0;
  text-align: center;
  vertical-align: top;
}

.line-icon svg {
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin: auto;
  overflow: visible;
}

.focus-card-icon .line-icon svg {
  width: 28px;
  height: 28px;
}

.process-grid,
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.process-card,
.pillar-card {
  padding: 24px 20px;
}

.process-card > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--secondary);
  font-size: 13px;
  font-weight: 900;
}

.pillar-meta {
  margin: 0 0 8px !important;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 16px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--teal));
}

.journey-line span {
  position: relative;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.journey-line span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -4px;
  content: ">";
  transform: translateY(-50%);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 10px;
  height: 2px;
  content: "";
  background: var(--secondary);
  transform: translateY(-50%);
}

.sub-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 46px;
  min-height: 520px;
  padding: 48px 0;
}

.sub-hero h1 {
  font-size: 50px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--secondary);
}

.sub-hero-media img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.outcome-strip article {
  padding: 26px;
  border-right: 1px solid var(--line);
}

.outcome-strip article:last-child {
  border-right: 0;
}

.outcome-strip strong,
.outcome-strip span:not(.line-icon) {
  display: block;
}

.outcome-strip strong {
  margin-bottom: 8px;
  color: var(--primary);
}

.outcome-strip span:not(.line-icon) {
  color: var(--muted);
  font-size: 14px;
}

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

.jumpstart-card {
  padding: 22px;
}

.jumpstart-card .microsoft-product-logo {
  margin-bottom: 18px;
}

.jumpstart-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.jumpstart-meta span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.jumpstart-meta strong {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--teal);
  background: var(--ice);
  font-size: 11px;
  text-transform: uppercase;
}

.service-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.service-note > span {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--aqua);
}

.company-hero {
  padding: 62px 0;
  background: var(--ice);
}

.company-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 60px;
}

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

.company-mark {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.company-mark img {
  width: 320px;
  max-height: 250px;
  object-fit: contain;
}

/* Why XL Software Asia */
.elementor-widget-xlsa-why-page,
.elementor-widget-xlsa-why-page > .elementor-widget-container,
.xlsa-why-page {
  width: 100%;
  max-width: none;
}

.elementor-widget-xlsa-why-page > .elementor-widget-container {
  margin: 0;
  padding: 0;
}

.xlsa-why-page {
  color: var(--primary);
  background: var(--white);
}

.xlsa-why-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.xlsa-why-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 102px;
  border-bottom: 1px solid var(--line);
  background-color: var(--white);
  background-image:
    linear-gradient(rgba(0, 80, 192, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 80, 192, 0.065) 1px, transparent 1px);
  background-size: 76px 76px;
}

.xlsa-why-hero-inner {
  max-width: 1040px;
  text-align: center;
}

.xlsa-why-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.xlsa-why-kicker::before {
  display: block;
  flex: 0 0 28px;
  width: 28px;
  height: 2px;
  content: "";
  background: var(--accent);
}

.xlsa-why-hero h1 {
  max-width: 1000px;
  margin: 24px auto 30px;
  color: var(--primary);
  font-size: 72px;
  line-height: 1.02;
  text-wrap: balance;
}

.xlsa-why-intro {
  max-width: 760px;
  margin: 0 auto;
}

.xlsa-why-intro p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.xlsa-why-intro strong {
  color: var(--secondary);
  font-size: 15px;
  font-weight: 900;
}

.xlsa-why-section {
  padding: 92px 0;
}

.xlsa-why-statement {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.xlsa-why-statement h2,
.xlsa-why-expertise-heading h2,
.xlsa-why-closing h2 {
  margin: 20px 0 22px;
  font-size: 50px;
  line-height: 1.08;
  text-wrap: balance;
}

.xlsa-why-statement > p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.xlsa-why-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 66px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.xlsa-why-principle {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: center;
  padding: 34px 32px;
  border-right: 1px solid var(--line);
}

.xlsa-why-principle:last-child {
  border-right: 0;
}

.xlsa-why-principle > strong {
  margin-bottom: 18px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.xlsa-why-principle h3 {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 23px;
  line-height: 1.25;
}

.xlsa-why-principle p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.xlsa-why-expertise {
  border-top: 1px solid rgba(214, 230, 237, 0.72);
  border-bottom: 1px solid rgba(214, 230, 237, 0.72);
  background: var(--ice);
}

.xlsa-why-expertise-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.55fr);
  align-items: end;
  gap: 70px;
}

.xlsa-why-expertise-heading .xlsa-why-kicker,
.xlsa-why-expertise-heading h2 {
  grid-column: 1;
}

.xlsa-why-expertise-heading h2 {
  margin-bottom: 0;
}

.xlsa-why-expertise-heading > p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.xlsa-why-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.xlsa-why-expertise-item {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(0, 32, 96, 0.07);
}

.xlsa-why-status {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  margin-bottom: 54px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid rgba(0, 128, 208, 0.2);
  border-radius: 4px;
  color: var(--secondary);
  background: rgba(0, 128, 208, 0.08);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.xlsa-why-status::before {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  content: "";
  background: var(--teal);
}

.xlsa-why-expertise-item h3 {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 22px;
}

.xlsa-why-expertise-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.xlsa-why-expertise-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 850;
}

.xlsa-why-expertise-item a:hover,
.xlsa-why-expertise-item a:focus-visible {
  color: var(--teal);
}

.xlsa-why-closing {
  color: var(--white);
  background: var(--primary);
}

.xlsa-why-closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 76px;
}

.xlsa-why-closing .xlsa-why-kicker {
  color: #7fe3ea;
}

.xlsa-why-closing .xlsa-why-kicker::before {
  background: #7fe3ea;
}

.xlsa-why-closing h2 {
  margin-bottom: 0;
  color: var(--white);
}

.xlsa-why-closing-copy p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

.xlsa-why-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius);
  color: var(--primary);
  background: var(--white);
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.xlsa-why-button:hover,
.xlsa-why-button:focus-visible {
  color: var(--secondary);
  transform: translateY(-1px);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
  margin-bottom: 50px;
  padding: 36px 44px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--secondary);
  box-shadow: 0 18px 40px rgba(0, 80, 192, 0.18);
}

.cta-band h2 {
  margin-bottom: 8px;
  color: var(--white);
}

.cta-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.legal-main {
  max-width: 860px;
  padding: 70px 0;
}

.legal-main h1 {
  font-size: 50px;
}

.legal-main section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.legal-main h2 {
  font-size: 26px;
}

.contact-hero {
  padding: 58px 0;
  color: var(--white);
  background: var(--primary);
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 64px;
}

.contact-hero h1,
.contact-hero .lead,
.contact-hero .breadcrumb,
.contact-hero .breadcrumb a {
  color: var(--white);
}

.contact-hero .lead {
  color: rgba(255, 255, 255, 0.8);
}

.contact-hero .eyebrow {
  color: #73e0e4;
}

.contact-summary {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 6px 14px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.contact-summary .line-icon {
  grid-row: 1 / 4;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
}

.contact-summary strong {
  color: var(--white);
  font-size: 18px;
}

.contact-summary span:not(.line-icon) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: 70px;
}

.contact-intro {
  position: sticky;
  top: 120px;
}

.contact-form-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form,
.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form {
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label > span {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.contact-form label em {
  color: #b42318;
  font-style: normal;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #b9cbd5;
  border-radius: 4px;
  color: var(--text);
  background: var(--white);
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(0, 128, 208, 0.16);
}

.privacy-check {
  grid-template-columns: 20px 1fr;
  align-items: start;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.privacy-check span {
  font-weight: 500 !important;
}

.form-context,
.form-notice {
  margin: 0;
  padding: 13px 15px;
  border-left: 4px solid var(--accent);
  background: var(--ice);
}

.form-notice.success {
  border-color: var(--teal);
}

.form-notice.error {
  border-color: #b42318;
  background: #fff4f2;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .btn {
  justify-self: start;
}

.elementor-page-main {
  overflow: hidden;
}

.elementor-page-main .elementor-heading-title {
  color: var(--primary) !important;
}

.elementor .e-con[class*="xlsa-el-"] {
  display: flex !important;
  flex-direction: column;
}

.xlsa-el-band {
  width: 100%;
  max-width: none !important;
}

.elementor-widget-xlsa-content-section,
.elementor-widget-xlsa-content-section > .elementor-widget-container,
.xlsa-content-section-root {
  width: 100%;
  max-width: none;
}

.elementor-widget-xlsa-content-section > .elementor-widget-container {
  margin: 0;
  padding: 0;
}

.elementor .xlsa-el-band > .e-con-inner,
.elementor .xlsa-el-shell > .e-con-inner {
  width: 100% !important;
  max-width: none !important;
}

.xlsa-el-shell {
  width: min(100% - 48px, 1180px) !important;
  max-width: 1180px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.xlsa-el-hero {
  padding: 62px 0 66px;
  border-bottom: 1px solid var(--line);
  background: var(--ice);
}

.xlsa-el-hero-inner.xlsa-el-shell {
  width: min(100% - 48px, 1240px) !important;
  max-width: 1240px !important;
}

.xlsa-el-hero-inner > .e-con-inner {
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 44px;
  width: 100%;
  max-width: none;
}

.xlsa-el-hero-copy {
  min-width: 0;
}

.xlsa-el-hero-copy > .e-con-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.xlsa-el-eyebrow p {
  margin: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.xlsa-el-title h1 {
  max-width: 720px;
  margin: 10px 0 18px;
  color: var(--primary) !important;
  font-size: 54px;
  line-height: 1.08;
}

.xlsa-el-lead {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.xlsa-el-hero-media,
.xlsa-el-hero-media > .e-con-inner {
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}

.xlsa-el-hero-media .elementor-widget-image,
.xlsa-el-hero-media .elementor-widget-container {
  width: 100%;
}

.xlsa-el-hero-media img {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: 450px;
  margin: auto;
  border: 1px solid rgba(0, 128, 208, 0.14);
  border-radius: var(--radius) !important;
  object-fit: cover;
  object-position: center center;
  box-shadow: var(--shadow);
}

.xlsa-el-section {
  padding: 64px 0;
  border-bottom: 1px solid rgba(214, 230, 237, 0.72);
}

.xlsa-el-section-ice {
  background: var(--ice);
}

.xlsa-el-section .xlsa-el-shell > .e-con-inner {
  gap: 0;
}

.xlsa-el-section h2 {
  max-width: 820px;
  margin: 8px 0 14px;
  color: var(--primary) !important;
  font-size: 36px;
  line-height: 1.18;
}

.xlsa-el-section-copy {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.xlsa-el-grid > .e-con-inner {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  max-width: none;
}

.xlsa-el-grid-5 > .e-con-inner {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.xlsa-el-card {
  --border-radius: var(--radius);
  --box-shadow: 0 10px 28px rgba(0, 32, 96, 0.07);
  min-width: 0;
  height: 100%;
  padding: 0 !important;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius) !important;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 32, 96, 0.07) !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.xlsa-el-card:hover {
  border-color: rgba(0, 128, 208, 0.42);
  box-shadow: 0 16px 34px rgba(0, 32, 96, 0.12) !important;
  transform: translateY(-2px);
}

.xlsa-el-card > .e-con-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 22px 22px !important;
  gap: 0 !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
}

.xlsa-el-card > .e-con-inner > .elementor-element {
  flex: 0 0 auto;
}

.xlsa-el-card:nth-child(3n+2) {
  border-top-color: var(--teal);
}

.xlsa-el-card:nth-child(3n) {
  border-top-color: var(--secondary);
}

.xlsa-el-card-icon {
  width: 44px !important;
  min-width: 44px;
  max-width: 44px !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  align-self: flex-start !important;
}

.xlsa-el-card-logo {
  width: 48px !important;
  min-width: 48px;
  max-width: 48px !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  align-self: flex-start !important;
}

.xlsa-el-card-logo .elementor-widget-container {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: flex-start;
  line-height: 0;
  text-align: left !important;
}

.xlsa-el-card-logo img,
.microsoft-product-logo {
  display: block;
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
  object-fit: contain;
  object-position: left center;
}

.info-card > .microsoft-product-logo,
.technology-card > .microsoft-product-logo,
.jumpstart-card > .microsoft-product-logo {
  margin: 0 0 18px !important;
}

.xlsa-el-card-icon .elementor-widget-container,
.xlsa-el-card-icon .elementor-icon-wrapper {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center !important;
  justify-content: center !important;
  line-height: 0;
  text-align: center !important;
}

.xlsa-el-card-icon .elementor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 128, 208, 0.2);
  border-radius: 6px;
  color: var(--secondary) !important;
  background: rgba(0, 128, 208, 0.1);
  font-size: 19px;
  line-height: 1;
}

.xlsa-el-card-icon .elementor-icon svg,
.xlsa-el-card-icon .elementor-icon i {
  display: block;
  width: 1em;
  height: 1em;
  margin: auto;
  line-height: 1;
}

.xlsa-el-card:nth-child(3n+2) .xlsa-el-card-icon .elementor-icon {
  color: var(--teal) !important;
  border-color: rgba(0, 160, 176, 0.22);
  background: rgba(0, 160, 176, 0.1);
}

.xlsa-el-card:nth-child(3n) .xlsa-el-card-icon .elementor-icon {
  color: var(--primary) !important;
  border-color: rgba(0, 32, 96, 0.18);
  background: rgba(0, 32, 96, 0.06);
}

.xlsa-el-card h3 {
  margin: 0 0 10px;
  color: var(--primary) !important;
  font-size: 19px;
  line-height: 1.32;
}

.xlsa-el-card .elementor-widget-text-editor {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.xlsa-el-card .elementor-widget-text-editor p:last-child,
.xlsa-el-card .elementor-widget-text-editor ul:last-child {
  margin-bottom: 0;
}

.xlsa-el-card-meta p {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.xlsa-el-layout-steps > .e-con-inner {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.xlsa-el-layout-steps .xlsa-el-card {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0 !important;
  background: transparent;
  box-shadow: none !important;
}

.xlsa-el-layout-steps .xlsa-el-card > .e-con-inner {
  padding: 26px 22px 18px !important;
}

.xlsa-el-layout-steps .xlsa-el-card:last-child {
  border-right: 0;
}

.xlsa-el-layout-steps .xlsa-el-card:hover,
.xlsa-el-layout-editorial .xlsa-el-card:hover,
.xlsa-el-layout-strip .xlsa-el-card:hover {
  border-color: var(--line);
  box-shadow: none !important;
  transform: none;
}

.xlsa-el-layout-steps .xlsa-el-card-icon .elementor-icon {
  border: 0;
  color: var(--secondary) !important;
  background: rgba(0, 80, 192, 0.09);
}

.xlsa-el-layout-strip > .e-con-inner {
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 32, 96, 0.06);
}

.xlsa-el-layout-strip .xlsa-el-card {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0 !important;
  background: transparent;
  box-shadow: none !important;
}

.xlsa-el-layout-strip .xlsa-el-card > .e-con-inner {
  padding: 25px 24px !important;
}

.xlsa-el-layout-strip .xlsa-el-card:last-child {
  border-right: 0;
}

.xlsa-el-layout-strip .xlsa-el-card-icon {
  margin-bottom: 14px;
}

.xlsa-el-layout-strip .xlsa-el-card-icon .elementor-icon {
  width: auto;
  height: auto;
  border: 0;
  color: var(--accent) !important;
  background: transparent;
  font-size: 24px;
}

.xlsa-el-layout-editorial > .e-con-inner {
  gap: 28px 40px;
}

.xlsa-el-layout-editorial .xlsa-el-card {
  border: 0;
  border-left: 3px solid var(--accent);
  border-radius: 0 !important;
  background: transparent;
  box-shadow: none !important;
}

.xlsa-el-layout-editorial .xlsa-el-card > .e-con-inner {
  padding: 4px 4px 4px 22px !important;
}

.xlsa-el-layout-editorial .xlsa-el-card:nth-child(3n+2) {
  border-left-color: var(--teal);
}

.xlsa-el-layout-editorial .xlsa-el-card:nth-child(3n) {
  border-left-color: var(--secondary);
}

.xlsa-el-layout-editorial .xlsa-el-card-icon {
  margin-bottom: 14px;
}

.xlsa-el-layout-editorial .xlsa-el-card-icon .elementor-icon {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  font-size: 22px;
}

.xlsa-el-primary-button .elementor-button,
.xlsa-el-text-button .elementor-button {
  border-radius: var(--radius) !important;
  background-color: var(--secondary) !important;
}

.xlsa-el-primary-button .elementor-button {
  min-height: 48px;
  padding: 13px 22px;
  color: var(--white) !important;
  box-shadow: 0 12px 26px rgba(0, 80, 192, 0.2);
}

.xlsa-el-primary-button .elementor-button:hover {
  background-color: var(--accent) !important;
}

.xlsa-el-text-button .elementor-button {
  min-height: auto;
  margin-top: 0;
  padding: 0;
  color: var(--secondary) !important;
  background: transparent !important;
  box-shadow: none;
}

.xlsa-el-card .xlsa-el-text-button {
  width: 100%;
  margin-top: auto;
  padding: 16px 0 0 !important;
}

.xlsa-el-section-action {
  align-self: center;
  margin-top: 28px;
}

.xlsa-el-card .xlsa-el-text-button .elementor-widget-container,
.xlsa-el-card .xlsa-el-text-button .elementor-button-wrapper {
  text-align: left !important;
}

.xlsa-el-text-button .elementor-button:hover {
  color: var(--teal) !important;
}

.xlsa-el-cta {
  padding: 44px 0;
  color: var(--white);
  background: var(--secondary);
}

.xlsa-el-cta-inner > .e-con-inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title action"
    "copy action";
  align-items: center;
  gap: 6px 36px;
  width: 100%;
  max-width: none;
}

.xlsa-el-cta .elementor-widget-heading {
  grid-area: title;
  align-self: end;
}

.xlsa-el-cta .elementor-widget-text-editor {
  grid-area: copy;
  align-self: start;
}

.xlsa-content-section-root .xlsa-el-cta-inner > .e-con-inner {
  grid-template-areas: "copy action";
}

.xlsa-content-cta-copy {
  grid-area: copy;
  align-self: center;
}

.xlsa-el-cta h2,
.xlsa-el-cta p {
  color: var(--white) !important;
}

.elementor-page-main .xlsa-el-cta .elementor-heading-title {
  color: var(--white) !important;
}

.xlsa-el-cta h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
}

.xlsa-el-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86) !important;
}

.xlsa-el-light-button {
  grid-area: action;
  align-self: center;
  justify-self: end;
}

.xlsa-el-light-button .elementor-button {
  display: inline-flex;
  min-width: 156px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px !important;
  text-align: center;
  color: var(--primary) !important;
  border-radius: var(--radius) !important;
  background-color: var(--white) !important;
}

.xlsa-el-light-button .elementor-button-wrapper,
.xlsa-el-light-button .elementor-button-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.xlsa-el-light-button .elementor-button-content-wrapper {
  width: 100%;
}

.xlsa-el-light-button .elementor-button-icon {
  display: none;
}

.xlsa-el-light-button .elementor-button-text {
  flex: 0 0 auto;
  text-align: center;
}

.xlsa-el-contact-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.xlsa-elementor-contact-widget.contact-layout {
  width: 100%;
}

.xlsa-el-legal {
  padding-top: 70px;
  padding-bottom: 70px;
}

.xlsa-el-legal-content h2 {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 26px;
}

.xlsa-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.xlsa-brochure-widget {
  --xlsa-brochure-accent: var(--accent);
  --xlsa-brochure-border: var(--line);
  width: 100%;
  padding: 64px 0;
  background: var(--ice);
}

.xlsa-brochure-inner {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.xlsa-brochure-heading {
  max-width: 800px;
}

.xlsa-brochure-eyebrow {
  margin: 0 0 8px;
  color: var(--xlsa-brochure-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.xlsa-brochure-heading h1,
.xlsa-brochure-heading h2 {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 36px;
  line-height: 1.18;
}

.xlsa-brochure-heading-copy {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.xlsa-brochure-library {
  margin-top: 36px;
}

.xlsa-brochure-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.xlsa-brochure-search {
  width: min(100%, 320px);
  flex: 0 0 min(100%, 320px);
}

.xlsa-brochure-search input {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  line-height: 1.35;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.xlsa-brochure-search input:focus {
  border-color: var(--xlsa-brochure-accent);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 128, 208, 0.14);
}

.xlsa-brochure-filters {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.xlsa-brochure-filters button {
  min-height: 38px;
  padding: 8px 13px;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.xlsa-brochure-filters button:hover,
.xlsa-brochure-filters button:focus-visible {
  color: var(--secondary);
  border-color: var(--xlsa-brochure-accent);
}

.xlsa-brochure-filters button.is-active {
  color: var(--white);
  background: var(--xlsa-brochure-accent);
  border-color: var(--xlsa-brochure-accent);
}

.xlsa-brochure-grid {
  display: grid;
  grid-template-columns: repeat(var(--xlsa-brochure-columns, 3), minmax(0, 1fr));
  gap: 24px;
}

.xlsa-brochure-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--xlsa-brochure-border);
  border-top: 3px solid var(--xlsa-brochure-accent);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 32, 96, 0.07);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.xlsa-brochure-card:hover {
  box-shadow: 0 16px 36px rgba(0, 32, 96, 0.12);
  transform: translateY(-2px);
}

.xlsa-brochure-card[hidden] {
  display: none;
}

.xlsa-brochure-cover {
  position: relative;
  display: flex;
  aspect-ratio: 3 / 4;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  background: var(--primary);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.xlsa-brochure-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.24s ease;
}

.xlsa-brochure-card:hover .xlsa-brochure-cover img {
  transform: scale(1.015);
}

.xlsa-brochure-placeholder {
  display: grid;
  place-items: center;
  gap: 12px;
}

.xlsa-brochure-document {
  position: relative;
  display: block;
  width: 52px;
  height: 66px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.xlsa-brochure-document::after {
  position: absolute;
  right: 8px;
  bottom: 12px;
  left: 8px;
  height: 3px;
  content: "";
  background: currentColor;
  box-shadow: 0 -10px 0 currentColor, 0 -20px 0 currentColor;
}

.xlsa-brochure-placeholder small {
  font-size: 12px;
  font-weight: 900;
}

.xlsa-brochure-featured {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 9px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 32, 96, 0.16);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.xlsa-brochure-card-body {
  display: flex;
  padding: 24px 22px 22px;
  flex: 1;
  flex-direction: column;
}

.xlsa-brochure-service {
  margin: 0 0 9px;
  color: var(--xlsa-brochure-accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.xlsa-brochure-card h2,
.xlsa-brochure-card h3 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 20px;
  line-height: 1.32;
}

.xlsa-brochure-card-description {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.xlsa-brochure-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin-top: auto;
  color: var(--secondary);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.xlsa-brochure-link:hover,
.xlsa-brochure-link:focus-visible {
  color: var(--teal);
}

.xlsa-brochure-no-results,
.xlsa-brochure-empty {
  padding: 28px;
  color: var(--muted);
  text-align: center;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.xlsa-brochure-no-results {
  margin: 24px 0 0;
}

.xlsa-brochure-empty {
  margin: 30px 0 0;
}

.site-footer {
  padding: 48px 0 20px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--primary);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.55fr 1.2fr repeat(2, 1fr);
  gap: 32px;
}

.footer-brand img {
  width: 180px;
  height: 76px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 300px;
}

.footer-main h3 {
  color: var(--white);
  font-size: 15px;
}

.footer-main a,
.footer-main p {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-main a,
.footer-bottom a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.footer-main a:hover,
.footer-main a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
  text-decoration-color: currentColor;
}

.footer-main .footer-address {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-style: normal;
  line-height: 1.65;
  font-weight: 400;
}

.footer-main .footer-address strong {
  font-weight: 400;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 18px;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 48px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  }

  .technology-grid,
  .jumpstart-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid.four,
  .outcome-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outcome-strip article:nth-child(2) {
    border-right: 0;
  }

  .outcome-strip article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xlsa-el-title h1 {
    font-size: 48px;
  }

  .xlsa-el-grid-5 > .e-con-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xlsa-brochure-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    position: sticky;
    grid-template-columns: auto 1fr auto;
    isolation: isolate;
    border-top: 5px solid var(--primary);
    background: var(--white) !important;
    backdrop-filter: none;
  }

  .nav-open .site-header::after {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 998;
    height: calc(100dvh - 74px);
    content: "";
    background: rgba(0, 32, 96, 0.28);
    backdrop-filter: blur(2px);
  }

  .xlsa-elementor-header-location,
  .xlsa-elementor-header-location .site-header {
    background: var(--white) !important;
  }

  .xlsa-elementor-header-location .site-header {
    position: relative;
  }

  .nav-toggle {
    position: relative;
    z-index: 1001;
    display: block;
    justify-self: end;
    background: var(--white) !important;
  }

  .nav-open .nav-toggle {
    border-color: var(--primary);
    background: var(--primary) !important;
    box-shadow: 0 8px 20px rgba(0, 32, 96, 0.2);
  }

  .nav-open .nav-toggle span {
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 14px;
    left: 14px;
    z-index: 1000;
    display: none;
    width: auto;
    max-height: calc(100dvh - 104px);
    align-content: start;
    align-items: stretch;
    justify-content: stretch;
    justify-items: stretch;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 16px 20px 20px;
    border: 1px solid rgba(214, 230, 237, 0.96);
    border-radius: 16px;
    background: var(--white) !important;
    box-shadow: 0 22px 46px rgba(0, 32, 96, 0.22);
    opacity: 1;
    text-align: left;
    backdrop-filter: none;
  }

  .nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    text-align: left;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .mobile-contact {
    display: inline-flex;
    justify-content: center;
    margin-top: 16px;
    padding: 13px 18px;
    border: 0;
    border-radius: var(--radius);
    color: var(--white) !important;
    background: var(--secondary) !important;
  }

  .site-nav .mobile-contact:hover,
  .site-nav .mobile-contact:focus-visible,
  .site-nav .mobile-contact:visited {
    color: var(--white) !important;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .sub-hero,
  .company-hero-inner,
  .contact-hero-inner,
  .contact-layout,
  .xlsa-el-hero-inner > .e-con-inner,
  .xlsa-el-cta-inner > .e-con-inner {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }

  .xlsa-el-light-button {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .xlsa-el-cta-inner > .e-con-inner {
    grid-template-areas:
      "title"
      "copy"
      "action";
    gap: 8px;
  }

  .xlsa-content-section-root .xlsa-el-cta-inner > .e-con-inner {
    grid-template-areas:
      "copy"
      "action";
  }

  .xlsa-el-light-button {
    margin-top: 12px;
  }

  .xlsa-el-title h1 {
    font-size: 44px;
  }

  .xlsa-el-grid-5 > .e-con-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xlsa-brochure-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .xlsa-brochure-filters {
    justify-content: flex-start;
  }

  .xlsa-brochure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xlsa-el-layout-steps > .e-con-inner,
  .xlsa-el-layout-strip > .e-con-inner,
  .xlsa-el-layout-editorial > .e-con-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xlsa-el-layout-steps .xlsa-el-card,
  .xlsa-el-layout-strip .xlsa-el-card {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .xlsa-el-layout-steps .xlsa-el-card:nth-child(2n),
  .xlsa-el-layout-strip .xlsa-el-card:nth-child(2n) {
    border-right: 0;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-media,
  .hero-media > img {
    min-height: 400px;
    height: 400px;
  }

  .sub-hero-media img {
    height: 420px;
  }

  .hero-badge-ai {
    left: 18px;
  }

  .hero-badge-learning {
    right: 18px;
  }

  .proof-strip,
  .stat-strip,
  .process-grid,
  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip article:nth-child(2),
  .stat-strip article:nth-child(2) {
    border-right: 0;
  }

  .proof-strip article:nth-child(-n+2),
  .stat-strip article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .journey-line {
    grid-template-columns: 1fr;
  }

  .journey-line span:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .section {
    width: min(100% - 28px, 1180px);
  }

  h1,
  .sub-hero h1,
  .legal-main h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 17px;
  }

  .brand img {
    width: 148px;
    height: 58px;
  }

  .site-header {
    min-height: 74px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .site-nav {
    top: calc(100% + 12px);
  }

  .button-row,
  .btn {
    width: 100%;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-media > img,
  .sub-hero-media img {
    height: 330px;
  }

  .hero-media::before {
    display: none;
  }

  .hero-badge {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 10px;
  }

  .proof-strip,
  .stat-strip,
  .focus-grid,
  .split-grid,
  .technology-grid,
  .card-grid.three,
  .card-grid.four,
  .process-grid,
  .pillar-grid,
  .outcome-strip,
  .jumpstart-grid,
  .footer-main,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .xlsa-el-layout-steps > .e-con-inner,
  .xlsa-el-layout-strip > .e-con-inner,
  .xlsa-el-layout-editorial > .e-con-inner {
    grid-template-columns: 1fr;
  }

  .xlsa-el-layout-steps .xlsa-el-card,
  .xlsa-el-layout-steps .xlsa-el-card:nth-child(2n),
  .xlsa-el-layout-strip .xlsa-el-card,
  .xlsa-el-layout-strip .xlsa-el-card:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .xlsa-el-layout-steps .xlsa-el-card:last-child,
  .xlsa-el-layout-strip .xlsa-el-card:last-child {
    border-bottom: 0;
  }

  .proof-strip article,
  .stat-strip article,
  .outcome-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip article:last-child,
  .stat-strip article:last-child,
  .outcome-strip article:last-child {
    border-bottom: 0;
  }

  .focus-card {
    grid-template-columns: 1fr;
  }

  .page-section {
    padding: 48px 0;
  }

  .cta-band {
    padding: 28px 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 24px 18px;
  }

  .xlsa-el-shell {
    width: min(100% - 28px, 1180px);
  }

  .xlsa-el-hero {
    padding: 44px 0;
  }

  .xlsa-el-title h1 {
    font-size: 38px;
  }

  .xlsa-el-section h2 {
    font-size: 30px;
  }

  .xlsa-el-hero-media img {
    height: 300px;
  }

  .xlsa-el-section {
    padding: 48px 0;
  }

  .xlsa-el-grid > .e-con-inner {
    grid-template-columns: 1fr;
  }

  .xlsa-el-card > .e-con-inner {
    padding: 22px 20px !important;
  }

  .xlsa-brochure-widget {
    padding: 48px 0;
  }

  .xlsa-brochure-inner {
    width: min(100% - 28px, 1180px);
  }

  .xlsa-brochure-heading h2 {
    font-size: 30px;
  }

  .xlsa-brochure-library {
    margin-top: 30px;
  }

  .xlsa-brochure-search {
    width: 100%;
    flex-basis: 100%;
  }

  .xlsa-brochure-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .xlsa-why-hero {
    padding: 88px 0 82px;
    background-size: 62px 62px;
  }

  .xlsa-why-hero h1 {
    font-size: 56px;
  }

  .xlsa-why-statement h2,
  .xlsa-why-expertise-heading h2,
  .xlsa-why-closing h2 {
    font-size: 42px;
  }

  .xlsa-why-principles,
  .xlsa-why-expertise-grid {
    grid-template-columns: 1fr;
  }

  .xlsa-why-principle {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .xlsa-why-principle:last-child {
    border-bottom: 0;
  }

  .xlsa-why-expertise-heading,
  .xlsa-why-closing-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .xlsa-why-expertise-heading > p {
    grid-column: 1;
    grid-row: auto;
    max-width: 720px;
  }

  .xlsa-why-expertise-item {
    min-height: 0;
  }

  .xlsa-why-status {
    margin-bottom: 38px;
  }
}

@media (max-width: 620px) {
  .xlsa-why-shell {
    width: min(100% - 28px, 1180px);
  }

  .xlsa-why-hero {
    padding: 72px 0 68px;
    background-size: 46px 46px;
  }

  .xlsa-why-hero h1 {
    margin-top: 20px;
    font-size: 42px;
    line-height: 1.08;
  }

  .xlsa-why-intro p {
    font-size: 16px;
  }

  .xlsa-why-section {
    padding: 68px 0;
  }

  .xlsa-why-statement h2,
  .xlsa-why-expertise-heading h2,
  .xlsa-why-closing h2 {
    font-size: 34px;
  }

  .xlsa-why-principles {
    margin-top: 46px;
  }

  .xlsa-why-principle,
  .xlsa-why-expertise-item {
    padding: 28px 24px;
  }

  .xlsa-why-expertise-grid {
    margin-top: 38px;
  }

  .xlsa-why-button {
    width: 100%;
  }
}

/* Regional instructor-led Jumpstart registration */
.elementor-widget-xlsa-workshop-registration > .elementor-widget-container {
  margin: 0;
  padding: 0;
}

.xlsa-registration-page {
  --xlsa-registration-primary: var(--primary);
  --xlsa-registration-accent: var(--accent);
  --xlsa-registration-light: var(--ice);
  color: var(--text);
  background: var(--white);
}

.xlsa-registration-shell {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.xlsa-registration-hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.xlsa-registration-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: 56px;
}

.xlsa-registration-hero-copy h1 {
  max-width: 660px;
  margin: 0 0 24px;
  color: var(--xlsa-registration-primary);
  font-size: 58px;
  line-height: 1.06;
  text-wrap: balance;
}

.xlsa-registration-hero-copy > p {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.xlsa-registration-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.xlsa-registration-facts div {
  padding: 16px 18px 16px 0;
}

.xlsa-registration-facts div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.xlsa-registration-facts dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.xlsa-registration-facts dd {
  margin: 0;
  color: var(--xlsa-registration-primary);
  font-size: 14px;
  font-weight: 750;
}

.xlsa-registration-hero-media {
  position: relative;
  min-height: 510px;
}

.xlsa-registration-hero-media img {
  display: block;
  width: 100%;
  height: 510px;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
}

.xlsa-registration-hero-media span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 10px 14px;
  border-radius: 4px;
  color: var(--white);
  background: var(--xlsa-registration-primary);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.xlsa-registration-workshops,
.xlsa-registration-included,
.xlsa-registration-schedule,
.xlsa-registration-form-band {
  padding: 88px 0;
}

.xlsa-registration-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 46px;
}

.xlsa-registration-heading h2 {
  max-width: 720px;
  margin: 0;
  color: var(--xlsa-registration-primary);
  font-size: 44px;
  line-height: 1.12;
}

.xlsa-registration-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.xlsa-registration-workshop-list {
  border-top: 2px solid var(--xlsa-registration-primary);
}

.xlsa-registration-workshop {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 230px;
  gap: 38px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.xlsa-registration-workshop-id {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.xlsa-registration-workshop-id img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.xlsa-registration-workshop-id span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
  text-transform: uppercase;
}

.xlsa-registration-workshop-copy h3 {
  margin: 0 0 14px;
  color: var(--xlsa-registration-primary);
  font-size: 28px;
}

.xlsa-registration-workshop-copy > p {
  max-width: 680px;
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.xlsa-registration-workshop-copy ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.xlsa-registration-workshop-copy li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  line-height: 1.55;
}

.xlsa-registration-workshop-copy li::before {
  position: absolute;
  top: 0;
  left: 2px;
  color: var(--xlsa-registration-accent);
  content: "-";
  font-weight: 900;
}

.xlsa-registration-workshop-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.xlsa-registration-workshop-price {
  display: grid;
  gap: 4px;
  margin-top: 7px;
}

.xlsa-registration-workshop-action .xlsa-registration-price-original {
  color: #c62828;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.3;
  text-decoration-color: #c62828;
  text-decoration-thickness: 2px;
}

.xlsa-registration-workshop-action .xlsa-registration-price-current {
  color: var(--xlsa-registration-primary);
  font-size: 22px;
  line-height: 1.25;
}

.xlsa-registration-workshop-action small {
  margin-top: 4px;
  color: var(--muted);
}

.xlsa-registration-workshop-action .text-link {
  margin-top: auto;
  padding-top: 28px;
}

.xlsa-registration-alignment-note {
  max-width: 900px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.xlsa-registration-included {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--xlsa-registration-light);
}

.xlsa-registration-included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.xlsa-registration-included-grid article {
  min-height: 230px;
  padding: 32px 34px;
}

.xlsa-registration-included-grid article + article {
  border-left: 1px solid var(--line);
}

.xlsa-registration-included-grid strong {
  display: block;
  margin-bottom: 32px;
  color: var(--xlsa-registration-accent);
  font-size: 32px;
}

.xlsa-registration-included-grid h3 {
  margin: 0 0 10px;
  color: var(--xlsa-registration-primary);
  font-size: 18px;
}

.xlsa-registration-included-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.xlsa-registration-schedule {
  background: var(--white);
}

.xlsa-registration-event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.xlsa-registration-event {
  min-width: 0;
}

.xlsa-registration-event.is-selected .xlsa-registration-event-details {
  border-color: var(--xlsa-registration-accent);
  box-shadow: 0 14px 34px rgba(0, 128, 208, 0.17);
}

.xlsa-registration-event-details > time {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.45;
  text-transform: uppercase;
}

.xlsa-registration-event-details > h3 {
  margin: 0 0 18px;
  color: var(--xlsa-registration-primary);
  font-size: 22px;
  font-weight: 750;
  line-height: 1.25;
}

.xlsa-registration-event-details {
  display: flex;
  min-height: 320px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--xlsa-registration-accent);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 32, 96, 0.09);
}

.xlsa-registration-event-details > .xlsa-registration-event-timeslot {
  display: block;
  margin-bottom: 4px;
  color: var(--xlsa-registration-primary);
  font-size: 18px;
}

.xlsa-registration-event-details > span:not(.xlsa-registration-status),
.xlsa-registration-event-details > p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.xlsa-registration-event-state {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.xlsa-registration-event-details .xlsa-registration-availability,
.xlsa-registration-event-details .xlsa-registration-status {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 4px;
  background: #e7f7f8;
  color: #006975;
  font-size: 13px;
  font-weight: 750;
}

.xlsa-registration-event-details .xlsa-registration-availability.is-limited,
.xlsa-registration-event-details .xlsa-registration-availability.is-waitlist {
  background: #fff3d6;
  color: #805500;
}

.xlsa-registration-event-details .xlsa-registration-availability.is-full,
.xlsa-registration-event-details .xlsa-registration-status.is-rescheduled,
.xlsa-registration-event-details .xlsa-registration-status.is-cancelled {
  background: #fbe8e8;
  color: #9b2929;
}

.xlsa-registration-event-details .xlsa-registration-status {
  background: #edf3f7;
  color: #445a72;
}

.xlsa-registration-event-details .xlsa-registration-status.is-completed {
  background: #eceff2;
  color: #5d6875;
}

.xlsa-registration-event-details .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.xlsa-registration-schedule-empty {
  margin: 0;
  padding: 24px;
  border-left: 4px solid var(--xlsa-registration-accent);
  background: var(--xlsa-registration-light);
  color: var(--muted);
}

.xlsa-registration-private-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0 0;
  color: var(--muted);
}

.xlsa-registration-private-note .text-link {
  padding: 0;
}

.xlsa-registration-form-band {
  background: var(--white);
}

.xlsa-registration-form-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 70px;
}

.xlsa-registration-form-intro {
  position: sticky;
  top: 120px;
}

.xlsa-registration-form-intro > h2 {
  margin: 0 0 18px;
  color: var(--xlsa-registration-primary);
  font-size: 42px;
}

.xlsa-registration-form-intro > p,
.xlsa-registration-payment-note p {
  color: var(--muted);
  line-height: 1.7;
}

.xlsa-registration-payment-note {
  margin-top: 34px;
  padding: 24px 0 0 24px;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--xlsa-registration-accent);
}

.xlsa-registration-payment-note h3 {
  margin: 0 0 8px;
  color: var(--xlsa-registration-primary);
  font-size: 18px;
}

.xlsa-registration-payment-note p {
  margin: 0;
}

.xlsa-registration-form-panel {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--xlsa-registration-light);
  box-shadow: 0 18px 44px rgba(0, 32, 96, 0.08);
}

.xlsa-registration-form {
  display: grid;
  gap: 22px;
}

.xlsa-registration-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.xlsa-registration-field-grid label,
.xlsa-registration-form .privacy-check {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--xlsa-registration-primary);
  font-size: 14px;
  font-weight: 750;
}

.xlsa-registration-field-grid label.full {
  grid-column: 1 / -1;
}

.xlsa-registration-field-grid input,
.xlsa-registration-field-grid select,
.xlsa-registration-field-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #bfd5e2;
  border-radius: 4px;
  color: var(--text);
  background: var(--white);
  font: inherit;
  font-weight: 500;
}

.xlsa-registration-field-grid textarea {
  resize: vertical;
}

.xlsa-registration-field-grid input[readonly] {
  color: var(--xlsa-registration-primary);
  background: #eaf4f8;
  cursor: default;
}

.xlsa-registration-field-grid select:disabled {
  color: #66788c;
  background: #eaf0f4;
  cursor: not-allowed;
}

.xlsa-registration-field-grid input:focus,
.xlsa-registration-field-grid select:focus,
.xlsa-registration-field-grid textarea:focus {
  border-color: var(--xlsa-registration-accent);
  outline: 3px solid rgba(0, 128, 208, 0.14);
}

.xlsa-registration-form .privacy-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.55;
}

.xlsa-registration-form .privacy-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.xlsa-registration-form .privacy-check a {
  color: var(--secondary);
  font-weight: 750;
}

.xlsa-registration-form .btn {
  justify-self: start;
}

.xlsa-registration-form .btn:disabled {
  border-color: #a8b8c7;
  background: #a8b8c7;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.xlsa-registration-form-panel .form-notice {
  margin-bottom: 24px;
}

.xlsa-registration-form-panel .form-notice strong {
  display: block;
  margin-top: 8px;
}

.xlsa-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

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

  .xlsa-registration-hero-copy h1 {
    font-size: 50px;
  }

  .xlsa-registration-hero-media,
  .xlsa-registration-hero-media img {
    min-height: 0;
    height: 430px;
  }

  .xlsa-registration-heading,
  .xlsa-registration-form-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .xlsa-registration-workshop {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .xlsa-registration-workshop-action {
    grid-column: 2;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .xlsa-registration-workshop-action .text-link {
    margin-top: 18px;
    padding-top: 0;
  }

  .xlsa-registration-form-intro {
    position: static;
  }

  .xlsa-registration-event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .xlsa-registration-shell {
    width: min(100% - 28px, 1180px);
  }

  .xlsa-registration-hero,
  .xlsa-registration-workshops,
  .xlsa-registration-included,
  .xlsa-registration-schedule,
  .xlsa-registration-form-band {
    padding: 56px 0;
  }

  .xlsa-registration-hero-copy h1 {
    font-size: 40px;
  }

  .xlsa-registration-hero-copy > p {
    font-size: 16px;
  }

  .xlsa-registration-facts {
    grid-template-columns: 1fr;
  }

  .xlsa-registration-facts div,
  .xlsa-registration-facts div + div {
    padding: 12px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .xlsa-registration-facts div:first-child {
    border-top: 0;
  }

  .xlsa-registration-hero-media,
  .xlsa-registration-hero-media img {
    height: 310px;
  }

  .xlsa-registration-heading h2,
  .xlsa-registration-form-intro > h2 {
    font-size: 32px;
  }

  .xlsa-registration-workshop {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 0;
  }

  .xlsa-registration-workshop-id {
    gap: 14px;
  }

  .xlsa-registration-workshop-action {
    grid-column: 1;
  }

  .xlsa-registration-included-grid {
    grid-template-columns: 1fr;
  }

  .xlsa-registration-included-grid article {
    min-height: 0;
    padding: 26px 20px;
  }

  .xlsa-registration-included-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .xlsa-registration-included-grid strong {
    margin-bottom: 20px;
  }

  .xlsa-registration-event-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .xlsa-registration-event-details {
    min-height: 0;
  }

  .xlsa-registration-form-panel {
    padding: 24px 18px;
  }

  .xlsa-registration-field-grid {
    grid-template-columns: 1fr;
  }

  .xlsa-registration-field-grid label.full {
    grid-column: 1;
  }

  .xlsa-registration-form .btn {
    width: 100%;
  }
}
