:root {
  --navy: #000080;
  --navy-bright: #2626b7;
  --orange: #f48309;
  --orange-deep: #d86a00;
  --black: #111111;
  --ink: #202024;
  --muted: #5b5b64;
  --paper: #ffffff;
  --soft: #f3f3f5;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Archivo Black", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.3rem, 5.8vw, 4.8rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 88px;
  padding: 0.85rem clamp(1.25rem, 4vw, 4rem);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--black);
  font-family: "Archivo Black", Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 104px;
  height: auto;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 2rem);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header nav a {
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--navy-bright);
}

.nav-cta {
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--navy);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.language-switcher button {
  min-width: 2.25rem;
  min-height: 2rem;
  border: 0;
  color: var(--black);
  background: transparent;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 900;
  cursor: pointer;
}

.language-switcher button.active {
  color: var(--paper);
  background: var(--navy);
}

.section-inner {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(880px, calc(100% - 2rem));
}

section,
.site-footer {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.hero {
  position: relative;
  min-height: min(860px, calc(100vh - 88px));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background-position: center;
  background-size: cover;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: var(--black);
}

.hero-v2 {
  background-image: url("https://img1.wsimg.com/isteam/getty/1883230015/:/rs=w:1920,m");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 128, 0.22) 48%, rgba(0, 0, 0, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 2rem));
  max-width: 620px;
  margin-left: clamp(1rem, 3vw, 3rem);
  padding-bottom: 3rem;
}

.hero-subhead {
  max-width: 650px;
  margin-top: 1.4rem;
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  line-height: 1.45;
}

.hero-support {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.section-dark {
  color: var(--paper);
  background: var(--black);
}

.section-navy {
  color: var(--paper);
  background: var(--navy);
}

.section-light {
  background: var(--soft);
}

.section-white {
  background: var(--paper);
}

.section-orange {
  color: var(--black);
  background: var(--orange);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 2rem;
  padding: 0.95rem 1.45rem;
  border: 2px solid transparent;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button-row .button {
  margin-top: 0;
}

.center-buttons {
  justify-content: center;
}

.button-primary {
  color: var(--paper);
  background: var(--navy-bright);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.18);
}

.button-light {
  color: var(--navy);
  background: var(--paper);
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.2);
}

.button-dark {
  color: var(--paper);
  background: var(--black);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.18);
}

.delivery-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
}

.delivery-line span {
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.25);
}

.section-label {
  margin-bottom: 0.85rem;
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-dark .section-label,
.section-navy .section-label {
  color: var(--orange);
}

.section-orange .section-label {
  color: var(--black);
}

.problem h2,
.problem p {
  max-width: 850px;
}

.problem h2 {
  margin-bottom: 1.5rem;
}

.strong-line {
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.split h2 {
  margin-bottom: 1.4rem;
}

.feature-panel,
.audience-card,
.topic-card,
.price-card,
.testimonial-grid figure {
  border-radius: var(--radius);
}

.feature-panel {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--black);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.feature-panel h3 {
  margin-bottom: 1rem;
  color: var(--navy);
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--orange-deep);
  content: "✔";
  font-weight: 900;
}

.image-band,
.portrait-panel {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-band {
  min-height: 580px;
  background-position: center;
  background-size: cover;
}

.image-band {
  background-image: url("https://img1.wsimg.com/isteam/getty/1883230015/:/rs=w:1240,h:620,cg:true");
}

.portrait-panel {
  align-self: start;
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: cover;
  object-position: center top;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 1rem;
}

.investment .section-heading p {
  font-weight: 700;
  text-wrap: balance;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.topic-card {
  min-height: 245px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.09);
}

.topic-card h3 {
  color: var(--navy);
}

.topic-card p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.session-breakdown {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.session-breakdown .section-heading {
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.session-group + .session-group {
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.session-group > h3 {
  margin-bottom: 1rem;
  color: var(--black);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.session-card {
  min-height: 230px;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
}

.session-card h4 {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.25;
  text-transform: uppercase;
}

.session-subtitle {
  margin: -0.25rem 0 0.8rem;
  color: var(--black);
  font-weight: 900;
}

.session-card p:last-child {
  margin-bottom: 0;
}

.custom-session-callout {
  max-width: 850px;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--paper);
  background: var(--navy);
  border-radius: var(--radius);
  text-align: center;
}

.custom-session-callout h3 {
  margin-bottom: 0.85rem;
  color: var(--paper);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.custom-session-callout p {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.custom-session-callout .button {
  width: auto;
  color: var(--navy);
  background: var(--paper);
}

.format-list {
  display: grid;
  gap: 0.8rem;
  padding: 1.5rem;
  background: var(--paper);
  border-left: 6px solid var(--orange);
  box-shadow: var(--shadow);
}

.format-list p + p {
  margin-top: 0;
}

.three-column,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.results-grid,
.power-hour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.result-card,
.power-hour-card {
  min-height: 230px;
  padding: 1.5rem;
  border-radius: var(--radius);
}

.result-card {
  background: var(--paper);
  border-top: 6px solid var(--navy);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.power-hour-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.result-card h3,
.power-hour-card h3 {
  margin-bottom: 0.85rem;
  color: var(--navy);
}

.card-kicker {
  margin-bottom: 0.75rem;
  color: var(--black);
  font-weight: 900;
}

.pillar-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.pillar-list li {
  padding: 0.7rem 0.85rem;
  color: var(--paper);
  background: var(--navy);
  font-weight: 800;
}

.ubuntu-quote {
  color: var(--orange-deep);
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.audience-card {
  padding: 1.5rem;
  background: var(--soft);
  border-top: 6px solid var(--navy);
}

.audience-card h3 {
  margin-bottom: 0.9rem;
  color: var(--navy);
}

.testimonials {
  background-image: linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.68)), url("assets/testimonial-background.png");
  background-position: center;
  background-size: cover;
}

.testimonials .section-heading {
  max-width: 1120px;
}

.testimonials .section-heading h2 {
  font-size: clamp(2.1rem, 4.4vw, 4rem);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-grid figure {
  margin: 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
}

figcaption {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.price-card {
  padding: 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.price-card.featured {
  border-top: 8px solid var(--orange);
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin-bottom: 1rem;
  color: var(--navy);
}

.price {
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 900;
}

.note {
  max-width: 860px;
  margin: 2rem auto 0;
  color: var(--black);
  font-weight: 700;
  text-align: center;
}

.center-cta {
  text-align: center;
}

.subhead {
  margin: 0 0 1.2rem;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 900;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 1.4rem;
}

.final-meta {
  font-weight: 900;
}

.below-button {
  margin-top: 1rem;
  overflow-wrap: anywhere;
  font-size: 0.95rem;
}

.contact-card {
  width: min(620px, 100%);
  margin: 2rem auto 0;
  padding: 1.5rem;
  color: var(--black);
  background: var(--paper);
  border-radius: var(--radius);
  text-align: center;
}

.contact-card h3 {
  color: var(--navy);
}

.contact-card a {
  color: var(--navy);
  font-weight: 900;
}

.comparison-page {
  min-height: 100vh;
}

.comparison-page h1 {
  color: var(--navy);
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.comparison-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.comparison-card h2 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.site-footer {
  color: var(--paper);
  background: var(--black);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.site-footer a {
  color: #b8b8ff;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--paper);
}

.footer-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.linkedin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #b8b8ff;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.linkedin-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.linkedin-icon:hover {
  border-color: var(--paper);
  transform: translateY(-1px);
}

.footer-quote {
  color: var(--orange);
  font-family: "Archivo Black", Arial, sans-serif;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .session-grid {
    grid-template-columns: 1fr;
  }

  .results-grid,
  .power-hour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .three-column,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .site-header nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero {
    display: block;
    min-height: 0;
    background: var(--black);
  }

  .hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 2448 / 1024;
    object-fit: contain;
    object-position: center top;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    width: min(680px, calc(100% - 2rem));
    max-width: none;
    margin: 0 auto;
    padding: 2rem 0 3rem;
  }

  .hero-content h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 3.25rem);
  }

  .hero-subhead {
    font-size: 1.05rem;
  }

  .split,
  .split.reverse,
  .testimonial-grid,
  .comparison-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }

  .image-band,
  .portrait-panel {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .brand img {
    width: 82px;
  }

  .site-header nav {
    gap: 0.7rem;
    font-size: 0.76rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 0;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  section,
  .site-footer {
    padding: 3rem 0;
  }

  .topic-grid,
  .results-grid,
  .power-hour-grid,
  .pillar-list {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
