
:root {
  --navy:#061625;
  --navy2:#0b253d;
  --charcoal:#17202a;
  --gray:#64748b;
  --light:#f7f9fc;
  --line:#e5e7eb;
  --gold:#b88a2b;
  --green:#0f766e;
  --white:#ffffff;
}
* { box-sizing: border-box; }
body {
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width:min(1200px, 92%); margin:auto; }

.topbar {
  background: var(--navy);
  color:#dbeafe;
  font-size: 0.86rem;
  padding: 7px 0;
}
.topbar .container { display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.topbar strong { color:white; }

header {
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.nav {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 13px 0;
  gap:18px;
}
.brand { display:flex; align-items:center; gap:11px; font-weight:800; color:var(--navy); min-width:220px; }
.logo {
  width:42px;height:42px;border-radius:13px;
  background: linear-gradient(135deg, var(--navy), var(--green));
  display:grid; place-items:center; color:white; font-weight:900;
  box-shadow:0 12px 26px rgba(7,24,39,.18);
  flex:none;
}
.brand-title { line-height:1.05; }
.brand-title span { display:block; font-size:1.02rem; letter-spacing:-.02em; }
.brand-title small { display:block; font-weight:600; color:var(--gray); margin-top:4px; font-size:.78rem; }

.navlinks { display:flex; align-items:center; gap:17px; font-weight:700; font-size:.91rem; color:#243447; }
.navlinks a:hover { color:var(--green); }
.nav-actions { display:flex; align-items:center; gap:10px; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 10px 15px; border-radius:999px; font-weight:800;
  border:1px solid transparent; cursor:pointer; transition:.2s ease;
  white-space:nowrap;
}
.btn-primary { background:var(--navy); color:white; box-shadow:0 10px 25px rgba(7,24,39,.20); }
.btn-primary:hover { transform:translateY(-1px); background:var(--navy2); }
.btn-secondary { border-color:#cbd5e1; color:var(--navy); background:white; }
.btn-secondary:hover { border-color:var(--green); color:var(--green); }
.btn-gold { background:var(--gold); color:white; box-shadow:0 10px 25px rgba(184,138,43,.18); }
.mobile-toggle { display:none; background:none; border:0; font-size:1.6rem; color:var(--navy); }

.hero {
  position:relative;
  overflow:hidden;
  padding: 72px 0 70px;
  background:
    radial-gradient(circle at 85% 5%, rgba(15,118,110,.14), transparent 27%),
    radial-gradient(circle at 8% 15%, rgba(184,138,43,.16), transparent 22%),
    linear-gradient(180deg, #fff, #f8fafc);
}
.hero-grid { display:grid; grid-template-columns: 1.02fr .98fr; gap:48px; align-items:center; }
.eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  background:#ecfeff; border:1px solid #ccfbf1; color:#115e59;
  padding:7px 11px; border-radius:999px; font-weight:900; font-size:.82rem;
}
h1 {
  font-size: clamp(2.45rem, 4.9vw, 4.45rem);
  line-height:1.02;
  letter-spacing:-.055em;
  margin:18px 0;
  color:var(--navy);
  max-width:920px;
}
h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); line-height:1.08; letter-spacing:-.04em; color:var(--navy); margin:0 0 14px; }
h3 { color:var(--navy); line-height:1.18; margin:0 0 10px; font-size:1.28rem; }
.lead { font-size:1.12rem; color:#475569; max-width:760px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin:28px 0; }
.stats { display:grid; grid-template-columns: repeat(3,1fr); gap:12px; margin-top:30px; }
.stat { background:white; border:1px solid var(--line); padding:16px; border-radius:20px; box-shadow:0 12px 35px rgba(2,6,23,.06); }
.stat strong { display:block; color:var(--navy); font-size:1.35rem; }

.hero-card {
  background:var(--navy); color:white; border-radius:32px; padding:28px;
  box-shadow:0 30px 80px rgba(7,24,39,.24); position:relative; overflow:hidden;
}
.hero-card:before {
  content:""; position:absolute; inset:-70px -70px auto auto; width:220px;height:220px;
  background:rgba(184,138,43,.19); border-radius:50%;
}
.hero-card .panel { position:relative; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); border-radius:24px; padding:20px; margin:14px 0; }
.hero-card h3 { color:white; font-size:1.45rem; }
.hero-card p { color:#dbeafe; }
.badge-row { display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.badge { padding:7px 10px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.14); border-radius:999px; font-size:.84rem; color:#eef2ff; }

.section { padding:72px 0; }
.section.alt { background:var(--light); }
.section-head { display:flex; justify-content:space-between; gap:24px; align-items:end; margin-bottom:30px; }
.section-head p { max-width:650px; color:var(--gray); margin:0; }

.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.card {
  background:white; border:1px solid var(--line); border-radius:26px; padding:26px;
  box-shadow:0 18px 45px rgba(2,6,23,.055);
}
.card:hover { transform:translateY(-2px); transition:.2s ease; }
.icon {
  width:48px;height:48px; border-radius:16px; display:grid; place-items:center;
  background:#ecfeff; color:var(--green); font-weight:900; margin-bottom:16px;
}
.card p { color:var(--gray); }
.card ul { padding-left:18px; color:#475569; }
.feature {
  display:grid; grid-template-columns: .9fr 1.1fr; gap:28px; align-items:center;
  background:linear-gradient(135deg, var(--navy), #0f2f4e);
  color:white; padding:36px; border-radius:34px;
}
.feature h2, .feature h3 { color:white; }
.feature p { color:#dbeafe; }
.feature-box { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); padding:22px; border-radius:24px; }
.checklist { list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.checklist li { display:flex; gap:10px; align-items:flex-start; }
.checklist li:before { content:"✓"; color:#5eead4; font-weight:900; }

.cta {
  background:
    radial-gradient(circle at 15% 30%, rgba(184,138,43,.22), transparent 24%),
    linear-gradient(135deg, var(--navy), #12385b);
  color:white; border-radius:36px; padding:48px; display:grid; grid-template-columns:1.3fr .7fr; gap:28px; align-items:center;
}
.cta h2 { color:white; }
.cta p { color:#dbeafe; }

.page-hero { padding:64px 0; background:linear-gradient(180deg,#f8fafc,#fff); border-bottom:1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.25rem, 4.4vw, 4.2rem); }
.breadcrumb { color:var(--green); font-weight:900; }

.form { display:grid; gap:14px; }
.form input, .form textarea, .form select {
  width:100%; border:1px solid #cbd5e1; border-radius:14px; padding:13px 14px;
  font:inherit; background:white;
}
.form textarea { min-height:130px; resize:vertical; }

.footer {
  background:#06131f; color:#cbd5e1; padding:54px 0 24px; margin-top:0;
}
.footer-grid { display:grid; grid-template-columns:1.2fr repeat(3,1fr); gap:28px; }
.footer h4 { color:white; margin:0 0 12px; }
.footer a { display:block; color:#cbd5e1; margin:8px 0; }
.footer a:hover { color:white; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); margin-top:34px; padding-top:18px; display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; }

.notice {
  background:#fffbeb; border:1px solid #fde68a; color:#713f12;
  padding:14px 16px; border-radius:18px; margin:20px 0;
}

@media (max-width: 1120px) {
  .navlinks { gap:12px; font-size:.86rem; }
  .brand { min-width:205px; }
  .nav-actions .btn-secondary { display:none; }
}
@media (max-width: 960px) {
  .hero-grid, .feature, .cta, .grid-2 { grid-template-columns:1fr; }
  .grid-3 { grid-template-columns:1fr 1fr; }
  .navlinks { display:none; position:absolute; left:0; right:0; top:72px; background:white; padding:20px; border-bottom:1px solid var(--line); flex-direction:column; align-items:flex-start; }
  .navlinks.open { display:flex; }
  .mobile-toggle { display:block; }
  .nav-actions .btn-secondary { display:none; }
}
@media (max-width: 720px) {
  .grid-3, .stats, .footer-grid { grid-template-columns:1fr; }
  .hero { padding-top:48px; }
  .cta { padding:28px; }
  .topbar .container { display:none; }
  .brand { min-width:auto; }
  .brand-title small { display:none; }
  .nav-actions .btn-primary { padding:9px 12px; font-size:.9rem; }
}


/* V3 additions */
.logo-wide {
  width:min(760px, 100%);
  border-radius:22px;
  background:white;
  box-shadow:0 18px 55px rgba(2,6,23,.07);
  border:1px solid var(--line);
}
.book-cover {
  width:100%;
  height:260px;
  border-radius:18px;
  background:linear-gradient(135deg,#0b253d,#0f766e);
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-weight:900;
  font-size:1.1rem;
  text-align:center;
  padding:20px;
  margin-bottom:18px;
  letter-spacing:-.02em;
}
.book-cover.gold { background:linear-gradient(135deg,#071827,#b88a2b); }
.book-cover.teal { background:linear-gradient(135deg,#061625,#0f766e); }
.book-cover.slate { background:linear-gradient(135deg,#17202a,#64748b); }
.tag {
  display:inline-flex;
  background:#eef2ff;
  color:#243447;
  border:1px solid #dbeafe;
  padding:5px 9px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:800;
  margin-bottom:12px;
}
.price {
  font-size:2.15rem;
  line-height:1;
  color:var(--navy);
  font-weight:900;
  letter-spacing:-.04em;
  margin:12px 0;
}
.price small {
  display:block;
  font-size:.9rem;
  color:var(--gray);
  font-weight:700;
  letter-spacing:0;
  margin-top:6px;
}
.ribbon {
  display:inline-flex;
  background:#fffbeb;
  color:#713f12;
  border:1px solid #fde68a;
  padding:7px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:.8rem;
}
.article-card {
  min-height: 295px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.article-meta {
  color:var(--green);
  font-weight:900;
  font-size:.84rem;
  margin-bottom:8px;
}
.steps {
  counter-reset: step;
  display:grid;
  gap:16px;
}
.step {
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:20px;
  display:grid;
  grid-template-columns:50px 1fr;
  gap:16px;
  align-items:start;
}
.step:before {
  counter-increment: step;
  content: counter(step);
  width:42px;
  height:42px;
  border-radius:14px;
  background:var(--navy);
  color:white;
  display:grid;
  place-items:center;
  font-weight:900;
}
@media (max-width:720px){
  .book-cover { height:210px; }
  .step { grid-template-columns:1fr; }
}


/* V5 logo integration */
.brand-logo-img {
  height: 54px;
  width: auto;
  max-width: 270px;
  object-fit: contain;
  display: block;
}
.footer-logo-img {
  width: min(360px, 100%);
  height: auto;
  border-radius: 14px;
  background: white;
  padding: 8px;
  margin-bottom: 14px;
}
.logo-showcase {
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:28px;
  align-items:center;
}
.logo-showcase .logo-wide {
  box-shadow:0 20px 60px rgba(2,6,23,.08);
}
@media (max-width: 1120px) {
  .brand-logo-img { max-width: 210px; height: 48px; }
}
@media (max-width: 960px) {
  .brand-logo-img { max-width: 190px; height: 46px; }
  .logo-showcase { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .brand-logo-img { max-width: 155px; height: 42px; }
}

header .brand { min-width: auto; }


/* V6 booking and form enhancements */
.contact-strip {
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:18px;
}
.contact-tile {
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow:0 14px 38px rgba(2,6,23,.055);
}
.contact-tile strong {
  display:block;
  color:var(--navy);
  margin-bottom:6px;
  font-size:1.05rem;
}
.success-box {
  background:#ecfdf5;
  border:1px solid #a7f3d0;
  color:#064e3b;
  padding:22px;
  border-radius:24px;
}
.integration-note {
  background:#f8fafc;
  border:1px dashed #cbd5e1;
  color:#334155;
  padding:18px;
  border-radius:20px;
  margin-top:18px;
}
.inline-embed-placeholder {
  background:linear-gradient(135deg,#f8fafc,#eef2ff);
  border:1px solid #dbeafe;
  border-radius:28px;
  min-height:360px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:30px;
}
@media (max-width: 900px) {
  .contact-strip { grid-template-columns:1fr; }
}


/* V7 article migration */
.article-layout {
  display:grid;
  grid-template-columns: minmax(0, 760px) 320px;
  gap:42px;
  align-items:start;
}
.article-body {
  background:white;
  border:1px solid var(--line);
  border-radius:30px;
  padding:38px;
  box-shadow:0 18px 45px rgba(2,6,23,.055);
}
.article-body h2 {
  margin-top:34px;
  font-size:2rem;
}
.article-body h3 {
  margin-top:24px;
  font-size:1.28rem;
}
.article-body p {
  color:#334155;
  margin:14px 0;
}
.article-body ul {
  color:#334155;
  padding-left:22px;
}
.article-body li {
  margin:8px 0;
}
.article-sidebar {
  position:sticky;
  top:110px;
}
.article-quote {
  border-left:4px solid var(--gold);
  padding:16px 18px;
  background:#fffbeb;
  color:#713f12;
  border-radius:0 18px 18px 0;
  font-weight:700;
  margin:22px 0;
}
.article-actions {
  display:grid;
  gap:12px;
  margin-top:18px;
}
.author-note {
  display:flex;
  gap:14px;
  align-items:center;
  padding:18px;
  border:1px solid var(--line);
  border-radius:24px;
  background:#f8fafc;
}
.author-avatar {
  width:48px;
  height:48px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--navy),var(--green));
  color:white;
  display:grid;
  place-items:center;
  font-weight:900;
  flex:none;
}
@media (max-width: 980px) {
  .article-layout { grid-template-columns:1fr; }
  .article-sidebar { position:static; }
  .article-body { padding:24px; }
}

.course-meta{display:flex;flex-wrap:wrap;gap:8px;margin:12px 0 18px}.course-meta span{display:inline-flex;padding:6px 10px;border-radius:999px;background:#f1f5f9;border:1px solid #e2e8f0;color:#334155;font-size:.8rem;font-weight:800}.course-card{display:flex;flex-direction:column;min-height:430px}.course-card .hero-actions{margin-top:auto}.academy-band{background:radial-gradient(circle at 20% 20%,rgba(184,138,43,.18),transparent 24%),radial-gradient(circle at 85% 30%,rgba(15,118,110,.18),transparent 26%),linear-gradient(135deg,#071827,#0f2f4e);color:white;border-radius:36px;padding:44px}.academy-band h2,.academy-band h3{color:white}.academy-band p{color:#dbeafe}.curriculum{display:grid;gap:14px}.module{background:white;border:1px solid var(--line);border-radius:22px;padding:18px}.module strong{color:var(--navy)}.course-detail-hero{display:grid;grid-template-columns:1.1fr .9fr;gap:34px;align-items:center}@media(max-width:900px){.course-detail-hero{grid-template-columns:1fr}}


/* v17 Crosswalk Lite link and homepage entry */
.sl-crosswalk-lite-entry {
  background:
    radial-gradient(circle at 88% 12%, rgba(201,168,76,.14), transparent 26%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sl-crosswalk-lite-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}
.sl-crosswalk-lite-panel {
  background: #071426;
  color: #ffffff;
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(7,24,39,.18);
}
.sl-crosswalk-lite-panel h3 {
  color: #ffffff;
  font-size: 1.7rem;
  margin-bottom: 16px;
}
.sl-framework-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sl-framework-tags span {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,.45);
  background: rgba(201,168,76,.12);
  color: #f8fafc;
  font-weight: 850;
  font-size: .88rem;
}
.sl-crosswalk-note {
  margin-top: 18px;
  color: #cbd5e1;
  line-height: 1.55;
}
@media (max-width: 980px) {
  .sl-crosswalk-lite-grid {
    grid-template-columns: 1fr;
  }
}


/* V18 Premium Visual Integration */
.sl-v18-premium-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(201,168,76,.16), transparent 28%),
    linear-gradient(135deg, #071426 0%, #0b1f33 54%, #06111f 100%);
  color: white;
  padding: 86px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sl-v18-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,20,38,.95) 0%, rgba(7,20,38,.74) 38%, rgba(7,20,38,.24) 100%);
  z-index: 1;
  pointer-events: none;
}
.sl-v18-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 38px;
  align-items: center;
}
.sl-v18-hero-copy h1 {
  color: white;
  font-size: clamp(2.8rem, 5.9vw, 5.8rem);
  line-height: .92;
  letter-spacing: -.065em;
  margin-bottom: 22px;
  max-width: 850px;
}
.sl-v18-hero-copy .lead {
  color: #dbe7f4;
  max-width: 760px;
}
.sl-v18-hero-visual {
  min-height: 420px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 34px 100px rgba(0,0,0,.34);
  border: 1px solid rgba(255,255,255,.12);
  background: #071426;
}
.sl-v18-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.sl-v18-crosswalk-visual-panel {
  padding: 0 !important;
  overflow: hidden;
  background: #071426 !important;
}
.sl-v18-crosswalk-visual-panel img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.sl-v18-crosswalk-panel-copy {
  padding: 24px;
}
.sl-v18-ia-bridge {
  background:
    radial-gradient(circle at 85% 20%, rgba(15,118,110,.14), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  border-top: 1px solid var(--line);
}
.sl-v18-ia-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}
.sl-v18-mini-list {
  margin: 20px 0 0;
  padding-left: 20px;
  color: #52637a;
  line-height: 1.65;
}
.sl-v18-ia-card {
  background: #071426;
  color: white;
  border-radius: 34px;
  padding: 28px;
  box-shadow: 0 26px 80px rgba(7,24,39,.22);
  border: 1px solid rgba(255,255,255,.10);
}
.sl-v18-process-line {
  display: grid;
  gap: 14px;
}
.sl-v18-process-line div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 15px;
}
.sl-v18-process-line span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #c9a84c;
  color: #071426;
  align-items: center;
  justify-content: center;
  font-weight: 950;
}
.sl-v18-process-line strong {
  display: block;
  color: white;
  line-height: 1.2;
}
.sl-v18-process-line small {
  display: block;
  color: #cbd5e1;
  margin-top: 4px;
}
@media (max-width: 980px) {
  .sl-v18-hero-grid,
  .sl-v18-ia-grid {
    grid-template-columns: 1fr;
  }
  .sl-v18-hero-visual,
  .sl-v18-hero-visual img {
    min-height: 280px;
  }
  .sl-v18-premium-hero {
    padding: 58px 0;
  }
}


/* V19 Premium Executive Navigation */
.sl-v19-header {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: #071426;
  color: #ffffff;
  box-shadow: 0 10px 40px rgba(7,20,38,.14);
}
.sl-v19-utility {
  background: #06111f;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .84rem;
}
.sl-v19-utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #dbe7f4;
}
.sl-v19-utility a {
  color: #c9a84c;
  font-weight: 850;
  text-decoration: none;
}
.sl-v19-nav-shell {
  background: rgba(7,20,38,.98);
}
.sl-v19-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.sl-v19-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: -.04em;
  font-size: 1.55rem;
  white-space: nowrap;
}
.sl-v19-brand-accent {
  color: #c9a84c;
}
.sl-v19-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.sl-v19-menu-item {
  position: static;
}
.sl-v19-menu-item > button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #eef5fb;
  cursor: pointer;
  padding: 26px 13px;
  font-weight: 850;
  font-size: .96rem;
  letter-spacing: -.01em;
}
.sl-v19-menu-item > button::after {
  content: "⌄";
  margin-left: 7px;
  color: #c9a84c;
  font-size: .82rem;
}
.sl-v19-menu-item:hover > button,
.sl-v19-menu-item:focus-within > button {
  color: #c9a84c;
}
.sl-v19-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 116px;
  background: #ffffff;
  color: #071426;
  border-top: 1px solid rgba(15,43,71,.10);
  box-shadow: 0 30px 90px rgba(7,20,38,.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease;
}
.sl-v19-menu-item:hover .sl-v19-mega,
.sl-v19-menu-item:focus-within .sl-v19-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sl-v19-mega-grid {
  max-width: 1260px;
  margin: 0 auto;
  padding: 34px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr .95fr;
  gap: 28px;
}
.sl-v19-mega-label {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #66758a;
  font-weight: 950;
  margin: 0 0 14px;
}
.sl-v19-mega a {
  display: block;
  text-decoration: none;
  color: #071426;
  padding: 13px 0;
  border-bottom: 1px solid rgba(15,43,71,.08);
}
.sl-v19-mega a strong {
  display: block;
  font-size: 1.02rem;
  color: #071426;
  margin-bottom: 4px;
}
.sl-v19-mega a span {
  display: block;
  color: #52637a;
  font-size: .91rem;
  line-height: 1.45;
}
.sl-v19-mega a:hover strong {
  color: #0f766e;
}
.sl-v19-feature-card {
  background:
    radial-gradient(circle at 90% 10%, rgba(201,168,76,.24), transparent 32%),
    linear-gradient(135deg, #071426, #0b1f33);
  color: #ffffff;
  border-radius: 28px;
  padding: 26px;
  min-height: 260px;
  box-shadow: 0 18px 60px rgba(7,20,38,.18);
}
.sl-v19-feature-card span {
  display: inline-flex;
  color: #c9a84c;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
  margin-bottom: 16px;
}
.sl-v19-feature-card h3 {
  color: #ffffff;
  font-size: 1.65rem;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin: 0 0 12px;
}
.sl-v19-feature-card p {
  color: #dbe7f4;
  line-height: 1.55;
}
.sl-v19-feature-card .sl-v19-feature-link {
  color: #ffffff;
  border: 1px solid rgba(201,168,76,.50);
  background: rgba(201,168,76,.12);
  border-radius: 999px;
  padding: 11px 15px;
  display: inline-flex;
  margin-top: 12px;
  font-weight: 900;
}
.sl-v19-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #c9a84c;
  color: #071426;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}
.sl-v19-mobile-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  margin-left: auto;
}
.sl-v19-mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  margin: 5px auto;
}
@media (max-width: 980px) {
  .sl-v19-utility-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }
  .sl-v19-nav {
    min-height: 70px;
    flex-wrap: wrap;
  }
  .sl-v19-mobile-toggle {
    display: block;
  }
  .sl-v19-cta {
    display: none;
  }
  .sl-v19-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 18px;
  }
  .sl-v19-header.sl-v19-mobile-open .sl-v19-menu {
    display: flex;
  }
  .sl-v19-menu-item > button {
    width: 100%;
    text-align: left;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .sl-v19-mega {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 12px;
  }
  .sl-v19-menu-item.sl-v19-open .sl-v19-mega {
    display: block;
  }
  .sl-v19-menu-item:hover .sl-v19-mega,
  .sl-v19-menu-item:focus-within .sl-v19-mega {
    display: none;
  }
  .sl-v19-menu-item.sl-v19-open:hover .sl-v19-mega,
  .sl-v19-menu-item.sl-v19-open:focus-within .sl-v19-mega {
    display: block;
  }
  .sl-v19-mega-grid {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}


/* V20 Premium Consulting Style Refinement - Strategica original */
:root {
  --sl-v20-navy: #061421;
  --sl-v20-navy-2: #0a2033;
  --sl-v20-teal: #2c7f7b;
  --sl-v20-cyan: #6fb7c8;
  --sl-v20-gold: #c9a84c;
  --sl-v20-ivory: #f7f7f2;
}

/* Make v19 header more refined, smaller, lighter */
.sl-v20-page .sl-v19-header {
  box-shadow: 0 12px 32px rgba(6,20,33,.16);
}
.sl-v20-page .sl-v19-utility {
  background: #061421;
  font-size: .75rem;
}
.sl-v20-page .sl-v19-utility-inner {
  min-height: 30px;
  color: rgba(255,255,255,.72);
}
.sl-v20-page .sl-v19-utility a {
  color: var(--sl-v20-gold);
  font-size: .75rem;
}
.sl-v20-page .sl-v19-nav-shell {
  background: rgba(6,20,33,.97);
  backdrop-filter: blur(14px);
}
.sl-v20-page .sl-v19-nav {
  min-height: 64px;
  gap: 24px;
}
.sl-v20-page .sl-v19-brand {
  font-size: 1.36rem;
  letter-spacing: -.045em;
}
.sl-v20-page .sl-v19-menu-item > button {
  font-size: .86rem;
  padding: 21px 10px;
  letter-spacing: .005em;
}
.sl-v20-page .sl-v19-cta {
  min-height: 38px;
  padding: 0 16px;
  font-size: .86rem;
}
.sl-v20-page .sl-v19-mega {
  top: 94px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.sl-v20-page .sl-v19-mega-grid {
  padding: 28px 28px;
}
.sl-v20-page .sl-v19-mega a strong {
  font-size: .95rem;
}
.sl-v20-page .sl-v19-mega a span {
  font-size: .84rem;
}
.sl-v20-page .sl-v19-feature-card h3 {
  font-size: 1.38rem;
}
.sl-v20-page .sl-v19-feature-card p {
  font-size: .91rem;
}

/* Hide older v18 heavy hero if it remains somehow */
.sl-v20-page .sl-v18-premium-hero {
  display: none !important;
}

/* Editorial hero inspired by premium consulting logic, branded for Strategica */
.sl-v20-editorial-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 15%, rgba(111,183,200,.18), transparent 28%),
    radial-gradient(circle at 92% 70%, rgba(201,168,76,.16), transparent 24%),
    linear-gradient(135deg, #061421 0%, #092037 52%, #0b2a39 100%);
  color: white;
  padding: 72px 0 60px;
}
.sl-v20-editorial-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: .22;
  mask-image: linear-gradient(180deg, black, transparent 90%);
}
.sl-v20-editorial-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: 7%;
  top: 8%;
  background: radial-gradient(circle, rgba(111,183,200,.22), rgba(111,183,200,0) 63%);
  filter: blur(12px);
  animation: slV20Pulse 6s ease-in-out infinite;
}
.sl-v20-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 42px;
  align-items: center;
}
.sl-v20-kicker {
  display: inline-flex;
  color: var(--sl-v20-gold);
  border: 1px solid rgba(201,168,76,.42);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  margin-bottom: 22px;
}
.sl-v20-hero-copy h1 {
  color: #ffffff;
  font-size: clamp(3.05rem, 6vw, 6.25rem);
  line-height: .88;
  letter-spacing: -.075em;
  max-width: 720px;
  margin: 0 0 24px;
}
.sl-v20-subhead {
  color: rgba(255,255,255,.82);
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  line-height: 1.55;
  max-width: 680px;
}
.sl-v20-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.sl-v20-primary,
.sl-v20-secondary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}
.sl-v20-primary {
  background: var(--sl-v20-gold);
  color: #061421;
}
.sl-v20-secondary {
  color: white;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.06);
}
.sl-v20-visual-stack {
  display: grid;
  gap: 16px;
}
.sl-v20-feature-visual {
  position: relative;
  min-height: 420px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 35px 100px rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.11);
  background: #071426;
}
.sl-v20-feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(6,20,33,.18), transparent 42%, rgba(111,183,200,.07));
  pointer-events: none;
}
.sl-v20-feature-visual::after {
  content: "";
  position: absolute;
  left: -45%;
  top: 0;
  width: 32%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  transform: skewX(-18deg);
  animation: slV20Shimmer 8s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}
.sl-v20-feature-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.015);
  animation: slV20SlowZoom 18s ease-in-out infinite alternate;
}
.sl-v20-tile-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sl-v20-mini-tile {
  display: block;
  background: rgba(255,255,255,.92);
  color: #061421;
  text-decoration: none;
  padding: 18px 20px;
  border-radius: 0;
  border-top: 4px solid var(--sl-v20-gold);
}
.sl-v20-mini-tile span {
  display: block;
  color: #66758a;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 900;
  margin-bottom: 6px;
}
.sl-v20-mini-tile strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.sl-v20-portal-band {
  background: #ffffff;
  border-bottom: 1px solid rgba(15,43,71,.10);
}
.sl-v20-portal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.sl-v20-portal-grid a {
  padding: 26px 24px;
  color: #061421;
  text-decoration: none;
  border-right: 1px solid rgba(15,43,71,.10);
  min-height: 160px;
  transition: background .18s ease, transform .18s ease;
}
.sl-v20-portal-grid a:hover {
  background: #f7f7f2;
  transform: translateY(-2px);
}
.sl-v20-portal-grid span {
  display: block;
  color: var(--sl-v20-teal);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 950;
  margin-bottom: 12px;
}
.sl-v20-portal-grid strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -.035em;
  margin-bottom: 10px;
}
.sl-v20-portal-grid small {
  color: #52637a;
  line-height: 1.45;
  font-size: .9rem;
}

/* subtle motion */
@keyframes slV20Pulse {
  0%, 100% { opacity: .55; transform: scale(.98); }
  50% { opacity: .9; transform: scale(1.05); }
}
@keyframes slV20Shimmer {
  0%, 38% { left: -45%; opacity: 0; }
  48% { opacity: .55; }
  64%, 100% { left: 115%; opacity: 0; }
}
@keyframes slV20SlowZoom {
  from { transform: scale(1.015); }
  to { transform: scale(1.055); }
}

@media (max-width: 980px) {
  .sl-v20-page .sl-v19-mega {
    top: auto;
  }
  .sl-v20-editorial-hero {
    padding: 54px 0 42px;
  }
  .sl-v20-hero-grid {
    grid-template-columns: 1fr;
  }
  .sl-v20-feature-visual,
  .sl-v20-feature-visual img {
    min-height: 280px;
  }
  .sl-v20-tile-row,
  .sl-v20-portal-grid {
    grid-template-columns: 1fr;
  }
}


/* V21 Search and Country / Market Selector */
.sl-v21-top-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.sl-v21-search-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.88);
  font-weight: 850;
  font-size: .82rem;
  cursor: pointer;
}
.sl-v21-search-button:hover {
  border-color: rgba(201,168,76,.45);
  color: #ffffff;
}
.sl-v21-search-icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  border: 2px solid currentColor;
  border-radius: 999px;
  position: relative;
}
.sl-v21-search-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  right: -6px;
  bottom: -3px;
  border-radius: 99px;
}
.sl-v21-country-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 10px 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.74);
  font-size: .72rem;
  font-weight: 850;
}
.sl-v21-country-select span {
  text-transform: uppercase;
  letter-spacing: .08em;
}
.sl-v21-country-select select {
  appearance: none;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-weight: 900;
  font-size: .82rem;
  padding: 0 16px 0 0;
  outline: none;
  cursor: pointer;
}
.sl-v21-country-select option {
  color: #061421;
}
.sl-v21-country-select::after {
  content: "⌄";
  color: #c9a84c;
  margin-left: -16px;
  pointer-events: none;
}
.sl-v21-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}
.sl-v21-search-overlay.sl-v21-search-open {
  display: block;
}
.sl-v21-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,20,33,.62);
  backdrop-filter: blur(8px);
}
.sl-v21-search-panel {
  position: relative;
  max-width: 960px;
  margin: 74px auto 0;
  background: #ffffff;
  color: #061421;
  border-radius: 0;
  box-shadow: 0 34px 100px rgba(0,0,0,.34);
  padding: 34px;
  border-top: 5px solid #c9a84c;
}
.sl-v21-search-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}
.sl-v21-kicker {
  display: block;
  color: #2c7f7b;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 950;
  margin-bottom: 8px;
}
.sl-v21-search-head h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.sl-v21-search-close {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15,43,71,.12);
  background: #f7f7f2;
  color: #061421;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.sl-v21-search-input {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(15,43,71,.16);
  background: #f8fafc;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 1rem;
  outline: none;
}
.sl-v21-search-input:focus {
  border-color: rgba(44,127,123,.55);
  box-shadow: 0 0 0 4px rgba(44,127,123,.10);
}
.sl-v21-market-note {
  margin: 14px 0 18px;
  color: #66758a;
  font-size: .9rem;
}
.sl-v21-market-note strong {
  color: #061421;
}
.sl-v21-search-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(15,43,71,.10);
}
.sl-v21-search-results a {
  color: #061421;
  text-decoration: none;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(15,43,71,.10);
}
.sl-v21-search-results a:nth-child(odd) {
  border-right: 1px solid rgba(15,43,71,.10);
}
.sl-v21-search-results a:hover {
  background: #f7f7f2;
}
.sl-v21-search-results span {
  display: block;
  color: #2c7f7b;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  font-weight: 950;
  margin-bottom: 6px;
}
.sl-v21-search-results strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 4px;
  letter-spacing: -.02em;
}
.sl-v21-search-results small {
  color: #52637a;
  line-height: 1.45;
}
.sl-v21-market-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  font-size: .88rem;
}
.sl-v21-market-line strong {
  color: #ffffff;
  border-bottom: 2px solid #c9a84c;
}
@media (max-width: 1120px) {
  .sl-v21-top-tools {
    order: 5;
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    padding-bottom: 12px;
  }
}
@media (max-width: 980px) {
  .sl-v21-top-tools {
    display: none;
  }
  .sl-v21-search-panel {
    margin: 24px 16px 0;
    padding: 24px;
  }
  .sl-v21-search-results {
    grid-template-columns: 1fr;
  }
  .sl-v21-search-results a:nth-child(odd) {
    border-right: 0;
  }
}


/* V22 Video + Motion Integration */
.sl-v22-motion-hero {
  position: relative;
  isolation: isolate;
}
.sl-v22-video-motion-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.sl-v22-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .15;
  filter: saturate(1.08) contrast(1.02);
}
.sl-v22-motion-hero .container {
  position: relative;
  z-index: 2;
}
.sl-v22-motion-hero::before {
  z-index: 1;
  opacity: .18;
}
.sl-v22-motion-hero::after {
  z-index: 1;
}
.sl-v22-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .56;
  animation: slV22Float 10s ease-in-out infinite alternate;
}
.sl-v22-orb-one {
  width: 340px;
  height: 340px;
  right: 15%;
  top: 12%;
  background: radial-gradient(circle, rgba(113,191,192,.34), transparent 65%);
}
.sl-v22-orb-two {
  width: 260px;
  height: 260px;
  right: 35%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(201,168,76,.26), transparent 65%);
  animation-delay: -4s;
}
.sl-v22-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(111,183,200,.26);
  right: 13%;
  top: 22%;
  transform: rotate(-18deg);
  animation: slV22Spin 28s linear infinite;
}
.sl-v22-ring-one {
  width: 420px;
  height: 420px;
}
.sl-v22-ring-two {
  width: 520px;
  height: 270px;
  border-color: rgba(201,168,76,.22);
  animation-duration: 34s;
  animation-direction: reverse;
}
.sl-v22-integrated-visual {
  border-radius: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  min-height: 430px;
}
.sl-v22-integrated-visual::before {
  background: linear-gradient(90deg, rgba(6,20,33,.08), transparent 55%) !important;
}
.sl-v22-integrated-visual img {
  border-radius: 0;
  mix-blend-mode: screen;
  opacity: .88;
}
.sl-v22-video-section {
  background:
    linear-gradient(135deg, #f7f7f2 0%, #ffffff 48%, #edf6f6 100%);
  padding: 72px 0;
  border-top: 1px solid rgba(15,43,71,.08);
  border-bottom: 1px solid rgba(15,43,71,.08);
}
.sl-v22-video-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 42px;
  align-items: center;
}
.sl-v22-kicker {
  display: inline-flex;
  color: #2c7f7b;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 950;
  margin-bottom: 16px;
}
.sl-v22-video-copy h2 {
  margin: 0 0 18px;
  color: #061421;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: .9;
  letter-spacing: -.07em;
}
.sl-v22-video-copy p {
  color: #52637a;
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 620px;
}
.sl-v22-video-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.sl-v22-video-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 900;
}
.sl-v22-video-actions a:first-child {
  background: #061421;
  color: white;
}
.sl-v22-video-actions a:last-child {
  color: #061421;
  border: 1px solid rgba(15,43,71,.16);
  background: white;
}
.sl-v22-video-card {
  position: relative;
  min-height: 380px;
  background:
    radial-gradient(circle at 75% 35%, rgba(111,183,200,.25), transparent 35%),
    linear-gradient(135deg, #061421, #0a2033);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(6,20,33,.22);
}
.sl-v22-video-card::before {
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity:.22;
}
.sl-v22-video-card video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}
.sl-v22-video-placeholder {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 24px;
  right: 24px;
  padding: 18px 20px;
  background: rgba(255,255,255,.92);
  color: #061421;
  border-left: 4px solid #c9a84c;
}
.sl-v22-video-placeholder strong {
  display: block;
  margin-bottom: 4px;
}
.sl-v22-video-placeholder span {
  color: #52637a;
  font-size: .92rem;
}
.sl-v22-video-placeholder code {
  background: rgba(6,20,33,.08);
  padding: 2px 5px;
  border-radius: 5px;
}
@keyframes slV22Float {
  from { transform: translate3d(0,0,0) scale(.96); }
  to { transform: translate3d(-24px,18px,0) scale(1.08); }
}
@keyframes slV22Spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (max-width: 980px) {
  .sl-v22-video-grid {
    grid-template-columns: 1fr;
  }
  .sl-v22-integrated-visual,
  .sl-v22-video-card,
  .sl-v22-video-card video {
    min-height: 280px;
  }
}


/* V23 Polished Public Motion Section — no placeholders */
.sl-v23-motion-narrative {
  background:
    radial-gradient(circle at 80% 30%, rgba(111, 183, 200, .18), transparent 36%),
    linear-gradient(135deg, #f8faf8 0%, #ffffff 48%, #eef7f5 100%);
  padding: 82px 0;
  border-top: 1px solid rgba(15,43,71,.08);
  border-bottom: 1px solid rgba(15,43,71,.08);
  overflow: hidden;
}
.sl-v23-motion-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 48px;
  align-items: center;
}
.sl-v23-kicker {
  display: inline-flex;
  color: #08796f;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .72rem;
  font-weight: 950;
  margin-bottom: 16px;
}
.sl-v23-motion-copy h2 {
  margin: 0 0 18px;
  color: #061421;
  font-size: clamp(2.35rem, 5.2vw, 5.25rem);
  line-height: .9;
  letter-spacing: -.075em;
}
.sl-v23-motion-copy p {
  color: #52637a;
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 620px;
}
.sl-v23-motion-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.sl-v23-motion-actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  text-decoration: none;
  font-weight: 900;
}
.sl-v23-motion-actions a:first-child {
  background: #061421;
  color: #fff;
}
.sl-v23-motion-actions a:last-child {
  color: #061421;
  border: 1px solid rgba(15,43,71,.15);
  background: rgba(255,255,255,.92);
}
.sl-v23-motion-stage {
  position: relative;
  min-height: 430px;
  background:
    radial-gradient(circle at 62% 42%, rgba(114,196,199,.34), transparent 24%),
    radial-gradient(circle at 52% 56%, rgba(201,168,76,.20), transparent 26%),
    linear-gradient(135deg, #071523 0%, #0b2235 52%, #12314a 100%);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(6,20,33,.22);
}
.sl-v23-stage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: .35;
}
.sl-v23-stage-orb {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  right: 18%;
  top: 22%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255,255,255,.85), rgba(114,196,199,.34) 36%, rgba(8,121,111,.10) 60%, transparent 72%);
  filter: drop-shadow(0 0 34px rgba(114,196,199,.42));
  animation: slV23Pulse 5s ease-in-out infinite;
}
.sl-v23-stage-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(114,196,199,.38);
  right: 10%;
  top: 17%;
  transform-origin: center;
}
.sl-v23-stage-ring.ring-a {
  width: 360px;
  height: 360px;
  animation: slV23Spin 24s linear infinite;
}
.sl-v23-stage-ring.ring-b {
  width: 455px;
  height: 250px;
  top: 27%;
  border-color: rgba(201,168,76,.30);
  animation: slV23SpinReverse 30s linear infinite;
}
.sl-v23-stage-node {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #c9a84c;
  box-shadow: 0 0 24px rgba(201,168,76,.8);
}
.sl-v23-stage-node.node-a { right: 22%; top: 20%; animation: slV23FloatA 7s ease-in-out infinite alternate; }
.sl-v23-stage-node.node-b { right: 47%; top: 61%; animation: slV23FloatB 9s ease-in-out infinite alternate; }
.sl-v23-stage-node.node-c { right: 12%; top: 62%; animation: slV23FloatC 8s ease-in-out infinite alternate; }
.sl-v23-stage-label {
  position: absolute;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  padding: 10px 13px;
  font-weight: 850;
  letter-spacing: .02em;
  font-size: .88rem;
}
.sl-v23-stage-label.label-a { left: 34px; top: 42px; }
.sl-v23-stage-label.label-b { left: 34px; bottom: 44px; }
.sl-v23-stage-label.label-c { right: 32px; bottom: 34px; }
.sl-v23-stage-label.label-d { right: 44px; top: 48px; }
@keyframes slV23Spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes slV23SpinReverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes slV23Pulse { 0%,100% { transform: scale(.98); opacity:.88; } 50% { transform: scale(1.05); opacity:1; } }
@keyframes slV23FloatA { from { transform: translate(0,0); } to { transform: translate(-22px,18px); } }
@keyframes slV23FloatB { from { transform: translate(0,0); } to { transform: translate(26px,-16px); } }
@keyframes slV23FloatC { from { transform: translate(0,0); } to { transform: translate(-18px,-22px); } }
@media (max-width: 980px) {
  .sl-v23-motion-grid { grid-template-columns: 1fr; }
  .sl-v23-motion-stage { min-height: 330px; }
  .sl-v23-stage-label { font-size: .78rem; }
}
@media (prefers-reduced-motion: reduce) {
  .sl-v23-stage-ring,
  .sl-v23-stage-orb,
  .sl-v23-stage-node,
  .sl-v22-orb,
  .sl-v22-orbit-ring {
    animation: none !important;
  }
}

/* V23 safeguard: never show internal placeholder label on public site */
.sl-v22-video-placeholder { display: none !important; }


/* V24 Integrated Videos */
.sl-v24-video-suite {
  background:
    radial-gradient(circle at 82% 20%, rgba(106, 183, 181, .14), transparent 34%),
    linear-gradient(135deg, #f7faf9 0%, #ffffff 46%, #eff8f6 100%);
  padding: 86px 0 92px;
  border-top: 1px solid rgba(15,43,71,.08);
  border-bottom: 1px solid rgba(15,43,71,.08);
}
.sl-v24-video-header {
  max-width: 1180px;
  margin-bottom: 36px;
}
.sl-v24-kicker {
  color: #08796f;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 950;
}
.sl-v24-video-header h2 {
  margin: 14px 0 18px;
  color: #061421;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: .9;
  letter-spacing: -.075em;
  max-width: 980px;
}
.sl-v24-video-header p {
  max-width: 760px;
  color: #52637a;
  font-size: 1.08rem;
  line-height: 1.65;
}
.sl-v24-video-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: stretch;
}
.sl-v24-video-feature {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,43,71,.10);
  box-shadow: 0 24px 80px rgba(6,20,33,.12);
  overflow: hidden;
}
.sl-v24-video-feature:first-child {
  transform: translateY(-8px);
}
.sl-v24-video-frame {
  position: relative;
  background: #061421;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.sl-v24-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sl-v24-video-copy {
  padding: 24px 26px 28px;
}
.sl-v24-video-copy span {
  display: inline-block;
  color: #08796f;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 950;
  font-size: .72rem;
  margin-bottom: 10px;
}
.sl-v24-video-copy h3 {
  margin: 0 0 10px;
  color: #061421;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.sl-v24-video-copy p {
  margin: 0;
  color: #52637a;
  line-height: 1.55;
}
.sl-v22-hero-video {
  opacity: .13 !important;
}
.sl-v24-video-page-header {
  background: #061421;
  color: #fff;
  padding: 38px clamp(22px, 7vw, 110px) 70px;
}
.sl-v24-video-page-header h1 {
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  letter-spacing: -.075em;
  line-height: .9;
  max-width: 920px;
  margin: 24px 0 16px;
}
.sl-v24-video-page-header p {
  color: rgba(255,255,255,.74);
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.6;
}
.sl-v24-video-page-header span {
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  font-weight: 900;
}
.sl-v24-back {
  color: white;
  text-decoration: none;
  font-weight: 800;
}
.sl-v24-video-page-main {
  background: linear-gradient(135deg, #f8faf8, #ffffff);
  padding: 54px clamp(22px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.sl-v24-video-page-card {
  background: white;
  border: 1px solid rgba(15,43,71,.11);
  box-shadow: 0 20px 70px rgba(6,20,33,.10);
  padding: 24px;
}
.sl-v24-video-page-card h2 {
  margin: 0 0 18px;
  color: #061421;
  font-size: 2rem;
  letter-spacing: -.045em;
}
.sl-v24-video-page-card video {
  width: 100%;
  display: block;
  background: #061421;
}
.sl-v24-video-page-card p {
  color: #52637a;
  line-height: 1.55;
}
@media (max-width: 980px) {
  .sl-v24-video-grid,
  .sl-v24-video-page-main {
    grid-template-columns: 1fr;
  }
  .sl-v24-video-feature:first-child {
    transform: none;
  }
}


/* V25 Clean Hero Fix — remove video bleed from top fold */
.sl-v22-video-motion-layer,
.sl-v22-hero-video {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
.sl-v20-editorial-hero,
.sl-v22-motion-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 35%, rgba(112, 190, 188, .20), transparent 30%),
    radial-gradient(circle at 55% 58%, rgba(201, 168, 76, .14), transparent 28%),
    linear-gradient(110deg, #061421 0%, #071a2b 48%, #eef6f4 48.2%, #f9fbfb 100%) !important;
}
.sl-v20-editorial-hero::before,
.sl-v22-motion-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: .16;
  pointer-events: none;
}
.sl-v20-editorial-hero::after,
.sl-v22-motion-hero::after {
  content: "";
  position: absolute;
  width: min(42vw, 580px);
  height: min(42vw, 580px);
  right: 7vw;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 40%, rgba(255,255,255,.74), rgba(112,190,188,.28) 31%, rgba(6,20,33,.03) 56%, transparent 68%);
  border: 1px solid rgba(112,190,188,.22);
  box-shadow:
    0 0 0 72px rgba(112,190,188,.035),
    0 0 0 140px rgba(201,168,76,.025),
    0 35px 110px rgba(6,20,33,.18);
  animation: slV25HeroPulse 7s ease-in-out infinite;
  pointer-events: none;
}
.sl-v20-editorial-hero .container,
.sl-v22-motion-hero .container {
  position: relative;
  z-index: 2;
}
.sl-v20-feature-visual,
.sl-v22-integrated-visual {
  background:
    radial-gradient(circle at 65% 45%, rgba(112,190,188,.22), transparent 31%),
    linear-gradient(135deg, rgba(6,20,33,.98), rgba(13,43,65,.92)) !important;
}
.sl-v20-feature-visual img,
.sl-v22-integrated-visual img {
  opacity: .30 !important;
  filter: saturate(.9) contrast(1.06) brightness(.82) !important;
}
@keyframes slV25HeroPulse {
  0%, 100% { transform: translateY(-50%) scale(.985); opacity: .92; }
  50% { transform: translateY(-50%) scale(1.025); opacity: 1; }
}
@media (max-width: 980px) {
  .sl-v20-editorial-hero,
  .sl-v22-motion-hero {
    background: linear-gradient(180deg, #061421 0%, #071a2b 62%, #f9fbfb 62.2%, #ffffff 100%) !important;
  }
  .sl-v20-editorial-hero::after,
  .sl-v22-motion-hero::after {
    width: 330px;
    height: 330px;
    right: -80px;
    top: 36%;
  }
}


/* V26 Balanced Hero — right side integrated with left */
.sl-v20-editorial-hero,
.sl-v22-motion-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 34%, rgba(112, 190, 188, .18), transparent 32%),
    radial-gradient(circle at 72% 64%, rgba(201, 168, 76, .10), transparent 30%),
    linear-gradient(105deg, #061421 0%, #071a2b 49%, #0b2032 49.2%, #0e2a3c 100%) !important;
}
.sl-v20-editorial-hero::before,
.sl-v22-motion-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,20,33,.98) 0%, rgba(6,20,33,.88) 42%, rgba(6,20,33,.38) 62%, rgba(6,20,33,.12) 100%),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 78px 78px, 78px 78px;
  opacity: .95;
  pointer-events: none;
}
.sl-v20-editorial-hero::after,
.sl-v22-motion-hero::after {
  content: "";
  position: absolute;
  width: min(42vw, 610px);
  height: min(42vw, 610px);
  right: 10vw;
  top: 48%;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 42%, rgba(255,255,255,.55), rgba(112,190,188,.24) 30%, rgba(6,20,33,.08) 58%, transparent 69%);
  border: 1px solid rgba(112,190,188,.24);
  box-shadow:
    0 0 0 70px rgba(112,190,188,.035),
    0 0 0 146px rgba(201,168,76,.02),
    0 35px 110px rgba(6,20,33,.24);
  animation: slV25HeroPulse 7s ease-in-out infinite;
  pointer-events: none;
}
.sl-v20-feature-visual,
.sl-v22-integrated-visual {
  position: relative;
  background:
    radial-gradient(circle at 62% 44%, rgba(112,190,188,.22), transparent 32%),
    linear-gradient(135deg, rgba(7,21,35,.96), rgba(14,42,60,.94)) !important;
  box-shadow: none !important;
  border: 1px solid rgba(255,255,255,.055) !important;
}
.sl-v20-feature-visual::before,
.sl-v22-integrated-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,20,33,.82), rgba(6,20,33,.30), rgba(6,20,33,.64)),
    radial-gradient(circle at 70% 36%, rgba(112,190,188,.16), transparent 32%);
  z-index: 2;
  pointer-events: none;
}
.sl-v20-feature-visual img,
.sl-v22-integrated-visual img {
  opacity: .20 !important;
  filter: saturate(.8) contrast(1.08) brightness(.70) !important;
}
.sl-v20-feature-visual .eyebrow,
.sl-v22-integrated-visual .eyebrow,
.sl-v20-feature-visual h3,
.sl-v22-integrated-visual h3,
.sl-v20-feature-visual p,
.sl-v22-integrated-visual p {
  position: relative;
  z-index: 3;
}
.sl-v20-hero-card-row,
.sl-v22-hero-card-row {
  position: relative;
  z-index: 4;
}
.sl-v20-hero-card,
.sl-v22-hero-card {
  background: rgba(255,255,255,.92) !important;
  backdrop-filter: blur(12px);
  border-top: 4px solid #c9a84c !important;
  box-shadow: 0 22px 70px rgba(6,20,33,.20) !important;
}
@media (max-width: 980px) {
  .sl-v20-editorial-hero,
  .sl-v22-motion-hero {
    background: linear-gradient(180deg, #061421 0%, #071a2b 100%) !important;
  }
  .sl-v20-editorial-hero::before,
  .sl-v22-motion-hero::before {
    background:
      linear-gradient(180deg, rgba(6,20,33,.92), rgba(6,20,33,.72)),
      linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  }
}


/* V27 Hero Image Integration — keep all videos lower on the page */
.sl-v20-feature-visual.sl-v27-hero-image-card,
.sl-v22-integrated-visual.sl-v27-hero-image-card {
  background: #f7faf9 !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  box-shadow: 0 36px 110px rgba(6,20,33,.32) !important;
  min-height: 440px;
  overflow: hidden;
  position: relative;
}
.sl-v20-feature-visual.sl-v27-hero-image-card::before,
.sl-v22-integrated-visual.sl-v27-hero-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,20,33,.16), rgba(6,20,33,.02) 34%, rgba(6,20,33,.08)),
    radial-gradient(circle at 68% 48%, rgba(112,190,188,.10), transparent 34%);
  z-index: 2;
  pointer-events: none;
}
.sl-v20-feature-visual.sl-v27-hero-image-card img,
.sl-v22-integrated-visual.sl-v27-hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center center;
  opacity: 1 !important;
  filter: saturate(1.02) contrast(1.02) brightness(.98) !important;
  transform: scale(1.01);
}
.sl-v27-hero-image-card::after {
  content: "Enterprise Strategy • Architecture • AI Governance";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  z-index: 3;
  color: rgba(6,20,33,.92);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.64);
  backdrop-filter: blur(14px);
  padding: 18px 22px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  box-shadow: 0 20px 70px rgba(6,20,33,.12);
}
.sl-v20-editorial-hero::after,
.sl-v22-motion-hero::after {
  opacity: .32 !important;
  right: 18vw !important;
}
@media (max-width: 980px) {
  .sl-v20-feature-visual.sl-v27-hero-image-card,
  .sl-v22-integrated-visual.sl-v27-hero-image-card {
    min-height: 300px;
  }
  .sl-v20-feature-visual.sl-v27-hero-image-card img,
  .sl-v22-integrated-visual.sl-v27-hero-image-card img {
    min-height: 300px;
  }
  .sl-v27-hero-image-card::after {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: .68rem;
    letter-spacing: .10em;
  }
}


/* V28 Dark Integrated Hero — fixes the passive white hero block */
.sl-v20-feature-visual.sl-v28-executive-hero-card,
.sl-v22-integrated-visual.sl-v28-executive-hero-card {
  min-height: 460px;
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 72% 35%, rgba(112,190,188,.24), transparent 30%),
    radial-gradient(circle at 38% 70%, rgba(201,168,76,.13), transparent 32%),
    linear-gradient(135deg, #071421 0%, #0a2032 52%, #0d2d3f 100%) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  box-shadow: 0 36px 110px rgba(6,20,33,.34) !important;
}
.sl-v20-feature-visual.sl-v28-executive-hero-card::before,
.sl-v22-integrated-visual.sl-v28-executive-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: .18;
  z-index: 1;
}
.sl-v20-feature-visual.sl-v28-executive-hero-card::after,
.sl-v22-integrated-visual.sl-v28-executive-hero-card::after {
  content: "STRATEGICA LABS";
  position: absolute;
  right: -20px;
  bottom: 24px;
  color: rgba(255,255,255,.045);
  font-size: clamp(3.4rem, 7vw, 7.5rem);
  font-weight: 900;
  letter-spacing: .10em;
  z-index: 1;
  white-space: nowrap;
}
.sl-v28-orbit {
  position: absolute;
  width: 430px;
  height: 430px;
  right: -70px;
  top: 42px;
  border-radius: 50%;
  border: 1px solid rgba(112,190,188,.34);
  box-shadow:
    0 0 0 38px rgba(112,190,188,.035),
    0 0 0 86px rgba(201,168,76,.024),
    inset 0 0 50px rgba(112,190,188,.09);
  animation: slV28Orbit 13s linear infinite;
  z-index: 1;
}
.sl-v28-orbit::before,
.sl-v28-orbit::after {
  content: "";
  position: absolute;
  inset: 72px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.16);
}
.sl-v28-orbit::after {
  inset: 138px;
  background: radial-gradient(circle, rgba(255,255,255,.20), rgba(112,190,188,.08), transparent 65%);
  border-style: solid;
}
.sl-v28-hero-kicker,
.sl-v28-executive-hero-card h2,
.sl-v28-executive-hero-card p,
.sl-v28-hero-grid {
  position: relative;
  z-index: 3;
}
.sl-v28-hero-kicker {
  width: fit-content;
  padding: 9px 14px;
  border: 1px solid rgba(201,168,76,.42);
  border-radius: 999px;
  color: #d6bd62;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.sl-v28-executive-hero-card h2 {
  max-width: 610px;
  color: #ffffff;
  font-size: clamp(2.1rem, 3.2vw, 4.1rem);
  line-height: .98;
  letter-spacing: -.045em;
  margin: 0 0 24px 0;
}
.sl-v28-executive-hero-card p {
  max-width: 580px;
  color: rgba(255,255,255,.78);
  font-size: 1.15rem;
  line-height: 1.55;
  margin: 0 0 34px 0;
}
.sl-v28-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
}
.sl-v28-hero-grid span {
  padding: 13px 14px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}
@keyframes slV28Orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (max-width: 980px) {
  .sl-v20-feature-visual.sl-v28-executive-hero-card,
  .sl-v22-integrated-visual.sl-v28-executive-hero-card {
    min-height: 360px;
    padding: 34px 28px;
  }
  .sl-v28-orbit {
    width: 280px;
    height: 280px;
    right: -100px;
    top: 20px;
  }
  .sl-v28-hero-grid {
    grid-template-columns: 1fr;
  }
}
