:root {
  --primary: #4f8796;
  --primary-dark: #3f6f7b;
  --primary-deep: #2f5660;
  --primary-light: #7fb7bb;
  --sage: #a7b274;
  --sage-dark: #8e9960;
  --sage-soft: #eef3e2;
  --accent-warm: #f2ede3;
  --danger-soft: #f9ece8;
  --danger-border: #efcfc6;

  --bg: #f2f7f6;
  --surface: #fcfdfc;
  --surface-alt: #e8f1f0;
  --surface-soft: #f7fbfa;

  --text: #24414a;
  --text-strong: #193239;
  --muted: #5f7c84;
  --border: #d6e2e0;
  --border-strong: #c6d7d4;
  --shadow: 0 12px 30px rgba(63, 111, 123, 0.10);
  --shadow-strong: 0 18px 42px rgba(39, 73, 81, 0.16);
  --radius: 18px;
  --radius-lg: 24px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behaviour: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(127, 183, 187, 0.08), transparent 28%),
    linear-gradient(180deg, #f5f9f8 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.hero-image-panel {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

/* ================= HEADER ================= */

.site-header {
  background: rgba(252, 253, 252, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(36, 65, 74, 0.05);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  padding: 0.9rem 0 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 280px;
  min-width: 0;
}

.logo-link img {
  height: 72px;
  width: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
}

.site-nav a {
  padding: 0.72rem 0.92rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
  color: var(--muted);
  transition: 0.2s ease;
}

.site-nav a:not(.nav-consultation):hover,
.site-nav a:not(.nav-consultation).active {
  background: var(--surface-alt);
  color: var(--primary-dark);
  box-shadow: inset 0 0 0 1px rgba(79, 135, 150, 0.08);
}

/* ================= HERO ================= */

.hero {
  padding: 4rem 0 2rem;
  background:
    linear-gradient(180deg, rgba(79, 135, 150, 0.06) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, var(--bg) 0%, #eaf2f1 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.card,
.info-panel,
.cta-box,
.course-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-image {
  height: 200px;
  margin: 0;
}

.hero-copy {
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff, #f2f8f7);
}

.hero-copy-strong {
  position: relative;
  overflow: hidden;
}

.hero-copy-strong::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--sage));
}

.hero-panel {
  padding: 1.5rem;
}

.eyebrow {
  display: inline-block;
  background: var(--surface-alt);
  color: var(--primary-dark);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

/* ================= UNIFIED IMAGE SYSTEM ================= */

.hero-image,
.pricing-image,
.contact-image,
.bespoke-image,
.services-image,
.improvement-image,
.about-image,
.training-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--image-radius);
  border: var(--image-border);
  box-shadow: var(--image-shadow);
  background: #edf5f4;
}

.hero-image img,
.pricing-image img,
.contact-image img,
.bespoke-image img,
.services-image img,
.improvement-image img,
.about-image img,
.training-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: var(--image-filter);
}

.hero-image::after,
.pricing-image::after,
.contact-image::after,
.bespoke-image::after,
.services-image::after,
.improvement-image::after,
.about-image::after,
.training-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--image-overlay-top),
    var(--image-overlay-bottom)
  );
  pointer-events: none;
}

/* ================= TYPOGRAPHY ================= */

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
  color: var(--text-strong);
}

h1 {
  font-size: clamp(1.7rem, 2vw, 2.35rem);
  margin-bottom: 1rem;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 62ch;
}

.sales-line {
  margin-top: 1.5rem;
  font-weight: 700;
  color: var(--primary-deep);
}

/* ================= BUTTONS ================= */

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 10px 22px rgba(63, 111, 123, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(63, 111, 123, 0.24);
}

.btn-secondary {
  background: var(--surface);
  color: var(--primary-dark);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--surface-alt);
  border-color: var(--border-strong);
}

/* ================= GRIDS ================= */

.stats-grid,
.card-grid,
.course-grid,
.contact-grid,
.two-col,
.team-grid {
  display: grid;
  gap: 1.25rem;
}

.stats-grid {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.course-grid {
  grid-template-columns: repeat(2, 1fr);
}

.team-grid {
  grid-template-columns: repeat(2, 1fr);
}

.contact-grid,
.two-col {
  grid-template-columns: repeat(2, 1fr);
}

/* ================= COMPONENTS ================= */

.stat-box {
  padding: 1.2rem;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.stat-box strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}

.stat-box span {
  color: var(--muted);
  font-size: 0.95rem;
}

.stat-box-soft {
  background: linear-gradient(180deg, #f8fcfb, #eef5f4);
}

.section {
  padding: 1.8rem 0;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.card,
.info-panel,
.course-card,
.contact-card {
  padding: 1.6rem;
}

.card p,
.info-panel p,
.course-card p,
.contact-card p {
  color: var(--muted);
}

.card:hover,
.info-panel:hover,
.course-card:hover,
.contact-card:hover {
  box-shadow: var(--shadow-strong);
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--surface-alt);
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: inset 0 0 0 1px rgba(79, 135, 150, 0.08);
}

.highlight {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}

.highlight h2,
.highlight h3 {
  color: #fff;
}

.highlight p,
.highlight li,
.highlight .muted-light {
  color: rgba(255, 255, 255, 0.92);
}

.highlight-rich {
  position: relative;
  overflow: hidden;
}

.highlight-rich::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: rgba(255, 255, 255, 0.55);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.tag {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0;
}

.course-meta span {
  background: var(--surface-alt);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
}

ul.clean {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

ul.clean li + li {
  margin-top: 0.55rem;
}

.clean-strong li {
  padding-left: 0.1rem;
}

.cta-box {
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(79, 135, 150, 0.7), rgba(167, 178, 116, 0.7));
}

.feature-card-primary {
  border-color: rgba(79, 135, 150, 0.24);
  box-shadow: 0 18px 42px rgba(63, 111, 123, 0.15);
}

.feature-card-primary .icon-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

.flagship-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 245, 0.98));
  border-color: rgba(79, 135, 150, 0.16);
  box-shadow: 0 18px 42px rgba(63, 111, 123, 0.12);
}

.sales-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.sales-point {
  padding: 1rem;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
}

.sales-point strong {
  display: block;
  color: var(--primary-deep);
  margin-bottom: 0.35rem;
}

.sales-point span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.training-pathway-box {
  background: linear-gradient(135deg, #fcfdfc, #eef5f4);
  border-color: rgba(79, 135, 150, 0.16);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
}

.pathway-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem;
  text-align: left;
}

.pathway-step strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.pathway-step span {
  color: var(--muted);
  font-size: 0.95rem;
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.comparison-panel {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.comparison-panel h3 {
  margin-bottom: 1rem;
}

.comparison-label {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comparison-panel-problem {
  background: linear-gradient(180deg, #fffaf9, #fff);
  border-color: var(--danger-border);
}

.comparison-panel-problem .comparison-label {
  background: var(--danger-soft);
  color: #9a4a34;
}

.comparison-panel-outcome {
  background: linear-gradient(180deg, #f7fbf4, #fff);
  border-color: #d5e2c0;
}

.comparison-panel-outcome .comparison-label {
  background: var(--sage-soft);
  color: #62713e;
}

.value-card {
  background: linear-gradient(180deg, #ffffff, #f8fbfa);
}

.value-card h3 {
  color: var(--primary-deep);
}

.cta-box-strong {
  background: linear-gradient(135deg, #fcfdfc, #eef5f4);
}

.cta-box-sales {
  border-color: rgba(79, 135, 150, 0.22);
  box-shadow: var(--shadow-strong);
}

/* ================= FORMS ================= */

.form-group {
  margin-bottom: 1rem;
}

label {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  font: inherit;
  color: var(--text);
  background: #fdfefe;
}

textarea {
  resize: vertical;
  min-height: 180px;
}

/* ================= FOOTER ================= */

.site-footer {
  margin-top: 3rem;
  padding: 2rem 0 3rem;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.page-intro {
  padding: 3rem 0 1rem;
}

/* ================= HOMEPAGE EXTRAS ================= */

.hero-home {
  padding-top: 3.5rem;
}

.hero-panel-home {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-panel-box {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-point {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--primary-dark);
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.section-tight {
  padding-top: 0.5rem;
}

.section-soft {
  background: linear-gradient(180deg, transparent, rgba(127, 183, 187, 0.08));
  border-top: 1px solid rgba(214, 226, 224, 0.7);
  border-bottom: 1px solid rgba(214, 226, 224, 0.7);
}

.centred {
  text-align: center;
}

.centred-text {
  margin-left: auto;
  margin-right: auto;
}

.issue-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.issue-card {
  padding: 1rem 1rem 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(36, 65, 74, 0.08);
  box-shadow: 0 8px 20px rgba(36, 65, 74, 0.06);
}

.issue-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-strong);
  font-size: 1rem;
}

.issue-card span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.comparison-panel-problem .issue-card {
  background: linear-gradient(180deg, #ffffff, #fff8f6);
  border-left: 4px solid #d9826b;
}

.comparison-panel-outcome .issue-card {
  background: linear-gradient(180deg, #ffffff, #f7fbf4);
  border-left: 4px solid #8e9960;
}

.comparison-panel-outcome .issue-card strong {
  color: #43512a;
}

@media (max-width: 960px) {
  .issue-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= INNER PAGE POLISH ================= */

.page-intro {
  padding: 3.5rem 0 1.5rem;
}

.page-intro .two-col {
  align-items: stretch;
}

.page-intro .two-col > div:first-child {
  background: linear-gradient(135deg, #fcfdfc, #eef5f4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.9rem 2rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.page-intro .two-col > div:first-child::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--sage));
}

.page-intro .lead {
  max-width: none;
}

.page-intro h1 {
  font-size: clamp(1.9rem, 1.8vw, 2.35rem);
  line-height: 1.14;
  max-width: none;
}

.page-intro .about-image,
.page-intro .services-image,
.page-intro .improvement-image,
.page-intro .pricing-image,
.page-intro .contact-image,
.page-intro .bespoke-image,
.page-intro .training-image {
  width: 100%;
  aspect-ratio: 14 / 10;
  min-height: 0;
  height: 100%;
  align-self: stretch;
  border-radius: var(--image-radius);
}

.page-intro .about-image img,
.page-intro .services-image img,
.page-intro .improvement-image img,
.page-intro .pricing-image img,
.page-intro .contact-image img,
.page-intro .bespoke-image img,
.page-intro .training-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-intro .two-col > div:first-child p:last-child {
  margin-bottom: 0;
}

/* ================= SECTION RHYTHM ================= */

.section {
  padding: 2.25rem 0;
}

.section-heading {
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  max-width: 18ch;
}

.section-heading.centred h2,
.centred .section-heading h2,
.centred-text + h2 {
  margin-left: auto;
  margin-right: auto;
}

/* ================= UNIVERSAL CARD UPGRADE ================= */

.card,
.info-panel,
.course-card,
.contact-card,
.cta-box {
  border-radius: var(--radius-lg);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover,
.info-panel:hover,
.course-card:hover,
.contact-card:hover,
.cta-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(79, 135, 150, 0.18);
}

.card h3,
.info-panel h2,
.course-card h3,
.contact-card h3 {
  color: var(--text-strong);
}

/* ================= INFO PANELS ================= */

.info-panel {
  background: linear-gradient(180deg, #ffffff, #f8fbfa);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.info-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(79, 135, 150, 0.7), rgba(167, 178, 116, 0.7));
}

.info-panel.highlight::before {
  display: none;
}

.info-panel.highlight {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* ================= SERVICE / COURSE / GENERIC CARDS ================= */

.card,
.course-card {
  background: linear-gradient(180deg, #ffffff, #f9fbfb);
  position: relative;
  overflow: hidden;
}

.card::before,
.course-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(79, 135, 150, 0.75), rgba(167, 178, 116, 0.75));
}

.course-card h3,
.card h3 {
  margin-bottom: 0.85rem;
}

.card p,
.course-card p {
  margin-bottom: 0.85rem;
}

/* ================= COURSE META ================= */

.course-meta {
  margin: 1rem 0 1.15rem;
}

.course-meta span {
  background: linear-gradient(180deg, #f7fbfa, #ebf3f2);
  border: 1px solid rgba(79, 135, 150, 0.10);
}

/* ================= CTA BOXES ================= */

.cta-box {
  background: linear-gradient(135deg, #fcfdfc, #eef5f4);
  border: 1px solid rgba(79, 135, 150, 0.16);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--sage));
}

.cta-box h2 {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-box p {
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}

/* ================= LISTS ================= */

ul.clean {
  padding-left: 0;
  list-style: none;
}

ul.clean li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

ul.clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sage-dark);
}

.highlight ul.clean li::before {
  background: rgba(255, 255, 255, 0.85);
}

/* ================= BUTTON ROW TIDY ================= */

.button-row {
  align-items: center;
}

/* ================= SUBTLE PAGE BODY POLISH ================= */

main .section:nth-of-type(even):not(.section-soft) {
  position: relative;
}

main .section:nth-of-type(even):not(.section-soft)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

/* ================= TEXT CONTRAST UPGRADE ================= */

body {
  color: #1e2f35;
}

h1,
h2,
h3 {
  color: #14262c;
}

.card p,
.info-panel p,
.course-card p,
.contact-card p,
.cta-box p {
  color: #2f4a52;
}

ul.clean li {
  color: #2f4a52;
}

.lead {
  color: #3b5a63;
}

.stat-box span {
  color: #35545c;
}

.pathway-step span,
.sales-point span {
  color: #35545c;
}

.btn-secondary {
  color: #24414a;
}

.card,
.info-panel,
.course-card,
.contact-card {
  background: #ffffff;
}

/* ================= FIX: HIGHLIGHT TEXT CONTRAST ================= */

.highlight,
.highlight * {
  color: #ffffff !important;
}

.highlight p,
.highlight li,
.highlight span {
  color: rgba(255, 255, 255, 0.92) !important;
}

.highlight .eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff !important;
}

.highlight ul.clean li::before {
  background: rgba(255, 255, 255, 0.9);
}

/* ================= FIX: FULL-WIDTH HEADINGS ================= */

.section-heading h2,
.section-heading p {
  max-width: none;
}

.cta-box h2,
.cta-box p {
  max-width: none;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading .lead {
  font-size: 1.15rem;
}

.section-wide .container {
  max-width: 1200px;
}

.info-panel p,
.info-panel .lead {
  max-width: 1200px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 960px) {
  .hero-grid,
  .card-grid,
  .course-grid,
  .contact-grid,
  .two-col,
  .team-grid,
  .stats-grid,
  .hero-proof-grid,
  .transformation-grid,
  .pathway-grid,
  .sales-points {
    grid-template-columns: 1fr;
  }

  .header-inner {
    align-items: flex-start;
  }

  .logo-link img {
    height: 64px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-copy {
    padding: 1.8rem;
  }

  .comparison-panel,
  .cta-box,
  .card,
  .info-panel {
    padding: 1.4rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-copy h1,
  .page-intro h1 {
    max-width: none;
  }

  .hero-image {
    height: 220px;
  }

  .page-intro .about-image,
  .page-intro .services-image,
  .page-intro .improvement-image,
  .page-intro .pricing-image,
  .page-intro .contact-image,
  .page-intro .bespoke-image,
  .page-intro .training-image {
    min-height: 240px;
  }
}

/* ================= APRIL 2026 SALES / CONTRAST UPGRADE ================= */

:root {
  --text: #20353c;
  --text-strong: #13252b;
  --muted: #38555e;
  --muted-soft: #4a6770;
  --surface: #ffffff;
  --surface-alt: #edf5f4;
  --surface-soft: #f7fbfb;
  --border: #d2e0de;
  --border-strong: #bdd2cf;
  --primary: #3f7c89;
  --primary-dark: #2f6672;
  --primary-deep: #214d56;
  --primary-light: #77aeb6;
  --shadow: 0 12px 30px rgba(33, 77, 86, 0.10);
  --shadow-strong: 0 18px 42px rgba(24, 57, 64, 0.16);
  --image-radius: 24px;
  --image-border: 1px solid rgba(63, 124, 137, 0.12);
  --image-shadow: 0 18px 42px rgba(24, 57, 64, 0.16);
  --image-overlay-top: rgba(244, 248, 247, 0.08);
  --image-overlay-bottom: rgba(244, 248, 247, 0.22);
  --image-filter: brightness(0.96) contrast(1.04) saturate(1.02);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(119, 174, 182, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fbfb 0%, #eef5f4 100%);
}

h1,
h2,
h3 {
  color: var(--text-strong);
}

.lead,
.card p,
.info-panel p,
.course-card p,
.contact-card p,
.cta-box p,
ul.clean li,
.stat-box span,
.pathway-step span,
.sales-point span,
.issue-card span {
  color: var(--muted);
}

.site-nav a {
  color: var(--text);
}

.site-nav a:not(.nav-consultation):hover,
.site-nav a:not(.nav-consultation).active {
  color: var(--primary-deep);
  background: #eaf2f1;
  box-shadow: inset 0 0 0 1px rgba(63, 124, 137, 0.12);
}

.hero-copy,
.page-intro .two-col > div:first-child,
.card,
.info-panel,
.course-card,
.contact-card,
.cta-box,
.hero-panel,
.hero-panel-box {
  background: var(--surface);
}

.info-panel {
  background: linear-gradient(180deg, #ffffff, #f8fbfb);
}

.highlight,
.info-panel.highlight,
.highlight-rich {
  background: linear-gradient(135deg, #2f6672, #3f7c89);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.10);
}

.highlight *,
.info-panel.highlight *,
.highlight-rich * {
  color: #ffffff !important;
}

.highlight p,
.highlight li,
.highlight span,
.info-panel.highlight p,
.info-panel.highlight li,
.info-panel.highlight span,
.highlight-rich p,
.highlight-rich li,
.highlight-rich span {
  color: rgba(255, 255, 255, 0.94) !important;
}

.highlight .eyebrow,
.info-panel.highlight .eyebrow,
.highlight-rich .eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.highlight ul.clean li::before,
.info-panel.highlight ul.clean li::before,
.highlight-rich ul.clean li::before {
  background: rgba(255, 255, 255, 0.92);
}

.btn {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff !important;
  border: 1px solid var(--primary-dark);
  box-shadow: 0 10px 22px rgba(33, 77, 86, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-deep));
  color: #ffffff !important;
  border-color: var(--primary-deep);
  box-shadow: 0 14px 28px rgba(33, 77, 86, 0.24);
}

.highlight .btn-primary,
.info-panel.highlight .btn-primary,
.highlight-rich .btn-primary {
  background: #ffffff;
  color: var(--primary-deep) !important;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 22px rgba(10, 30, 35, 0.14);
}

.highlight .btn-primary:hover,
.info-panel.highlight .btn-primary:hover,
.highlight-rich .btn-primary:hover {
  background: #f1f7f6;
  color: var(--primary-deep) !important;
  border-color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--primary-deep);
  border-color: rgba(47, 102, 114, 0.16);
}

.btn-secondary:hover {
  background: #edf5f4;
  color: var(--primary-deep);
  border-color: rgba(47, 102, 114, 0.26);
}

.card:hover,
.info-panel:hover,
.course-card:hover,
.contact-card:hover,
.cta-box:hover {
  border-color: rgba(63, 124, 137, 0.22);
}

.hero-point,
.course-meta span,
.tag {
  font-weight: 700;
}

.consultation-strip {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #f6fbfa, #edf5f4);
  border: 1px solid rgba(63, 124, 137, 0.14);
}

.consultation-strip strong {
  display: block;
  color: var(--primary-deep);
  margin-bottom: 0.25rem;
}

.consultation-strip span {
  color: var(--muted);
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.audit-output-list li strong {
  color: var(--text-strong);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pain-card {
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fbfb);
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(24, 57, 64, 0.06);
}

.pain-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-strong);
}

.pain-card span {
  color: var(--muted);
}

.section-subtle {
  background: linear-gradient(180deg, rgba(119, 174, 182, 0.04), rgba(119, 174, 182, 0.09));
  border-top: 1px solid rgba(210, 224, 222, 0.75);
  border-bottom: 1px solid rgba(210, 224, 222, 0.75);
}

@media (max-width: 960px) {
  .problem-solution-grid,
  .pain-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= NAV REDESIGN ================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
}

.header-inner {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.9rem 0;
  flex-wrap: nowrap;
}

.logo-link {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 280px;
}

.logo-link img {
  display: block;
  height: 64px;
  width: auto;
  max-width: 100%;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(24, 57, 64, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--primary-deep);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  max-width: 100%;
  flex-wrap: nowrap;
}

.site-nav > a,
.nav-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 0.82rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1;
  white-space: nowrap;
  color: var(--text);
  transition: 0.2s ease;
}

.site-nav > a:not(.nav-consultation):hover,
.site-nav > a:not(.nav-consultation).active,
.nav-group[open] > .nav-summary,
.nav-group.active > .nav-summary,
.nav-summary:hover {
  background: #eaf2f1;
  color: var(--primary-deep);
  box-shadow: inset 0 0 0 1px rgba(63, 124, 137, 0.12);
}

.nav-group {
  position: relative;
}

.nav-group summary {
  list-style: none;
  cursor: pointer;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-group[open] > .nav-summary::after {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 240px;
  padding: 0.55rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 0.2rem;
  z-index: 2000;
}

.nav-dropdown a {
  display: block;
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  font-weight: 700;
  color: var(--text);
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  background: #edf5f4;
  color: var(--primary-deep);
}

.nav-consultation {
  margin-left: 0.35rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff !important;
  border: 1px solid var(--primary-dark);
  box-shadow: 0 10px 22px rgba(33, 77, 86, 0.16);
}

.nav-consultation:hover,
.nav-consultation:focus,
.nav-consultation:active {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-deep));
  color: #ffffff !important;
  border-color: var(--primary-deep);
  box-shadow: 0 14px 28px rgba(33, 77, 86, 0.24);
}

.site-nav > a.nav-consultation:hover,
.site-nav > a.nav-consultation:focus,
.site-nav > a.nav-consultation:active {
  color: #ffffff !important;
}

.footer-link {
  color: var(--primary-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.2s ease;
}

.footer-link:hover {
  border-bottom: 1px solid var(--primary-deep);
  opacity: 0.85;
}

/* ================= TOOLS GRID POLISH ================= */

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.tools-grid .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tools-grid .card p {
  margin-bottom: 0.75rem;
}

.tools-grid .card h3 {
  min-height: 2.6em;
}

.tools-grid .icon-box {
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .site-nav > a,
  .nav-summary {
    padding: 0.68rem 0.74rem;
    font-size: 0.88rem;
  }

  .nav-consultation {
    margin-left: 0.15rem;
  }
}

@media (max-width: 970px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.3rem;
    width: min(340px, calc(100vw - 2rem));
    max-height: calc(100vh - 6.5rem);
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 2000;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav > a,
  .nav-summary,
  .nav-consultation {
    width: 100%;
    justify-content: space-between;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    margin-left: 0;
  }

  .nav-group {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    margin-top: 0.25rem;
    padding: 0.35rem;
    box-shadow: none;
    border-radius: 14px;
    background: #f7fbfb;
    border: 1px solid rgba(63, 124, 137, 0.12);
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .logo-link {
    max-width: 235px;
  }

  .logo-link img {
    height: 56px;
  }
}

/* ================= TOOLS PAGE / EXTRA NAV ROOM ================= */

@media (max-width: 1260px) and (min-width: 971px) {
  .site-nav > a,
  .nav-summary {
    padding: 0.64rem 0.68rem;
    font-size: 0.84rem;
  }

  .logo-link {
    max-width: 250px;
  }

  .logo-link img {
    height: 58px;
  }
}

/* ================= TOOLS PAGE IMAGE CARDS ================= */

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.tool-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
}

.tool-card-image {
  position: relative;
  height: 240px;
  padding: 0.6rem;
  background: linear-gradient(180deg, #f7fbfb, #edf5f4);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.tool-card-image img {
  border-radius: 12px;
  border: none;
  box-shadow:
    0 6px 16px rgba(36, 65, 74, 0.08),
    inset 0 0 0 1px rgba(36, 65, 74, 0.04);
}

.tool-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 42%,
    rgba(252, 253, 252, 1) 100%
  );
  pointer-events: none;
}

.tool-card:hover .tool-card-image img {
  transform: scale(1.02);
}

.tool-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.6rem;
}

.tool-card-body .icon-box {
  flex-shrink: 0;
}

.tool-card-body h3 {
  min-height: 2.6em;
}

.tool-card-body p {
  margin-bottom: 0.8rem;
}

.tool-card-body p:last-child {
  margin-top: auto;
  margin-bottom: 0;
}

.tools-grid .tool-card:nth-child(1) .tool-card-image img,
.tools-grid .tool-card:nth-child(2) .tool-card-image img,
.tools-grid .tool-card:nth-child(3) .tool-card-image img,
.tools-grid .tool-card:nth-child(4) .tool-card-image img {
  object-position: center top;
}

@media (min-width: 1200px) {
  .tool-card-image {
    height: 260px;
  }
}

@media (max-width: 960px) {
  .tool-card-image {
    height: 220px;
    padding: 0.5rem;
  }
}

@media (max-width: 560px) {
  .tool-card-image {
    height: 190px;
    padding: 0.45rem;
  }

  .tool-card-body {
    padding: 1.35rem;
  }
}

@media (max-width: 1100px) {
  .hero-copy h1 {
    font-size: clamp(1.9rem, 2.4vw, 2.6rem);
  }

  .hero-panel-box h2 {
    font-size: clamp(1.55rem, 2vw, 2.2rem);
  }
}

/* ================= SALES UPGRADES ================= */

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

.quote-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.quote-card h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  color: var(--text-strong);
}

.quote-card p {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
  color: var(--text-strong);
}

.quote-card span {
  display: inline-block;
  color: var(--muted);
  font-size: 0.92rem;
}

.priced-card {
  position: relative;
}

.price-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-value {
  font-size: 1.9rem;
  line-height: 1.1;
  color: var(--primary-dark);
  font-weight: 700;
  margin: 0.85rem 0 0.8rem;
}

.priced-card-featured {
  border-color: rgba(79, 135, 150, 0.35);
  box-shadow: var(--shadow-strong);
}

.priced-card-flagship {
  background: linear-gradient(180deg, rgba(79, 135, 150, 0.06) 0%, rgba(252, 253, 252, 1) 100%);
}

/* ================= FOUR-CARD GRIDS ================= */

.card-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.card-grid-2x2 .card,
.card-grid-2x2 .info-panel,
.card-grid-2x2 .course-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-grid-2x2 .button-row {
  margin-top: auto;
}

@media (max-width: 960px) {
  .card-grid-2x2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .quote-grid,
  .quote-grid-two {
    grid-template-columns: 1fr;
  }
}

.small {
  font-size: 0.95rem;
  color: var(--muted);
}