:root {
    --sp-ink: #1b1a35;
    --sp-ink-soft: #42415d;
    --sp-cream: #f7f7fc;
    --sp-cream-deep: #ececfa;
    --sp-white: #ffffff;
    --sp-blue: #6256e8;
    --sp-blue-dark: #4b42c8;
    --sp-coral: #6256e8;
    --sp-coral-dark: #4b42c8;
    --sp-yellow: #dcd8ff;
    --sp-sage: #f0effc;
    --sp-plum: #242044;
    --sp-muted: #6d6b82;
    --sp-border: #deddec;
    --sp-container: 1180px;
    --sp-radius: 6px;
    --sp-shadow: 0 18px 44px rgba(29, 25, 72, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.sp-site {
    margin: 0;
    background: var(--sp-cream);
    color: var(--sp-ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}
body.sp-site h1,
body.sp-site h2,
body.sp-site h3,
body.sp-site h4 {
    margin-top: 0;
    color: var(--sp-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.08;
}
body.sp-site a { color: inherit; }
body.sp-site a:hover { color: inherit; text-decoration: none; }
body.sp-site img { max-width: 100%; }
body.sp-site .container { width: min(100% - 40px, var(--sp-container)); max-width: none; margin-inline: auto; padding-inline: 0; }
body.sp-site :focus-visible { outline: 3px solid var(--sp-yellow); outline-offset: 3px; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.sp-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.sp-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1;
    box-shadow: 0 0 0 rgba(37,31,101,0);
    transform: translateY(0);
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.sp-button-primary { background: var(--sp-blue); color: #fff !important; }
.sp-button-primary:hover { background: var(--sp-blue-dark); box-shadow: 0 10px 24px rgba(75,66,200,.23); transform: translateY(-2px); }
.sp-button-accent { background: var(--sp-coral); color: #fff !important; }
.sp-button-accent:hover { background: var(--sp-coral-dark); box-shadow: 0 10px 24px rgba(75,66,200,.23); transform: translateY(-2px); }
.sp-button:active { box-shadow: none; transform: translateY(0); }
.sp-button-ghost { background: transparent; border-color: var(--sp-ink); color: var(--sp-ink) !important; }
.sp-button-block { width: 100%; }
.sp-text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--sp-blue) !important; font-size: 14px; font-weight: 700; transition: color .2s ease; }
.sp-text-link i { transition: transform .2s ease; }
.sp-text-link:hover i { transform: translateX(4px); }
.sp-text-link-light { color: #fff !important; }
.sp-kicker { display: inline-block; margin-bottom: 13px; color: var(--sp-blue); font-size: 11px; font-weight: 700; letter-spacing: .12em; line-height: 1.2; text-transform: uppercase; }
.sp-kicker > i { font-size: 22px; letter-spacing: 0; line-height: 1; }
.sp-kicker-light { color: var(--sp-yellow); }

/* Header */
.sp-header { position: relative; z-index: 30; background: var(--sp-white); }
.sp-header-main { min-height: 82px; display: flex; align-items: center; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--sp-border); }
.sp-header-main.sticky-header.fixed { box-shadow: 0 8px 26px rgba(32,36,44,.08); }
.sp-header-layout { min-height: 82px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 30px; }
.sp-logo { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 11px; color: var(--sp-ink) !important; }
.sp-brand-icon { width: 36px; height: 42px; display: grid; place-items: center; flex: 0 0 36px; background: transparent; }
.sp-brand-icon img { width: 29px; height: 29px; display: block; }
.sp-brand-name { font-size: 17px; font-weight: 700; letter-spacing: -.025em; white-space: nowrap; }
.sp-menu-button { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--sp-border); border-radius: 7px; background: transparent; color: var(--sp-ink); font-size: 20px; }
.sp-main-nav { justify-self: end; }
.sp-main-nav .menu { display: flex; align-items: center; gap: 1px; margin: 0; padding: 0; list-style: none; }
.sp-main-nav .menu > li { position: relative; }
.sp-header .sp-main-nav .menu > li > a { display: flex; align-items: center; min-height: 44px; padding: 0 9px; color: var(--sp-ink); font-size: 13.2px; font-weight: 600; white-space: nowrap; transition: color .2s ease; }
.sp-header .sp-main-nav .menu > li.active > a,
.sp-header .sp-main-nav .menu > li > a:hover { color: var(--sp-blue); }
.sp-header-actions { height: 44px; display: flex; align-items: stretch; gap: 10px; }
.sp-header-actions .sp-button { min-height: 44px; height: 44px; padding-inline: 17px; }
.sp-cart-link { position: relative; width: 44px; min-width: 44px; max-width: 44px; height: 44px; min-height: 44px; max-height: 44px; flex: 0 0 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--sp-border); border-radius: 9px; background: var(--sp-cream); color: var(--sp-ink) !important; font-size: 15px; transition: border-color .2s ease, background-color .2s ease, color .2s ease; }
.sp-cart-link:hover { border-color: var(--sp-blue); background: var(--sp-sage); color: var(--sp-blue) !important; }
.sp-cart-link i { transition: transform .2s cubic-bezier(.22,1,.36,1); }
.sp-cart-link:hover i { transform: translateY(-1px) scale(1.07); }
.sp-cart-link strong { position: absolute; top: -6px; right: -6px; min-width: 19px; height: 19px; display: grid; place-items: center; padding: 0 4px; border: 2px solid #fff; border-radius: 50%; background: var(--sp-blue); color: #fff; font-size: 9px; }
.sp-header .sp-cart-link:hover strong { border-color: #fff !important; background: var(--sp-blue) !important; color: #fff !important; box-shadow: none !important; transform: none !important; }
.sp-mega-menu { position: absolute; top: calc(100% + 8px); left: 50%; width: min(720px, calc(100vw - 40px)); padding: 24px; background: #fff; border: 1px solid var(--sp-border); border-radius: 8px; box-shadow: var(--sp-shadow); opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: opacity .18s ease, visibility .18s ease, transform .18s ease; }
.sp-main-nav li:hover > .sp-mega-menu,
.sp-main-nav li:focus-within > .sp-mega-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.sp-mega-menu-head { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--sp-border); }
.sp-mega-menu-head strong { font-family: Georgia, serif; font-size: 21px; }
.sp-mega-menu-head a { color: var(--sp-blue); font-size: 13px; font-weight: 700; }
.sp-header .sp-mega-menu .oca-menu-category-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px 0; }
.sp-header .sp-mega-menu .oca-menu-category-list a { display: block; margin: 0 8px; padding: 9px 11px; border-radius: 9px; color: var(--sp-ink-soft); font-size: 13px; line-height: 1.35; transition: background-color .18s ease, color .18s ease, transform .18s ease; }
.sp-header .sp-mega-menu .oca-menu-category-list a:hover { background: var(--sp-sage); color: var(--sp-blue); transform: translateX(2px); }

/* Hero */
.sp-hero { position: relative; min-height: 650px; display: flex; align-items: stretch; overflow: hidden; background: #191734; color: #fff; }
.sp-hero-media { position: absolute; inset: 0; background:
    radial-gradient(circle at 82% 16%, rgba(200,195,255,.28), transparent 23%),
    radial-gradient(circle at 58% 90%, rgba(132,118,255,.2), transparent 28%),
    linear-gradient(118deg, #17152f 0%, #25214f 50%, #544bd3 100%); }
.sp-hero-media::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, transparent 18%, #000 58%, #000); }
.sp-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,14,38,.32), transparent 62%); }
.sp-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .95fr) minmax(390px, .75fr); align-items: center; gap: 65px; padding-top: 55px; padding-bottom: 122px; }
.sp-hero-copy { max-width: 570px; }
.sp-hero-copy > * { animation: sp-rise-in .55s both cubic-bezier(.22,1,.36,1); }
.sp-hero-copy > :nth-child(2) { animation-delay: .06s; }
.sp-hero-copy > :nth-child(3) { animation-delay: .12s; }
.sp-hero-copy > :nth-child(4) { animation-delay: .18s; }
.sp-hero-copy h1 { max-width: 560px; margin-bottom: 22px; color: #fff !important; font-size: clamp(46px, 4.65vw, 66px); line-height: 1.02; }
.sp-hero-copy > p { max-width: 540px; margin-bottom: 28px; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.6; }
.sp-hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.sp-hero-visual { position: relative; min-height: 390px; animation: sp-visual-in .65s .14s both cubic-bezier(.22,1,.36,1); }
.sp-visual-orb { position: absolute; display: block; border-radius: 50%; filter: blur(1px); }
.sp-visual-orb-one { width: 280px; height: 280px; top: 13px; right: 5px; background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(171,162,255,.04)); border: 1px solid rgba(255,255,255,.2); }
.sp-visual-orb-two { width: 145px; height: 145px; left: 0; bottom: 4px; background: rgba(143,130,255,.24); }
.sp-learning-card { position: absolute; z-index: 2; top: 52px; right: 28px; width: min(390px, calc(100% - 35px)); padding: 23px; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; background: rgba(21,19,52,.7); box-shadow: 0 28px 70px rgba(10,8,33,.32); backdrop-filter: blur(16px); }
.sp-learning-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.72); font-size: 11px; font-weight: 600; letter-spacing: .03em; }
.sp-learning-card-head span { display: flex; align-items: center; gap: 9px; }
.sp-learning-card-head i { color: #cfcaff; }
.sp-learning-card-head em { padding: 4px 8px; border-radius: 99px; background: rgba(220,216,255,.14); color: #e8e6ff; font-size: 9px; font-style: normal; text-transform: uppercase; }
.sp-learning-step { display: grid; grid-template-columns: 32px 1fr; align-items: center; gap: 12px; padding: 11px 0; }
.sp-learning-step b { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: rgba(255,255,255,.1); color: #dcd8ff; font-size: 10px; }
.sp-learning-step span { display: flex; flex-direction: column; }
.sp-learning-step strong { color: #fff; font-size: 13px; font-weight: 600; }
.sp-learning-step small { color: rgba(255,255,255,.52); font-size: 10px; }
.sp-learning-progress { height: 5px; margin-top: 15px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.1); }
.sp-learning-progress span { width: 72%; height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, #9b90ff, #e1deff); }
.sp-visual-chip { position: absolute; z-index: 3; display: grid; grid-template-columns: 38px auto; align-items: center; gap: 10px; min-width: 174px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.28); border-radius: 13px; background: rgba(255,255,255,.92); color: var(--sp-ink); box-shadow: 0 16px 35px rgba(10,8,33,.22); }
.sp-visual-chip i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: var(--sp-sage); color: var(--sp-blue); }
.sp-visual-chip span { display: flex; flex-direction: column; }
.sp-visual-chip strong { font-size: 12px; line-height: 1.25; }
.sp-visual-chip small { color: var(--sp-muted); font-size: 9px; }
.sp-visual-chip-top { top: 6px; left: -11px; animation: sp-float 5.6s 1s ease-in-out infinite; }
.sp-visual-chip-bottom { right: -7px; bottom: 3px; animation: sp-float 6.2s .3s ease-in-out infinite reverse; }
.sp-course-match { position: absolute; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1.1fr 1fr 1fr 66px; align-items: stretch; background: #fff; color: var(--sp-ink); box-shadow: 0 20px 50px rgba(21,23,30,.28); }
.sp-match-intro { padding: 22px 26px; background: var(--sp-cream-deep); }
.sp-match-intro span { display: block; margin-bottom: 4px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.sp-match-intro strong { display: block; font-family: Georgia, serif; font-size: 22px; line-height: 1.15; }
.sp-match-field { min-width: 0; padding: 18px 24px; border-right: 1px solid var(--sp-border); }
.sp-match-field label { display: block; margin: 0 0 4px; color: var(--sp-muted); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.sp-match-field select { width: 100%; height: 38px; padding: 0 30px 0 0; border: 0; background: transparent; color: var(--sp-ink); font-size: 14px; font-weight: 500; outline: 0; }
.sp-match-submit { border: 0; background: var(--sp-coral); color: #fff; font-size: 18px; transition: background .2s ease; }
.sp-match-submit:hover { background: var(--sp-coral-dark); }
.sp-fact-band { background: var(--sp-plum); color: #fff; }
.sp-fact-grid { min-height: 104px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.sp-fact-grid > div { min-height: 58px; display: flex; flex-direction: column; justify-content: center; padding: 0 26px; border-right: 1px solid rgba(255,255,255,.22); }
.sp-fact-grid > div:first-child { padding-left: 0; }
.sp-fact-grid > div:last-child { border-right: 0; }
.sp-fact-grid strong { margin-bottom: 4px; font-family: Georgia, serif; font-size: 27px; line-height: 1; }
.sp-fact-grid span { color: rgba(255,255,255,.8); font-size: 12px; font-weight: 500; letter-spacing: .035em; }

@keyframes sp-rise-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sp-visual-in { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes sp-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* Sections */
.sp-section { padding: 86px 0; }
.sp-section-heading { margin-bottom: 40px; }
.sp-section-heading h2 { max-width: 700px; margin: 0; font-size: clamp(34px, 3.2vw, 48px); }
.sp-heading-split { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); align-items: end; gap: 60px; }
.sp-heading-split > p { margin: 0 0 5px; color: var(--sp-muted); font-size: 16px; }
.sp-heading-inline { display: flex; justify-content: space-between; align-items: end; gap: 30px; }

/* Category mosaic */
.sp-section-categories { background: var(--sp-cream); }
.sp-category-mosaic { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 285px; gap: 18px; }
.sp-category-tile { min-width: 0; overflow: hidden; background: var(--sp-ink); }
.sp-category-tile:nth-child(n+9) { display: none; }
.sp-category-mosaic.is-expanded { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sp-category-mosaic.is-expanded .sp-category-tile { display: block; }
.sp-category-mosaic.is-expanded .sp-category-tile:nth-child(n+9) { animation: sp-category-reveal .34s cubic-bezier(.22,1,.36,1) both; }
.sp-category-actions { display: flex; justify-content: center; margin-top: 28px; }
.sp-category-toggle { min-width: 230px; justify-content: center; gap: 10px; }
.sp-category-toggle i { font-size: 10px; transition: transform .25s cubic-bezier(.22,1,.36,1); }
.sp-category-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
@keyframes sp-category-reveal { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.sp-category-tile-link { position: relative; height: 100%; display: block; overflow: hidden; color: #fff !important; }
.sp-category-art { position: absolute; inset: 0; overflow: hidden; background: linear-gradient(135deg, #dcd9fb, #edf0fa); }
.sp-category-art img { width: 100%; height: 100%; object-fit: cover; }
.sp-category-art-fallback { background: linear-gradient(135deg, #c9c5f5 0%, #ecebfa 52%, #dfe8ee 100%); }
.sp-category-tile-link::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(25,27,34,.06), rgba(25,27,34,.84)); }
.sp-category-art { transition: transform .5s cubic-bezier(.22,1,.36,1), filter .5s ease; }
.sp-category-tile-link::after { transition: background .35s ease; }
.sp-category-tile:hover .sp-category-art { transform: scale(1.025); filter: saturate(.92); }
.sp-category-tile:hover .sp-category-tile-link::after { background: linear-gradient(180deg, rgba(25,27,34,.01), rgba(25,27,34,.78)); }
.sp-category-copy { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; align-items: flex-start; padding: 23px; }
.sp-category-index { margin-bottom: 8px; color: var(--sp-yellow); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.sp-category-copy strong { max-width: 410px; margin-bottom: 8px; font-family: Georgia, serif; font-size: 23px; line-height: 1.12; }
.sp-category-copy > span:not(.sp-category-index) { display: none; max-width: 520px; color: rgba(255,255,255,.8); font-size: 13px; line-height: 1.5; }
.sp-category-copy em { margin-top: 11px; font-size: 12px; font-style: normal; font-weight: 700; }

/* Featured */
.sp-section-featured { background: #fff; }
.sp-featured-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.sp-featured-item { min-width: 0; }
.sp-featured-course { height: 100%; display: flex; flex-direction: column; border: 1px solid var(--sp-border); background: #fff; box-shadow: 0 0 0 rgba(29,25,72,0); transform: translateY(0); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.sp-featured-course:hover { border-color: #cac7ec; box-shadow: 0 16px 34px rgba(29,25,72,.1); transform: translateY(-4px); }
.sp-featured-media { position: relative; aspect-ratio: 16/10; display: block; overflow: hidden; background: var(--sp-sage); }
.sp-featured-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.22,1,.36,1); }
.sp-featured-course:hover .sp-featured-media img { transform: scale(1.025); }
.sp-featured-media > span { position: absolute; left: 15px; bottom: 15px; padding: 7px 10px; background: var(--sp-yellow); color: var(--sp-ink); border-radius: 4px; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.sp-featured-copy { flex: 1; display: flex; flex-direction: column; padding: 22px; }
.sp-featured-type { margin-bottom: 10px; color: var(--sp-blue); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.sp-featured-copy h3 { margin-bottom: 11px; font-size: 23px; }
.sp-featured-copy h3 a:hover { color: var(--sp-blue); }
.sp-featured-copy > p { flex: 1; margin-bottom: 20px; color: var(--sp-muted); font-size: 13px; line-height: 1.6; }
.sp-featured-bottom { display: flex; justify-content: space-between; align-items: end; gap: 15px; }
.sp-price { display: flex; flex-direction: column; }
.sp-price small { color: var(--sp-muted); font-size: 12px; text-decoration: line-through; }
.sp-price strong { color: var(--sp-ink); font-family: Georgia, serif; font-size: 23px; line-height: 1; }
.sp-featured-bottom > a { color: var(--sp-blue); font-size: 12px; font-weight: 700; }

/* Goal collections */
.sp-section-goals { background: var(--sp-cream); }
.sp-goal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.sp-goal-card { position: relative; min-height: 350px; display: flex; flex-direction: column; justify-content: flex-end; padding: 27px; overflow: hidden; background: linear-gradient(135deg, #34304d, #1d193f); color: #fff !important; transform: translateY(0); transition: transform .25s ease, box-shadow .25s ease; }
.sp-goal-card:hover { box-shadow: 0 16px 34px rgba(29,25,72,.14); transform: translateY(-4px); }
.sp-goal-card-image { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.22,1,.36,1), filter .5s ease; }
.sp-goal-card:hover .sp-goal-card-image { transform: scale(1.025); filter: saturate(.92); }
.sp-goal-card::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(20,22,27,.05), rgba(20,22,27,.86)); }
.sp-goal-card > :not(.sp-goal-card-image) { position: relative; z-index: 2; }
.sp-goal-card > span { margin-bottom: 10px; color: var(--sp-yellow); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.sp-goal-card strong { max-width: 460px; font-family: Georgia, serif; font-size: 27px; line-height: 1.1; }
.sp-goal-card em { margin-top: 18px; font-size: 12px; font-style: normal; font-weight: 700; }

/* Story */
.sp-story-section { padding: 92px 0; background: var(--sp-white); }
.sp-story-layout { display: grid; grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr); align-items: center; gap: 85px; }
.sp-story-image { position: relative; min-height: 560px; }
.sp-story-image > img { width: calc(100% - 45px); height: 560px; object-fit: cover; }
.sp-story-note { position: absolute; right: 0; bottom: 38px; width: 275px; padding: 24px; background: #fff; color: var(--sp-ink); border: 1px solid var(--sp-border); box-shadow: var(--sp-shadow); }
.sp-story-note strong { display: block; margin-bottom: 7px; font-family: Georgia, serif; font-size: 24px; }
.sp-story-note span { font-size: 13px; line-height: 1.5; }
.sp-story-copy h2 { margin-bottom: 20px; font-size: clamp(36px, 3.4vw, 50px); }
.sp-story-copy > p { max-width: 610px; color: var(--sp-muted); }
.sp-step-list { margin: 36px 0; padding: 0; list-style: none; }
.sp-step-list li { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 21px 0; border-top: 1px solid var(--sp-border); }
.sp-step-list li:last-child { border-bottom: 1px solid var(--sp-border); }
.sp-step-list li > span { color: var(--sp-coral); font-family: Georgia, serif; font-size: 25px; font-weight: 700; }
.sp-step-list strong { display: block; margin-bottom: 4px; font-family: Georgia, serif; font-size: 21px; }
.sp-step-list p { margin: 0; color: var(--sp-muted); font-size: 14px; }

/* Business, FAQ, contact */
.sp-business-banner { padding: 72px 0; background: var(--sp-ink); color: #fff; }
.sp-business-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(240px, .65fr) auto; align-items: center; gap: 55px; }
.sp-business-layout h2 { max-width: 610px; margin-bottom: 14px; color: #fff !important; font-size: 42px; }
.sp-business-layout p { max-width: 650px; margin: 0; color: rgba(255,255,255,.73); }
.sp-business-points { display: flex; flex-direction: column; gap: 12px; }
.sp-business-points span { display: flex; gap: 10px; font-size: 13px; }
.sp-business-points i { color: var(--sp-yellow); }
.sp-faq-section { background: var(--sp-cream); }
.sp-faq-layout { display: grid; grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr); gap: 90px; }
.sp-faq-intro h2 { margin-bottom: 20px; font-size: 46px; }
.sp-faq-intro p { color: var(--sp-muted); }
.sp-faq-item { border-top: 1px solid var(--sp-border); }
.sp-faq-item:last-child { border-bottom: 1px solid var(--sp-border); }
.sp-faq-question { width: 100%; display: flex; justify-content: space-between; align-items: flex-start; gap: 28px; padding: 24px 0; border: 0; background: transparent; color: var(--sp-ink); text-align: left; cursor: pointer; font-family: Georgia, serif; font-size: 22px; font-weight: 700; line-height: 1.25; }
.sp-faq-question:focus { outline: 0; }
.sp-faq-question:focus-visible { outline: 2px solid rgba(98,86,232,.34); outline-offset: -3px; }
.sp-faq-question > span { flex: 1; }
.sp-faq-icon { position: relative; width: 32px; height: 32px; flex: 0 0 32px; display: grid; place-items: center; margin-top: -6px; border: 1px solid var(--sp-ink); border-radius: 50%; transition: background-color .24s ease, color .24s ease, transform .3s cubic-bezier(.22,1,.36,1); }
.sp-faq-icon::before { content: "+"; font-family: Inter, sans-serif; font-size: 18px; font-style: normal; font-weight: 600; line-height: 1; }
.sp-faq-item.is-open .sp-faq-icon { background: var(--sp-ink); color: #fff; transform: rotate(180deg); }
.sp-faq-item.is-open .sp-faq-icon::before { content: "−"; }
.sp-faq-answer { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .34s cubic-bezier(.22,1,.36,1), opacity .24s ease; }
.sp-faq-answer > div { min-height: 0; overflow: hidden; }
.sp-faq-answer p { max-width: 720px; margin: 0 0 25px; color: var(--sp-muted); }
.sp-faq-item.is-open .sp-faq-answer { grid-template-rows: 1fr; opacity: 1; }
.sp-contact-section { padding: 100px 0; background: var(--sp-blue); color: #fff; }
.sp-contact-layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); align-items: start; gap: 85px; }
.sp-contact-intro h2 { margin-bottom: 20px; color: #fff !important; font-size: 48px; }
.sp-contact-intro > p { color: rgba(255,255,255,.8); font-size: 17px; }
.sp-contact-prompt { display: flex; align-items: center; gap: 15px; margin-top: 34px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.82); }
.sp-contact-prompt i { color: var(--sp-yellow); font-size: 24px; }
.sp-contact-form { padding: 34px; background: #fff; color: var(--sp-ink); box-shadow: var(--sp-shadow); }
.sp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sp-site .form-group { margin-bottom: 18px; }
.sp-site .form-group label { display: block; margin-bottom: 7px; color: var(--sp-ink); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.sp-site .form-control { min-height: 48px; padding: 12px 14px; border: 1px solid var(--sp-border); border-radius: 5px; background: #fff; color: var(--sp-ink); font-size: 14px; }
.sp-site textarea.form-control { min-height: 110px; resize: vertical; }
.sp-site .form-control:focus { border-color: var(--sp-blue); box-shadow: 0 0 0 3px rgba(98,86,232,.12); }
.sp-site .sl-form-consent { display: grid; grid-template-columns: 20px minmax(0, 1fr); align-items: start; gap: 11px; margin: 4px 0 18px; color: var(--sp-muted); font-size: 11px; line-height: 20px; }
.sp-site .sl-form-consent input[type="checkbox"] { width: 20px !important; min-width: 20px !important; max-width: 20px !important; height: 20px !important; min-height: 20px !important; max-height: 20px !important; margin: 0 !important; padding: 0 !important; align-self: start; accent-color: var(--sp-blue); }
.sp-site .sl-form-consent > span { display: block; min-width: 0; margin: 0; padding: 0; line-height: 20px; }
.sp-site .sl-form-consent a { color: var(--sp-blue); text-decoration: underline; }

/* Library */
.sp-library-page { padding: 56px 0 110px; background: var(--sp-cream); }
.sp-library-hero { padding-bottom: 55px; }
.sp-breadcrumbs { display: flex; align-items: center; gap: 10px; margin-bottom: 38px; color: var(--sp-muted); font-size: 12px; }
.sp-breadcrumbs i { font-size: 8px; }
.sp-library-hero-copy { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 70px; margin-bottom: 33px; }
.sp-library-hero h1 { margin: 0; font-size: clamp(52px, 6vw, 82px); }
.sp-library-hero-copy p { margin: 0 0 8px; color: var(--sp-muted); font-size: 17px; }
.sp-library-search { height: 72px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto auto; align-items: center; background: #fff; border: 1px solid var(--sp-border); box-shadow: 0 12px 30px rgba(32,36,44,.06); transition: border-color .22s ease, box-shadow .22s ease; }
.sp-library-search:hover { border-color: #c7c4e7; box-shadow: 0 14px 34px rgba(32,36,44,.08); }
.sp-library-search:focus-within { border-color: var(--sp-blue); box-shadow: 0 0 0 3px rgba(98,86,232,.12), 0 14px 34px rgba(32,36,44,.08); }
.sp-library-search i { margin-left: 23px; color: var(--sp-blue); }
.sp-library-search input { height: 70px; padding: 0 18px; border: 0; outline: 0; font-size: 15px; }
.sp-site .sp-library-search input:focus,
.sp-site .sp-library-search input:focus-visible { outline: 0; box-shadow: none; }
.sp-library-search .sp-library-search-clear { width: 42px; height: 42px; align-self: center; padding: 0; border: 0; border-radius: 50%; background: transparent; color: var(--sp-muted); transition: background-color .18s ease, color .18s ease; }
.sp-library-search .sp-library-search-clear i { margin: 0; color: inherit; font-size: 12px; }
.sp-library-search .sp-library-search-clear:hover { background: var(--sp-cream); color: var(--sp-ink); }
.sp-library-search .sp-library-search-submit { align-self: stretch; padding: 0 27px; border: 0; background: var(--sp-blue); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; transition: background-color .22s ease; }
.sp-library-search .sp-library-search-submit:hover { background: var(--sp-plum); }
.sp-library-search-status { min-height: 20px; margin: 11px 0 0; color: var(--sp-muted); font-size: 11px; }
.sp-library-search-status.is-loading { color: var(--sp-blue); }
.sl-catalog-filter-toggle { display: none; }
.sp-library-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); align-items: start; gap: 42px; }
.sp-library-sidebar { position: static; top: auto; align-self: start; padding: 25px 0; border-top: 3px solid var(--sp-ink); border-bottom: 1px solid var(--sp-border); }
.sp-sidebar-head h2 { margin-bottom: 22px; font-size: 29px; }
.sp-category-all { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 14px; padding: 12px; background: var(--sp-yellow); font-size: 12px; font-weight: 700; }
.sp-library-sidebar .oca-category-menu-list { margin: 0; padding: 0; list-style: none; }
.sp-library-sidebar .oca-category-menu-item { border-top: 1px solid var(--sp-border); }
.sp-library-sidebar .oca-category-menu-link { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 12px 8px 12px 3px; color: var(--sp-ink-soft); font-size: 12px; font-weight: 500; line-height: 1.35; transition: padding-left .2s ease, background-color .2s ease, color .2s ease; }
.sp-library-sidebar .oca-category-menu-link:hover { padding-left: 9px; background: rgba(98,86,232,.06); color: var(--sp-blue); }
.sp-library-sidebar .oca-category-menu-item.is-active .oca-category-menu-link { color: var(--sp-blue); font-weight: 700; }
.sp-library-sidebar .oca-category-menu-link i { font-size: 9px; }
.sp-results-head { display: flex; justify-content: space-between; align-items: end; gap: 35px; margin-bottom: 26px; padding-bottom: 18px; border-bottom: 1px solid var(--sp-border); }
.sp-results-head h2 { margin: 0; font-size: 38px; }
.sp-results-head p { max-width: 440px; margin: 0; color: var(--sp-muted); font-size: 13px; }
.sp-course-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; }
.sp-course-card { min-width: 0; display: flex; flex-direction: column; border: 1px solid var(--sp-border); background: #fff; box-shadow: 0 0 0 rgba(29,25,72,0); transform: translateY(0); transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease, border-color .25s ease; }
.sp-course-card-media { position: relative; aspect-ratio: 16/9; display: block; overflow: hidden; }
.sp-course-card-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: transform .5s cubic-bezier(.22,1,.36,1), filter .35s ease; }
.sp-course-badge { position: absolute; left: 13px; bottom: 13px; padding: 7px 10px; border-radius: 4px; background: var(--sp-yellow); color: var(--sp-ink); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.sp-course-card-content { flex: 1; display: flex; flex-direction: column; padding: 22px; }
.sp-course-card-kicker { margin-bottom: 8px; color: var(--sp-blue); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.sp-course-card h2 { margin-bottom: 10px; font-size: 25px; }
.sp-course-card h2 a { transition: color .2s ease; }
.sp-course-card h2 a:hover { color: var(--sp-blue); }
.sp-course-card-content > p,
.sp-course-card-summary { flex: 1; margin-bottom: 17px; color: var(--sp-muted); font-size: 13px; line-height: 1.6; }
.sp-course-card-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; color: var(--sp-muted); font-size: 11px; }
.sp-course-card-meta i { color: var(--sp-coral); }
.sp-course-card-footer { display: flex; justify-content: space-between; align-items: end; gap: 15px; padding-top: 16px; border-top: 1px solid var(--sp-border); }
.sp-round-link { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--sp-blue); color: #fff !important; transition: background-color .22s ease, transform .22s cubic-bezier(.22,1,.36,1); }
@media (hover: hover) {
    .sp-course-card:hover { border-color: #c9c5ee; box-shadow: 0 15px 34px rgba(29,25,72,.1); transform: translateY(-3px); }
    .sp-course-card:hover .sp-course-card-media img { transform: scale(1.025); filter: saturate(.94); }
    .sp-course-card:hover .sp-round-link { background: var(--sp-plum); transform: translateX(2px); }
}
.sp-course-grid > .sp-pagination { grid-column: 1 / -1; }
.sp-pagination { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 17px; padding-top: 25px; border-top: 1px solid var(--sp-border); }
.sp-pagination-pages { display: flex; flex-wrap: wrap; gap: 7px; }
.sp-pagination-pages a,
.sp-pagination-pages span { min-width: 38px; height: 38px; display: grid; place-items: center; padding: 0 8px; border: 1px solid var(--sp-border); background: #fff; color: var(--sp-ink); font-size: 12px; transition: border-color .18s ease, background-color .18s ease, color .18s ease, transform .18s ease; }
.sp-pagination-pages a:hover { border-color: var(--sp-blue); background: rgba(98,86,232,.06); color: var(--sp-blue); transform: translateY(-1px); }
.sp-pagination-pages span { background: var(--sp-ink); color: #fff; }
.sp-pagination-pages .nav_ext { border-color: transparent; background: transparent; color: var(--sp-muted); }
.sp-pagination-arrows { display: flex; gap: 8px; font-size: 12px; font-weight: 600; }
.sp-pagination-arrows > a,
.sp-pagination-arrows > span { min-height: 38px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 13px; border: 1px solid var(--sp-border); background: #fff; color: var(--sp-ink); white-space: nowrap; transition: border-color .18s ease, background-color .18s ease, color .18s ease; }
.sp-pagination-arrows > a:hover { border-color: var(--sp-blue); background: var(--sp-blue); color: #fff; }
.sp-pagination-arrows > span { color: var(--sp-muted); opacity: .52; }
.sp-course-empty { padding: 44px 30px; border: 1px solid var(--sp-border); background: #fff; text-align: center; }
.sp-course-empty i { display: block; margin-bottom: 13px; color: var(--sp-blue); font-size: 24px; }
.sp-course-empty strong { display: block; margin-bottom: 5px; font-family: Georgia, serif; font-size: 25px; }
.sp-course-empty p { margin: 0; color: var(--sp-muted); font-size: 13px; }

/* Service pages */
.sp-service-page { background: var(--sp-white); }
.sp-service-page .sp-section-heading h2 { font-size: clamp(29px, 2.7vw, 41px); }
.sp-service-hero { padding: 48px 0 80px; background: var(--sp-cream); }
.sp-service-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(370px, .78fr); align-items: center; gap: 80px; }
.sp-service-hero-copy h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(47px, 5.35vw, 75px); }
.sp-service-hero-copy > p { max-width: 650px; margin-bottom: 30px; color: var(--sp-muted); font-size: 18px; }
.sp-service-hero-actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.sp-service-hero-visual { position: relative; min-height: 580px; }
.sp-service-hero-visual::after { content: ""; position: absolute; z-index: 1; inset: 0 45px 0 0; height: 580px; pointer-events: none; background: linear-gradient(180deg, rgba(24,22,54,.02), rgba(24,22,54,.16)); }
.sp-service-hero-visual > img { width: calc(100% - 45px); height: 580px; object-fit: cover; }
.sp-service-visual-card { position: absolute; z-index: 2; right: 0; bottom: 38px; width: 270px; padding: 25px; background: var(--sp-yellow); box-shadow: var(--sp-shadow); }
.sp-service-visual-card span { display: block; margin-bottom: 7px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.sp-service-visual-card strong { display: block; font-family: Georgia, serif; font-size: 19px; line-height: 1.2; }
.sp-service-benefit-band { background: var(--sp-blue); color: #fff; }
.sp-service-benefits { min-height: 125px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.sp-service-benefits > div,
.sp-service-benefits > li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: center; padding: 24px 32px; border-right: 1px solid rgba(255,255,255,.2); list-style: none; }
.sp-service-benefits > :last-child { border-right: 0; }
.sp-service-benefits i { color: var(--sp-yellow); font-size: 25px; }
.sp-service-benefits span { color: rgba(255,255,255,.75); font-size: 12px; line-height: 1.45; }
.sp-service-benefits strong { display: block; color: #fff; font-size: 14px; }
.sp-service-content-section { padding: 105px 0; }
.sp-service-content-layout { display: grid; grid-template-columns: minmax(270px, .48fr) minmax(0, 1fr); align-items: start; gap: 90px; }
.sp-service-content-aside { position: sticky; top: 90px; }
.sp-service-content-aside h2 { font-size: 39px; }
.sp-service-content-aside p { color: var(--sp-muted); font-size: 14px; }
.sp-service-prose { max-width: 780px; color: var(--sp-ink-soft); }
.sp-service-prose > .oca-eyebrow { gap: .6rem; padding: .52rem .94rem; color: var(--sp-blue); border-color: #cbc7f6; background: var(--sp-sage); font-size: .86rem; }
.sp-service-prose > .oca-eyebrow i { color: inherit; }
.sp-service-prose h2 { margin: 38px 0 15px; font-size: 29px; }
.sp-service-prose h2:first-child { margin-top: 0; }
.sp-service-prose h3 { margin: 30px 0 12px; font-size: 22px; }
.sp-service-proof-section { padding: 105px 0; background: var(--sp-sage); }
.sp-service-proof-content .oca-proof-grid,
.sp-service-proof-content .ffa-service-card-grid,
.sp-service-proof-content .ffa-service-step-grid,
.sp-service-proof-content .ffa-service-faq-grid,
.sp-service-proof-content .ffa-service-contact-grid,
.sp-service-proof-content { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 17px; }
.sp-service-proof-content > div,
.sp-service-proof-content .ffa-service-card,
.sp-service-proof-content .ffa-service-step,
.sp-service-proof-content .ffa-service-faq,
.sp-service-proof-content .ffa-service-contact-card,
.sp-service-proof-content .oca-proof-card { padding: 30px; background: #fff; }
.sp-service-proof-content > .oca-proof-grid,
.sp-service-proof-content > .ffa-service-card-grid,
.sp-service-proof-content > .ffa-service-step-grid,
.sp-service-proof-content > .ffa-service-faq-grid,
.sp-service-proof-content > .ffa-service-contact-grid { grid-column: 1 / -1; width: 100%; padding: 0; background: transparent; }
.sp-service-proof-content .ffa-service-step { min-width: 0; min-height: 270px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--sp-border); border-radius: 14px; background: #fff; }
.sp-service-proof-content .ffa-service-step-number { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 50%; background: var(--sp-sage); color: var(--sp-blue); font-size: 12px; font-weight: 800; }
.sp-service-proof-content .ffa-service-step h3 { margin: 0 0 12px; font-size: 21px; line-height: 1.2; }
.sp-service-proof-content .ffa-service-step p { margin: 0; color: var(--sp-muted); font-size: 13px; line-height: 1.65; }
.sp-service-proof-content i { color: var(--sp-coral); font-size: 25px; }
.sp-service-proof-content .ffa-service-card > i,
.sp-service-proof-content .ffa-service-contact-card > i,
.sp-service-proof-content .oca-proof-card > i { display: block; margin-bottom: 18px; }
.sp-service-proof-content .fa-laptop-house::before { content: "\f109"; }
.sp-service-testimonial-section { padding: 100px 0; background: var(--sp-plum); color: #fff; }
.sp-service-testimonials { color: #fff; }
.sp-service-testimonials h2,
.sp-service-testimonials h3,
.sp-service-testimonials strong { color: #fff !important; }
.sp-service-testimonials h2 { font-size: clamp(26px, 2.1vw, 34px); }
.sp-service-testimonials .ffa-service-band { padding: 38px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); }
.sp-service-testimonials .ffa-service-step-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.sp-service-testimonials .ffa-service-step { padding: 25px; background: rgba(255,255,255,.07); }
.sp-service-steps-section { padding: 105px 0; background: var(--sp-white); }
.sp-service-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; }
.sp-service-steps li { padding: 30px 35px; border-top: 3px solid var(--sp-ink); border-right: 1px solid var(--sp-border); }
.sp-service-steps li:last-child { border-right: 0; }
.sp-service-steps li > span { display: block; margin-bottom: 30px; color: var(--sp-coral); font-family: Georgia, serif; font-size: 35px; font-weight: 700; }
.sp-service-steps strong { display: block; margin-bottom: 9px; font-family: Georgia, serif; font-size: 21px; }
.sp-service-steps p { margin: 0; color: var(--sp-muted); font-size: 13px; }
.sp-service-form-section { padding: 105px 0; background: var(--sp-blue); color: #fff; }
.sp-service-form-layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); align-items: start; gap: 85px; }
.sp-service-form-layout h2 { color: #fff !important; font-size: 45px; }
.sp-service-form-layout > div > p { color: rgba(255,255,255,.76); }
.sp-service-form-layout > div > ul { margin: 25px 0 0; padding: 0; list-style: none; }
.sp-service-form-layout > div > ul li { display: flex; gap: 9px; margin-top: 10px; color: rgba(255,255,255,.82); font-size: 13px; }
.sp-service-form-layout > div > ul i { color: var(--sp-yellow); }
.sp-service-form { padding: 34px; background: #fff; color: var(--sp-ink); }

/* Course page */
.sp-course-page { background: var(--sp-white); }
.sp-course-title-section { padding: 46px 0 56px; background: var(--sp-cream); }
.sp-course-title-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); align-items: end; gap: 58px; }
.sp-course-title-grid h1 { max-width: 900px; margin: 0; font-size: clamp(27px, 2.82vw, 38px); line-height: 1.04; }
.sp-course-title-summary p { margin: 0 0 8px; color: var(--sp-muted); font-size: 17px; }
.sp-course-decision-section { padding: 0 0 70px; background: var(--sp-cream); }
.sp-course-decision-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(340px, .55fr); align-items: stretch; }
.sp-course-visual { position: relative; min-height: 570px; overflow: hidden; background: var(--sp-sage); }
.sp-course-visual img { width: 100%; height: 100%; min-height: 570px; object-fit: cover; }
.sp-course-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(22,24,30,.55)); }
.sp-course-visual-label { position: absolute; z-index: 2; left: 25px; bottom: 23px; padding: 8px 12px; border-radius: 4px; background: var(--sp-yellow); color: var(--sp-ink); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.sp-enrol-card { display: flex; flex-direction: column; padding: 42px 37px; background: var(--sp-white); border: 1px solid var(--sp-border); border-left: 0; }
.sp-enrol-card h2 { margin-bottom: 16px; font-size: 37px; }
.sp-enrol-card > p { margin-bottom: 24px; color: var(--sp-muted); font-size: 14px; }
.sp-enrol-price { display: flex; flex-direction: column; margin-bottom: 25px; padding: 20px; background: var(--sp-cream); border-left: 4px solid var(--sp-coral); }
.sp-enrol-price small { color: var(--sp-muted); text-decoration: line-through; }
.sp-enrol-price strong { font-family: Georgia, serif; font-size: 38px; line-height: 1.05; }
.sp-enrol-price span { margin-top: 3px; color: var(--sp-blue); font-size: 12px; font-weight: 600; }
.sp-enrol-actions { display: flex; flex-direction: column; gap: 10px; }
.sp-enrol-actions .oca-cart-status { color: var(--sp-blue); font-size: 12px; }
.sp-enrol-checks { margin: auto 0 0; padding: 26px 0 0; list-style: none; }
.sp-enrol-checks li { display: flex; gap: 9px; margin-top: 9px; color: var(--sp-muted); font-size: 12px; line-height: 1.4; }
.sp-enrol-checks i { color: var(--sp-coral); }
.sp-course-facts { background: var(--sp-blue); color: #fff; }
.sp-course-facts-grid { min-height: 125px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sp-course-facts-grid > div { display: grid; grid-template-columns: 40px 1fr; grid-template-rows: auto auto; align-content: center; padding: 20px 28px; border-right: 1px solid rgba(255,255,255,.2); }
.sp-course-facts-grid > div:last-child { border-right: 0; }
.sp-course-facts-grid i { grid-row: 1 / span 2; align-self: center; color: var(--sp-yellow); font-size: 23px; }
.sp-course-facts-grid span { color: rgba(255,255,255,.68); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.sp-course-facts-grid strong { color: #fff; font-size: 15px; line-height: 1.3; }
.sp-course-anchor-nav { position: sticky; z-index: 20; top: 0; background: var(--sp-white); border-bottom: 1px solid var(--sp-border); box-shadow: 0 8px 20px rgba(32,36,44,.05); }
.sp-course-anchor-nav .container { display: flex; gap: 28px; overflow-x: auto; scrollbar-width: none; }
.sp-course-anchor-nav a { min-height: 58px; display: inline-flex; align-items: center; border-bottom: 2px solid transparent; color: var(--sp-muted); font-size: 12px; font-weight: 600; white-space: nowrap; }
.sp-course-anchor-nav a:hover { border-color: var(--sp-blue); color: var(--sp-blue); }
.sp-course-content-section { padding: 105px 0; }
.sp-course-topics-section { padding: 82px 0; }
.sp-course-topics-section { background: var(--sp-cream); }
.sp-course-reading-layout { display: grid; grid-template-columns: minmax(260px, .45fr) minmax(0, 1.1fr); align-items: start; gap: 85px; }
.sp-reading-heading { position: sticky; top: 85px; }
.sp-reading-heading h2 { font-size: 46px; }
.sp-reading-heading p { color: var(--sp-muted); font-size: 14px; }
.sp-course-topics-section .sp-course-reading-layout { display: block; }
.sp-course-topics-section .sp-reading-heading { position: static; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); align-items: end; column-gap: 70px; margin-bottom: 38px; }
.sp-course-topics-section .sp-reading-heading .sp-kicker,
.sp-course-topics-section .sp-reading-heading h2 { grid-column: 1; }
.sp-course-topics-section .sp-reading-heading h2 { max-width: 620px; margin-bottom: 0; }
.sp-course-topics-section .sp-reading-heading p { grid-column: 2; grid-row: 1 / span 2; max-width: 420px; margin: 0; }
.sp-course-prose { max-width: 800px; color: var(--sp-ink-soft); font-size: 16px; }
.sp-course-prose h2,
.sp-course-prose h3 { margin-top: 35px; }
.sp-course-prose h2:first-child,
.sp-course-prose h3:first-child { margin-top: 0; }
.sp-course-prose ul { padding-left: 22px; }
.sp-module-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.sp-module-list .oca-module-item { min-height: 205px; display: grid; grid-template-columns: 52px minmax(0, 1fr); grid-template-rows: auto 1fr; align-content: start; gap: 12px 16px; padding: 23px; border: 1px solid var(--sp-border); border-radius: 14px; background: var(--sp-white); }
.sp-module-list .oca-module-item:last-child { border-bottom: 1px solid var(--sp-border); }
.sp-module-list .oca-module-item > span { width: 52px; height: 52px; border-radius: 12px; background: var(--sp-blue); color: #fff; font-family: Inter, Arial, sans-serif; font-size: 15px; font-weight: 800; }
.sp-module-list .oca-module-item > strong { align-self: center; color: var(--sp-ink); font-size: 18px; line-height: 1.25; }
.sp-module-list .oca-module-item > p { grid-column: 2; margin: 0; color: var(--sp-muted); font-size: 12px; line-height: 1.55; }
.sp-course-outcome-section { padding: 105px 0; background: var(--sp-white); }
.sp-outcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sp-outcome-copy { padding: 48px; background: var(--sp-plum); color: #fff; }
.sp-outcome-copy h2 { margin-bottom: 27px; color: #fff !important; font-size: 47px; }
.sp-outcome-list { margin: 0; padding: 0; list-style: none; }
.sp-outcome-list li { display: grid; grid-template-columns: 18px minmax(0, 1fr); align-items: start; gap: 10px; margin: 0; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.82); font-size: 13px; }
.sp-outcome-list li::before { content: none; }
.sp-outcome-list li > i { width: 18px; margin-top: 3px; color: var(--sp-yellow); text-align: center; }
.sp-support-panel { padding: 48px; background: var(--sp-sage); }
.sp-support-panel h2 { margin-bottom: 27px; font-size: 43px; }
.sp-support-list { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.sp-support-list > div { display: grid; grid-template-columns: 36px 1fr; gap: 10px; }
.sp-support-list i { color: var(--sp-blue); font-size: 20px; }
.sp-support-list span { color: var(--sp-muted); font-size: 12px; line-height: 1.5; }
.sp-support-list strong { display: block; margin-bottom: 4px; color: var(--sp-ink); font-size: 13px; }
.sp-included-section { padding: 76px 0; background: var(--sp-blue); color: #fff; }
.sp-included-layout { display: grid; grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr); align-items: start; gap: 82px; }
.sp-included-layout h2 { max-width: 520px; margin-bottom: 15px; color: #fff !important; font-size: 43px; }
.sp-included-layout p { max-width: 520px; margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }
.sp-included-layout ul { display: grid; grid-template-columns: 1fr; gap: 0; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.18); list-style: none; }
.sp-included-layout li { display: grid; grid-template-columns: 26px minmax(0, 1fr); align-items: start; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.88); font-size: 13px; line-height: 1.5; }
.sp-included-layout i { width: 24px; height: 24px; display: grid; place-items: center; margin-top: -2px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--sp-yellow); font-size: 10px; }
.sp-course-career-section { padding: 105px 0; background: var(--sp-cream); }
.sp-career-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 50px; }
.sp-career-layout h2 { font-size: 50px; }
.sp-career-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.sp-career-tags span,
.sp-career-tags a,
.sp-career-tags li { display: inline-flex; padding: 10px 14px; border: 1px solid var(--sp-ink); border-radius: 999px; color: var(--sp-ink); font-size: 12px; list-style: none; }
.sp-career-note { padding: 35px; background: var(--sp-yellow); }
.sp-career-note > i { margin-bottom: 22px; font-size: 32px; }
.sp-career-note > span { display: block; margin-bottom: 8px; font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.sp-career-note > strong { display: block; margin-bottom: 15px; font-family: Georgia, serif; font-size: 24px; line-height: 1.2; }
.sp-career-note p { margin: 0; font-size: 12px; }
.sp-course-faq-section { padding: 105px 0; background: #fff; }
.sp-course-faq-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 18px; counter-reset: sp-course-faq; }
.sp-course-faq-grid > div { width: auto; max-width: none; min-width: 0; margin: 0 !important; padding: 0; background: transparent; counter-increment: sp-course-faq; }
.sp-course-faq-grid .oca-faq-card { min-height: 245px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--sp-border); border-radius: 14px; background: var(--sp-cream); box-shadow: none; }
.sp-course-faq-grid .oca-faq-card::before { content: counter(sp-course-faq, decimal-leading-zero); display: block; margin-bottom: 24px; color: var(--sp-blue); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.sp-course-faq-grid h3 { margin-bottom: 14px; font-size: 21px; line-height: 1.2; }
.sp-course-faq-grid p { margin: 0; color: var(--sp-muted); font-size: 13px; line-height: 1.65; }
.sp-course-seo-section { padding: 80px 0; background: var(--sp-cream); }
.sp-course-seo-section .sp-course-prose { margin: 0 auto; }
.sp-course-lead-section { padding: 105px 0; background: var(--sp-plum); color: #fff; }
.sp-course-lead-layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); align-items: start; gap: 85px; }
.sp-course-lead-layout h2 { color: #fff !important; font-size: 53px; }
.sp-course-lead-layout > div > p { color: rgba(255,255,255,.76); }
.sp-course-lead-layout > div > ul { margin: 25px 0 0; padding: 0; list-style: none; }
.sp-course-lead-layout > div > li,
.sp-course-lead-layout > div > ul li { display: flex; gap: 9px; margin-top: 11px; color: rgba(255,255,255,.82); font-size: 13px; }
.sp-course-lead-layout > div > ul i { color: var(--sp-yellow); }
.sp-course-lead-form { padding: 34px; background: #fff; color: var(--sp-ink); }
.sp-mobile-enrol { display: none; }

/* Cart and static pages */
.sp-static-hero { padding: 48px 0 65px; background: var(--sp-cream); }
.sp-static-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 70px; }
.sp-static-hero h1 { margin: 0; font-size: clamp(52px, 6vw, 80px); }
.sp-static-hero-grid > p { margin: 0 0 8px; color: var(--sp-muted); font-size: 17px; }

.sp-cart-hero { padding: 34px 0 46px; background: var(--sp-cream); }
.sp-cart-hero .sp-breadcrumbs { margin-bottom: 32px; }
.sp-cart-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); align-items: end; gap: 56px; }
.sp-cart-hero h1 { max-width: 790px; margin: 0; font-size: clamp(42px, 4.4vw, 62px); line-height: 1.02; }
.sp-cart-hero-grid > p { max-width: 540px; margin: 0 0 4px; color: var(--sp-muted); font-size: 16px; line-height: 1.65; }
.sp-cart-section { padding: 64px 0 96px; background: #fff; }
.sp-cart-empty { max-width: 720px; margin: 0 auto; padding: 56px 36px; border: 1px solid var(--sp-border); border-radius: 16px; background: var(--sp-cream); box-shadow: none; text-align: center; }
.sp-cart-empty > i { width: 56px; height: 56px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 14px; background: var(--sp-sage); color: var(--sp-blue); font-size: 22px; }
.sp-cart-empty h2 { margin-bottom: 10px; color: var(--sp-ink); font-family: Georgia, serif; font-size: 34px; font-weight: 700; letter-spacing: normal; }
.sp-cart-empty p { max-width: 480px; margin: 0 auto 24px; color: var(--sp-muted); font-size: 14px; line-height: 1.65; }
.sp-cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; grid-template-areas: "review summary" "checkout summary"; align-items: start; gap: 36px 40px; }
.sp-cart-review { grid-area: review; min-width: 0; }
.sp-cart-checkout { grid-area: checkout; min-width: 0; }
.sp-cart-section-head { margin-bottom: 20px; }
.sp-cart-section-head h2 { margin: 0; font-size: clamp(28px, 2.5vw, 36px); line-height: 1.12; }
.sp-cart-section-head p { max-width: 700px; margin: 8px 0 0; color: var(--sp-muted); font-size: 14px; line-height: 1.6; }
.sp-cart-items { display: grid; gap: 14px; margin: 0; }
.sp-cart-items .sl-cart-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: start; gap: 20px; padding: 24px; border: 1px solid var(--sp-border); border-radius: 14px; background: #fff; box-shadow: none; }
.sp-cart-items .sl-cart-item:last-child { border-bottom: 1px solid var(--sp-border); }
.sp-cart-page .oca-course-badge { display: inline-flex; padding: 6px 10px; border: 1px solid #cbc7f6; border-radius: 999px; background: var(--sp-sage); color: var(--sp-blue); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.sp-cart-items .sl-cart-item h2 { margin: 12px 0 8px; color: var(--sp-ink); font-family: Georgia, serif; font-size: 22px; font-weight: 700; line-height: 1.25; letter-spacing: normal; }
.sp-cart-items .sl-cart-item h2 a:hover,
.sp-cart-items .sl-cart-item h2 a:focus { color: var(--sp-blue); }
.sp-cart-items .sl-cart-item p { color: var(--sp-muted); font-size: 13px; line-height: 1.5; }
.sp-cart-items .sl-cart-item-meta { gap: 12px; margin-top: 18px; color: var(--sp-muted); font-size: 12px; }
.sp-cart-items .sl-cart-old-price { color: #8b899b; font-size: 13px; }
.sp-cart-items .sl-cart-item-meta strong { color: var(--sp-blue); font-family: Georgia, serif; font-size: 28px; font-weight: 700; }
.sp-cart-items .sl-cart-remove { align-self: start; min-height: 38px; padding: 0 12px; border: 1px solid var(--sp-border); border-radius: 8px; background: #fff; color: var(--sp-muted); font-family: inherit; font-size: 11px; transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease; }
.sp-cart-items .sl-cart-remove:hover,
.sp-cart-items .sl-cart-remove:focus { border-color: var(--sp-blue); background: var(--sp-sage); color: var(--sp-blue); transform: translateY(-1px); }
.sp-cart-form { padding: 30px; border: 1px solid var(--sp-border); border-radius: 14px; background: var(--sp-cream); box-shadow: none; }
.sp-cart-summary { grid-area: summary; position: sticky; top: 100px; padding: 28px; border: 1px solid #d2cef8; border-radius: 14px; background: var(--sp-sage); box-shadow: none; }
.sp-cart-summary h2 { margin: 6px 0 20px; color: var(--sp-ink); font-family: Georgia, serif; font-size: 28px; font-weight: 700; letter-spacing: normal; }
.sp-cart-summary-row { display: flex; justify-content: space-between; gap: 15px; padding: 15px 0; border-top: 1px solid rgba(98,86,232,.18); color: var(--sp-muted); font-size: 13px; }
.sp-cart-summary-row strong { color: var(--sp-ink); font-family: inherit; font-size: 14px; }
.sp-cart-total strong { color: var(--sp-blue); font-family: Georgia, serif; font-size: 30px; font-weight: 700; }
.sp-cart-summary > p { margin: 20px 0; color: var(--sp-muted); font-size: 12px; line-height: 1.55; }
.sp-cart-summary .sp-button-ghost { border-color: var(--sp-border); background: rgba(255,255,255,.52); color: var(--sp-ink); }
.sp-cart-summary .sp-button-ghost:hover,
.sp-cart-summary .sp-button-ghost:focus { border-color: var(--sp-blue); background: #fff; color: var(--sp-blue); }
.sp-static-content-section { padding: 95px 0 115px; background: #fff; }
.sp-static-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); align-items: start; gap: 85px; }
.sp-static-sidebar { position: sticky; top: 90px; }
.sp-static-sidebar-head { padding-bottom: 20px; border-bottom: 3px solid var(--sp-ink); }
.sp-static-sidebar-head h2 { font-size: 29px; }
.sp-static-sidebar nav { display: flex; flex-direction: column; }
.sp-static-sidebar nav a { padding: 11px 2px; border-bottom: 1px solid var(--sp-border); color: var(--sp-muted); font-size: 12px; }
.sp-static-sidebar nav a:hover { color: var(--sp-blue); }
.sp-static-help { margin-top: 25px; padding: 22px; background: var(--sp-sage); }
.sp-static-help strong { font-family: Georgia, serif; font-size: 20px; }
.sp-static-help p { margin: 8px 0; color: var(--sp-muted); font-size: 12px; }
.sp-static-help a { color: var(--sp-blue); font-size: 12px; font-weight: 700; }
.sp-static-main { max-width: 820px; }
.sp-static-prose { color: var(--sp-ink-soft); font-size: 15px; }
.sp-static-prose h2 { margin: 42px 0 16px; font-size: 36px; }
.sp-static-prose h2:first-child { margin-top: 0; }
.sp-static-prose h3 { margin: 30px 0 12px; font-size: 25px; }
.sp-static-prose table { width: 100%; border-collapse: collapse; }
.sp-static-prose th,
.sp-static-prose td { padding: 12px; border: 1px solid var(--sp-border); text-align: left; }
.sp-static-contact-strip { padding: 95px 0; background: var(--sp-plum); color: #fff; }
.sp-static-contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 80px; }
.sp-static-contact-layout h2 { color: #fff !important; font-size: 48px; }
.sp-static-contact-layout > div > p { color: rgba(255,255,255,.72); }
.sp-static-form { padding: 30px; background: #fff; color: var(--sp-ink); }
.sl-form-status { margin-top: 15px; padding: 12px; font-size: 13px; }
.sl-form-status.is-error { background: #fdeae5; color: #9d3825; }
.sl-form-status.is-success { background: #e4f3e8; color: #24643a; }

/* Footer */
.sp-footer { background: var(--sp-ink); color: #fff; }
.sp-footer-main { padding: 58px 0 44px; }
.sp-footer-grid { display: grid; grid-template-columns: 1.15fr .9fr .6fr .6fr; align-items: start; gap: 50px; }
.sp-logo-light { color: #fff !important; }
.sp-logo-light .sp-brand-icon { background: transparent; }
.sp-logo-light .sp-brand-icon img { filter: brightness(0) invert(1); }
.sp-logo-light .sp-brand-name { color: #fff; }
.sp-footer-brand > p { max-width: 300px; margin: 20px 0 0; color: rgba(255,255,255,.56); font-size: 13px; font-weight: 400; line-height: 1.65; }
.sp-footer h3 { margin-bottom: 16px; color: rgba(255,255,255,.48) !important; font-family: Inter, sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.sp-footer-contact .oca-footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; margin: 0; color: rgba(255,255,255,.52); font-size: 12px; font-style: normal; font-weight: 400; line-height: 1.45; }
.sp-footer-contact .oca-footer-contact span { max-width: 245px; }
.sp-footer-contact .oca-footer-contact a { color: rgba(255,255,255,.76); font-weight: 400; transition: color .18s ease; }
.sp-footer-contact .oca-footer-contact a:last-child { color: var(--sp-yellow); }
.sp-footer-contact .oca-footer-contact a:hover { color: #fff; }
.sp-footer-links { display: flex; flex-direction: column; gap: 9px; }
.sp-footer-links a { color: rgba(255,255,255,.64); font-size: 12px; font-weight: 400; transition: color .18s ease, transform .18s ease; }
.sp-footer-links a:hover { color: #fff; transform: translateX(2px); }
.sp-footer-subjects { padding: 32px 0; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.025); }
.sp-footer-subject-head { margin-bottom: 20px; }
.sp-footer-subject-head strong { color: rgba(255,255,255,.5); font-family: Inter, sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.sp-footer-category-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px 25px; margin: 0; padding: 0; list-style: none; }
.sp-footer-category-list a { color: rgba(255,255,255,.5); font-size: 10.5px; font-weight: 400; line-height: 1.4; transition: color .18s ease; }
.sp-footer-category-list a:hover { color: #fff; }
.sp-footer-legal { padding: 28px 0; }
.sp-policy-links { display: flex; flex-wrap: wrap; gap: 11px 22px; margin-bottom: 25px; }
.sp-policy-links a { color: rgba(255,255,255,.52); font-size: 10px; }
.sp-footer-bottom { display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.45); font-size: 11px; }
.sp-footer-bottom a { color: #fff; }

/* Project-native mobile navigation and legacy storefront containment */
.loading-overlay,
.sticky-navbar,
.wishlist-popup,
.minipopup-area,
#scroll-top { display: none !important; }
.mobile-menu-overlay { position: fixed; z-index: 90; inset: 0; background: rgba(18,25,30,.52); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s ease, visibility .18s ease; }
.mobile-menu-container { position: fixed; z-index: 100; top: 0; right: 0; width: min(360px, 88vw); height: 100dvh; padding: 24px; overflow-y: auto; background: var(--sp-ink); color: #fff; transform: translateX(100%); visibility: hidden; transition: transform .22s ease, visibility .22s ease; }
.mobile-menu-wrapper { min-height: 100%; display: flex; flex-direction: column; }
.mobile-menu-close { width: 44px; height: 44px; display: grid; place-items: center; align-self: flex-end; margin-bottom: 22px; padding: 0; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: transparent; color: #fff; }
.mobile-menu { margin: 0; padding: 0; list-style: none; }
.mobile-menu li { border-top: 1px solid rgba(255,255,255,.14); }
.mobile-menu li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.mobile-menu a { min-height: 52px; display: flex; align-items: center; color: rgba(255,255,255,.82) !important; font-size: 14px; font-weight: 600; }
.mobile-menu a[aria-current="page"] { color: #fff !important; }
.sp-menu-open { overflow: hidden; }
.sp-menu-open .mobile-menu-overlay { opacity: 1; visibility: visible; pointer-events: auto; }
.sp-menu-open .mobile-menu-container { transform: translateX(0); visibility: visible; }

/* Lightweight entrance motion: transforms only, with no layout reflow. */
.sp-reveal { opacity: 0; transform: translateY(16px); transition: opacity .48s ease, transform .48s cubic-bezier(.22,1,.36,1); }
.sp-reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1199px) {
    .sp-header-layout { min-height: 78px; grid-template-columns: 46px minmax(0, 1fr) auto; gap: 0 16px; }
    .sp-main-nav { display: none; }
    .sp-menu-button { display: inline-flex; align-items: center; justify-content: center; grid-column: 1; }
    .sp-logo { grid-column: 2; grid-row: 1; justify-self: start; }
    .sp-header-actions { grid-column: 3; grid-row: 1; }
    .sp-hero-inner { grid-template-columns: minmax(0, 1fr) minmax(350px, .72fr); gap: 35px; }
    .sp-story-layout { gap: 50px; }
    .sp-business-layout { grid-template-columns: 1fr auto; }
    .sp-business-points { grid-column: 1; grid-row: 2; }
    .sp-business-layout > .sp-button { grid-column: 2; grid-row: 1 / span 2; }
    .sp-footer-grid { grid-template-columns: 1.1fr .85fr .6fr .6fr; gap: 34px; }
}

@media (max-width: 991px) {
    body.sp-site .container { width: min(100% - 34px, var(--sp-container)); }
    .sp-header-actions .sp-button { display: none; }
    .sp-hero { min-height: 970px; }
    .sp-hero-overlay { background: linear-gradient(180deg, rgba(16,14,38,.18), transparent 68%); }
    .sp-hero-inner { grid-template-columns: 1fr; align-content: center; gap: 22px; padding-top: 45px; padding-bottom: 205px; }
    .sp-hero-copy { max-width: 650px; }
    .sp-hero-visual { width: min(100%, 590px); min-height: 310px; }
    .sp-learning-card { top: 48px; right: 20px; }
    .sp-course-match { grid-template-columns: 1fr 1fr 62px; }
    .sp-match-intro { grid-column: 1 / -1; padding: 14px 22px; }
    .sp-match-intro strong { font-size: 18px; }
    .sp-fact-grid { grid-template-columns: repeat(2, 1fr); padding-block: 18px; }
    .sp-fact-grid > div { min-height: 65px; border-bottom: 1px solid rgba(255,255,255,.18); }
    .sp-fact-grid > div:nth-child(2) { border-right: 0; }
    .sp-fact-grid > div:nth-child(n+3) { border-bottom: 0; }
    .sp-section { padding: 76px 0; }
    .sp-heading-split { grid-template-columns: 1fr; gap: 20px; }
    .sp-category-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sp-category-mosaic.is-expanded { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sp-featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sp-goal-grid { grid-template-columns: 1fr; }
    .sp-story-layout { grid-template-columns: 1fr; }
    .sp-story-image { min-height: 540px; }
    .sp-story-image > img { height: 540px; }
    .sp-business-layout { grid-template-columns: 1fr; }
    .sp-business-points,
    .sp-business-layout > .sp-button { grid-column: auto; grid-row: auto; justify-self: start; }
    .sp-faq-layout { grid-template-columns: 1fr; gap: 45px; }
    .sp-contact-layout { grid-template-columns: 1fr; gap: 45px; }
    .sp-library-hero-copy { grid-template-columns: 1fr; gap: 18px; }
    .sl-catalog-filter-toggle { display: inline-flex; width: 100%; margin-bottom: 25px; }
    .sp-library-layout { grid-template-columns: 1fr; }
    .sp-library-sidebar { position: static; display: none; padding: 20px; background: #fff; border: 1px solid var(--sp-border); }
    .sp-library-sidebar.is-open { display: block; }
    .sp-footer-grid { grid-template-columns: 1fr 1fr; }
    .sp-footer-category-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
    body.sp-site { font-size: 15px; }
    body.sp-site .container { width: min(100% - 30px, var(--sp-container)); }
    .sp-header-layout { grid-template-columns: 46px minmax(0, 1fr) 46px; gap: 0 10px; }
    .sp-header-main { min-height: 74px; }
    .sp-brand-icon { width: 32px; height: 38px; flex-basis: 32px; }
    .sp-brand-icon img { width: 25px; height: 25px; }
    .sp-brand-name { font-size: 15px; }
    .sp-cart-link { width: 44px; height: 44px; }
    .sp-hero { min-height: 1030px; }
    .sp-hero-inner { align-content: start; padding-top: 46px; padding-bottom: 270px; }
    .sp-hero-copy h1 { font-size: clamp(40px, 11vw, 54px); }
    .sp-hero-copy > p { font-size: 16px; }
    .sp-hero-actions { gap: 18px; }
    .sp-hero-visual { min-height: 300px; }
    .sp-learning-card { top: 52px; right: 0; width: calc(100% - 15px); padding: 18px; }
    .sp-visual-chip { min-width: 155px; padding: 10px; }
    .sp-visual-chip-top { left: 0; }
    .sp-visual-chip-bottom { right: 0; }
    .sp-course-match { grid-template-columns: 1fr 54px; }
    .sp-match-intro { grid-column: 1 / -1; }
    .sp-match-field { padding: 13px 17px; }
    .sp-match-field:nth-of-type(3) { border-top: 1px solid var(--sp-border); }
    .sp-match-submit { grid-column: 2; grid-row: 2 / span 2; }
    .sp-fact-grid { grid-template-columns: 1fr 1fr; }
    .sp-fact-grid > div { padding: 12px 14px; }
    .sp-fact-grid > div:first-child { padding-left: 14px; }
    .sp-fact-grid strong { font-size: 24px; }
    .sp-fact-grid span { font-size: 10px; line-height: 1.35; }
    .sp-section { padding: 66px 0; }
    .sp-section-heading { margin-bottom: 34px; }
    .sp-section-heading h2 { font-size: 38px; }
    .sp-heading-inline { align-items: flex-start; flex-direction: column; }
    .sp-category-mosaic,
    .sp-category-mosaic.is-expanded { grid-template-columns: 1fr; grid-auto-rows: 285px; }
    .sp-category-copy > span:not(.sp-category-index) { display: none; }
    .sp-featured-grid { grid-template-columns: 1fr; }
    .sp-featured-copy h3 { font-size: 27px; }
    .sp-goal-grid { grid-template-columns: 1fr; }
    .sp-goal-card { min-height: 330px; }
    .sp-story-section { padding: 75px 0; }
    .sp-story-image { min-height: 460px; }
    .sp-story-image > img { width: calc(100% - 28px); height: 460px; }
    .sp-story-note { right: 0; bottom: 25px; width: 245px; padding: 20px; }
    .sp-story-copy h2 { font-size: 42px; }
    .sp-step-list li { grid-template-columns: 44px 1fr; gap: 12px; }
    .sp-business-banner { padding: 65px 0; }
    .sp-business-layout { gap: 30px; }
    .sp-business-layout h2 { font-size: 41px; }
    .sp-faq-intro h2 { font-size: 42px; }
    .sp-faq-question { gap: 18px; font-size: 19px; }
    .sp-contact-section { padding: 70px 0; }
    .sp-contact-intro h2 { font-size: 45px; }
    .sp-contact-form { padding: 24px 19px; }
    .sp-form-row { grid-template-columns: 1fr; gap: 0; }
    .sp-library-page { padding: 36px 0 75px; }
    .sp-breadcrumbs { margin-bottom: 27px; }
    .sp-library-hero h1 { font-size: 50px; }
    .sp-library-hero-copy p { font-size: 15px; }
    .sp-library-search { height: 62px; }
    .sp-library-search input { height: 60px; }
    .sp-library-search .sp-library-search-clear { width: 38px; height: 38px; }
    .sp-library-search .sp-library-search-submit { width: 54px; padding: 0; font-size: 0; }
    .sp-library-search .sp-library-search-submit::before { content: "\f002"; font-family: "Font Awesome 5 Free"; font-size: 14px; font-weight: 900; }
    .sp-results-head { align-items: flex-start; flex-direction: column; gap: 12px; }
    .sp-results-head h2 { font-size: 34px; }
    .sp-course-grid { grid-template-columns: 1fr; }
    .sp-pagination { align-items: stretch; flex-direction: column; }
    .sp-pagination-pages,
    .sp-pagination-arrows { justify-content: center; }
    .sp-footer-main { padding: 50px 0 0; }
    .sp-footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
    .sp-footer-brand,
    .sp-footer-contact { grid-column: 1 / -1; }
    .sp-footer-category-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sp-footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
    .sp-logo { gap: 8px; }
    .sp-brand-name { font-size: 14px; }
    .sp-hero { min-height: 1020px; }
    .sp-hero-copy h1 { font-size: 44px; }
    .sp-hero-actions .sp-button { width: 100%; }
    .sp-learning-step { padding: 8px 0; }
    .sp-visual-chip-bottom { bottom: -5px; }
    .sp-featured-bottom { align-items: flex-start; flex-direction: column; }
    .sp-footer-grid { grid-template-columns: 1fr; }
    .sp-footer-brand,
    .sp-footer-contact { grid-column: auto; }
    .sp-footer-category-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991px) {
    .sp-service-hero-grid { grid-template-columns: 1fr; gap: 45px; }
    .sp-service-hero-visual { min-height: 500px; }
    .sp-service-hero-visual::after { height: 500px; }
    .sp-service-hero-visual > img { height: 500px; }
    .sp-service-content-layout { grid-template-columns: 1fr; gap: 35px; }
    .sp-service-content-aside { position: static; }
    .sp-service-proof-content .oca-proof-grid,
    .sp-service-proof-content .ffa-service-card-grid,
    .sp-service-proof-content .ffa-service-step-grid,
    .sp-service-proof-content .ffa-service-faq-grid,
    .sp-service-proof-content .ffa-service-contact-grid,
    .sp-service-proof-content { grid-template-columns: 1fr 1fr; }
    .sp-service-testimonials .ffa-service-step-grid { grid-template-columns: 1fr; }
    .sp-service-form-layout { grid-template-columns: 1fr; gap: 40px; }
    .sp-cart-hero-grid,
    .sp-static-hero-grid { grid-template-columns: 1fr; gap: 20px; }
    .sp-cart-layout { grid-template-columns: 1fr; grid-template-areas: "review" "summary" "checkout"; gap: 32px; }
    .sp-cart-summary { position: static; }
    .sp-static-layout { grid-template-columns: 1fr; gap: 45px; }
    .sp-static-sidebar { position: static; }
    .sp-static-contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .sp-course-title-grid { grid-template-columns: 1fr; gap: 22px; }
    .sp-course-decision-grid { grid-template-columns: 1fr; }
    .sp-course-visual { min-height: 480px; }
    .sp-course-visual img { min-height: 480px; }
    .sp-enrol-card { border-left: 1px solid var(--sp-border); }
    .sp-course-facts-grid { grid-template-columns: 1fr 1fr; padding-block: 12px; }
    .sp-course-facts-grid > div:nth-child(2) { border-right: 0; }
    .sp-course-facts-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
    .sp-course-reading-layout { grid-template-columns: 1fr; gap: 35px; }
    .sp-reading-heading { position: static; }
    .sp-course-topics-section .sp-reading-heading { grid-template-columns: 1fr; gap: 12px; }
    .sp-course-topics-section .sp-reading-heading .sp-kicker,
    .sp-course-topics-section .sp-reading-heading h2,
    .sp-course-topics-section .sp-reading-heading p { grid-column: 1; grid-row: auto; }
    .sp-course-topics-section .sp-reading-heading p { max-width: 620px; }
    .sp-module-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sp-course-faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sp-outcome-grid,
    .sp-included-layout,
    .sp-career-layout,
    .sp-course-lead-layout { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 767px) {
    .sp-service-hero { padding: 35px 0 60px; }
    .sp-service-hero-copy h1 { font-size: 41px; }
    .sp-service-hero-copy > p { font-size: 16px; }
    .sp-service-hero-visual { min-height: 420px; }
    .sp-service-hero-visual::after { height: 420px; }
    .sp-service-hero-visual > img { height: 420px; }
    .sp-service-visual-card { width: 235px; padding: 20px; }
    .sp-service-benefits { grid-template-columns: 1fr; padding-block: 10px; }
    .sp-service-benefits > div,
    .sp-service-benefits > li { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
    .sp-service-benefits > :last-child { border-bottom: 0; }
    .sp-service-content-section,
    .sp-service-proof-section,
    .sp-service-testimonial-section,
    .sp-service-steps-section,
    .sp-service-form-section { padding: 70px 0; }
    .sp-service-content-aside h2,
    .sp-service-form-layout h2 { font-size: 34px; }
    .sp-service-proof-content .oca-proof-grid,
    .sp-service-proof-content .ffa-service-card-grid,
    .sp-service-proof-content .ffa-service-step-grid,
    .sp-service-proof-content .ffa-service-faq-grid,
    .sp-service-proof-content .ffa-service-contact-grid,
    .sp-service-proof-content { grid-template-columns: 1fr; }
    .sp-service-steps { grid-template-columns: 1fr; }
    .sp-service-steps li { border-right: 0; border-bottom: 1px solid var(--sp-border); }
    .sp-service-form { padding: 25px 20px; }
    .sp-cart-hero { padding: 28px 0 36px; }
    .sp-cart-hero .sp-breadcrumbs { margin-bottom: 24px; }
    .sp-cart-hero h1 { font-size: clamp(36px, 11vw, 48px); }
    .sp-cart-hero-grid { gap: 16px; }
    .sp-cart-hero-grid > p { font-size: 15px; }
    .sp-static-hero { padding: 35px 0 48px; }
    .sp-static-hero h1 { font-size: 46px; }
    .sp-cart-section { padding: 44px 0 72px; }
    .sp-static-content-section,
    .sp-static-contact-strip { padding: 70px 0; }
    .sp-cart-layout { gap: 28px; }
    .sp-cart-section-head { margin-bottom: 16px; }
    .sp-cart-section-head h2 { font-size: 30px; }
    .sp-cart-items .sl-cart-item { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
    .sp-cart-items .sl-cart-remove { width: 100%; min-height: 44px; }
    .sp-cart-summary { padding: 22px; }
    .sp-cart-form { padding: 22px 18px; }
    .sp-static-form { padding: 23px 19px; }
    .sp-static-contact-layout h2 { font-size: 40px; }
    .sp-course-title-section { padding: 35px 0 42px; }
    .sp-course-title-grid h1 { font-size: clamp(22px, 6.3vw, 28px); }
    .sp-course-title-summary p { font-size: 15px; }
    .sp-course-decision-section { padding-bottom: 0; }
    .sp-course-decision-section .container { width: 100%; }
    .sp-course-visual { min-height: 320px; }
    .sp-course-visual img { min-height: 320px; }
    .sp-enrol-card { padding: 34px 22px; border-right: 0; border-left: 0; }
    .sp-enrol-card h2 { font-size: 33px; }
    .sp-course-facts-grid > div { grid-template-columns: 32px 1fr; padding: 17px 12px; }
    .sp-course-facts-grid i { font-size: 18px; }
    .sp-course-facts-grid strong { font-size: 12px; }
    .sp-course-anchor-nav { top: 0; }
    .sp-course-anchor-nav .container { gap: 22px; }
    .sp-course-content-section,
    .sp-course-topics-section,
    .sp-course-outcome-section,
    .sp-course-career-section,
    .sp-course-faq-section,
    .sp-course-lead-section { padding: 70px 0; }
    .sp-reading-heading h2,
    .sp-outcome-copy h2,
    .sp-support-panel h2,
    .sp-included-layout h2,
    .sp-career-layout h2,
    .sp-course-lead-layout h2 { font-size: 39px; }
    .sp-module-list { grid-template-columns: 1fr; gap: 12px; }
    .sp-module-list .oca-module-item { min-height: 0; grid-template-columns: 46px 1fr; gap: 10px 13px; padding: 20px; }
    .sp-module-list .oca-module-item > span { width: 46px; height: 46px; border-radius: 10px; }
    .sp-module-list .oca-module-item > strong { font-size: 17px; }
    .sp-outcome-copy,
    .sp-support-panel { padding: 31px 23px; }
    .sp-support-list { grid-template-columns: 1fr; }
    .sp-included-section { padding: 70px 0; }
    .sp-included-layout ul { grid-template-columns: 1fr; }
    .sp-course-faq-grid { grid-template-columns: 1fr; }
    .sp-course-faq-grid .oca-faq-card { min-height: 0; padding: 25px 22px; }
    .sp-course-lead-form { padding: 25px 20px; }
    .sp-mobile-enrol { position: fixed; z-index: 50; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 13px; padding: 10px 15px; background: #fff; border-top: 1px solid var(--sp-border); box-shadow: 0 -10px 28px rgba(32,36,44,.12); }
    .sp-mobile-enrol .sp-price small { font-size: 9px; }
    .sp-mobile-enrol .sp-price strong { font-size: 20px; }
    .sp-mobile-enrol .sp-button { min-height: 43px; padding: 10px 15px; font-size: 10px; }
    .sp-site .sticky-navbar { display: none !important; }
    .sp-footer { padding-bottom: 0; }
}
