
/* ==== growth-courses bridge (site integration) ==================== */
/* firewall: neutralize theme styles inside the design blocks */
.gcx, .gcx *, .gcx *::before, .gcx *::after { all: revert; }
.gcx {
--blue: #0000df;
      --blue-dark: #0000ad;
      --blue-soft: #eeeefe;
      --navy: #06152d;
      --navy-2: #0d2345;
      --ink: #080a0f;
      --muted: #5d6675;
      --surface: #f4f6f9;
      --line: #d9dee6;
      --line-dark: #c4cbd5;
      --green: #07855f;
      --green-dark: #056e4f;
      --white: #fff;
      --max: 1240px;
      --ease: cubic-bezier(.2,.8,.2,1);
}
.gcx * {
box-sizing: border-box;
}
.gcx {
margin: 0;
      overflow-x: hidden;
      color: var(--ink);
      background: var(--white);
      font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
}
.gcx button, .gcx input, .gcx select {
font: inherit;
}
.gcx button, .gcx a {
-webkit-tap-highlight-color: transparent;
}
.gcx a {
color: inherit; text-decoration: none;
}
.gcx h1, .gcx h2, .gcx h3, .gcx h4, .gcx p {
margin-top: 0;
}
.gcx h1, .gcx h2, .gcx h3, .gcx h4 {
letter-spacing: -.035em; line-height: 1.08;
}
.gcx [hidden] {
display: none !important;
}
.gcx .container {
width: min(calc(100% - 48px), var(--max)); margin-inline: auto;
}
.gcx .skip-link {
position: fixed; z-index: 999; top: 10px; left: 10px; padding: 10px 14px; color: white; background: var(--navy); transform: translateY(-150%);
}
.gcx .skip-link:focus {
transform: translateY(0);
}
.gcx .announcement {
color: white; background: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.gcx .announcement .container {
min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center;
}
.gcx .announcement-dot {
width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #5effc3; box-shadow: 0 0 0 4px rgba(94,255,195,.12);
}
.gcx .site-header {
position: sticky; z-index: 80; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px);
}
.gcx .nav {
min-height: 76px; display: flex; align-items: center; gap: 28px;
}
.gcx .logo {
display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; font-size: 20px; font-weight: 900; letter-spacing: -.05em;
}
.gcx .logo-mark {
position: relative; width: 31px; height: 31px; overflow: hidden; background: var(--blue);
}
.gcx .logo-mark::before, .gcx .logo-mark::after {
content: ""; position: absolute; background: white;
}
.gcx .logo-mark::before {
width: 17px; height: 6px; right: -1px; bottom: 7px;
}
.gcx .logo-mark::after {
width: 6px; height: 17px; right: 7px; bottom: -1px;
}
.gcx .logo small {
display: block; color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: .13em; line-height: 1.15; text-transform: uppercase;
}
.gcx .nav-links {
display: flex; align-items: center; gap: 25px; margin-left: auto; font-size: 13px; font-weight: 750;
}
.gcx .nav-links a {
position: relative;
}
.gcx .nav-links a.active::after, .gcx .nav-links a:hover::after {
transform: scaleX(1);
}
.gcx .nav-links a::after {
content: ""; position: absolute; right: 0; bottom: -10px; left: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .2s;
}
.gcx .nav-actions {
display: flex; align-items: center; gap: 9px;
}
.gcx .language-btn, .gcx .account-btn, .gcx .menu-btn {
min-height: 42px; border: 1px solid var(--line-dark); cursor: pointer; font-size: 11px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase;
}
.gcx .language-btn {
padding-inline: 14px; color: var(--ink); background: white;
}
.gcx .account-btn {
display: inline-flex; align-items: center; padding-inline: 17px; color: white; background: var(--navy); border-color: var(--navy);
}
.gcx .menu-btn {
display: none; width: 43px; color: var(--ink); background: white;
}
.gcx .page {
display: none;
}
.gcx .page.active {
display: block;
}
.gcx .eyebrow {
display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase;
}
.gcx .eyebrow::before {
content: ""; width: 27px; height: 2px; background: currentColor;
}
.gcx .btn {
min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 21px; border: 1px solid transparent; cursor: pointer; font-size: 12px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; transition: transform .2s var(--ease), background .2s, border-color .2s;
}
.gcx .btn:hover {
transform: translateY(-2px);
}
.gcx .btn-primary {
color: white; background: var(--blue);
}
.gcx .btn-primary:hover {
background: var(--blue-dark);
}
.gcx .btn-buy {
color: white; background: var(--green); border-color: var(--green); box-shadow: 0 9px 22px rgba(7,133,95,.22);
}
.gcx .btn-buy:hover {
background: var(--green-dark); border-color: var(--green-dark);
}
.gcx .btn-outline {
color: var(--ink); background: white; border-color: var(--line-dark);
}
.gcx .text-link {
display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase;
}
.gcx .text-link::after {
content: "→"; font-size: 18px;
}
.gcx .courses-hero {
position: relative; overflow: hidden; padding: 88px 0 82px; background: linear-gradient(90deg, rgba(0,0,223,.035) 1px, transparent 1px), linear-gradient(rgba(0,0,223,.035) 1px, transparent 1px), white; background-size: 48px 48px;
}
.gcx .courses-hero::before {
content: ""; position: absolute; width: 620px; height: 620px; right: -290px; top: -330px; border-radius: 50%; background: var(--blue-soft);
}
.gcx .courses-hero-grid {
position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr); gap: 72px; align-items: center;
}
.gcx .courses-hero h1 {
max-width: 770px; margin-bottom: 23px; font-size: clamp(52px, 6vw, 84px); font-weight: 850; letter-spacing: -.065em;
}
.gcx .courses-hero h1 span {
color: var(--blue);
}
.gcx .hero-copy {
max-width: 650px; margin-bottom: 29px; color: var(--muted); font-size: 19px;
}
.gcx .hero-actions {
display: flex; align-items: center; gap: 17px;
}
.gcx .finance-visual {
position: relative; min-height: 420px; padding: 38px; color: white; background: var(--blue); box-shadow: 25px 27px 0 var(--navy);
}
.gcx .visual-top {
display: flex; justify-content: space-between; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.25);
}
.gcx .visual-top span {
color: rgba(255,255,255,.68); font-size: 10px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase;
}
.gcx .visual-top strong {
font-size: 14px;
}
.gcx .visual-title {
max-width: 330px; margin: 48px 0 45px; font-size: 38px; font-weight: 830; line-height: 1.08;
}
.gcx .visual-metrics {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.gcx .visual-metric {
padding: 17px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
}
.gcx .visual-metric strong {
display: block; margin-bottom: 4px; font-size: 24px;
}
.gcx .visual-metric span {
color: rgba(255,255,255,.7); font-size: 9px; font-weight: 800; text-transform: uppercase;
}
.gcx .visual-bars {
position: absolute; right: 36px; bottom: 120px; left: 36px; height: 80px; display: flex; align-items: end; gap: 9px; opacity: .18;
}
.gcx .visual-bars i {
flex: 1; background: white;
}
.gcx .visual-bars i:nth-child(1) {
height: 30%;
}
.gcx .visual-bars i:nth-child(2) {
height: 55%;
}
.gcx .visual-bars i:nth-child(3) {
height: 43%;
}
.gcx .visual-bars i:nth-child(4) {
height: 79%;
}
.gcx .visual-bars i:nth-child(5) {
height: 68%;
}
.gcx .visual-bars i:nth-child(6) {
height: 100%;
}
.gcx .trust-bar {
background: white; border-block: 1px solid var(--line);
}
.gcx .trust-grid {
display: grid; grid-template-columns: repeat(4, 1fr);
}
.gcx .trust-item {
min-height: 95px; display: flex; align-items: center; gap: 13px; padding: 19px 23px; border-right: 1px solid var(--line);
}
.gcx .trust-item:first-child {
border-left: 1px solid var(--line);
}
.gcx .trust-icon {
width: 35px; height: 35px; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue); background: var(--blue-soft); font-size: 15px; font-weight: 900;
}
.gcx .trust-item strong {
display: block; font-size: 13px;
}
.gcx .trust-item span {
color: var(--muted); font-size: 11px;
}
.gcx .catalog-section {
padding: 104px 0 116px; background: var(--surface);
}
.gcx .section-head {
display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px;
}
.gcx .section-head h2 {
max-width: 760px; margin-bottom: 0; font-size: clamp(38px, 4.5vw, 60px); font-weight: 830;
}
.gcx .result-count {
color: var(--muted); font-size: 13px;
}
.gcx .catalog-toolbar {
display: grid; grid-template-columns: minmax(0, 1fr) 220px 220px; gap: 12px; margin-bottom: 28px;
}
.gcx .search-control {
min-height: 54px; display: grid; grid-template-columns: 46px 1fr; align-items: center; background: white; border: 1px solid var(--line-dark);
}
.gcx .search-control span {
display: grid; place-items: center; color: var(--blue); font-size: 19px;
}
.gcx .search-control input {
min-width: 0; height: 100%; padding: 0 15px 0 0; border: 0; outline: 0; background: transparent;
}
.gcx .select-control {
min-height: 54px; padding: 0 14px; border: 1px solid var(--line-dark); outline: 0; color: var(--ink); background: white;
}
.gcx .search-control:focus-within, .gcx .select-control:focus {
border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,0,223,.08);
}
.gcx .course-grid {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.gcx .course-card {
min-width: 0; display: flex; flex-direction: column; background: white; border: 1px solid var(--line-dark); cursor: pointer; transition: transform .22s var(--ease), border-color .22s, box-shadow .22s;
}
.gcx .course-card:hover {
transform: translateY(-5px); border-color: var(--blue); box-shadow: 0 18px 36px rgba(6,21,45,.09);
}
.gcx .course-cover {
position: relative; min-height: 225px; overflow: hidden; padding: 24px; color: white; background: var(--navy);
}
.gcx .course-cover.blue {
background: var(--blue);
}
.gcx .course-cover.indigo {
background: #2222aa;
}
.gcx .course-cover.steel {
background: #102a4d;
}
.gcx .cover-index {
display: inline-flex; padding-bottom: 7px; border-bottom: 2px solid currentColor; color: #8e98ff; font-size: 10px; font-weight: 900; letter-spacing: .1em;
}
.gcx .course-cover.blue .cover-index {
color: rgba(255,255,255,.68);
}
.gcx .cover-title {
position: relative; z-index: 2; max-width: 250px; margin-top: 62px; font-size: 26px; font-weight: 830; line-height: 1.07;
}
.gcx .cover-lines {
position: absolute; width: 150px; height: 185px; right: -24px; top: 22px; border: 1px solid rgba(255,255,255,.24); transform: rotate(-4deg);
}
.gcx .cover-lines::before, .gcx .cover-lines::after {
content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid rgba(255,255,255,.18);
}
.gcx .cover-lines::after {
inset: 36px -36px -36px 36px;
}
.gcx .course-body {
flex: 1; display: flex; flex-direction: column; padding: 23px;
}
.gcx .course-category {
margin-bottom: 10px; color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase;
}
.gcx .course-body h3 {
min-height: 53px; margin-bottom: 11px; font-size: 22px; font-weight: 810; line-height: 1.18;
}
.gcx .course-description {
min-height: 67px; margin-bottom: 17px; color: var(--muted); font-size: 13px;
}
.gcx .course-meta {
display: flex; flex-wrap: wrap; gap: 7px 13px; margin-bottom: 22px; color: #47505d; font-size: 10px; font-weight: 750;
}
.gcx .course-meta span {
display: inline-flex; align-items: center; gap: 5px;
}
.gcx .course-bottom {
display: flex; align-items: end; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line);
}
.gcx .course-price small {
display: block; margin-bottom: 2px; color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase;
}
.gcx .course-price strong {
font-size: 23px;
}
.gcx .empty-state {
padding: 60px 25px; text-align: center; background: white; border: 1px solid var(--line-dark);
}
.gcx .empty-state h3 {
margin-bottom: 8px; font-size: 28px;
}
.gcx .empty-state p {
color: var(--muted);
}
.gcx .final-cta {
padding: 85px 0; color: white; background: var(--blue);
}
.gcx .final-cta-inner {
display: flex; align-items: center; justify-content: space-between; gap: 35px;
}
.gcx .final-cta h2 {
max-width: 720px; margin-bottom: 10px; font-size: clamp(39px, 5vw, 63px); font-weight: 840;
}
.gcx .final-cta p {
margin: 0; color: rgba(255,255,255,.73);
}
.gcx .final-cta .btn {
flex: 0 0 auto; color: var(--blue); background: white;
}
.gcx .course-hero {
padding: 70px 0 78px; color: white; background: var(--navy);
}
.gcx .breadcrumbs {
display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; color: #a9b3c3; font-size: 11px; font-weight: 750;
}
.gcx .breadcrumbs span:not(:last-child)::after {
content: "/"; margin-left: 8px; color: #66738a;
}
.gcx .course-hero-grid {
display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 70px; align-items: start;
}
.gcx .course-kicker {
margin-bottom: 17px; color: #8e95ff; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase;
}
.gcx .course-hero h1 {
max-width: 790px; margin-bottom: 21px; font-size: clamp(48px, 6vw, 76px); font-weight: 850;
}
.gcx .course-lead {
max-width: 760px; margin-bottom: 25px; color: #b9c2d0; font-size: 18px;
}
.gcx .hero-meta {
display: flex; flex-wrap: wrap; gap: 9px;
}
.gcx .meta-pill {
padding: 8px 10px; color: #d8deea; border: 1px solid rgba(255,255,255,.16); font-size: 10px; font-weight: 800;
}
.gcx .instructor-line {
display: flex; align-items: center; gap: 11px; margin-top: 28px; color: #b9c2d0; font-size: 12px;
}
.gcx .avatar-mini {
width: 36px; height: 36px; display: grid; place-items: center; color: white; background: var(--blue); font-weight: 900;
}
.gcx .instructor-line strong {
color: white;
}
.gcx .enroll-card {
position: sticky; top: 106px; color: var(--ink); background: white; box-shadow: 0 24px 60px rgba(0,0,0,.24);
}
.gcx .enroll-cover {
min-height: 215px; padding: 25px; color: white; background: var(--blue);
}
.gcx .enroll-cover span {
color: rgba(255,255,255,.65); font-size: 9px; font-weight: 900; text-transform: uppercase;
}
.gcx .enroll-cover strong {
display: block; max-width: 270px; margin-top: 63px; font-size: 27px; line-height: 1.08;
}
.gcx .enroll-content {
padding: 25px;
}
.gcx .enroll-price {
display: flex; justify-content: space-between; align-items: end; margin-bottom: 19px;
}
.gcx .enroll-price strong {
font-size: 35px;
}
.gcx .enroll-price > span {
color: var(--green); font-size: 10px; font-weight: 900;
}
.gcx .enroll-price strong span, .gcx .enroll-price strong bdi {
color: inherit; font-size: inherit; font-weight: inherit;
}
.gcx .enroll-card .btn {
width: 100%;
}
.gcx .enroll-list {
display: grid; gap: 11px; margin: 20px 0 0; padding: 19px 0 0; border-top: 1px solid var(--line); list-style: none;
}
.gcx .enroll-list li {
position: relative; padding-left: 20px; color: #424b57; font-size: 11px;
}
.gcx .enroll-list li::before {
content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900;
}
.gcx .detail-shell {
padding: 85px 0 112px; background: var(--surface);
}
.gcx .detail-layout {
display: grid; grid-template-columns: minmax(0, 820px) 1fr; gap: 60px; align-items: start;
}
.gcx .detail-main {
display: grid; gap: 24px;
}
.gcx .detail-block {
padding: 31px; background: white; border: 1px solid var(--line-dark);
}
.gcx .detail-block h2 {
margin-bottom: 21px; font-size: 31px; font-weight: 820;
}
.gcx .detail-block > p {
color: var(--muted);
}
.gcx .learning-grid {
display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.gcx .learning-item {
position: relative; min-height: 115px; padding: 19px 19px 19px 48px; background: var(--surface); border: 1px solid var(--line); font-size: 13px; font-weight: 700;
}
.gcx .learning-item::before {
content: "✓"; position: absolute; left: 19px; top: 19px; width: 21px; height: 21px; display: grid; place-items: center; color: white; background: var(--blue); font-size: 10px;
}
.gcx .split-block {
display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0;
}
.gcx .split-panel {
padding: 30px;
}
.gcx .split-panel + .split-panel {
border-left: 1px solid var(--line);
}
.gcx .split-panel h2 {
font-size: 25px;
}
.gcx .check-list {
display: grid; gap: 10px; margin: 0; padding: 0; list-style: none;
}
.gcx .check-list li {
position: relative; padding-left: 21px; color: #4f5865; font-size: 13px;
}
.gcx .check-list li::before {
content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900;
}
.gcx .curriculum-summary {
display: flex; justify-content: space-between; gap: 20px; margin: -8px 0 19px; color: var(--muted); font-size: 11px;
}
.gcx .curriculum {
border-top: 1px solid var(--line-dark);
}
.gcx .curriculum-section {
border-bottom: 1px solid var(--line-dark);
}
.gcx .curriculum-button {
width: 100%; min-height: 62px; display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 11px; padding: 0 15px; border: 0; color: var(--ink); background: var(--surface); cursor: pointer; text-align: left; font-weight: 800;
}
.gcx .curriculum-button .plus {
color: var(--blue); font-size: 19px; font-weight: 500; transition: transform .2s;
}
.gcx .curriculum-button[aria-expanded="true"] .plus {
transform: rotate(45deg);
}
.gcx .curriculum-button small {
color: var(--muted); font-size: 10px; font-weight: 750;
}
.gcx .lesson-list {
display: none; margin: 0; padding: 0; list-style: none;
}
.gcx .curriculum-section.open .lesson-list {
display: block;
}
.gcx .lesson-list li {
display: grid; grid-template-columns: 24px minmax(0,1fr) auto; align-items: center; gap: 12px; min-height: 64px; padding: 10px 15px; border-top: 1px solid var(--line); color: #4c5562; font-size: 12px;
}
.gcx .lesson-list li > span:first-child {
color: var(--blue); font-size: 11px;
}
.gcx .lesson-copy {
min-width: 0;
}
.gcx .lesson-copy > span {
display: block; color: var(--ink); font-weight: 700;
}
.gcx .lesson-copy > small {
display: block; margin-top: 3px; color: var(--muted); font-size: 9px; line-height: 1.55;
}
.gcx .lesson-duration {
color: var(--muted); font-size: 10px; white-space: nowrap;
}
.gcx .instructor-card {
display: grid; grid-template-columns: 115px 1fr; gap: 24px; align-items: start;
}
.gcx .instructor-photo {
width: 115px; height: 135px; display: grid; place-items: center; color: white; background: var(--navy); font-size: 31px; font-weight: 900;
}
.gcx .instructor-card h3 {
margin-bottom: 5px; font-size: 22px;
}
.gcx .instructor-role {
margin-bottom: 11px; color: var(--blue); font-size: 11px; font-weight: 850;
}
.gcx .instructor-card p {
margin-bottom: 15px; color: var(--muted); font-size: 13px;
}
.gcx .instructor-stats {
display: flex; flex-wrap: wrap; gap: 8px;
}
.gcx .instructor-stats span {
padding: 6px 8px; background: var(--surface); border: 1px solid var(--line); font-size: 9px; font-weight: 800;
}
.gcx .detail-aside {
position: sticky; top: 106px;
}
.gcx .aside-note {
padding: 23px; color: #3d4653; background: white; border: 1px solid var(--line-dark);
}
.gcx .aside-note h3 {
margin-bottom: 9px; font-size: 18px;
}
.gcx .aside-note p {
margin: 0; color: var(--muted); font-size: 12px;
}
.gcx .aside-note + .aside-note {
margin-top: 16px;
}
.gcx .faq-list {
border-top: 1px solid var(--line-dark);
}
.gcx .faq-item {
border-bottom: 1px solid var(--line-dark);
}
.gcx .faq-question {
width: 100%; min-height: 67px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 0 4px; border: 0; color: var(--ink); background: transparent; cursor: pointer; text-align: left; font-size: 15px; font-weight: 800;
}
.gcx .faq-question span:last-child {
color: var(--blue); font-size: 22px; font-weight: 400;
}
.gcx .faq-answer {
display: none; padding: 0 38px 20px 4px; color: var(--muted); font-size: 13px;
}
.gcx .faq-item.open .faq-answer {
display: block;
}
.gcx .related-section {
padding: 88px 0 105px;
}
.gcx .related-grid {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.gcx .related-grid .course-cover {
min-height: 180px;
}
.gcx .related-grid .cover-title {
margin-top: 43px; font-size: 21px;
}
.gcx .related-grid .course-description {
display: none;
}
.gcx .related-grid .course-body h3 {
min-height: 48px; font-size: 19px;
}
.gcx .mobile-enroll {
position: fixed; z-index: 95; right: 0; bottom: 0; left: 0; display: none; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 16px; background: white; border-top: 1px solid var(--line-dark); box-shadow: 0 -8px 24px rgba(6,21,45,.11);
}
.gcx .mobile-enroll strong {
display: block; font-size: 18px;
}
.gcx .mobile-enroll span {
color: var(--muted); font-size: 9px;
}
.gcx .mobile-enroll .btn {
min-height: 44px;
}
.gcx .site-footer {
padding: 70px 0 27px; color: white; background: var(--navy);
}
.gcx .footer-grid {
display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; padding-bottom: 50px;
}
.gcx .footer-brand p {
max-width: 330px; margin: 19px 0 0; color: #aeb7c7; font-size: 12px;
}
.gcx .footer-col h3 {
margin-bottom: 17px; color: #8390a3; font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase;
}
.gcx .footer-col a {
display: block; margin: 10px 0; color: #d9dee7; font-size: 12px;
}
.gcx .footer-bottom {
display: flex; justify-content: space-between; gap: 25px; padding-top: 23px; color: #7f8a9b; border-top: 1px solid rgba(255,255,255,.12); font-size: 10px;
}
html[dir="rtl"] .gcx {
font-family: "Segoe UI", Tahoma, Arial, sans-serif; text-align: right; line-height: 1.75;
}
html[dir="rtl"] .gcx h1, html[dir="rtl"] .gcx h2, html[dir="rtl"] .gcx h3, html[dir="rtl"] .gcx h4 {
letter-spacing: 0; line-height: 1.28;
}
html[dir="rtl"] .gcx p, html[dir="rtl"] .gcx li {
line-height: 1.75;
}
html[dir="rtl"] .gcx .nav-links {
margin-left: 0; margin-right: auto;
}
html[dir="rtl"] .gcx .nav-links a::after {
transform-origin: right;
}
html[dir="rtl"] .gcx .eyebrow, html[dir="rtl"] .gcx .course-kicker, html[dir="rtl"] .gcx .course-category, html[dir="rtl"] .gcx .btn, html[dir="rtl"] .gcx .text-link, html[dir="rtl"] .gcx .language-btn, html[dir="rtl"] .gcx .account-btn {
letter-spacing: 0; text-transform: none;
}
html[dir="rtl"] .gcx .courses-hero::before {
right: auto; left: -290px;
}
html[dir="rtl"] .gcx .finance-visual {
box-shadow: -25px 27px 0 var(--navy);
}
html[dir="rtl"] .gcx .cover-lines {
right: auto; left: -24px; transform: rotate(4deg);
}
html[dir="rtl"] .gcx .text-link::after {
content: "←";
}
html[dir="rtl"] .gcx .search-control {
grid-template-columns: 46px 1fr;
}
html[dir="rtl"] .gcx .search-control input {
padding: 0 0 0 15px; text-align: right;
}
html[dir="rtl"] .gcx .trust-item {
border-right: 0; border-left: 1px solid var(--line);
}
html[dir="rtl"] .gcx .trust-item:first-child {
border-right: 1px solid var(--line);
}
html[dir="rtl"] .gcx .breadcrumbs span:not(:last-child)::after {
margin-left: 0; margin-right: 8px;
}
html[dir="rtl"] .gcx .enroll-list li, html[dir="rtl"] .gcx .check-list li {
padding-left: 0; padding-right: 21px;
}
html[dir="rtl"] .gcx .enroll-list li::before, html[dir="rtl"] .gcx .check-list li::before {
left: auto; right: 0;
}
html[dir="rtl"] .gcx .learning-item {
padding: 19px 48px 19px 19px;
}
html[dir="rtl"] .gcx .learning-item::before {
left: auto; right: 19px;
}
html[dir="rtl"] .gcx .split-panel + .split-panel {
border-left: 0; border-right: 1px solid var(--line);
}
html[dir="rtl"] .gcx .curriculum-button, html[dir="rtl"] .gcx .faq-question {
text-align: right;
}
html[dir="rtl"] .gcx .faq-answer {
padding: 0 4px 20px 38px;
}
html[dir="rtl"] .gcx .cover-index, html[dir="rtl"] .gcx .visual-top span, html[dir="rtl"] .gcx .course-price small, html[dir="rtl"] .gcx .enroll-cover span {
letter-spacing: 0; text-transform: none;
}
.gcx .toast {
position: fixed; z-index: 120; right: 24px; bottom: 24px; max-width: 430px; padding: 15px 18px; color: white; background: var(--navy); border-left: 4px solid var(--green); box-shadow: 0 16px 40px rgba(6,21,45,.24); font-size: 12px; font-weight: 700; opacity: 0; pointer-events: none; transform: translateY(16px); transition: opacity .2s, transform .2s;
}
.gcx .toast.show {
opacity: 1; transform: translateY(0);
}
html[dir="rtl"] .gcx .toast {
right: auto; left: 24px; border-left: 0; border-right: 4px solid var(--green);
}
.gcx :focus-visible {
outline: 3px solid rgba(0,0,223,.32); outline-offset: 3px;
}
@media (max-width: 1050px) {
.gcx .courses-hero-grid {
grid-template-columns: 1fr .85fr; gap: 45px;
}
.gcx .course-grid {
grid-template-columns: 1fr 1fr;
}
.gcx .course-hero-grid {
grid-template-columns: 1fr 350px; gap: 42px;
}
.gcx .detail-layout {
grid-template-columns: minmax(0, 1fr) 260px; gap: 32px;
}
}
@media (max-width: 850px) {
.gcx .nav-links {
position: absolute; top: 76px; right: 24px; left: 24px; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 12px; background: white; border: 1px solid var(--line-dark); box-shadow: 0 18px 45px rgba(6,21,45,.12);
}
.gcx .nav-links.open {
display: flex;
}
.gcx .nav-links a {
padding: 12px;
}
.gcx .nav-links a::after {
display: none;
}
.gcx .menu-btn {
display: block;
}
.gcx .courses-hero-grid, .gcx .course-hero-grid, .gcx .detail-layout {
grid-template-columns: 1fr;
}
.gcx .finance-visual {
max-width: 620px;
}
.gcx .catalog-toolbar {
grid-template-columns: 1fr 1fr;
}
.gcx .search-control {
grid-column: 1 / -1;
}
.gcx .trust-grid {
grid-template-columns: 1fr 1fr;
}
.gcx .detail-aside {
display: none;
}
.gcx .enroll-card {
position: static; max-width: 520px;
}
.gcx .mobile-enroll {
display: flex;
}
.gcx .footer-grid {
grid-template-columns: 1.5fr 1fr 1fr;
}
.gcx .footer-brand {
grid-column: 1 / -1;
}
}
@media (max-width: 620px) {
.gcx .container {
width: min(calc(100% - 32px), var(--max));
}
.gcx .announcement {
font-size: 9px;
}
.gcx .account-btn {
display: none;
}
.gcx .nav {
min-height: 68px;
}
.gcx .nav-links {
top: 68px; right: 16px; left: 16px;
}
.gcx .courses-hero {
padding: 64px 0 67px;
}
.gcx .courses-hero h1 {
font-size: 48px;
}
.gcx .hero-copy {
font-size: 16px;
}
.gcx .hero-actions {
align-items: stretch; flex-direction: column;
}
.gcx .hero-actions .btn {
width: 100%;
}
.gcx .finance-visual {
min-height: 370px; padding: 26px; box-shadow: 14px 16px 0 var(--navy);
}
html[dir="rtl"] .gcx .finance-visual {
box-shadow: -14px 16px 0 var(--navy);
}
.gcx .visual-title {
margin-top: 38px; font-size: 31px;
}
.gcx .visual-metrics {
grid-template-columns: 1fr;
}
.gcx .visual-metric {
padding: 11px 14px;
}
.gcx .visual-bars {
display: none;
}
.gcx .trust-grid {
grid-template-columns: 1fr;
}
.gcx .trust-item {
min-height: 78px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.gcx .trust-item:last-child {
border-bottom: 0;
}
.gcx .catalog-section {
padding: 76px 0 84px;
}
.gcx .section-head {
align-items: flex-start; flex-direction: column; gap: 12px;
}
.gcx .section-head h2 {
font-size: 40px;
}
.gcx .catalog-toolbar {
grid-template-columns: 1fr;
}
.gcx .search-control {
grid-column: auto;
}
.gcx .course-grid, .gcx .learning-grid, .gcx .split-block, .gcx .related-grid {
grid-template-columns: 1fr;
}
.gcx .course-cover {
min-height: 205px;
}
.gcx .course-body h3, .gcx .course-description {
min-height: 0;
}
.gcx .final-cta-inner {
align-items: flex-start; flex-direction: column;
}
.gcx .final-cta .btn {
width: 100%;
}
.gcx .course-hero {
padding: 50px 0 64px;
}
.gcx .course-hero h1 {
font-size: 43px;
}
.gcx .course-lead {
font-size: 16px;
}
.gcx .enroll-card, .gcx .detail-block {
padding: 0;
}
.gcx .enroll-content, .gcx .detail-block {
padding: 22px;
}
.gcx .detail-shell {
padding: 60px 0 88px;
}
.gcx .learning-item {
min-height: 94px;
}
.gcx .split-panel + .split-panel {
border-left: 0; border-top: 1px solid var(--line);
}
html[dir="rtl"] .gcx .split-panel + .split-panel {
border-right: 0; border-top: 1px solid var(--line);
}
.gcx .curriculum-button {
grid-template-columns: 26px 1fr; padding-block: 12px;
}
.gcx .curriculum-button small {
grid-column: 2;
}
.gcx .lesson-list li {
grid-template-columns: 22px 1fr; padding-block: 12px;
}
.gcx .lesson-copy {
grid-column: 2;
}
.gcx .lesson-duration {
grid-column: 2; justify-self: start;
}
.gcx .instructor-card {
grid-template-columns: 82px 1fr; gap: 18px;
}
.gcx .instructor-photo {
width: 82px; height: 102px; font-size: 23px;
}
.gcx .related-section {
padding: 70px 0 95px;
}
.gcx .footer-grid {
grid-template-columns: 1fr 1fr; gap: 35px 22px;
}
.gcx .footer-bottom {
align-items: flex-start; flex-direction: column;
}
.gcx body:has(.page[data-page="course"].active) {
padding-bottom: 70px;
}
.gcx .toast {
right: 14px; bottom: 84px; left: 14px; max-width: none;
}
html[dir="rtl"] .gcx .toast {
right: 14px; left: 14px;
}
}
@media (prefers-reduced-motion: reduce) {
.gcx *, .gcx *::before, .gcx *::after {
transition-duration: .01ms !important;
}
}
.gcx /* Finance Lab identity */
    :root {
--blue: #2358d8;
      --blue-soft: #e9eeff;
      --navy: #10282b;
      --ink: #10282b;
      --muted: #5f6968;
      --surface: #f5f2ea;
      --line: #dedfd8;
      --line-dark: #cbd0c9;
      --green: #08775b;
      --green-dark: #055c47;
      --lime: #dfff72;
      --cream: #f7f4ec;
      --orange: #ff8d5c;
      --ease: cubic-bezier(.22,.8,.28,1);
}
.gcx {
color: var(--ink); background: #fbfaf7;
}
.gcx .container {
width: min(1180px, calc(100% - 48px));
}
.gcx .announcement {
min-height: 36px; color: var(--navy); background: var(--lime);
}
.gcx .announcement-dot {
background: var(--navy); box-shadow: none;
}
.gcx .site-header {
background: rgba(251,250,247,.95); border-bottom-color: rgba(16,40,43,.12);
}
.gcx .nav {
min-height: 78px;
}
.gcx .logo {
gap: 11px;
}
.gcx .logo-mark {
border-radius: 50% 50% 8px 50%; background: var(--blue); transform: rotate(-8deg);
}
.gcx .logo small {
color: var(--green); letter-spacing: .13em;
}
.gcx .nav-links {
gap: 30px;
}
.gcx .nav-links a {
font-size: 12px;
}
.gcx .account-btn {
min-height: 42px; padding: 0 18px; color: var(--navy); background: var(--lime); border: 0; border-radius: 999px;
}
.gcx .language-btn {
min-height: 42px; border-radius: 999px; background: white;
}
.gcx .eyebrow {
color: var(--green);
}
.gcx .courses-hero {
padding: 104px 0 100px; color: var(--ink); background: radial-gradient(circle at 9% 20%, rgba(223,255,114,.62), transparent 27%), linear-gradient(135deg, #f8f5ed, #eef4ef);
}
.gcx .courses-hero::before {
display: none;
}
.gcx .courses-hero-grid {
grid-template-columns: minmax(0,1fr) minmax(380px,.82fr); gap: 80px;
}
.gcx .courses-hero h1 {
max-width: 740px; margin-bottom: 25px; font-size: clamp(58px,7vw,92px); font-weight: 780; letter-spacing: -.062em; line-height: .95;
}
.gcx .courses-hero h1 span {
color: var(--blue);
}
.gcx .hero-copy {
max-width: 650px; color: #51605f; font-size: 19px; line-height: 1.65;
}
.gcx .hero-actions {
margin-top: 34px;
}
.gcx .btn {
border-radius: 999px;
}
.gcx .btn-primary {
color: white; background: var(--navy); border-color: var(--navy); box-shadow: 0 10px 24px rgba(16,40,43,.18);
}
.gcx .btn-primary:hover {
background: var(--blue); border-color: var(--blue);
}
.gcx .learning-board {
position: relative; min-height: 480px; padding: 34px; overflow: hidden; color: white; background: var(--navy); border-radius: 32px 32px 80px 32px; box-shadow: 20px 24px 0 var(--lime);
}
.gcx .learning-board::after {
content: ''; position: absolute; width: 220px; height: 220px; right: -85px; bottom: -85px; border: 40px solid rgba(223,255,114,.13); border-radius: 50%;
}
.gcx .board-label {
color: var(--lime); font-size: 9px; font-weight: 900; letter-spacing: .15em;
}
.gcx .learning-board h2 {
max-width: 390px; margin: 65px 0 32px; font-size: 39px; font-weight: 760; line-height: 1.05;
}
.gcx .board-steps {
display: grid; grid-template-columns: repeat(3,1fr); gap: 9px;
}
.gcx .board-steps > div {
min-height: 120px; padding: 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 16px;
}
.gcx .board-steps span {
display: block; margin-bottom: 17px; color: var(--lime); font-size: 9px; font-weight: 900;
}
.gcx .board-steps strong {
display: block; margin-bottom: 5px; font-size: 14px;
}
.gcx .board-steps small {
color: #b9c7c7; font-size: 10px; line-height: 1.45;
}
.gcx .board-output {
position: relative; z-index: 2; display: flex; align-items: center; gap: 12px; margin-top: 18px; padding: 13px 15px; color: var(--navy); background: var(--lime); border-radius: 15px;
}
.gcx .board-output > span {
display: grid; width: 32px; height: 32px; place-items: center; background: white; border-radius: 50%;
}
.gcx .board-output small {
display: block; font-size: 8px; font-weight: 900; letter-spacing: .12em;
}
.gcx .board-output strong {
display: block; margin-top: 1px; font-size: 12px;
}
.gcx .trust-bar {
position: relative; z-index: 3; padding: 0; background: transparent;
}
.gcx .trust-grid {
margin-top: -35px; overflow: hidden; background: white; border: 0; border-radius: 22px; box-shadow: 0 18px 45px rgba(16,40,43,.1);
}
.gcx .trust-item {
min-height: 106px; border-color: #e8e9e4;
}
.gcx .trust-icon {
color: var(--green); background: #edf7f2; border-radius: 12px;
}
.gcx .catalog-section {
padding: 115px 0 120px;
}
.gcx .section-head h2 {
max-width: 760px; font-size: clamp(45px,5vw,67px); letter-spacing: -.045em;
}
.gcx .catalog-toolbar {
padding: 10px; background: #efeee8; border: 0; border-radius: 18px;
}
.gcx .search-control, .gcx .select-control {
min-height: 53px; background: white; border: 0; border-radius: 12px;
}
.gcx .course-grid {
gap: 24px;
}
.gcx .course-card {
overflow: hidden; background: white; border: 0; border-radius: 24px; box-shadow: 0 10px 30px rgba(16,40,43,.08);
}
.gcx .course-card:hover {
transform: translateY(-7px); border-color: transparent; box-shadow: 0 22px 46px rgba(16,40,43,.14);
}
.gcx .course-cover {
min-height: 185px; margin: 9px; padding: 22px; border-radius: 18px; background: linear-gradient(145deg,#17363a,#0c2022);
}
.gcx .course-cover.blue {
background: linear-gradient(145deg,#3d6ee6,#173cb8);
}
.gcx .course-cover.indigo {
background: linear-gradient(145deg,#7657e9,#3e269d);
}
.gcx .course-cover.steel {
background: linear-gradient(145deg,#267d76,#124b48);
}
.gcx .course-cover::after {
content: ''; position: absolute; width: 125px; height: 125px; right: 23px; bottom: -55px; background: var(--lime); border-radius: 50%; opacity: .2;
}
.gcx .cover-index {
color: var(--lime); border: 0;
}
.gcx .course-cover.blue .cover-index {
color: var(--lime);
}
.gcx .cover-title {
max-width: 270px; margin-top: 44px; font-size: 24px;
}
.gcx .cover-lines {
width: 90px; height: 115px; top: 28px; right: -38px; border-radius: 16px; transform: rotate(10deg);
}
.gcx .course-body {
padding: 18px 25px 25px;
}
.gcx .course-category {
width: fit-content; padding: 6px 9px; color: var(--green); background: #edf7f2; border-radius: 999px;
}
.gcx .course-body h3 {
min-height: 58px; font-size: 22px; letter-spacing: -.025em;
}
.gcx .course-description {
min-height: 66px;
}
.gcx .course-meta {
color: #66706f;
}
.gcx .course-bottom {
align-items: center;
}
.gcx .course-price strong {
font-size: 24px;
}
.gcx .course-bottom .text-link {
padding: 10px 13px; color: var(--navy); background: var(--lime); border-radius: 999px; font-size: 9px;
}
.gcx .course-bottom .text-link::after {
display: none;
}
.gcx .final-cta {
color: var(--navy); background: var(--lime);
}
.gcx .final-cta .btn {
color: white; background: var(--navy); border-color: var(--navy);
}
.gcx .course-hero {
padding: 72px 0 84px; color: var(--ink); background: linear-gradient(135deg,#f7f4ec,#edf4ef);
}
.gcx .breadcrumbs {
color: #6a7776;
}
.gcx .breadcrumbs a {
color: #455756;
}
.gcx .course-hero-grid {
grid-template-columns: minmax(0,1fr) 500px; gap: 65px;
}
.gcx .course-kicker {
color: var(--green);
}
.gcx .course-hero h1 {
max-width: 720px; font-size: clamp(52px,6vw,78px); letter-spacing: -.055em; line-height: .98;
}
.gcx .course-lead {
color: #596765; font-size: 19px; line-height: 1.65;
}
.gcx .hero-meta span {
color: var(--navy); background: white; border: 1px solid #d8ddd6; border-radius: 999px;
}
.gcx .instructor-line {
color: #657270;
}
.gcx .avatar-mini {
color: var(--navy); background: var(--lime); border-radius: 50%;
}
.gcx .course-side-stack {
display: grid; gap: 18px;
}
.gcx .promo-video {
position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--navy); border-radius: 24px; box-shadow: 0 18px 45px rgba(16,40,43,.18);
}
.gcx .promo-video img {
width: 100%; height: 100%; display: block; object-fit: cover;
}
.gcx .promo-shade {
position: absolute; inset: 0; background: linear-gradient(to top,rgba(5,20,22,.82),transparent 65%);
}
.gcx .promo-play {
position: absolute; left: 50%; top: 45%; width: 72px; height: 72px; display: grid; place-items: center; padding-left: 5px; color: var(--navy); background: var(--lime); border: 0; border-radius: 50%; box-shadow: 0 10px 30px rgba(0,0,0,.24); cursor: pointer; transform: translate(-50%,-50%); transition: transform .2s var(--ease);
}
.gcx .promo-play:hover {
transform: translate(-50%,-50%) scale(1.08);
}
.gcx .promo-caption {
position: absolute; right: 22px; bottom: 18px; left: 22px; color: white;
}
.gcx .promo-caption span {
display: block; margin-bottom: 2px; color: var(--lime); font-size: 8px; font-weight: 900; letter-spacing: .14em;
}
.gcx .promo-caption strong {
font-size: 15px;
}
.gcx .enroll-card {
overflow: hidden; border: 0; border-radius: 22px; box-shadow: 0 12px 35px rgba(16,40,43,.1);
}
.gcx .enroll-cover {
min-height: 88px; padding: 20px 24px; color: white; background: var(--navy);
}
.gcx .enroll-content {
padding: 22px 24px;
}
.gcx .btn-buy {
background: var(--green); border-color: var(--green);
}
.gcx .detail-shell {
background: #f4f3ee;
}
.gcx .detail-layout {
grid-template-columns: minmax(0,1fr) 290px;
}
.gcx .detail-block {
padding: 32px; background: white; border: 0; border-radius: 22px; box-shadow: 0 7px 24px rgba(16,40,43,.05);
}
.gcx .practical-result {
color: var(--navy); background: var(--lime);
}
.gcx .practical-result .eyebrow {
color: var(--navy);
}
.gcx .practical-result > p {
max-width: 700px; color: #40504e;
}
.gcx .practice-grid {
display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 24px;
}
.gcx .practice-item {
min-height: 135px; padding: 18px; background: rgba(255,255,255,.64); border-radius: 16px;
}
.gcx .practice-item span {
display: grid; width: 34px; height: 34px; margin-bottom: 19px; place-items: center; color: white; background: var(--navy); border-radius: 50%; font-size: 11px;
}
.gcx .practice-item strong {
display: block; font-size: 14px; line-height: 1.45;
}
.gcx .learning-item {
background: #f5f5f0; border: 0; border-radius: 14px;
}
.gcx .split-block {
overflow: hidden; padding: 0;
}
.gcx .curriculum {
overflow: hidden; border: 1px solid var(--line); border-radius: 16px;
}
.gcx .curriculum-section:last-child {
border-bottom: 0;
}
.gcx .curriculum-button {
background: #f7f7f3;
}
.gcx .instructor-card {
background: #f5f5f0; border-radius: 18px;
}
.gcx .instructor-photo {
color: var(--navy); background: var(--lime); border-radius: 18px;
}
.gcx .aside-note {
border: 0; border-radius: 18px; box-shadow: 0 7px 20px rgba(16,40,43,.06);
}
.gcx .related-section {
background: #fbfaf7;
}
.gcx .site-footer {
background: var(--navy);
}
html[dir="rtl"] .gcx .learning-board {
border-radius: 32px 32px 32px 80px; box-shadow: -20px 24px 0 var(--lime);
}
html[dir="rtl"] .gcx .learning-board::after {
right: auto; left: -85px;
}
html[dir="rtl"] .gcx .course-cover::after {
right: auto; left: 23px;
}
html[dir="rtl"] .gcx .promo-play {
padding-right: 5px; padding-left: 0;
}
@media (max-width: 1050px) {
.gcx .courses-hero-grid {
grid-template-columns: 1fr .85fr; gap: 48px;
}
.gcx .course-hero-grid {
grid-template-columns: 1fr 400px; gap: 38px;
}
}
@media (max-width: 850px) {
.gcx .courses-hero-grid, .gcx .course-hero-grid {
grid-template-columns: 1fr;
}
.gcx .learning-board {
min-height: 420px; max-width: 620px;
}
.gcx .course-side-stack {
max-width: 620px;
}
.gcx .practice-grid {
grid-template-columns: 1fr 1fr 1fr;
}
}
@media (max-width: 620px) {
.gcx .container {
width: min(100% - 30px,1180px);
}
.gcx .courses-hero {
padding: 72px 0 90px;
}
.gcx .courses-hero h1 {
font-size: 52px;
}
.gcx .learning-board {
min-height: 465px; padding: 24px; border-radius: 24px 24px 60px 24px; box-shadow: 11px 14px 0 var(--lime);
}
html[dir="rtl"] .gcx .learning-board {
border-radius: 24px 24px 24px 60px; box-shadow: -11px 14px 0 var(--lime);
}
.gcx .learning-board h2 {
margin-top: 45px; font-size: 34px;
}
.gcx .board-steps {
grid-template-columns: 1fr;
}
.gcx .board-steps > div {
min-height: 80px; display: grid; grid-template-columns: 35px 1fr; align-content: center;
}
.gcx .board-steps span {
grid-row: 1/3; margin: 0;
}
.gcx .board-steps strong, .gcx .board-steps small {
grid-column: 2;
}
.gcx .board-output {
margin-top: 10px;
}
.gcx .trust-grid {
margin-top: -26px;
}
.gcx .catalog-toolbar {
padding: 8px;
}
.gcx .course-card {
border-radius: 19px;
}
.gcx .course-cover {
border-radius: 14px;
}
.gcx .course-hero h1 {
font-size: 46px;
}
.gcx .promo-video {
border-radius: 18px;
}
.gcx .promo-play {
width: 60px; height: 60px;
}
.gcx .detail-block {
padding: 22px; border-radius: 17px;
}
.gcx .practice-grid {
grid-template-columns: 1fr;
}
.gcx .practice-item {
min-height: 105px;
}
}
.gcx /* Growth brand palette and redesigned course page */
    :root {
--blue: #0000df;
      --blue-soft: #eeeeff;
      --navy: #06172f;
      --ink: #080a10;
      --muted: #596273;
      --surface: #f3f6fa;
      --line: #dce1e9;
      --line-dark: #c7cfda;
      --green: #07855f;
      --green-dark: #056a4b;
      --lime: #0000df;
      --cream: #f6f8fb;
}
.gcx {
color: var(--ink); background: white;
}
.gcx .announcement {
color: white; background: var(--blue);
}
.gcx .announcement-dot {
background: white;
}
.gcx .logo-mark {
background: var(--blue);
}
.gcx .logo small {
color: #637087;
}
.gcx .account-btn {
color: white; background: var(--navy);
}
.gcx .account-btn:hover {
background: var(--blue);
}
.gcx .eyebrow {
color: var(--blue);
}
.gcx .courses-hero {
background: radial-gradient(circle at 9% 20%, rgba(0,0,223,.12), transparent 29%), linear-gradient(135deg,#f7f8fb,#eef2f8);
}
.gcx .courses-hero h1 span {
color: var(--blue);
}
.gcx .learning-board {
background: var(--navy); box-shadow: 20px 24px 0 var(--blue);
}
.gcx .learning-board::after {
border-color: rgba(116,126,255,.18);
}
.gcx .board-label, .gcx .board-steps span {
color: #8f9bff;
}
.gcx .board-output {
color: white; background: var(--blue);
}
.gcx .board-output > span {
color: var(--blue); background: white;
}
.gcx .trust-icon {
color: var(--blue); background: var(--blue-soft);
}
.gcx .course-category {
color: var(--blue); background: var(--blue-soft);
}
.gcx .course-cover::after {
background: #7e88ff;
}
.gcx .cover-index, .gcx .course-cover.blue .cover-index {
color: #aab1ff;
}
.gcx .course-bottom .text-link {
color: white; background: var(--blue);
}
.gcx .final-cta {
color: white; background: var(--blue);
}
.gcx .final-cta .btn {
color: var(--blue); background: white; border-color: white;
}
html[dir="rtl"] .gcx .learning-board {
box-shadow: -20px 24px 0 var(--blue);
}
.gcx .course-showcase {
padding: 42px 0 88px; color: white; background: var(--navy);
}
.gcx .course-breadcrumbs {
margin-bottom: 35px; color: #7f8da3;
}
.gcx .course-breadcrumbs a {
color: #b9c3d3;
}
.gcx .showcase-grid {
display: grid; grid-template-columns: minmax(0,.9fr) minmax(500px,1.1fr); gap: 72px; align-items: center;
}
.gcx .showcase-copy {
padding: 16px 0;
}
.gcx .showcase-copy .course-kicker {
margin-bottom: 16px; color: #8e99ff;
}
.gcx .showcase-copy h1 {
max-width: 690px; margin-bottom: 21px; font-size: clamp(48px,5.8vw,76px); font-weight: 850; letter-spacing: -.052em; line-height: .98;
}
.gcx .showcase-copy .course-lead {
max-width: 650px; margin-bottom: 27px; color: #bac4d4; font-size: 17px; line-height: 1.65;
}
.gcx .showcase-copy .instructor-line {
color: #aeb9ca;
}
.gcx .showcase-copy .instructor-line strong {
color: white;
}
.gcx .showcase-copy .avatar-mini {
color: white; background: var(--blue);
}
.gcx .promo-video-large {
aspect-ratio: 16/9; border: 1px solid rgba(255,255,255,.13); border-radius: 8px; box-shadow: 0 28px 60px rgba(0,0,0,.35);
}
.gcx .promo-video-large .promo-play {
color: var(--blue); background: white;
}
.gcx .promo-video-large .promo-caption span {
color: #aab1ff;
}
.gcx .course-facts {
position: relative; z-index: 4; padding-bottom: 14px; background: var(--surface);
}
.gcx .facts-strip {
display: grid; grid-template-columns: repeat(4,1fr); margin-top: -35px; overflow: hidden; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 16px 38px rgba(6,23,47,.1);
}
.gcx .fact-item {
min-height: 104px; display: grid; grid-template-columns: 42px minmax(0,1fr); align-items: center; gap: 13px; padding: 20px 22px; color: var(--ink); background: white; border-right: 1px solid var(--line); text-align: left;
}
.gcx .fact-icon {
width: 40px; height: 40px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 10px; font-size: 15px; font-weight: 900;
}
.gcx .fact-copy {
min-width: 0;
}
.gcx .facts-strip small {
display: block; margin-bottom: 4px; color: #70798a; font-size: 8px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase;
}
.gcx .facts-strip strong {
display: block; font-size: 12px; line-height: 1.45;
}
html[dir="rtl"] .gcx .facts-strip small {
letter-spacing: 0; text-transform: none;
}
.gcx .fact-item:last-child {
border-right: 0;
}
html[dir="rtl"] .gcx .fact-item {
border-right: 0; border-left: 1px solid var(--line); text-align: right;
}
html[dir="rtl"] .gcx .fact-item:last-child {
border-left: 0;
}
.gcx .course-anchor-nav {
position: sticky; z-index: 58; top: 78px; padding: 0 0 14px; background: rgba(244,246,250,.96); border: 0; backdrop-filter: blur(12px);
}
.gcx .anchor-links {
min-height: 62px; display: flex; align-items: center; gap: 6px; padding: 6px; overflow-x: auto; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 8px 24px rgba(6,23,47,.06); scrollbar-width: none;
}
.gcx .anchor-links::-webkit-scrollbar {
display: none;
}
.gcx .anchor-links button {
flex: 0 0 auto; min-height: 46px; padding: 10px 15px; color: #545e6e; background: transparent; border: 0; border-radius: 9px; cursor: pointer; font-size: 11px; font-weight: 800; transition: color .18s, background-color .18s;
}
.gcx .anchor-links button:hover {
color: var(--blue); background: var(--blue-soft);
}
.gcx .anchor-links button.active {
color: white; background: var(--blue);
}
.gcx .detail-shell {
padding: 46px 0 105px; background: var(--surface);
}
.gcx .course-detail-layout {
grid-template-columns: minmax(0,1fr) 350px; gap: 42px; align-items: start;
}
.gcx .detail-main {
gap: 22px;
}
.gcx .detail-block {
padding: 34px 36px; background: white; border: 1px solid var(--line); border-radius: 8px; box-shadow: none; scroll-margin-top: 160px;
}
.gcx .detail-block h2 {
margin-bottom: 21px; font-size: 30px; letter-spacing: -.035em;
}
.gcx .course-intro > p {
max-width: 780px; color: #4f5969; font-size: 15px; line-height: 1.9;
}
.gcx .audience-row {
display: flex; flex-wrap: wrap; gap: 8px; margin-top: 27px; padding-top: 23px; border-top: 1px solid var(--line);
}
.gcx .audience-row strong {
width: 100%; margin-bottom: 3px; font-size: 11px;
}
.gcx .audience-row span {
padding: 7px 10px; color: #3e4960; background: var(--surface); border-radius: 4px; font-size: 10px;
}
.gcx .practical-result {
color: var(--ink); background: var(--blue-soft); border-color: #c8cbff;
}
.gcx .practical-result .eyebrow {
color: var(--blue);
}
.gcx .practical-result > p {
color: #4f586b;
}
.gcx .practice-item {
background: white; border: 1px solid #d3d6ff; border-radius: 6px;
}
.gcx .practice-item span {
color: white; background: var(--blue);
}
.gcx .learning-item {
background: white; border: 1px solid var(--line); border-radius: 6px;
}
.gcx .included-grid {
display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line);
}
.gcx .included-grid > div {
min-height: 135px; display: grid; grid-template-columns: 42px 1fr; align-content: center; column-gap: 13px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.gcx .included-grid > div:nth-child(2n) {
border-right: 0;
}
.gcx .included-grid > div:nth-last-child(-n+2) {
border-bottom: 0;
}
.gcx .included-grid span {
grid-row: 1/3; display: grid; width: 38px; height: 38px; place-items: center; color: var(--blue); background: var(--blue-soft); font-size: 15px; font-weight: 900;
}
.gcx .included-grid strong {
align-self: end; font-size: 12px; line-height: 1.45;
}
.gcx .included-grid small {
margin-top: 4px; color: var(--muted); font-size: 9px; line-height: 1.45;
}
html[dir="rtl"] .gcx .included-grid > div {
border-right: 0; border-left: 1px solid var(--line);
}
html[dir="rtl"] .gcx .included-grid > div:nth-child(2n) {
border-left: 0;
}
.gcx .section-title-row {
display: flex; align-items: end; justify-content: space-between; gap: 24px;
}
.gcx .section-title-row h2 {
margin-bottom: 0;
}
.gcx .curriculum-summary {
margin: 8px 0 20px;
}
.gcx .curriculum {
border-radius: 4px;
}
.gcx .curriculum-button {
min-height: 67px; background: #f7f8fb;
}
.gcx .lesson-list li {
min-height: 54px;
}
.gcx .instructor-card {
padding: 25px; background: var(--surface); border-radius: 6px;
}
.gcx .instructor-photo {
color: white; background: var(--blue); border-radius: 4px;
}
.gcx .purchase-rail {
position: relative; display: grid; gap: 18px;
}
.gcx .sticky-enroll {
position: sticky; top: 164px; overflow: hidden; background: white; border: 1px solid var(--line-dark); border-radius: 8px; box-shadow: 0 16px 42px rgba(6,23,47,.12);
}
.gcx .sticky-enroll .enroll-cover {
min-height: 100px; padding: 22px 24px; background: var(--navy);
}
.gcx .sticky-enroll .enroll-cover span {
color: #929cff;
}
.gcx .sticky-enroll .enroll-content {
padding: 24px;
}
.gcx .sticky-enroll .enroll-price strong {
font-size: 34px;
}
.gcx .sticky-enroll .btn-buy {
min-height: 52px; border-radius: 4px;
}
.gcx .purchase-note {
margin-top: 10px; color: #6a7382; text-align: center; font-size: 9px;
}
.gcx .sticky-enroll h3 {
margin: 23px 0 11px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px;
}
.gcx .sticky-enroll .enroll-list {
margin-bottom: 0;
}
.gcx .help-note {
border: 1px solid var(--line); border-radius: 8px; box-shadow: none;
}
.gcx .help-note .text-link {
margin-top: 12px;
}
.gcx .related-section {
padding-top: 88px; background: white;
}
@media (max-width: 1050px) {
.gcx .showcase-grid {
grid-template-columns: minmax(0,.9fr) minmax(400px,1.1fr); gap: 42px;
}
.gcx .course-detail-layout {
grid-template-columns: minmax(0,1fr) 310px; gap: 28px;
}
}
@media (max-width: 850px) {
.gcx .showcase-grid {
grid-template-columns: 1fr;
}
.gcx .showcase-copy {
padding-bottom: 0;
}
.gcx .promo-video-large {
max-width: 720px;
}
.gcx .facts-strip {
grid-template-columns: 1fr 1fr;
}
.gcx .fact-item:nth-child(2) {
border-right: 0;
}
.gcx .fact-item:nth-child(-n+2) {
border-bottom: 1px solid var(--line);
}
html[dir="rtl"] .gcx .fact-item:nth-child(2) {
border-left: 0;
}
.gcx .course-anchor-nav {
top: 76px;
}
.gcx .course-detail-layout {
grid-template-columns: 1fr;
}
.gcx .purchase-rail {
grid-row: 1;
}
.gcx .sticky-enroll {
position: static;
}
.gcx .help-note {
display: none;
}
}
@media (max-width: 620px) {
html[dir="rtl"] .gcx .learning-board {
box-shadow: -11px 14px 0 var(--blue);
}
.gcx .course-showcase {
padding: 34px 0 66px;
}
.gcx .course-breadcrumbs {
margin-bottom: 24px;
}
.gcx .showcase-copy h1 {
font-size: 44px;
}
.gcx .showcase-copy .course-lead {
font-size: 15px;
}
.gcx .promo-video-large {
border-radius: 4px;
}
.gcx .facts-strip {
margin-top: -22px;
}
.gcx .fact-item {
min-height: 92px; grid-template-columns: 34px minmax(0,1fr); gap: 10px; padding: 14px 12px;
}
.gcx .fact-icon {
width: 34px; height: 34px; border-radius: 8px; font-size: 13px;
}
.gcx .facts-strip strong {
font-size: 10px;
}
.gcx .course-anchor-nav {
top: 68px; padding-bottom: 10px;
}
.gcx .anchor-links {
min-height: 54px; gap: 4px; padding: 5px;
}
.gcx .anchor-links button {
min-height: 42px; padding: 9px 12px;
}
.gcx .detail-shell {
padding-top: 42px;
}
.gcx .detail-block {
padding: 23px 20px; border-radius: 5px;
}
.gcx .detail-block h2 {
font-size: 26px;
}
.gcx .audience-row span {
width: 100%;
}
.gcx .included-grid {
grid-template-columns: 1fr;
}
.gcx .included-grid > div, html[dir="rtl"] .gcx .included-grid > div {
border-right: 0; border-left: 0; border-bottom: 1px solid var(--line);
}
.gcx .included-grid > div:nth-last-child(-n+2) {
border-bottom: 1px solid var(--line);
}
.gcx .included-grid > div:last-child {
border-bottom: 0;
}
.gcx .section-title-row {
align-items: flex-start; flex-direction: column;
}
.gcx .sticky-enroll .enroll-content {
padding: 20px;
}
}
.gcx /* Final rhythm, .gcx RTL and responsive refinements */
    body {
font-size: 16px; line-height: 1.6;
}
.gcx h1, .gcx h2, .gcx h3, .gcx h4 {
text-wrap: balance;
}
.gcx p {
text-wrap: pretty;
}
.gcx .courses-hero {
background-size: 145% 145%;
      animation: hero-surface-drift 18s ease-in-out infinite alternate;
}
.gcx .courses-hero::before {
width: 560px;
      height: 560px;
      right: -210px;
      top: -250px;
      background: radial-gradient(circle, rgba(0,0,223,.15), rgba(0,0,223,0) 68%);
      animation: hero-orb-drift 14s ease-in-out infinite alternate;
      pointer-events: none;
}
.gcx .courses-hero::after {
content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      left: 30%;
      bottom: -330px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(116,126,255,.12), rgba(116,126,255,0) 70%);
      animation: hero-orb-drift-secondary 20s ease-in-out infinite alternate;
      pointer-events: none;
}
@keyframes hero-surface-drift {
from {
background-position: 0% 45%;
}
to {
background-position: 100% 55%;
}
}
@keyframes hero-orb-drift {
from {
transform: translate3d(0,0,0) scale(1);
}
to {
transform: translate3d(-70px,55px,0) scale(1.12);
}
}
@keyframes hero-orb-drift-secondary {
from {
transform: translate3d(0,0,0) scale(.95);
}
to {
transform: translate3d(90px,-45px,0) scale(1.12);
}
}
.gcx .trust-bar {
position: relative; z-index: 3; padding: 34px 0 0; background: var(--surface); border: 0;
}
.gcx .trust-grid {
margin-top: 0; overflow: hidden; background: white; border: 1px solid var(--line); box-shadow: 0 12px 28px rgba(6,23,47,.09);
}
.gcx .trust-item {
min-height: 132px; gap: 17px; padding: 25px 28px;
}
.gcx .trust-item .trust-icon {
width: 44px; height: 44px; font-size: 18px; line-height: 1;
}
.gcx .trust-item strong {
font-size: 15px; line-height: 1.4;
}
.gcx .trust-item div > span {
display: block; margin-top: 5px; font-size: 12px; line-height: 1.55;
}
.gcx .catalog-section {
padding-top: 82px;
}
.gcx .catalog-actions {
display: flex; justify-content: center; padding-top: 34px;
}
.gcx .catalog-actions[hidden] {
display: none;
}
.gcx .load-more-btn {
min-width: 230px; color: white; background: var(--navy); border-color: var(--navy);
}
.gcx .load-more-btn:hover, .gcx .load-more-btn:focus-visible {
color: white; background: var(--blue); border-color: var(--blue);
}
.gcx .learning-item {
display: grid;
      grid-template-columns: 22px 28px minmax(0,1fr);
      align-items: start;
      gap: 12px;
      min-height: 100px;
      padding: 22px;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.55;
}
.gcx .learning-item::before {
position: static; grid-column: 1; width: 22px; height: 22px;
}
.gcx .learning-item > span {
grid-column: 2; color: var(--blue); font-size: 10px; font-weight: 900; line-height: 22px;
}
.gcx .learning-item > strong {
grid-column: 3; line-height: 1.55;
}
html[dir="rtl"] .gcx {
font-family: "Segoe UI", Tahoma, Arial, sans-serif; line-height: 1.8;
}
html[dir="rtl"] .gcx h1, html[dir="rtl"] .gcx h2, html[dir="rtl"] .gcx h3, html[dir="rtl"] .gcx h4 {
line-height: 1.25; letter-spacing: 0;
}
html[dir="rtl"] .gcx .courses-hero h1 {
font-size: clamp(52px,6.2vw,82px); line-height: 1.16; letter-spacing: 0;
}
html[dir="rtl"] .gcx .showcase-copy h1 {
font-size: clamp(44px,5.3vw,68px); line-height: 1.2; letter-spacing: 0;
}
html[dir="rtl"] .gcx .course-body h3 {
line-height: 1.5;
}
html[dir="rtl"] .gcx .course-description, html[dir="rtl"] .gcx .course-intro > p, html[dir="rtl"] .gcx .showcase-copy .course-lead {
line-height: 1.8;
}
html[dir="rtl"] .gcx .learning-item {
padding: 22px; text-align: right;
}
html[dir="rtl"] .gcx .learning-item::before {
position: static;
}
@media (max-width: 620px) {
.gcx .container {
width: calc(100% - 28px);
}
.gcx .nav {
min-height: 68px;
}
.gcx .nav-actions {
gap: 7px;
}
.gcx .courses-hero h1 {
font-size: 46px; line-height: 1.04;
}
html[dir="rtl"] .gcx .courses-hero h1 {
font-size: 43px; line-height: 1.23;
}
.gcx .hero-copy {
font-size: 15px; line-height: 1.75;
}
.gcx .trust-bar {
padding-top: 18px;
}
.gcx .trust-grid {
grid-template-columns: 1fr 1fr; margin-top: 0; border-radius: 14px;
}
.gcx .trust-item {
min-height: 128px; align-items: flex-start; padding: 18px 16px; border: 0; border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.gcx .trust-item:nth-child(2n) {
border-inline-end: 0;
}
.gcx .trust-item:nth-last-child(-n+2) {
border-bottom: 0;
}
.gcx .trust-item strong {
font-size: 14px; line-height: 1.45;
}
.gcx .trust-item div > span {
font-size: 11px; line-height: 1.6;
}
.gcx .trust-item .trust-icon {
width: 40px; height: 40px; font-size: 16px; line-height: 1;
}
.gcx .catalog-section {
padding-top: 62px;
}
.gcx .section-head h2 {
font-size: 38px; line-height: 1.12;
}
html[dir="rtl"] .gcx .section-head h2 {
font-size: 36px; line-height: 1.35;
}
.gcx .catalog-toolbar {
gap: 8px;
}
.gcx .course-cover {
min-height: 175px;
}
.gcx .course-body {
padding: 18px 20px 22px;
}
.gcx .course-body h3 {
font-size: 21px;
}
.gcx .learning-item {
grid-template-columns: 22px 26px minmax(0,1fr); min-height: auto; gap: 10px; padding: 18px;
}
html[dir="rtl"] .gcx .learning-item {
padding: 18px;
}
.gcx .showcase-copy h1 {
font-size: 42px;
}
html[dir="rtl"] .gcx .showcase-copy h1 {
font-size: 38px; line-height: 1.3;
}
.gcx .showcase-copy .course-lead {
line-height: 1.75;
}
.gcx .facts-strip strong {
font-size: 10px;
}
.gcx .anchor-links {
padding-inline: 5px;
}
.gcx .detail-block h2 {
font-size: 25px; line-height: 1.3;
}
html[dir="rtl"] .gcx .detail-block h2 {
line-height: 1.45;
}
.gcx .promo-caption strong {
font-size: 13px;
}
.gcx .sticky-enroll .btn-buy, .gcx .load-more-btn {
width: 100%;
}
}
@media (max-width: 380px) {
.gcx .trust-grid {
grid-template-columns: 1fr;
}
.gcx .trust-item {
min-height: 108px; border-inline-end: 0; border-bottom: 1px solid var(--line);
}
.gcx .trust-item:nth-last-child(-n+2) {
border-bottom: 1px solid var(--line);
}
.gcx .trust-item:last-child {
border-bottom: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.gcx .courses-hero, .gcx .courses-hero::before, .gcx .courses-hero::after {
animation: none !important;
}
}
/* the theme's .container clearfix pseudos become flex items and eat the row — remove them */
.gcx .container::before, .gcx .container::after { content: none !important; }
/* customizer CSS forces heading sizes with !important — enforce the design's hero scale */
.gcx .courses-hero h1 { font-size: clamp(52px, 6vw, 84px) !important; }
/* the theme also styles .container (adds big horizontal padding) — neutralize inside the design */
.gcx .container { padding-left: 0 !important; padding-right: 0 !important; max-width: none; }
/* keep nav links on one line */
.gcx .nav-links a { white-space: nowrap; }
/* page ground + theme chrome hidden on the courses archive */
body.growth-courses-page { background: #fff; }
body.growth-courses-page .top_panel,
body.growth-courses-page .header_mobile,
body.growth-courses-page .top_panel_fixed_wrap { display: none !important; }   /* 2.2.1: theme footer stays visible */
body.growth-courses-page .page_content_wrap { padding-top: 0 !important; padding-bottom: 0 !important; }
body.growth-courses-page .page_content_wrap .content_wrap { width: 100% !important; max-width: 100% !important; padding: 0 !important; margin: 0 !important; }
body.growth-courses-page .page_content_wrap .content { padding: 0 !important; margin: 0 !important; width: 100% !important; max-width: 100% !important; float: none !important; }
body.growth-courses-page .page_content_wrap .sidebar { display: none !important; }
/* theme sets -webkit-text-fill-color on links; keep our design's colors */
.gcx a, .gcx a * { -webkit-text-fill-color: currentColor !important; }
/* real site logo in the prototype header */
.gcx .logo-img { height: 33px; width: auto; display: block; }
.gcx .logo { gap: 12px; }
/* course covers using real thumbnails */
.gcx .course-cover.has-image { padding: 0; overflow: hidden; }
.gcx .course-cover.has-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* theme's pagination rule targets .nav-links (margin-top: 2.8em) — keep our nav centered */
.gcx .nav-links { margin-top: 0; margin-bottom: 0; }
/* language switch is an <a>, not a <button>: center its label like the design */
.gcx .language-btn { display: inline-flex; align-items: center; justify-content: center; }
/* header logo label (design language of the store header) */
.gcx .logo-label { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); border-left: 1px solid var(--line-dark); padding-left: 12px; line-height: 1.2; }
html[dir="rtl"] .gcx .logo-label { border-left: 0; border-right: 1px solid var(--line-dark); padding-left: 0; padding-right: 12px; letter-spacing: 0; }
/* LearnPress purchase/enroll forms inside the design's enroll card */
.gcx .gcx-lp-buttons { display: block; width: 100%; margin: -4px 0 12px; }
.gcx .gcx-lp-buttons > div, .gcx .gcx-lp-buttons form { display: block; width: 100%; margin: 0; }
.gcx .gcx-lp-buttons .lp-button,
.gcx .gcx-lp-buttons button {
  width: 100%; min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 0 21px; border: 1px solid var(--green); cursor: pointer; color: #fff; background: var(--green);
  font-size: 12px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase;
  border-radius: 999px; box-shadow: 0 9px 22px rgba(7,133,95,.22);
  transition: transform .2s var(--ease), background .2s;
  -webkit-text-fill-color: #fff !important;
}
.gcx .gcx-lp-buttons .lp-button:hover, .gcx .gcx-lp-buttons button:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); }
.gcx .gcx-lp-buttons form + form { margin-top: 8px; }
/* course description typography inside About */
.gcx .gcx-course-content p { margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.gcx .gcx-course-content ul, .gcx .gcx-course-content ol { margin: 0 0 14px; padding-inline-start: 20px; color: var(--muted); font-size: 14px; }
.gcx .gcx-course-content h3, .gcx .gcx-course-content h4 { margin: 20px 0 8px; font-size: 16px; }
/* sticky header offset under the WP admin bar */
body.admin-bar .gcx .site-header { top: 32px; }

/* ---- Promo video lightbox (appended v1.2.0; modal lives on <body>, outside .gcx) ---- */
.gcx-video-modal, .gcx-video-modal * { all: revert; box-sizing: border-box; }
.gcx-video-modal { position: fixed; inset: 0; z-index: 999999; background: rgba(7, 16, 38, 0.92); display: flex; align-items: center; justify-content: center; padding: 24px; }
.gcx-video-frame { position: relative; width: min(960px, 100%); aspect-ratio: 16 / 9; background: #000; border-radius: 14px; overflow: hidden; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55); }
.gcx-video-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.gcx-video-close { position: absolute; top: 18px; right: 22px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.14); color: #fff !important; -webkit-text-fill-color: #fff !important; font-size: 26px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.gcx-video-close:hover { background: rgba(255, 255, 255, 0.28); }
[dir="rtl"] .gcx-video-close { right: auto; left: 22px; }


/* 2.1 — sale price: same look as the store (struck regular price + green Save pill) */
.gcx .course-price strong .price-now, .gcx .enroll-price strong .price-now { font-size: inherit; font-weight: inherit; color: inherit; }
.gcx .course-price .price-was, .gcx .enroll-price .price-was { color: var(--muted); font-size: 13px; font-weight: 600; text-decoration: line-through; margin-inline-start: 6px; vertical-align: baseline; }
.gcx .enroll-price .price-was { font-size: 15px; }
.gcx .course-price .sale-pill, .gcx .enroll-price .sale-pill { display: inline-flex; align-items: center; margin-inline-start: 8px; padding: 4px 7px; color: #07855f; background: #e7f8f1; font-size: 9px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; vertical-align: middle; }
.gcx .course-price strong { display: flex; flex-wrap: wrap; align-items: center; gap: 2px 0; }
.gcx .enroll-price strong { display: flex; flex-wrap: wrap; align-items: center; }
html[dir="rtl"] .gcx .course-price .sale-pill, html[dir="rtl"] .gcx .enroll-price .sale-pill { letter-spacing: 0; text-transform: none; }
/* 2.1 — typed text is black on course pages */
body.growth-courses-page input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=button]), body.growth-courses-page select, body.growth-courses-page textarea { color: #080a0f !important; -webkit-text-fill-color: #080a0f !important; }
body.growth-courses-page input::placeholder, body.growth-courses-page textarea::placeholder { color: #8c939d !important; -webkit-text-fill-color: #8c939d !important; opacity: 1; }

/* ==== 2.2.2 — header scale matched to the store header ============= */
/* The store header renders a 40px logo, 15px nav links and a ~100px
   band; the courses header was 33px / 12px / 78px, so the two mini-site
   headers looked like different sizes. Match the store's scale. */
.gcx .site-header .logo { gap: 12px; }
.gcx .site-header .logo-img { height: 40px; }
.gcx .site-header .logo-label { font-size: 11px; letter-spacing: .16em; padding-left: 12px; }
html[dir="rtl"] .gcx .site-header .logo-label { padding-left: 0; padding-right: 12px; letter-spacing: 0; }
.gcx .site-header .nav-links { gap: 26px; }
.gcx .site-header .nav-links a { font-size: 15px; font-weight: 700; }
.gcx .site-header .language-btn, .gcx .site-header .account-btn { min-height: 42px; font-size: 12px; }
@media (min-width: 851px) {
  .gcx .site-header .nav { min-height: 96px; gap: 26px; }
}
@media (max-width: 850px) {
  /* the burger dropdown hangs off the bottom of the 78px tablet header */
  .gcx .site-header .nav-links { top: 78px; }
}
@media (max-width: 620px) {
  .gcx .site-header .nav { min-height: 70px; }
  .gcx .site-header .logo-img { height: 32px; }
  .gcx .site-header .logo-label { font-size: 10px; }
  .gcx .site-header .nav-links { top: 70px; }
  .gcx .site-header .nav-links a { font-size: 14px; }
}

/* ============================================================
   2.2.5 — mobile QA (2026-09-12)
   The burger menu opened but was invisible on phones/tablets:
   .gcx sets overflow-x:hidden and the header lives in .gcx-top,
   so the absolutely-positioned dropdown was clipped away by its
   own wrapper. Keep the clip on the page blocks, drop it on the
   header wrapper. Also: the 2.2.2 header rule set a 26px nav gap
   for the desktop row, which left the phone dropdown 434px tall.
   ============================================================ */
.gcx.gcx-top { overflow: visible; }
.gcx .site-header .nav-links .gcx-nav-account { display: none; }
@media (max-width: 850px) {
  .gcx .site-header .nav-links { z-index: 90; gap: 0; }
  .gcx .site-header .nav-links a { padding: 13px 12px; border-bottom: 1px solid #eef0f4; font-size: 15px; }
  .gcx .site-header .nav-links a:last-child { border-bottom: 0; }
}
@media (max-width: 620px) {
  /* the "My Learning" button is hidden at this width — keep the link reachable */
  .gcx .site-header .nav-links .gcx-nav-account { display: block; color: var(--blue); font-weight: 800; }
}

/* 2.2.6 — Page heroes (WooCommerce → Page heroes in growth-store): image + overlay, custom texts and buttons */
.gcx .courses-hero.has-image { position: relative; isolation: isolate; background: var(--hero-img) center/cover no-repeat; min-height: clamp(420px, 48vw, 620px); display: flex; align-items: center; padding: 72px 0; }
.gcx .courses-hero.has-image::before { content: ""; display: block; position: absolute; inset: 0; width: auto; height: auto; border-radius: 0; background: rgba(6,21,45,var(--hero-overlay,.55)); z-index: -1; }
.gcx .courses-hero.tone-dark.has-image::before { background: rgba(255,255,255,var(--hero-overlay,.55)); }
.gcx .courses-hero.has-image .courses-hero-grid { grid-template-columns: 1fr; position: relative; }
.gcx .courses-hero.has-image .learning-board { display: none; }
.gcx .courses-hero.tone-light.has-image, .gcx .courses-hero.tone-light.has-image h1, .gcx .courses-hero.tone-light.has-image .hero-copy, .gcx .courses-hero.tone-light.has-image .text-link { color: #fff; }
.gcx .courses-hero.tone-light.has-image .eyebrow, .gcx .courses-hero.tone-light.has-image h1 span { color: #dfff72; }
.gcx .courses-hero.tone-dark.has-image, .gcx .courses-hero.tone-dark.has-image h1 { color: var(--ink); }
.gcx .courses-hero .hero-btns { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; }
.gcx .courses-hero.align-center .courses-hero-grid > div:first-child { text-align: center; margin-inline: auto; }
.gcx .courses-hero.align-center h1, .gcx .courses-hero.align-center .hero-copy { margin-inline: auto; }
.gcx .courses-hero.align-center .hero-btns, .gcx .courses-hero.align-center .hero-actions { justify-content: center; }
@media (max-width: 680px) {
  .gcx .courses-hero.has-image { min-height: 380px; padding: 52px 0 48px; }
  .gcx .courses-hero .hero-btns { flex-direction: column; align-items: stretch; }
  .gcx .courses-hero .hero-btns .btn { width: 100%; }
  .gcx .courses-hero .hero-btns .text-link { align-self: center; }
}

/* 2.2.8 — hero focal point, height, colours, small animations (Page heroes) */
.gcx .courses-hero.has-image { background-position: var(--hero-pos, center); }
.gcx .courses-hero.h-short { min-height: clamp(300px, 34vw, 460px); }
.gcx .courses-hero.h-tall { min-height: clamp(540px, 64vw, 820px); }
.gcx .courses-hero.c-eyebrow .eyebrow { color: var(--hero-c-eyebrow) !important; }
.gcx .courses-hero.c-title h1 { color: var(--hero-c-title) !important; }
.gcx .courses-hero.c-accent h1 span { color: var(--hero-c-accent) !important; }
.gcx .courses-hero.c-text .hero-copy { color: var(--hero-c-text) !important; }
.gcx .courses-hero.c-btn-bg .hero-btns .btn { background: var(--hero-c-btn-bg) !important; }
.gcx .courses-hero.c-btn-text .hero-btns .btn { color: var(--hero-c-btn-text) !important; }
.gcx .courses-hero.c-btn2 .hero-btns .text-link { color: var(--hero-c-btn2) !important; }
@keyframes gh-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes gh-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes gh-zoom { from { opacity: 0; transform: scale(.965); } to { opacity: 1; transform: none; } }
.gcx .courses-hero.anim-fade .courses-hero-grid > div:first-child > * { animation: gh-fade .9s ease both; }
.gcx .courses-hero.anim-fade-up .courses-hero-grid > div:first-child > * { animation: gh-up .9s cubic-bezier(.2,.7,.2,1) both; }
.gcx .courses-hero.anim-zoom .courses-hero-grid > div:first-child > * { animation: gh-zoom .9s cubic-bezier(.2,.7,.2,1) both; }
.gcx .courses-hero[class*="anim-"] .courses-hero-grid > div:first-child > *:nth-child(2) { animation-delay: .1s; }
.gcx .courses-hero[class*="anim-"] .courses-hero-grid > div:first-child > *:nth-child(3) { animation-delay: .2s; }
.gcx .courses-hero[class*="anim-"] .courses-hero-grid > div:first-child > *:nth-child(4) { animation-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .gcx .courses-hero[class*="anim-"] .courses-hero-grid > div:first-child > * { animation: none; } }


/* 2.3.1 — account icon in the courses header, so the account page is reachable
   from every courses page. The icon is a background image, NOT an inline <svg>:
   the header's own CSS hides child elements of nav links and carries
   `background: ... !important`, so both the inline SVG and a plain
   background-image are killed — only an !important background image survives. */
.gcx .site-header .account-icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 42px; min-height: 42px; border: 1px solid rgba(6, 21, 45, .18); flex: 0 0 auto; overflow: hidden; text-indent: -999em;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23080a0f' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8.2' r='3.6'/%3E%3Cpath d='M4.6 20c.9-3.8 3.9-6.1 7.4-6.1s6.5 2.3 7.4 6.1'/%3E%3C/svg%3E") !important; background-repeat: no-repeat !important; background-position: center !important; background-size: 21px 21px !important; background-color: #fff !important; }
.gcx .site-header .account-icon-btn:hover, .gcx .site-header .account-icon-btn:focus-visible { border-color: rgba(6, 21, 45, .5); }
@media (max-width: 900px) { .gcx .site-header .account-icon-btn { width: 38px; min-height: 38px; background-size: 19px 19px !important; } }
