@charset "UTF-8";
/* ============================================
	MEDILEARN — PageMotor Theme CSS
	============================================ */
/* --------------------------------------------
	1. CSS CUSTOM PROPERTIES (BRIDGE + BRAND)
	-------------------------------------------- */
:root {
  --font1: "Inter";
  --font2: "Merriweather", serif;
  --font-code: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --f1: 42px;
  --f2: 33px;
  --f3: 26px;
  --f4: 20px;
  --f5: 16px;
  --f6: 13px;
  --g1: 63px;
  --g2: 50px;
  --g3: 41px;
  --g4: 32px;
  --g5: 27px;
  --g6: 23px;
  --x1: 44px;
  --x2: 27px;
  --x3: 17px;
  --x4: 11px;
  --x5: 7px;
  --x6: 4px;
  --phi: 1.6180339887;
  --w-content: 672px;
  --w-total: 1200px;
  --gutter-full: 27px;
  --gutter-mobile: 27px;
  --bg1: #ffffff;
  --bg2: #f8f9fa;
  --c1: #1a1a2e;
  --c2: #6c757d;
  --ca: #27ae60;
  --border1: 1px solid #e9ecef;
  --border2: 1.5px solid #e9ecef;
  --border3: 1px dotted rgba(0,0,0,0.18);
  /* Brand palette (medilearn-specific, not in core PM bridge) */
  --color-dark: #1a1a2e;
  --color-dark-mid: #16213e;
  --color-dark-deep: #0f3460;
  --color-red: #c0392b;
  --color-green: #27ae60;
  --color-green-deep: #219a52;
  --color-green-deeper: #1e8449;
  --color-opal: #5dade2;
  --color-opal-deep: #2980b9;
  --color-gold: #d4ac0d;
  --color-gold-deep: #b8960b;
  --color-off-white: #f8f9fa;
  --color-light-grey: #e9ecef;
  --color-mid-grey: #6c757d;
  --color-dark-grey: #343a40;
  --color-text: #212529;
  --color-white: #ffffff;
  /* Gradients */
  --logo-gradient: linear-gradient(135deg, #c0392b, #5dade2);
  --hero-image-gradient: linear-gradient(135deg, #16213e, #0f3460);
  --hero-image-overlay: linear-gradient(135deg, rgba(93,173,226,0.05) 0%, rgba(39,174,96,0.05) 100%);
  --impact-number-gradient: linear-gradient(135deg, #5dade2, #27ae60);
  --session-banner-gradient: linear-gradient(135deg, #27ae60, #1e8449);
  --steps-line-gradient: linear-gradient(90deg, #27ae60, #5dade2);
  --divider-gradient: linear-gradient(90deg, #5dade2, #27ae60);
  --founder-accent-gradient: linear-gradient(135deg, #5dade2, #27ae60);
  --newsletter-gradient: linear-gradient(135deg, #5dade2, #2980b9);
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  /* Radii (kept literal — visual constants, see analysis) */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  /* Section padding pattern (calc'd from GRT) */
  --section-pad-y: calc(var(--x1) * var(--phi));
  /* Fixed header offset */
  --header-h: 70px;
}

/* --------------------------------------------
	2. RESET
	-------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  word-break: normal;
}

img, fieldset {
  border: 0;
}

abbr {
  text-decoration: none;
}

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

iframe, video, embed, object {
  display: block;
  max-width: 100%;
}

.left, .right, .center {
  display: block;
}

.center {
  float: none;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

button, input[type=submit] {
  cursor: pointer;
  overflow: visible;
}

/* --------------------------------------------
	3. BODY & STRUCTURAL FOUNDATIONS
	-------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--c1);
  background-color: var(--bg1);
  overflow-x: hidden;
}

::selection {
  background-color: rgba(93, 173, 226, 0.3);
  color: var(--c1);
}

.container {
  box-sizing: border-box;
  max-width: var(--w-total);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter-mobile);
  padding-right: var(--gutter-mobile);
}
@media all and (min-width: 726px) {
  .container {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.text {
  max-width: var(--w-content);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: var(--x4);
  left: var(--x4);
  width: auto;
  height: auto;
  padding: var(--x4) var(--x3);
  background-color: var(--c1);
  color: var(--color-white);
  border-radius: var(--radius-md);
  z-index: 2000;
}

/* --------------------------------------------
	4. COMMON CONTENT ELEMENTS (GLOBAL)
	-------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font2);
  color: var(--c1);
  font-weight: 700;
}

h1 {
  font-size: var(--f2);
  line-height: var(--g2);
}

h2 {
  font-size: var(--f3);
  line-height: var(--g3);
}

h3 {
  font-size: var(--f4);
  line-height: var(--g4);
}

h4 {
  font-size: var(--f5);
  line-height: var(--g5);
}

@media all and (min-width: 726px) {
  h1 {
    font-size: var(--f1);
    line-height: var(--g1);
  }
  h2 {
    font-size: var(--f2);
    line-height: var(--g2);
  }
  h3 {
    font-size: var(--f3);
    line-height: var(--g3);
  }
  h4 {
    font-size: var(--f4);
    line-height: var(--g4);
  }
}
a {
  color: var(--ca);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
a:hover {
  text-decoration-color: var(--ca);
}

blockquote {
  font-family: var(--font2);
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--c1);
  font-style: italic;
  padding-left: var(--x3);
  border-left: var(--x5) solid var(--color-opal);
}
blockquote > :last-child {
  margin-bottom: 0;
}

sub, sup {
  color: var(--c2);
  line-height: 0.5em;
}

code, pre, kbd {
  font-family: var(--font-code);
  font-size: var(--f6);
  line-height: var(--g6);
}

code {
  background-color: rgba(0, 0, 0, 0.06);
  padding: var(--x6);
  border-radius: var(--x5);
  margin: 0 1px;
}
strong code {
  font-weight: normal;
}

pre {
  color: var(--c1);
  background-color: var(--bg2);
  padding: var(--x3);
  border-radius: 0 var(--x4) var(--x4) 0;
  border-left: var(--x5) solid var(--color-opal);
  overflow: auto;
  word-wrap: normal;
  tab-size: 4;
}

kbd {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--color-dark-grey);
  background-color: var(--bg2);
  padding: var(--x6) var(--x5);
  border: 1px solid var(--color-light-grey);
  border-radius: var(--x5);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), 0 0 0 1px var(--color-white) inset;
  margin: 0 1px;
}

svg {
  width: var(--f5);
  height: var(--f5);
  vertical-align: text-bottom;
}

hr {
  border: var(--border3);
  border-width: 0 0 1px 0;
  margin: var(--x2) 0;
}

.drop-cap {
  font-family: var(--font2);
  font-size: calc(var(--x2) * 2);
  line-height: 1em;
  font-weight: 700;
  color: var(--color-opal);
  margin-right: var(--x5);
  float: left;
}

.small {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
}

.callout {
  color: var(--c1);
  background-color: var(--bg2);
  padding: var(--x3);
  border: var(--border1);
  border-left: 3px solid var(--color-opal);
  border-radius: 0 var(--x4) var(--x4) 0;
}
.callout.alert {
  color: var(--color-dark);
  background-color: rgba(192, 57, 43, 0.08);
  border-left-color: var(--color-red);
}
.callout.note {
  color: var(--color-dark);
  background-color: rgba(212, 172, 13, 0.1);
  border-left-color: var(--color-gold);
}

.highlight {
  background-color: rgba(212, 172, 13, 0.25);
  padding: var(--x6) 0;
}

.impact {
  font-family: var(--font2);
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 700;
  color: var(--c1);
}

@media all and (min-width: 726px) {
  .impact {
    font-size: var(--f3);
    line-height: var(--g3);
  }
}
.pop {
  box-shadow: var(--shadow-md);
}

.caption {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
}
.caption code {
  font-size: var(--f6);
  line-height: var(--g6);
}
.center + .caption {
  text-align: center;
}
blockquote + .caption {
  padding-left: calc(var(--x3) + var(--x5));
}

@media all and (min-width: 726px) {
  .left:not(.bar) {
    float: left;
    clear: both;
    margin-right: var(--x2);
  }
  .right:not(.bar) {
    float: right;
    clear: both;
    margin-left: var(--x2);
  }
}
/* --------------------------------------------
	5. DYNAMIC PAGE CONTENT (.page-content scope)
	-------------------------------------------- */
.page-container + .page-container {
  margin-top: var(--x1);
}

.page-content h1 {
  margin-bottom: var(--x2);
}
.page-content h2 {
  margin-top: var(--x1);
  margin-bottom: var(--x2);
}
.page-content h3 {
  margin-top: var(--x2);
  margin-bottom: var(--x3);
}
.page-content h4 {
  margin-bottom: var(--x4);
}
.page-content h1 + h2, .page-content h2 + h3, .page-content h1:first-child, .page-content h2:first-child, .page-content h3:first-child, .page-content hr + h2 {
  margin-top: 0;
}
.page-content > :last-child {
  margin-bottom: 0;
}
.page-content ul {
  list-style-type: disc;
}
.page-content ul, .page-content ol {
  margin-left: var(--x2);
}
.page-content ul ul, .page-content ul ol, .page-content ol ul, .page-content ol ol {
  margin-top: var(--x4);
  margin-bottom: 0;
  margin-left: var(--x2);
}
.page-content li {
  margin-bottom: var(--x4);
}
.page-content li:last-child {
  margin-bottom: 0;
}
.page-content .callout > :last-child {
  margin-bottom: 0;
}
.page-content .caption {
  margin-top: var(--x4);
}
h1 + .page-content .caption, h2 + .page-content .caption {
  margin-top: var(--x4);
}
h3 + .page-content .caption {
  margin-top: var(--x4);
  margin-bottom: var(--x3);
}
.page-content p, .page-content ul, .page-content ol, .page-content blockquote, .page-content pre, .page-content img, .page-content .callout, .page-content .caption {
  margin-bottom: var(--x2);
}
.page-content p:last-child, .page-content ul:last-child, .page-content ol:last-child, .page-content blockquote:last-child, .page-content pre:last-child, .page-content img:last-child, .page-content .callout:last-child, .page-content .caption:last-child {
  margin-bottom: 0;
}
@media all and (min-width: 726px) {
  .page-content h1 + .caption, .page-content h2 + .caption {
    margin-top: var(--x4);
  }
  .page-content h3 + .caption {
    margin-top: var(--x4);
  }
}

.page-title {
  font-family: var(--font2);
  font-weight: 700;
}
.page-title a {
  color: var(--c1);
  text-decoration: none;
}
.page-title a:hover {
  color: var(--ca);
}

.page-title:has(+ .byline) {
  margin-bottom: 0;
}

.byline {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  margin-bottom: var(--x2);
}

.page-container, .headline-area, .page-content {
  display: flow-root;
}

.page-content + .modular-content {
  margin-top: var(--x2);
}
.modular-content > :last-child {
  margin-bottom: 0;
}

/* --------------------------------------------
	6. FORMS
	-------------------------------------------- */
label {
  display: block;
  font-family: var(--font1);
  font-weight: 600;
  font-size: var(--f6);
  line-height: var(--g6);
  margin-bottom: var(--x5);
}
label .required {
  font-weight: normal;
  color: var(--color-red);
}

input, textarea, select {
  display: block;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: var(--f5);
  line-height: 1em;
  font-weight: inherit;
  color: var(--c1);
  background-color: var(--color-white);
  padding: var(--x4) var(--x3);
  border: var(--border2);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-opal);
  box-shadow: 0 0 0 3px rgba(93, 173, 226, 0.2);
}

input[type=checkbox], input[type=radio], input[type=image], input[type=submit], select {
  width: auto;
}

input[type=checkbox], input[type=radio] {
  display: inline-block;
}
input[type=checkbox] + label, input[type=radio] + label {
  display: inline;
  font-weight: normal;
  margin-left: var(--x6);
  user-select: none;
}

textarea {
  line-height: var(--g5);
  resize: vertical;
}

button, input[type=submit], .button {
  display: inline-block;
  width: auto;
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: 1em;
  font-weight: 600;
  letter-spacing: 0.2px;
  vertical-align: top;
  color: var(--color-white);
  text-decoration: none;
  background-color: var(--ca);
  padding: var(--x3) var(--x2);
  border: 2px solid var(--ca);
  border-radius: var(--radius-md);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  text-align: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
button:hover, button:active, input[type=submit]:hover, input[type=submit]:active, .button:hover, .button:active {
  text-decoration: none;
  background-color: var(--color-green-deep);
  border-color: var(--color-green-deep);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
button.save, input[type=submit].save, .button.save {
  background-color: var(--color-green);
  border-color: var(--color-green);
  color: var(--color-white);
}
button.save:hover, button.save:active, input[type=submit].save:hover, input[type=submit].save:active, .button.save:hover, .button.save:active {
  background-color: var(--color-green-deep);
  border-color: var(--color-green-deep);
  color: var(--color-white);
}
button.delete, input[type=submit].delete, .button.delete {
  background-color: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
}
button.delete:hover, button.delete:active, input[type=submit].delete:hover, input[type=submit].delete:active, .button.delete:hover, .button.delete:active {
  background-color: #a4321f;
  border-color: #a4321f;
  color: var(--color-white);
}
button.action, input[type=submit].action, .button.action {
  background-color: transparent;
  border-color: var(--c1);
  color: var(--c1);
}
button.action:hover, button.action:active, input[type=submit].action:hover, input[type=submit].action:active, .button.action:hover, .button.action:active {
  background-color: var(--c1);
  border-color: var(--c1);
  color: var(--color-white);
}
button.update, input[type=submit].update, .button.update {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--c1);
}
button.update:hover, button.update:active, input[type=submit].update:hover, input[type=submit].update:active, .button.update:hover, .button.update:active {
  background-color: var(--color-gold-deep);
  border-color: var(--color-gold-deep);
  color: var(--c1);
}
button svg, input[type=submit] svg, .button svg {
  vertical-align: inherit;
}

/* --------------------------------------------
	7. SHARED COMPONENTS — NAV
	-------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__toggle {
  display: none;
}

.nav__inner {
  max-width: var(--w-total);
  margin: 0 auto;
  padding: 0 var(--gutter-mobile);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
@media all and (min-width: 726px) {
  .nav__inner {
    padding: 0 var(--gutter-full);
  }
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--x4);
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo:hover {
  text-decoration: none;
}

.nav__logo-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--logo-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font1);
  font-weight: 800;
  font-size: var(--f4);
  line-height: 1em;
  color: var(--color-white);
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font1);
  font-weight: 700;
  font-size: var(--f4);
  line-height: 1.2;
  color: var(--color-white);
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.nav__logo-text span {
  color: var(--color-opal);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--x6);
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--x2);
  list-style: none;
  margin-bottom: 0;
}
.nav__links li {
  margin-bottom: 0;
}
.nav__links a {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font1);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav__links a:hover {
  color: var(--color-white);
}
.nav__links .nav__cta a {
  background-color: var(--ca);
  color: var(--color-white);
  padding: 9px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  white-space: nowrap;
}
.nav__links .nav__cta a:hover {
  background-color: var(--color-green-deep);
  color: var(--color-white);
}

@media all and (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }
  .nav__links {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--x3) var(--gutter-mobile) var(--x2);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
  }
  .nav__links li {
    width: 100%;
  }
  .nav__links a {
    display: block;
    padding: var(--x4) 0;
    font-size: var(--f5);
    line-height: var(--g5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav__links .nav__cta {
    margin-top: var(--x4);
  }
  .nav__links .nav__cta a {
    display: inline-block;
    padding: var(--x4) var(--x2);
  }
  #nav-toggle:checked ~ .nav__inner .nav__links {
    display: flex;
  }
}
/* --------------------------------------------
	8. SHARED COMPONENTS — SECTION HELPERS
	-------------------------------------------- */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-opal);
  margin-bottom: var(--x4);
}

.section-heading {
  font-family: var(--font2);
  font-size: clamp(var(--f3), 3vw, var(--f2));
  line-height: clamp(var(--g3), 4.5vw, var(--g2));
  font-weight: 700;
  color: var(--c1);
  margin-bottom: var(--x3);
}

.section-subheading {
  font-family: var(--font1);
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--color-mid-grey);
  margin-bottom: var(--x2);
}

.divider {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: var(--divider-gradient);
  margin: var(--x4) 0 var(--x3);
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background-color: var(--color-light-grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--x4);
  color: var(--color-mid-grey);
  font-size: 14px;
  line-height: 1.5;
  border: 2px dashed rgba(0, 0, 0, 0.1);
}
.image-placeholder__icon {
  font-size: 36px;
  line-height: 1;
  opacity: 0.4;
}

/* .hero__content — pass-through wrapper inside .hero__inner; layout handled by parent grid */
.hero__content {
  display: contents;
}

.section--dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}
.section--dark .section-heading {
  color: var(--color-white);
}
.section--dark .section-subheading {
  color: rgba(255, 255, 255, 0.75);
}

.section--mid {
  background-color: var(--color-dark-mid);
  color: var(--color-white);
}
.section--mid .section-heading {
  color: var(--color-white);
}
.section--mid .section-subheading {
  color: rgba(255, 255, 255, 0.75);
}

.section--off-white {
  background-color: var(--bg2);
}

/* --------------------------------------------
	9. SHARED — FOOTER
	-------------------------------------------- */
.footer {
  background-color: var(--color-dark);
  padding: 48px var(--gutter-mobile) var(--x2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-white);
}
@media all and (min-width: 726px) {
  .footer {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.footer__inner {
  max-width: var(--w-total);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: var(--x2);
}
@media all and (min-width: 481px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media all and (min-width: 900px) {
  .footer__top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

@media all and (min-width: 481px) and (max-width: 899px) {
  .footer__brand {
    grid-column: 1/-1;
  }
}
.footer__brand .footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--x4);
  text-decoration: none;
}
.footer__brand .footer__logo:hover {
  text-decoration: none;
}
.footer__brand .footer__tagline {
  font-family: var(--font1);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--x4);
  max-width: 280px;
}

.footer__col h4 {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--x4);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
.footer__links li {
  margin-bottom: 0;
}
.footer__links a {
  font-family: var(--font1);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.footer__links a:hover {
  color: var(--color-white);
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--x4);
}

.footer__copyright {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--x3);
  list-style: none;
  margin-bottom: 0;
}
.footer__legal li {
  margin-bottom: 0;
}
.footer__legal a {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------
	10. HOME — HERO
	-------------------------------------------- */
.hero {
  background-color: var(--color-dark);
  padding: 140px var(--gutter-mobile) 100px;
  position: relative;
  overflow: hidden;
}
@media all and (min-width: 726px) {
  .hero {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 173, 226, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 174, 96, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--w-total);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media all and (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.hero__image {
  position: relative;
  order: -1;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
@media all and (min-width: 900px) {
  .hero__image {
    order: 0;
    max-width: none;
    margin: 0;
  }
}

@media all and (min-width: 900px) {
  .hero {
    padding: 140px var(--gutter-full) 100px;
  }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--x5);
  background-color: rgba(93, 173, 226, 0.12);
  border: 1px solid rgba(93, 173, 226, 0.25);
  color: var(--color-opal);
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: var(--x5) var(--x4);
  border-radius: var(--radius-full);
  margin-bottom: var(--x2);
}
.hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-green);
  animation: pulse 2s infinite;
}

.hero__heading {
  font-family: var(--font2);
  font-size: clamp(var(--f2), 4vw, 52px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--x3);
}
.hero__heading .accent {
  color: var(--color-opal);
}
.hero__heading .accent--gold {
  color: var(--color-gold);
}

.hero__subheading {
  font-family: var(--font1);
  font-size: var(--f4);
  line-height: 1.7;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: var(--x2);
}

.hero__actions {
  display: flex;
  gap: var(--x4);
  flex-wrap: wrap;
}

.hero__image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--hero-image-gradient);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--x4);
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 1.5;
  overflow: hidden;
  position: relative;
}
.hero__image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-image-overlay);
}

.hero__image-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(93, 173, 226, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
}

.hero__image-caption {
  text-align: center;
  padding: 0 var(--x2);
  line-height: 1.5;
}

.hero__badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background-color: var(--color-green);
  color: var(--color-white);
  padding: var(--x4) var(--x2);
  border-radius: var(--radius-md);
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: 1.4;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.hero__badge strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
}

@media all and (max-width: 899px) {
  .hero {
    padding: 120px var(--gutter-mobile) 80px;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}
/* --------------------------------------------
	11. HOME — IMPACT STRIP
	-------------------------------------------- */
.impact-strip {
  background-color: var(--color-dark-mid);
  padding: 40px var(--gutter-mobile);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
@media all and (min-width: 726px) {
  .impact-strip {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.impact-strip__inner {
  max-width: var(--w-total);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--x2);
}
@media all and (min-width: 769px) {
  .impact-strip__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.impact-stat {
  text-align: center;
  padding: 20px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-right: none;
}
.impact-stat:nth-child(2) {
  border-right: none;
}
.impact-stat:last-child, .impact-stat:nth-last-child(2) {
  border-bottom: none;
}
@media all and (min-width: 769px) {
  .impact-stat {
    padding: var(--x4);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
  }
  .impact-stat:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .impact-stat:last-child {
    border-right: none;
  }
  .impact-stat:nth-last-child(2) {
    border-bottom: none;
  }
}

.impact-stat__number {
  font-family: var(--font1);
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 6px;
  background: var(--impact-number-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-stat__label {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------
	12. HOME — SESSION BANNER
	-------------------------------------------- */
.session-banner {
  background: var(--session-banner-gradient);
  padding: 32px var(--gutter-mobile);
}
@media all and (min-width: 726px) {
  .session-banner {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.session-banner__inner {
  max-width: var(--w-total);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--x2);
  flex-wrap: wrap;
}

.session-banner__label {
  font-family: var(--font1);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--x6);
}

.session-banner__title {
  font-family: var(--font1);
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--x6);
}

.session-banner__meta {
  font-family: var(--font1);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}
.session-banner__meta strong {
  color: var(--color-white);
}

/* --------------------------------------------
	13. HOME — NOT A WEBINAR
	-------------------------------------------- */
.not-webinar {
  padding: var(--section-pad-y) var(--gutter-mobile);
  background-color: var(--color-white);
}
@media all and (min-width: 726px) {
  .not-webinar {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.not-webinar__inner {
  max-width: var(--w-total);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media all and (min-width: 900px) {
  .not-webinar__inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--x4);
  margin-bottom: 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-dark-grey);
  margin-bottom: 0;
}

.feature-list__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-list__icon--green {
  background-color: rgba(39, 174, 96, 0.12);
  color: var(--color-green);
}
.feature-list__icon--opal {
  background-color: rgba(93, 173, 226, 0.12);
  color: var(--color-opal);
}
.feature-list__icon--gold {
  background-color: rgba(212, 172, 13, 0.12);
  color: var(--color-gold);
}
.feature-list__icon--red {
  background-color: rgba(192, 57, 43, 0.12);
  color: var(--color-red);
}

/* --------------------------------------------
	14. HOME — OFFERINGS
	-------------------------------------------- */
.offerings {
  padding: var(--section-pad-y) var(--gutter-mobile);
  background-color: var(--bg2);
}
@media all and (min-width: 726px) {
  .offerings {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.offerings__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.offerings__grid {
  max-width: var(--w-total);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x2);
}
@media all and (min-width: 769px) {
  .offerings__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.offering-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: var(--border1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.offering-card--featured {
  border-color: var(--color-opal);
  border-width: 2px;
  position: relative;
  overflow: hidden;
}
.offering-card--featured::before {
  content: "FCP Refresher";
  position: absolute;
  top: 16px;
  right: -28px;
  background-color: var(--color-opal);
  color: var(--color-white);
  font-family: var(--font1);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 36px;
  transform: rotate(45deg);
}

.offering-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  margin-bottom: var(--x3);
  flex-shrink: 0;
}
.offering-card__icon--green {
  background-color: rgba(39, 174, 96, 0.1);
}
.offering-card__icon--opal {
  background-color: rgba(93, 173, 226, 0.1);
}
.offering-card__icon--gold {
  background-color: rgba(212, 172, 13, 0.1);
}
.offering-card__icon--red {
  background-color: rgba(192, 57, 43, 0.1);
}

.offering-card__title {
  font-family: var(--font2);
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 700;
  color: var(--c1);
  margin-bottom: 10px;
}

.offering-card__description {
  font-family: var(--font1);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-mid-grey);
  margin-bottom: var(--x3);
  flex-grow: 1;
}

.offering-card__meta {
  display: flex;
  gap: var(--x4);
  flex-wrap: wrap;
  margin-bottom: var(--x2);
}

.offering-card__tag {
  font-family: var(--font1);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background-color: var(--color-light-grey);
  color: var(--color-dark-grey);
}
.offering-card__tag--free {
  background-color: rgba(39, 174, 96, 0.1);
  color: var(--color-green);
}

/* --------------------------------------------
	15. HOME — HOW IT WORKS
	-------------------------------------------- */
.how-it-works {
  padding: var(--section-pad-y) var(--gutter-mobile);
  background-color: var(--color-dark);
}
@media all and (min-width: 726px) {
  .how-it-works {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.how-it-works__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.how-it-works__header .section-eyebrow {
  color: var(--color-opal);
}
.how-it-works__header h2 {
  color: var(--color-white);
}
.how-it-works__header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--f4);
  line-height: 1.6;
  margin-top: var(--x4);
}

.steps {
  max-width: var(--w-total);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x2);
  position: relative;
}
@media all and (min-width: 769px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .steps::before {
    content: "";
    position: absolute;
    top: 36px;
    left: calc(16.67% + 36px);
    right: calc(16.67% + 36px);
    height: 2px;
    background: var(--steps-line-gradient);
    opacity: 0.3;
  }
}

.step {
  text-align: center;
  padding: 32px 24px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.step__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font1);
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  margin: 0 auto var(--x3);
  position: relative;
  z-index: 1;
}
.step__number--1 {
  background-color: rgba(39, 174, 96, 0.15);
  color: var(--color-green);
  border: 2px solid rgba(39, 174, 96, 0.3);
}
.step__number--2 {
  background-color: rgba(93, 173, 226, 0.15);
  color: var(--color-opal);
  border: 2px solid rgba(93, 173, 226, 0.3);
}
.step__number--3 {
  background-color: rgba(212, 172, 13, 0.15);
  color: var(--color-gold);
  border: 2px solid rgba(212, 172, 13, 0.3);
}

.step__title {
  font-family: var(--font1);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}

.step__description {
  font-family: var(--font1);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------
	16. HOME — FOUNDER
	-------------------------------------------- */
.founder {
  padding: var(--section-pad-y) var(--gutter-mobile);
  background-color: var(--color-white);
}
@media all and (min-width: 726px) {
  .founder {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.founder__inner {
  max-width: var(--w-total);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media all and (min-width: 900px) {
  .founder__inner {
    grid-template-columns: 360px 1fr;
    gap: 80px;
  }
}

.founder__image {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}
@media all and (min-width: 900px) {
  .founder__image {
    max-width: none;
    margin: 0;
  }
}

.founder__photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background-color: var(--color-light-grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--x4);
  color: var(--color-mid-grey);
  font-size: 14px;
  line-height: 1.5;
  border: 2px dashed rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.founder__photo-icon {
  font-size: 48px;
  line-height: 1;
  opacity: 0.3;
}

.founder__accent {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--founder-accent-gradient);
  opacity: 0.15;
}

.founder__accent-2 {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-gold);
  opacity: 0.15;
}

.founder__content blockquote {
  font-family: var(--font2);
  font-size: 22px;
  line-height: 1.6;
  font-style: italic;
  font-weight: 400;
  color: var(--c1);
  border-left: 4px solid var(--color-opal);
  padding-left: var(--x2);
  margin-bottom: var(--x2);
}

.founder__bio {
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--color-mid-grey);
  margin-bottom: var(--x2);
}

.founder__credentials {
  display: flex;
  gap: var(--x4);
  flex-wrap: wrap;
  margin-bottom: var(--x2);
}

.credential-tag {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: 1.4;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: var(--border1);
  color: var(--color-dark-grey);
  background-color: var(--bg2);
}

.founder__name {
  font-family: var(--font1);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--c1);
  margin-bottom: 2px;
}

.founder__title {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--color-mid-grey);
}

/* --------------------------------------------
	17. HOME — TESTIMONIALS
	-------------------------------------------- */
.testimonials {
  padding: var(--section-pad-y) var(--gutter-mobile);
  background-color: var(--bg2);
}
@media all and (min-width: 726px) {
  .testimonials {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.testimonials__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.testimonials__grid {
  max-width: var(--w-total);
  margin: 0 auto var(--x2);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--x2);
}
@media all and (min-width: 900px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 48px;
  }
}

.testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--x2);
  box-shadow: var(--shadow-sm);
  border: var(--border1);
  position: relative;
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font2);
  font-size: 72px;
  line-height: 1;
  color: var(--color-light-grey);
}

.testimonial-card__text {
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: var(--g5);
  color: var(--color-dark-grey);
  margin-bottom: var(--x3);
}

.testimonial-card__author {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: 1.4;
  font-weight: 700;
  color: var(--c1);
  margin-bottom: 2px;
}

.testimonial-card__role {
  font-family: var(--font1);
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-mid-grey);
}

.testimonials__stat {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--color-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--color-white);
}

.testimonials__stat-number {
  font-family: var(--font1);
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  color: var(--color-green);
  margin-bottom: var(--x5);
}

.testimonials__stat-text {
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

/* --------------------------------------------
	18. HOME — PARTNERS
	-------------------------------------------- */
.partners {
  padding: var(--section-pad-y) var(--gutter-mobile);
  background-color: var(--color-dark-mid);
}
@media all and (min-width: 726px) {
  .partners {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.partners__inner {
  max-width: var(--w-total);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media all and (min-width: 900px) {
  .partners__inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.partners__content h2 {
  color: var(--color-white);
}
.partners__content p {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: 1.7;
  margin-bottom: var(--x3);
}

.partners__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--x4);
  margin-bottom: var(--x2);
}
.partners__list li {
  display: flex;
  align-items: center;
  gap: var(--x4);
  font-family: var(--font1);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}
.partners__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-gold);
  flex-shrink: 0;
}

.partners__logos {
  display: flex;
  flex-direction: column;
  gap: var(--x3);
}

.partner-logo-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--x2) 32px;
  display: flex;
  align-items: center;
  gap: var(--x4);
}

.partner-logo-box__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: rgba(93, 173, 226, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.partner-logo-box__name {
  font-family: var(--font1);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 2px;
}

.partner-logo-box__desc {
  font-family: var(--font1);
  font-size: var(--f6);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------
	19. HOME — NEWSLETTER
	-------------------------------------------- */
.newsletter {
  padding: 64px var(--gutter-mobile);
  background: var(--newsletter-gradient);
}
@media all and (min-width: 726px) {
  .newsletter {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter__inner h2 {
  color: var(--color-white);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.3;
  margin-bottom: var(--x4);
}
.newsletter__inner p {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: 1.6;
  margin-bottom: var(--x2);
}

.newsletter__form {
  display: flex;
  gap: var(--x4);
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter__input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: none;
  font-family: var(--font1);
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--c1);
}
.newsletter__input::placeholder {
  color: var(--color-mid-grey);
}

.newsletter__note {
  font-family: var(--font1);
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
  margin-top: var(--x4);
}

.ep-newsletter-placeholder {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: var(--x2);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font1);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

/* --------------------------------------------
	20. HOME — CONTACT
	-------------------------------------------- */
.contact {
  padding: var(--section-pad-y) var(--gutter-mobile);
  background-color: var(--color-white);
}
@media all and (min-width: 726px) {
  .contact {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.contact__inner {
  max-width: var(--w-total);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media all and (min-width: 900px) {
  .contact__inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.contact__info h2 {
  margin-bottom: var(--x4);
}
.contact__info p {
  font-family: var(--font1);
  font-size: var(--f5);
  line-height: 1.7;
  color: var(--color-mid-grey);
  margin-bottom: var(--x2);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--x4);
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font1);
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-dark-grey);
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.contact__form-area {
  background-color: var(--bg2);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: var(--border1);
}
.contact__form-area h3 {
  font-family: var(--font2);
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 700;
  color: var(--c1);
  margin-bottom: var(--x2);
}

.ep-form-placeholder {
  background-color: var(--color-white);
  border: 2px dashed var(--color-light-grey);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  color: var(--color-mid-grey);
  font-family: var(--font1);
  font-size: 14px;
  line-height: 1.6;
}

/* --------------------------------------------
	21. PAGE & ERROR TEMPLATE FOUNDATIONS
	-------------------------------------------- */
.page-main {
  padding: 120px var(--gutter-mobile) var(--section-pad-y);
  background-color: var(--bg1);
  min-height: 60vh;
}
@media all and (min-width: 726px) {
  .page-main {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.page-main-page, .page-main-error {
  max-width: var(--w-content);
  margin-left: auto;
  margin-right: auto;
}

.page-main-error {
  text-align: center;
}
.page-main-error .page-content {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------
	22. UTILITY CLASSES
	-------------------------------------------- */
.text-center {
  text-align: center;
}

.mt-8 {
  margin-top: var(--x5);
}

.mt-16 {
  margin-top: var(--x4);
}

.mt-24 {
  margin-top: var(--x3);
}

.mt-32 {
  margin-top: var(--x2);
}

/* design-fix-2026-05-08 */
/* Hero content wrapper must be a normal block so its children stay grouped
   inside one grid column, not scattered as direct grid items. */
.hero__content {
  display: block;
}

/* Override PageMotor's form CSS (input[type=checkbox] / input[type=checkbox] + label)
   so the mobile-menu checkbox and hamburger label stay hidden on desktop and
   only appear at narrow viewports. */
.nav__toggle {
  display: none !important;
}

.nav__hamburger {
  display: none !important;
}

@media all and (max-width: 768px) {
  .nav__hamburger {
    display: flex !important;
  }
}
/* Button family used in the hero and on the home page. The original theme
   never shipped these rules, so the buttons rendered as plain green text. */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font1);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}

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

.btn--primary:hover {
  background: var(--color-green-deep);
  border-color: var(--color-green-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn--secondary:hover {
  background: var(--color-white);
  color: var(--color-dark);
  transform: translateY(-1px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn--outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}

.btn--gold:hover {
  background: var(--color-gold-deep);
  border-color: var(--color-gold-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* page-container-home-fix-2026-05-08 */
/* On the home page only, the wrapper around the sections must not
   introduce its own padding or white background. Each section
   (.hero, .impact-strip, .session-banner etc.) handles its own
   background and inner padding. The hero's 140px top padding already
   accounts for the fixed nav. */
.page-main-home {
  padding: 0 !important;
  background: transparent !important;
}

/* hero-image-photo-2026-05-08 */
/* Real photo replaces the hero image placeholder. The img inherits the
   placeholder's rounded card look (4:3, rounded corners, subtle border)
   and uses object-fit: cover so the photo fills the box cleanly. */
.hero__image-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}

/* recent-sessions-gallery-2026-05-10 */
/* From recent sessions — a six-photo gallery between How It Works and the Founder block. */
.recent-sessions {
  padding: var(--section-pad-y) var(--gutter-full);
  background: var(--color-off-white);
}

.recent-sessions__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.recent-sessions__grid {
  max-width: var(--w-total);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .recent-sessions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .recent-sessions__grid {
    grid-template-columns: 1fr;
  }
}
.recent-sessions__photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-light-grey);
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recent-sessions__photo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* nav-logo-image-2026-05-10 */
/* Header logo: full Medilearn brand SVG. Sized to fit the nav cleanly. */
.nav__logo-image {
  height: 48px;
  width: auto;
  display: block;
}

@media (max-width: 480px) {
  .nav__logo-image {
    height: 38px;
  }
}
/* footer-logo-image-2026-05-10 */
.footer__logo-image {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: var(--x4);
}