/*
Theme Name: Soar+ Tek
Theme URI: https://soarplustek.com
Author: Soarplus Technology Solution Limited
Author URI: https://soarplustek.com
Description: Production-grade enterprise theme for Soar+ Tek — Soarplus Technology Solution Limited. Built for cybersecurity, cloud, automation, AI, and training. Features: 10 custom page templates, dynamic insights blog, animated service wheel, mega-menu nav, contact form, dark-mode-friendly purple-tech palette, schema.org structured data, accessibility-hardened (WCAG 2.1 AA targets), responsive down to 320px. No dependencies required.
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: soar
Tags: business, corporate, technology, cybersecurity, two-columns, custom-colors, custom-menu, custom-logo, featured-images, responsive-layout, wide-blocks, blog, news, accessibility-ready, threaded-comments, translation-ready
*/

/* =========================================================
   Soar+ Tek — Design tokens
   ========================================================= */
:root {
  --st-red: #C32026;
  --st-red-dark: #9d1a1f;
  --st-red-deep: #7a1318;
  --st-green: #00A651;
  --st-green-dark: #008a44;
  --st-green-deep: #006a35;
  --st-bg-green: #DDE9DC;
  --st-bg-green-soft: #ecf3eb;
  --st-charcoal: #111111;
  --st-charcoal-2: #1a1a1a;
  --st-charcoal-3: #262626;
  --st-white: #FFFFFF;
  --st-grey: #F5F5F5;
  --st-grey-2: #ececec;
  --st-grey-3: #d4d4d4;
  --st-text: #1f1f1f;
  --st-text-soft: #4a4a4a;
  --st-text-muted: #707070;
  --st-border: #e6e6e6;

  --st-radius-sm: 6px;
  --st-radius: 10px;
  --st-radius-lg: 18px;
  --st-shadow-sm: 0 2px 6px rgba(17,17,17,0.06);
  --st-shadow: 0 14px 36px rgba(17,17,17,0.10);
  --st-shadow-lg: 0 26px 60px rgba(17,17,17,0.16);
  --st-shadow-red: 0 14px 30px rgba(195,32,38,0.28);

  --st-container: 1240px;
  --st-container-wide: 1360px;

  --st-font-head: "Outfit", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --st-font-sub:  "Plus Jakarta Sans", "Outfit", sans-serif;
  --st-font-body: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --st-font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* =========================================================
   Reset & base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--st-white);
  color: var(--st-text);
  font-family: var(--st-font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--st-charcoal); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--st-red); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--st-font-head);
  color: var(--st-charcoal);
  line-height: 1.15;
  margin: 0 0 .55em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); letter-spacing: -0.02em; }   /* ~64 */
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }                            /* ~48 */
h3 { font-size: clamp(1.4rem, 2.5vw, 2.25rem); }                         /* ~36 */
h4 { font-size: clamp(1.18rem, 1.6vw, 1.75rem); }                        /* ~28 */
p  { margin: 0 0 1rem; font-size: 1.125rem; }                            /* ~18 */
small, .small { font-size: 1rem; }                                       /* 16 */

/* =========================================================
   Layout helpers
   ========================================================= */
.st-container { max-width: var(--st-container); margin: 0 auto; padding: 0 24px; }
.st-container-wide { max-width: var(--st-container-wide); margin: 0 auto; padding: 0 24px; }
.st-section { padding: clamp(64px, 8vw, 110px) 0; }
.st-section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.st-section--grey { background: var(--st-grey); }
.st-section--dark {
  background:
    radial-gradient(420px 320px at 0% 50%, rgba(255,138,76,0.22), transparent 60%),
    radial-gradient(420px 320px at 100% 50%, rgba(138,93,217,0.28), transparent 60%),
    radial-gradient(800px 400px at 50% 50%, rgba(74,20,140,0.28), transparent 70%),
    linear-gradient(180deg, #1A0830 0%, #150522 60%, #0E0418 100%);
  color: #e2d9eb;
}
.st-section--dark h1,
.st-section--dark h2,
.st-section--dark h3,
.st-section--dark h4 { color: #fff; }

.st-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--st-font-sub);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--st-green-dark);
  margin-bottom: 18px;
}
.st-eyebrow::before {
  content: ""; width: 28px; height: 2px;
  background: var(--st-green);
}
.st-eyebrow--red { color: var(--st-red); }
.st-eyebrow--red::before { background: var(--st-red); }
.st-eyebrow--on-dark { color: #b6ecc4; }
.st-eyebrow--on-dark::before { background: var(--st-green); }

.st-section-head { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.st-section-head .st-eyebrow { justify-content: center; }
.st-section-head p { color: var(--st-text-soft); font-size: 1.1rem; }

/* =========================================================
   Buttons
   ========================================================= */
.st-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 8px;
  font-family: var(--st-font-sub);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.st-btn:hover { transform: translateY(-1px); }
.st-btn::after { content: ""; }
.st-btn--primary {
  background: var(--st-red);
  color: #fff;
  box-shadow: var(--st-shadow-red);
}
.st-btn--primary:hover { background: var(--st-red-dark); color: #fff; }
.st-btn--green {
  background: var(--st-green);
  color: #fff;
}
.st-btn--green:hover { background: var(--st-green-dark); color: #fff; }
.st-btn--outline {
  background: transparent;
  color: var(--st-charcoal);
  border-color: var(--st-charcoal);
}
.st-btn--outline:hover { background: var(--st-charcoal); color: #fff; }
.st-btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.st-btn--outline-light:hover { background: #fff; color: var(--st-charcoal); }
.st-btn--lg { padding: 17px 32px; font-size: 16px; }

.st-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--st-font-sub);
  font-weight: 600;
  color: var(--st-red);
}
.st-arrow-link::after { content: "→"; transition: transform .2s ease; }
.st-arrow-link:hover::after { transform: translateX(4px); }
.st-arrow-link--green { color: var(--st-green-dark); }

/* =========================================================
   Top utility bar
   ========================================================= */
.st-utility {
  background: var(--st-bg-green);
  color: var(--st-charcoal);
  font-family: var(--st-font-sub);
  font-size: 14px;
}
.st-utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 44px;
  padding: 8px 0;
}
.st-utility__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--st-green-deep);
}
.st-utility__tag svg { width: 18px; height: 18px; color: var(--st-green); }
.st-utility__nav {
  display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0;
}
.st-utility__nav li { position: relative; }
.st-utility__nav li + li::before {
  content: ""; position: absolute; left: -12px; top: 4px;
  width: 1px; height: 14px; background: rgba(17,17,17,0.18);
}
.st-utility__nav a { color: var(--st-charcoal); }
.st-utility__nav a:hover { color: var(--st-red); }
.st-utility__socials { display: flex; gap: 14px; margin-left: 8px; }
.st-utility__socials a {
  width: 22px; height: 22px; display: grid; place-items: center;
  color: var(--st-charcoal);
}
.st-utility__socials a:hover { color: var(--st-red); }
@media (max-width: 820px) {
  .st-utility__nav, .st-utility__socials { display: none; }
}

/* =========================================================
   Main header
   ========================================================= */
.st-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--st-border);
}
.st-header.is-scrolled { box-shadow: 0 6px 20px rgba(17,17,17,0.06); }
.st-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 14px 0;
}
.st-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.st-brand__text {
  display: flex; flex-direction: column; line-height: 1;
}
.st-brand__title {
  font-family: var(--st-font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  letter-spacing: -0.02em;
}
.st-brand__title .plus { color: var(--st-green); margin: 0 1px; }
.st-brand__title .red { color: var(--st-red); }
.st-brand__title .green { color: var(--st-green); }
.st-brand__tag {
  font-family: var(--st-font-sub);
  font-style: italic;
  color: var(--st-text-muted);
  font-size: 13px;
  margin-top: 7px;
  letter-spacing: 0;
}

.st-nav { display: flex; align-items: center; gap: 6px; }
.st-nav__list { list-style: none; margin: 0; padding: 0; display: flex; gap: 2px; flex-wrap: nowrap; }
.st-nav__item { position: relative; }
.st-nav__item > a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 11px;
  font-family: var(--st-font-sub);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--st-charcoal);
  border-radius: 6px;
  white-space: nowrap;
}
.st-nav__item > a:hover { color: var(--st-red); }
.st-nav__item.is-current > a {
  color: var(--st-red);
}
.st-nav__item.is-current > a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--st-red); border-radius: 2px;
}
.st-nav__item.has-children > a::after {
  content: "▾"; font-size: 9px; color: var(--st-text-muted); margin-left: 2px;
}

.st-megamenu {
  position: absolute; left: 50%; transform: translateX(-50%) translateY(8px);
  top: 100%;
  min-width: 560px;
  background: #fff;
  border: 1px solid var(--st-border);
  border-radius: 12px;
  box-shadow: var(--st-shadow-lg);
  padding: 22px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 70;
}
.st-nav__item:hover .st-megamenu,
.st-nav__item:focus-within .st-megamenu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.st-megamenu__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 22px; }
.st-megamenu a {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
}
.st-megamenu a:hover { background: var(--st-bg-green-soft); }
.st-megamenu__icon {
  width: 36px; height: 36px; flex: none;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--st-bg-green);
  color: var(--st-green-dark);
}
.st-megamenu__icon svg { width: 18px; height: 18px; }
.st-megamenu__title { font-family: var(--st-font-sub); font-weight: 700; color: var(--st-charcoal); font-size: 14.5px; }
.st-megamenu__desc { color: var(--st-text-muted); font-size: 12.5px; line-height: 1.45; margin-top: 2px; }

.st-header__cta { display: flex; align-items: center; gap: 12px; }

.st-burger {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 8px;
}
.st-burger span {
  display: block; width: 22px; height: 2px; background: var(--st-charcoal);
  margin: 5px auto; transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 1200px) {
  .st-nav { display: none; }
  .st-burger { display: block; }
  .st-header__cta .st-btn--outline { display: none; }
  .st-megamenu { display: none; }

  /* Slide-in mobile panel */
  .st-header.is-open .st-nav {
    display: block;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(360px, 88vw);
    background: #fff;
    box-shadow: -16px 0 48px rgba(17,17,17,0.18);
    padding: 28px 24px;
    overflow-y: auto;
    z-index: 100;
    animation: st-slide-in .28s ease both;
  }
  .st-header.is-open .st-nav__list { flex-direction: column; gap: 2px; }
  .st-header.is-open .st-nav__item > a {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 8px;
  }
  .st-header.is-open .st-nav__item > a:hover {
    background: var(--st-bg-green-soft, var(--st-bg-green));
  }

  /* Overlay scrim */
  .st-header.is-open::before {
    content: "";
    position: fixed; inset: 0;
    background: rgba(17,17,17,0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 99;
    animation: st-fade-in .2s ease both;
  }

  /* Burger -> X */
  .st-header.is-open .st-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .st-header.is-open .st-burger span:nth-child(2) { opacity: 0; }
  .st-header.is-open .st-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .st-burger { position: relative; z-index: 101; }

  /* Prevent body scroll when menu open */
  body.st-menu-open { overflow: hidden; }
}

@keyframes st-slide-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
@keyframes st-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =========================================================
   Hero
   ========================================================= */
.st-hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, #8B2BB8 0%, #4A148C 35%, #2A0944 70%, #150522 100%);
  color: #e2d9eb;
  overflow: hidden;
  padding: clamp(10px, 1.5vw, 24px) 0 clamp(60px, 7vw, 100px);
}
.st-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 5% 70%, rgba(255,138,76,0.20), transparent 60%),
    radial-gradient(800px 500px at 100% 40%, rgba(138,93,217,0.28), transparent 60%);
}
.st-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}
.st-hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center;
}
.st-hero h1 { color: #fff; font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }
.st-hero h1 .accent { color: var(--st-green); }
.st-hero p.lead { font-size: 1.18rem; color: #cfcfcf; max-width: 560px; }
.st-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.st-hero__badges {
  display: flex; gap: 30px; flex-wrap: wrap; margin-top: 40px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
}
.st-hero__badge { display: inline-flex; align-items: center; gap: 10px; color: #d8d8d8; font-family: var(--st-font-sub); font-weight: 600; font-size: 14.5px; }
.st-hero__badge svg { width: 20px; height: 20px; color: var(--st-green); }

.st-hero__visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 720px;
  width: 100%;
  margin-left: auto;
}

@media (max-width: 980px) {
  .st-hero__inner { grid-template-columns: 1fr; }
  .st-hero__visual { max-width: 600px; margin: 24px auto 0; }
}

/* =========================================================
   Diagonal company banner (Soarplus / services)
   ========================================================= */
.st-banner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  position: relative;
  overflow: hidden;
}
.st-banner__left {
  background: var(--st-bg-green);
  padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.st-banner__left::after {
  content: ""; position: absolute; top: 0; right: -50px; width: 100px; height: 100%;
  background: var(--st-bg-green);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
}
.st-banner__left h3 {
  font-family: var(--st-font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.15;
  color: var(--st-charcoal);
  margin-bottom: 14px;
}
.st-banner__left .tag {
  font-family: var(--st-font-sub);
  font-style: italic;
  color: var(--st-text-soft);
  font-size: 1.05rem;
}
.st-banner__right {
  background: var(--st-red);
  color: #fff;
  padding: clamp(36px, 5vw, 64px) clamp(40px, 5vw, 72px) clamp(36px, 5vw, 64px) clamp(80px, 8vw, 120px);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.st-banner__chips {
  display: flex; flex-wrap: wrap; gap: 8px 28px;
  align-items: center;
}
.st-banner__chips span {
  font-family: var(--st-font-sub);
  font-weight: 600; font-size: 1.05rem;
  display: inline-flex; align-items: center; gap: 10px;
  position: relative;
}
.st-banner__chips span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--st-green);
  box-shadow: 0 0 0 3px rgba(0,166,81,0.25);
}

@media (max-width: 900px) {
  .st-banner { grid-template-columns: 1fr; }
  .st-banner__left::after { display: none; }
  .st-banner__right { padding: clamp(28px, 5vw, 48px); }
}

.st-banner__divider {
  height: 4px;
  background: linear-gradient(90deg, var(--st-green) 0%, var(--st-green) 50%, var(--st-red) 50%, var(--st-red) 100%);
}

/* =========================================================
   Stats band (warm cream — Claude brown × white mix)
   ========================================================= */
.st-stats {
  background: #F0E6D6;
  color: var(--st-charcoal);
  padding: 22px 0;
}
.st-stats__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
@media (max-width: 1000px) { .st-stats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .st-stats__grid { grid-template-columns: 1fr; } }
.st-stat {
  display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: center;
}
.st-stat__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border: 1.5px solid rgba(0,166,81,0.55);
  border-radius: 10px;
  color: var(--st-green-dark);
  background: rgba(255,255,255,0.5);
}
.st-stat__icon svg { width: 26px; height: 26px; }
.st-stat__num {
  font-family: var(--st-font-head);
  font-weight: 800; font-size: 2rem;
  color: var(--st-green-dark);
  line-height: 1;
}
.st-stat__label {
  font-family: var(--st-font-sub); font-weight: 700; color: var(--st-charcoal); font-size: 1rem; margin-top: 6px;
}
.st-stat__sub { color: #6b5a48; font-size: 13px; }

/* =========================================================
   Services grid
   ========================================================= */
.st-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .st-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .st-services { grid-template-columns: 1fr; } }

.st-service {
  position: relative;
  padding: 32px 30px;
  background: #fff;
  border: 1px solid var(--st-border);
  border-radius: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.st-service::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--st-green), var(--st-red));
  opacity: 0; transition: opacity .25s ease;
}
.st-service:hover { transform: translateY(-4px); box-shadow: var(--st-shadow); border-color: transparent; }
.st-service:hover::before { opacity: 1; }
.st-service__icon {
  width: 56px; height: 56px; display: grid; place-items: center;
  border-radius: 12px;
  background: var(--st-bg-green);
  color: var(--st-green-dark);
  margin-bottom: 20px;
  transition: background .2s ease, color .2s ease;
}
.st-service:hover .st-service__icon { background: var(--st-red); color: #fff; }
.st-service__icon svg { width: 28px; height: 28px; }
.st-service h3 { font-size: 1.3rem; margin-bottom: 10px; }
.st-service p { color: var(--st-text-soft); font-size: 1rem; margin-bottom: 16px; }

/* =========================================================
   Why us — checked grid
   ========================================================= */
.st-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .st-why { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .st-why { grid-template-columns: 1fr; } }
.st-why__card {
  padding: 28px;
  border: 1px solid var(--st-border);
  border-radius: 12px;
  background: #fff;
  transition: border-color .2s ease, transform .2s ease;
}
.st-why__card:hover { border-color: var(--st-green); transform: translateY(-2px); }
.st-why__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(195,32,38,0.08);
  color: var(--st-red);
  margin-bottom: 14px;
}
.st-why__icon svg { width: 22px; height: 22px; }
.st-why__card h4 { font-size: 1.1rem; margin-bottom: 6px; }
.st-why__card p { color: var(--st-text-soft); font-size: 0.95rem; margin: 0; }

/* =========================================================
   Industries (icon tiles)
   ========================================================= */
.st-industries { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .st-industries { grid-template-columns: repeat(2, 1fr); } }
.st-industry {
  position: relative;
  padding: 30px 22px;
  background: #fff;
  border: 1px solid var(--st-border);
  border-radius: 14px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.st-industry:hover {
  transform: translateY(-4px);
  border-color: #8A5DD9;
  background:
    radial-gradient(circle at 0% 100%, rgba(255,138,76,0.25), transparent 60%),
    radial-gradient(circle at 100% 0%, rgba(138,93,217,0.35), transparent 60%),
    linear-gradient(135deg, #2A0944, #150522);
  color: #fff;
}
.st-industry:hover h4 { color: #fff; }
.st-industry:hover .st-industry__icon { background: var(--st-green); color: #fff; border-color: transparent; }
.st-industry__icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--st-bg-green);
  color: var(--st-green-dark);
  border: 1.5px solid var(--st-green);
  transition: background .2s, color .2s;
}
.st-industry__icon svg { width: 28px; height: 28px; }
.st-industry h4 { font-size: 1.1rem; margin-bottom: 4px; }
.st-industry p { font-size: 0.9rem; margin: 0; color: var(--st-text-muted); }
.st-industry:hover p { color: #cfcfcf; }

/* =========================================================
   Partners carousel
   ========================================================= */
.st-partners {
  overflow: hidden;
  position: relative;
  padding: 12px 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.st-partners__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: st-marquee 40s linear infinite;
  align-items: center;
}
.st-partners__track span {
  font-family: var(--st-font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--st-text-muted);
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color .15s ease;
}
.st-partners__track span:hover { color: var(--st-charcoal); }
@keyframes st-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   Two-column feature
   ========================================================= */
.st-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.st-feature--reverse .st-feature__media { order: 2; }
.st-feature__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,138,76,0.22), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(138,93,217,0.30), transparent 55%),
    linear-gradient(135deg, #2A0944, #150522 60%, #0E0418);
  aspect-ratio: 4/3;
  box-shadow: var(--st-shadow);
}
.st-feature__media::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.st-feature__media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,180,120,0.18), transparent 60%);
}
.st-feature__media .badge {
  position: absolute; top: 24px; left: 24px;
  background: var(--st-red);
  color: #fff;
  border-radius: 999px;
  padding: 6px 16px;
  font-family: var(--st-font-sub);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 1;
}
.st-feature__media .glyph {
  position: absolute; right: -10px; bottom: -20px;
  font-size: 240px; line-height: 1;
  font-family: var(--st-font-head); font-weight: 800;
  color: rgba(255,255,255,0.08);
  z-index: 1;
}
.st-feature ul { list-style: none; padding: 0; margin: 18px 0 26px; }
.st-feature ul li {
  position: relative; padding-left: 32px; margin-bottom: 12px;
  color: var(--st-text-soft);
  font-size: 1.05rem;
}
.st-feature ul li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 18px; height: 18px;
  background: var(--st-green);
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center; background-repeat: no-repeat; background-size: 12px;
}
@media (max-width: 900px) {
  .st-feature { grid-template-columns: 1fr; gap: 36px; }
  .st-feature--reverse .st-feature__media { order: 0; }
}

/* =========================================================
   CTA band
   ========================================================= */
.st-cta {
  position: relative;
  border-radius: 18px;
  padding: 56px;
  background:
    radial-gradient(420px 320px at 0% 50%, rgba(255,138,76,0.28), transparent 60%),
    radial-gradient(420px 320px at 100% 50%, rgba(138,93,217,0.35), transparent 60%),
    linear-gradient(135deg, #1A0830 0%, #150522 60%, #0E0418 100%);
  color: #fff;
  overflow: hidden;
}
.st-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(500px 300px at 90% 0%, rgba(255,180,120,0.18), transparent 60%),
    radial-gradient(400px 250px at 0% 100%, rgba(196,79,255,0.18), transparent 60%);
}
.st-cta__inner { position: relative; display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: center; }
.st-cta h2 { color: #fff; margin-bottom: 10px; }
.st-cta p { color: #cfcfcf; max-width: 540px; margin: 0; }
.st-cta__actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
@media (max-width: 800px) {
  .st-cta { padding: 36px; }
  .st-cta__inner { grid-template-columns: 1fr; }
  .st-cta__actions { justify-content: flex-start; }
}

/* =========================================================
   Page header
   ========================================================= */
.st-pageheader {
  background:
    radial-gradient(420px 320px at 0% 60%, rgba(255,138,76,0.22), transparent 60%),
    radial-gradient(420px 320px at 100% 40%, rgba(138,93,217,0.32), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 0%, #6B1F8C 0%, #3D0F5E 50%, #1A0830 100%);
  color: #e2d9eb;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.st-pageheader::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 350px at 90% 100%, rgba(196,79,255,0.18), transparent 60%);
}
.st-pageheader__inner { position: relative; z-index: 2; }

/* Cybersecurity-themed page header */
.st-pageheader--cyber {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, #8B2BB8 0%, #4A148C 35%, #2A0944 70%, #150522 100%);
}

/* Cybersecurity compliance band — purple/orange ambient */
.st-section--cyber-compliance {
  position: relative;
  background:
    radial-gradient(420px 320px at 0% 50%, rgba(255,138,76,0.30), transparent 60%),
    radial-gradient(420px 320px at 100% 50%, rgba(138,93,217,0.35), transparent 60%),
    radial-gradient(800px 400px at 50% 50%, rgba(74,20,140,0.35), transparent 70%),
    linear-gradient(180deg, #1A0830 0%, #150522 60%, #0E0418 100%);
  overflow: hidden;
}
.st-section--cyber-compliance::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 8% 30%, rgba(255,138,76,0.18), transparent 30%),
    radial-gradient(circle at 92% 70%, rgba(138,93,217,0.22), transparent 30%);
  pointer-events: none;
}
.st-section--cyber-compliance > .st-container { position: relative; z-index: 1; }
.st-section--cyber-compliance p { color: #d9c8eb; }

/* Reskin the framework chips so they fit the new palette */
.st-section--cyber-compliance .compliance-grid > div {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(226,196,255,0.25) !important;
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.st-pageheader--cyber::before {
  background: radial-gradient(700px 350px at 50% 50%, rgba(226,79,180,0.22), transparent 60%);
}
.st-pageheader--cyber h1 { color: #ffffff; text-shadow: 0 2px 24px rgba(0,0,0,0.45); }
.st-pageheader--cyber p { color: #ebd9f7; }
.st-pageheader--cyber .st-breadcrumbs { color: #c4a3d9; }
.st-pageheader--cyber .st-breadcrumbs a { color: #c4a3d9; }
.st-pageheader--cyber .st-breadcrumbs a:hover { color: #ffffff; }
.st-pageheader--cyber .st-eyebrow { color: #ffc8f0; }
.st-pageheader--cyber .st-eyebrow::before { background: #FF6FD8; }

.st-cyber-art {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
}
.st-cyber-art svg {
  width: 100%; height: 100%;
  display: block;
  filter: blur(0.3px);
}
.st-pageheader h1 { color: #fff; margin-bottom: 14px; }
.st-pageheader p { color: #ebd9f7; font-size: 1.15rem; max-width: 720px; }
.st-breadcrumbs { font-size: 13px; color: #c4a3d9; margin-bottom: 14px; font-family: var(--st-font-sub); }
.st-breadcrumbs a { color: #c4a3d9; }
.st-breadcrumbs a:hover { color: #ffc8f0; }

/* =========================================================
   Content typography
   ========================================================= */
.st-prose { max-width: 780px; margin: 0 auto; }
.st-prose p { font-size: 1.1rem; color: var(--st-text); }
.st-prose h2 { margin-top: 1.8em; }
.st-prose h3 { margin-top: 1.4em; }
.st-prose img { border-radius: 14px; margin: 24px 0; }
.st-prose ul, .st-prose ol { padding-left: 24px; margin-bottom: 1rem; }
.st-prose blockquote {
  border-left: 4px solid var(--st-green);
  padding: 8px 0 8px 22px;
  margin: 22px 0;
  color: var(--st-text-soft);
  font-style: italic;
}

/* =========================================================
   Training course cards (Coursera-style)
   ========================================================= */
.st-course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.st-course-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--st-border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.st-course-card:hover {
  box-shadow: var(--st-shadow-lg);
  transform: translateY(-3px);
  border-color: transparent;
}
.st-course__thumb {
  position: relative;
  display: grid; place-items: center;
  aspect-ratio: 16 / 9;
  text-decoration: none;
}
.st-course__glyph { display: grid; place-items: center; }
.st-course__glyph svg {
  width: 56px; height: 56px;
  color: #fff; opacity: 0.95;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.28));
}
.st-course__badge {
  position: absolute; top: 12px; right: 12px;
  background: #fff; color: var(--st-charcoal);
  font-family: var(--st-font-sub);
  font-size: 11px; font-weight: 700;
  padding: 5px 11px; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.st-course__body {
  display: flex; flex-direction: column; gap: 8px;
  padding: 18px 18px 20px;
  flex: 1;
}
.st-course__provider {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--st-font-sub);
  font-size: 13px; font-weight: 600; color: var(--st-text-muted);
}
.st-course__logo {
  display: grid; place-items: center;
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--st-red); color: #fff;
  font-family: var(--st-font-head); font-weight: 800; font-size: 11px;
  flex: none;
}
.st-course__title {
  font-family: var(--st-font-head);
  font-size: 1.18rem; font-weight: 700; line-height: 1.25;
  margin: 2px 0 0;
}
.st-course__title { display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.st-course__title a { color: var(--st-charcoal); text-decoration: none; }
.st-course__title a:hover { color: var(--st-red); }
.st-course__skills {
  font-size: 13.5px; line-height: 1.55; color: var(--st-text-soft);
  margin: 2px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.st-course__skills b { color: var(--st-charcoal); font-weight: 700; }
.st-course__rating {
  display: flex; align-items: center; gap: 6px;
  font-size: 13.5px; color: var(--st-charcoal);
  margin-top: auto; padding-top: 6px;
}
.st-course__stars { color: #E8A100; letter-spacing: 1px; }
.st-course__reviews { color: var(--st-text-muted); }
.st-course__meta {
  font-size: 12.5px; color: var(--st-text-muted);
  border-top: 1px solid var(--st-border);
  padding-top: 12px; margin-top: 4px;
}

/* =========================================================
   Course detail page (Coursera-style, Soar theme)
   ========================================================= */
.st-btn--block { display: flex; width: 100%; justify-content: center; }

/* Hero */
.st-course-hero { position: relative; padding: 46px 0 92px; }
.st-course-hero__inner { position: relative; z-index: 2; max-width: 880px; }
.st-course-hero .st-breadcrumbs,
.st-course-hero .st-breadcrumbs a { color: rgba(255,255,255,0.82); }
.st-course-hero .st-breadcrumbs a:hover { color: #fff; }
.st-course-hero h1 { color: #fff; font-size: clamp(2rem, 3.6vw, 2.9rem); margin: 6px 0 14px; }
.st-course-hero__kicker { color: rgba(255,255,255,0.82); font-family: var(--st-font-sub); font-size: 14px; margin: 14px 0 0; }
.st-course-hero__lead {
  color: rgba(255,255,255,0.92); font-size: 1.1rem; max-width: 720px; margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.st-course-hero__by { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--st-font-sub); font-size: 14.5px; margin-bottom: 22px; }
.st-course-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.st-course-hero__meta-line { color: rgba(255,255,255,0.9); font-size: 14px; margin: 18px 0 0; }
.st-course-hero__meta-line strong { color: #fff; }

/* Stats bar — white card overlapping the hero */
.st-course-stats {
  position: relative; z-index: 5; margin-top: -56px;
  background: #fff; border: 1px solid var(--st-border); border-radius: 14px;
  box-shadow: var(--st-shadow-lg);
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.st-course-stat { display: flex; flex-direction: column; gap: 6px; padding: 22px 22px; border-right: 1px solid var(--st-border); }
.st-course-stat:last-child { border-right: 0; }
.st-course-stat__lead { display: flex; align-items: center; gap: 6px; font-family: var(--st-font-head); font-weight: 700; font-size: 1.02rem; color: var(--st-charcoal); }
.st-course-stat__lead a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.st-course-stat__sub { font-size: 13px; color: var(--st-text-muted); line-height: 1.45; }
.st-course-stat__sub a { color: var(--st-red); }
.st-course-stat__ico svg { width: 18px; height: 18px; color: var(--st-green); }
.st-course-stat .st-course__stars { color: #E8A100; }
@media (max-width: 980px) {
  .st-course-stats { grid-template-columns: repeat(2, 1fr); }
  .st-course-stat { border-bottom: 1px solid var(--st-border); }
  .st-course-stat:nth-child(2n) { border-right: 0; }
}
@media (max-width: 560px) { .st-course-stats { grid-template-columns: 1fr; } .st-course-stat { border-right: 0; } }

.st-section--tight { padding-top: 30px; }

/* Tab navigation */
.st-tabnav {
  display: flex; gap: 2px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid var(--st-border); margin-bottom: 36px;
  position: sticky; top: 64px; background: #fff; z-index: 20;
}
.st-tab {
  appearance: none; background: transparent; border: 0; cursor: pointer;
  font-family: var(--st-font-sub); font-weight: 600; font-size: 15px; color: var(--st-text-soft);
  padding: 14px 16px; white-space: nowrap; border-bottom: 2.5px solid transparent;
}
.st-tab:hover { color: var(--st-charcoal); }
.st-tab.is-active { color: var(--st-red); border-bottom-color: var(--st-red); }

.st-tabpanel { margin-bottom: 4px; }
.st-tabpanel + .st-tabpanel { margin-top: 48px; } /* spacing when stacked (no-JS) */
.st-course-tabs.js .st-tabpanel + .st-tabpanel { margin-top: 0; }
.st-course-tabs.js .st-tabpanel.is-active { animation: st-tab-fade .25s ease both; }
@keyframes st-tab-fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* Two-column content + sticky aside */
.st-course-cols { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .st-course-cols { grid-template-columns: 1fr; gap: 32px; } }
.st-course-main > h2 { font-size: 1.6rem; margin: 36px 0 18px; }
.st-course-main > h2:first-child { margin-top: 0; }
.st-course-main > h3 { font-size: 1.15rem; margin: 30px 0 14px; }
.st-course-lead { color: var(--st-text-soft); font-size: 1.05rem; margin: 0 0 22px; }
.st-prose--flush { max-width: none; margin: 0; }

/* Checklists */
.st-checklist { list-style: none; margin: 0 0 8px; padding: 0; display: grid; gap: 14px; }
.st-checklist--2col { grid-template-columns: 1fr 1fr; gap: 14px 32px; }
@media (max-width: 680px) { .st-checklist--2col { grid-template-columns: 1fr; } }
.st-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--st-text); line-height: 1.5; }
.st-checklist svg { width: 18px; height: 18px; color: var(--st-green); flex: none; margin-top: 3px; }

/* Pills */
.st-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 6px; }
.st-pill {
  display: inline-block; padding: 7px 14px; border-radius: 999px;
  background: var(--st-light-grey, #f1f3f5); border: 1px solid var(--st-border);
  font-family: var(--st-font-sub); font-size: 13px; font-weight: 600; color: var(--st-charcoal);
}

/* Details to know */
.st-details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
@media (max-width: 680px) { .st-details-grid { grid-template-columns: 1fr; } }
.st-detail { display: flex; align-items: flex-start; gap: 12px; }
.st-detail__ico { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 9px; background: var(--st-bg-green); color: var(--st-green-dark); flex: none; }
.st-detail__ico svg { width: 20px; height: 20px; }
.st-detail strong { display: block; font-size: 14.5px; color: var(--st-charcoal); }
.st-detail span span, .st-detail div span { font-size: 13px; color: var(--st-text-muted); }

/* Aside cards */
.st-course-side { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 18px; }
@media (max-width: 900px) { .st-course-side { position: static; } }
.st-course-side__card { border: 1px solid var(--st-border); border-radius: 14px; padding: 22px; background: #fff; box-shadow: 0 10px 30px rgba(17,17,17,0.05); }
.st-course-side__stat { display: block; font-family: var(--st-font-head); font-weight: 800; font-size: 2.4rem; color: var(--st-green); line-height: 1; }
.st-course-side__card p { font-size: 14px; color: var(--st-text-soft); margin: 10px 0 0; }
.st-course-side__card--cta { background: var(--st-bg-green); border-color: transparent; }
.st-course-side__card--cta h4 { margin: 0 0 8px; font-family: var(--st-font-head); font-size: 1.1rem; }
.st-course-side__card--cta .st-btn { margin-top: 14px; }

/* Outcomes banner */
.st-orgs-banner {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-top: 32px; padding: 24px; border: 1px solid var(--st-border); border-radius: 14px; background: var(--st-light-grey, #f7f7f7);
}
.st-orgs-banner h3 { margin: 0 0 8px; font-size: 1.15rem; }
.st-orgs-banner__tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* Modules accordion */
.st-modules { display: flex; flex-direction: column; gap: 12px; }
.st-module { border: 1px solid var(--st-border); border-radius: 12px; background: #fff; overflow: hidden; }
.st-module > summary {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 20px; cursor: pointer; list-style: none;
}
.st-module > summary::-webkit-details-marker { display: none; }
.st-module__head { display: flex; flex-direction: column; gap: 3px; }
.st-module__title { font-family: var(--st-font-head); font-weight: 700; font-size: 1.05rem; color: var(--st-charcoal); }
.st-module__meta { font-size: 13px; color: var(--st-text-muted); }
.st-module__chevron { width: 12px; height: 12px; border-right: 2px solid var(--st-text-muted); border-bottom: 2px solid var(--st-text-muted); transform: rotate(45deg); transition: transform .2s ease; flex: none; }
.st-module[open] .st-module__chevron { transform: rotate(-135deg); }
.st-module__body { padding: 0 20px 20px; color: var(--st-text-soft); font-size: 15px; line-height: 1.6; }
.st-module__body p { margin: 0; }

/* Instructor card */
.st-instructor h4 { margin: 0 0 14px; font-family: var(--st-font-head); font-size: 1.1rem; }
.st-instructor__row { display: flex; align-items: center; gap: 12px; }
.st-instructor__row strong { display: block; font-size: 15px; color: var(--st-charcoal); }
.st-instructor__row span { font-size: 13px; color: var(--st-text-muted); }
.st-instructor__stats { font-size: 13.5px; color: var(--st-text-muted); margin: 12px 0 0; }
.st-instructor hr { border: 0; border-top: 1px solid var(--st-border); margin: 16px 0; }
.st-instructor__offered { font-size: 14px; color: var(--st-text); margin: 0 0 4px; }
.st-instructor__total { font-size: 13px; color: var(--st-text-muted); margin: 0; }
.st-course__logo--lg { width: 40px; height: 40px; border-radius: 9px; font-size: 15px; }

/* Testimonials */
.st-testimonials { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.st-testimonial { margin: 0; border: 1px solid var(--st-border); border-radius: 14px; padding: 24px; background: #fff; }
.st-testimonial .st-course__stars { color: #E8A100; font-size: 15px; }
.st-testimonial blockquote { margin: 12px 0 18px; font-size: 1.02rem; line-height: 1.6; color: var(--st-text); }
.st-testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.st-testimonial__avatar { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--st-bg-green); color: var(--st-green-dark); font-family: var(--st-font-head); font-weight: 800; flex: none; }
.st-testimonial figcaption strong { display: block; font-size: 14.5px; color: var(--st-charcoal); }
.st-testimonial__role { font-size: 13px; color: var(--st-text-muted); }

/* Reviews */
.st-reviews { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 48px; align-items: start; }
@media (max-width: 820px) { .st-reviews { grid-template-columns: 1fr; gap: 32px; } }
.st-reviews__summary { border: 1px solid var(--st-border); border-radius: 14px; padding: 24px; background: #fff; }
.st-reviews__score { font-family: var(--st-font-head); font-weight: 800; font-size: 3rem; line-height: 1; color: var(--st-charcoal); }
.st-reviews__stars { color: #E8A100; display: block; margin: 8px 0 2px; font-size: 18px; }
.st-reviews__count { font-size: 13.5px; color: var(--st-text-muted); }
.st-reviews__bars { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.st-reviews__bar { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--st-text-muted); }
.st-reviews__star-label { width: 28px; flex: none; }
.st-reviews__track { flex: 1; height: 8px; border-radius: 999px; background: var(--st-border); overflow: hidden; }
.st-reviews__fill { display: block; height: 100%; background: var(--st-green); border-radius: 999px; }
.st-reviews__pct { width: 34px; text-align: right; flex: none; }
.st-reviews__list { display: flex; flex-direction: column; gap: 22px; }
.st-review { border-bottom: 1px solid var(--st-border); padding-bottom: 22px; }
.st-review:last-child { border-bottom: 0; }
.st-review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.st-review__head strong { display: block; font-size: 14.5px; color: var(--st-charcoal); }
.st-review__date { font-size: 12.5px; color: var(--st-text-muted); }
.st-review__stars { margin-left: auto; color: #E8A100; }
.st-review p { margin: 0; color: var(--st-text); line-height: 1.6; }

/* Course card actions */
.st-course__actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; }
.st-course__enroll {
  font-family: var(--st-font-sub); font-weight: 700; font-size: 13.5px;
  color: #fff; background: var(--st-red); padding: 8px 16px; border-radius: 8px;
  text-decoration: none; transition: transform .15s ease, filter .2s ease;
}
.st-course__enroll:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* =========================================================
   Enrollment modal + registration form
   ========================================================= */
.st-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.st-modal.is-open { display: block; }
.st-modal__overlay { position: absolute; inset: 0; background: rgba(17,17,17,0.55); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.st-modal__dialog {
  position: relative; z-index: 1;
  width: min(640px, calc(100% - 32px));
  max-height: calc(100vh - 64px); overflow: auto;
  margin: 40px auto; padding: 32px 32px 28px;
  background: #fff; border-radius: 16px; box-shadow: var(--st-shadow-lg);
  animation: st-modal-in .22s ease both;
}
@keyframes st-modal-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.st-modal__close {
  position: absolute; top: 12px; right: 16px;
  border: 0; background: transparent; cursor: pointer;
  font-size: 30px; line-height: 1; color: var(--st-text-muted);
}
.st-modal__close:hover { color: var(--st-charcoal); }
.st-modal__dialog h2 { margin: 8px 0 6px; font-size: 1.5rem; }
.st-modal__sub { color: var(--st-text-soft); margin: 0 0 22px; font-size: 0.97rem; }

.soar-enroll-form .soar-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.soar-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--st-text-soft); margin-top: 4px; }
.soar-consent input { width: auto; margin-top: 3px; }
.soar-enroll-actions { margin-top: 10px; }
.soar-enroll-feedback { margin: 14px 0 0; font-size: 14.5px; font-weight: 600; }
.soar-enroll-feedback.is-ok { color: #0f7b54; }
.soar-enroll-feedback.is-err { color: #9b2a2a; }

/* Page-level alerts (e.g. /enroll/ fallback) */
.soar-alert { padding: 16px 20px; border-radius: 12px; margin-bottom: 24px; }
.soar-alert strong { display: block; }
.soar-alert div { font-size: 14px; margin-top: 4px; }
.soar-alert--ok { border: 1px solid #b6ecc4; background: #eaf9f1; color: #0f7b54; }
.soar-alert--err { border: 1px solid #f4c5c5; background: #fdecec; color: #9b2a2a; }

/* Course card featured image */
.st-course__thumb.has-image { padding: 0; }
.st-course__img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Enroll page — two-column form with course tiles */
.soar-enroll-grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 44px; align-items: start; }
@media (max-width: 900px) { .soar-enroll-grid { grid-template-columns: 1fr; gap: 32px; } .soar-enroll-tiles { order: -1; } }
.soar-enroll-heading { font-size: 1.25rem; margin: 0 0 18px; }
.soar-enroll-tiles { position: sticky; top: 100px; }
@media (max-width: 900px) { .soar-enroll-tiles { position: static; } }
.soar-tiles { display: flex; flex-direction: column; gap: 10px; max-height: 560px; overflow-y: auto; padding: 2px; }
.soar-tile {
  position: relative; display: flex; align-items: center; gap: 12px;
  padding: 12px; border: 1.5px solid var(--st-border); border-radius: 12px;
  cursor: pointer; background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.soar-tile:hover { border-color: var(--st-green); }
.soar-tile input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.soar-tile.is-selected,
.soar-tile:has(input:checked) { border-color: var(--st-green); box-shadow: 0 0 0 3px rgba(0,166,81,0.16); }
.soar-tile:focus-within { border-color: var(--st-green); box-shadow: 0 0 0 3px rgba(0,166,81,0.16); }
.soar-tile__media { width: 46px; height: 46px; border-radius: 9px; display: grid; place-items: center; flex: none; overflow: hidden; }
.soar-tile__media svg { width: 22px; height: 22px; color: #fff; }
.soar-tile__media img { width: 100%; height: 100%; object-fit: cover; }
.soar-tile__text { display: flex; flex-direction: column; min-width: 0; }
.soar-tile__title { font-family: var(--st-font-sub); font-weight: 700; font-size: 14.5px; color: var(--st-charcoal); }
.soar-tile__meta { font-size: 12.5px; color: var(--st-text-muted); }
.soar-tile__check {
  margin-left: auto; flex: none; width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; background: var(--st-green); color: #fff; font-size: 12px;
  opacity: 0; transform: scale(.6); transition: opacity .15s ease, transform .15s ease;
}
.soar-tile.is-selected .soar-tile__check,
.soar-tile:has(input:checked) .soar-tile__check { opacity: 1; transform: scale(1); }

/* =========================================================
   Forms
   ========================================================= */
.st-form { display: grid; gap: 18px; }
.st-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .st-form .row { grid-template-columns: 1fr; } }
.st-form label { font-family: var(--st-font-sub); font-size: 13px; font-weight: 600; color: var(--st-charcoal); margin-bottom: 6px; display: block; letter-spacing: 0.02em; }
.st-form input, .st-form textarea, .st-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--st-border);
  font-family: inherit; font-size: 15px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.st-form input:focus, .st-form textarea:focus, .st-form select:focus {
  outline: 0;
  border-color: var(--st-green);
  box-shadow: 0 0 0 4px rgba(0,166,81,0.15);
}

/* =========================================================
   Footer
   ========================================================= */
.st-footer {
  background: var(--st-charcoal);
  color: #a3a3a3;
  padding: 72px 0 28px;
  position: relative;
}
.st-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--st-green) 0%, var(--st-green) 50%, var(--st-red) 50%, var(--st-red) 100%);
}
.st-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 980px) { .st-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .st-footer__grid { grid-template-columns: 1fr; } }
.st-footer h5 { color: #fff; font-family: var(--st-font-sub); font-size: 14px; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 18px; font-weight: 700; }
.st-footer ul { list-style: none; padding: 0; margin: 0; }
.st-footer li { margin-bottom: 10px; }
.st-footer a { color: #cfcfcf; font-size: 15px; }
.st-footer a:hover { color: var(--st-green); }
.st-footer__brand p { color: #a3a3a3; font-size: 15px; max-width: 360px; }
.st-footer__socials { display: flex; gap: 10px; margin-top: 18px; }
.st-footer__socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: #cfcfcf;
}
.st-footer__socials a:hover { background: var(--st-red); color: #fff; }
.st-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; color: #7a7a7a;
  flex-wrap: wrap; gap: 12px;
}
.st-footer__contact-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.st-footer__contact-row svg { width: 18px; height: 18px; color: var(--st-green); flex-shrink: 0; margin-top: 3px; }
.st-footer__contact-row a, .st-footer__contact-row span { color: #cfcfcf; font-size: 14.5px; }

/* =========================================================
   Hero shield/network visual
   ========================================================= */
.st-shield-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}
.st-shield-visual svg { width: 100%; height: 100%; }

/* =========================================================
   WordPress-required classes
   ========================================================= */
.alignleft { float: left; margin: 6px 24px 18px 0; }
.alignright { float: right; margin: 6px 0 18px 24px; }
.aligncenter { display: block; margin: 18px auto; }
.wp-caption-text, .gallery-caption { font-size: 13px; color: var(--st-text-muted); text-align: center; margin-top: 6px; }
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px,1px,1px,1px);
  width: 1px; height: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 4px rgba(0,0,0,.3);
  clip: auto !important;
  color: var(--st-charcoal);
  display: block;
  font-size: 14px;
  font-weight: 600;
  height: auto;
  left: 8px;
  padding: 12px 18px;
  text-decoration: none;
  top: 8px;
  width: auto;
  z-index: 100000;
}

/* =========================================================
   Accessibility — focus styles, reduced motion
   ========================================================= */
:focus-visible {
  outline: 2px solid var(--st-green);
  outline-offset: 3px;
  border-radius: 4px;
}
.st-btn:focus-visible { outline-offset: 4px; }
a:focus-visible { outline-color: var(--st-green-dark); }
.st-nav a:focus-visible,
.st-utility a:focus-visible,
.st-footer a:focus-visible { outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .st-partners__track { animation: none !important; }
}

/* =========================================================
   Animations
   ========================================================= */
@keyframes st-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.st-reveal { opacity: 0; }
.st-reveal.is-visible { animation: st-fade-up .7s ease forwards; }

/* Animated counter pulse */
@keyframes st-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
