* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #061527;
  background: #031424;
}

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

.site-header {
  height: 74px;
  padding: 0 34px;
  background: #06172a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}

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

.logo-icon {
  display: none;
}

.logo strong,
.logo span,
.logo small {
  display: none;
}

nav {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

nav a:hover {
  color: #e5a638;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #e2a13b;
  color: #061527;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 14px 28px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.nav-btn {
  font-size: 13px;
  padding: 14px 24px;
}

.hero {
  min-height: 510px;
  padding: 38px 52px 24px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 620px;
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3,16,30,1) 0%, rgba(3,16,30,0.92) 32%, rgba(3,16,30,0.35) 72%),
    url("../Images/safari-bg.jpg");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: clamp(44px, 5vw, 64px);
  line-height: 0.96;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

.hero h1 span {
  color: #e4a437;
}

.hero h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #e4a437;
  margin-top: 22px;
}

.hero-lead {
  font-size: 20px;
  line-height: 1.35;
  max-width: 460px;
  margin-bottom: 26px;
}

.hero-small {
  font-size: 14px;
  margin-bottom: 22px;
}

.hero-btn {
  font-size: 18px;
  min-width: 370px;
  margin-bottom: 22px;
}

.hero-btn span {
  font-size: 28px;
}

.trust-row {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #e9eef5;
}

.score-card {
  background: #06192c;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 28px 45px rgba(0,0,0,0.55);
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
}

.card-top {
  color: #fff;
  margin-bottom: 24px;
}

.card-top strong {
  color: #f3b144;
}

.card-top small {
  display: block;
  font-size: 10px;
}

.score-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.gauge {
  height: 130px;
  border-radius: 150px 150px 0 0;
  background: conic-gradient(from 230deg, #f04735 0deg, #f1a536 75deg, #74bd42 140deg, transparent 142deg);
  position: relative;
  overflow: hidden;
}

.gauge::after {
  content: "";
  position: absolute;
  inset: 24px;
  bottom: 0;
  background: #06192c;
  border-radius: 120px 120px 0 0;
}

.needle {
  position: absolute;
  width: 82px;
  height: 4px;
  background: #f3c45b;
  bottom: 20px;
  left: 50%;
  transform-origin: left center;
  transform: rotate(-35deg);
  z-index: 2;
  border-radius: 10px;
}

.score-main h2 {
  font-size: 48px;
  color: #fff;
}

.score-main h2 span {
  font-size: 16px;
}

.score-main p {
  color: #84c65a;
  font-size: 11px;
  font-weight: 800;
}

.chart {
  height: 100px;
  display: flex;
  align-items: end;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 18px;
}

.chart div {
  flex: 1;
  background: #e4a437;
  border-radius: 4px;
}

.chart div:nth-child(1) { height: 24%; }
.chart div:nth-child(2) { height: 30%; }
.chart div:nth-child(3) { height: 42%; }
.chart div:nth-child(4) { height: 38%; }
.chart div:nth-child(5) { height: 52%; }
.chart div:nth-child(6) { height: 56%; }
.chart div:nth-child(7) { height: 60%; }
.chart div:nth-child(8) { height: 72%; }
.chart div:nth-child(9) { height: 82%; }
.chart div:nth-child(10) { height: 94%; }

.metric-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric-list div {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 14px;
}

.metric-list small {
  display: block;
  color: #a9b6c5;
  font-size: 10px;
}

.metric-list strong {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-top: 6px;
}

.next-panel {
  margin: 0 auto 26px;
  width: calc(100% - 84px);
  border: 1px solid #d89b35;
  border-radius: 10px;
  color: #fff;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  background: #06172a;
}

.next-panel h3 {
  text-align: center;
  color: #e3a536;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 0;
}

.steps {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
}

.step {
  text-align: center;
  position: relative;
  width: 150px;
}

.step span {
  background: #e3a536;
  color: #061527;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
}

.step-icon {
  font-size: 36px;
  margin: 10px 0;
}

.step p {
  font-size: 13px;
  line-height: 1.15;
}

.arrow {
  font-size: 42px;
  line-height: 1;
  color: #fff;
}

.signature {
  position: static;
  margin: -6px auto 0;
  color: #e3a536;
  font-family: cursive;
  font-size: 24px;
  text-align: center;
  transform: rotate(-3deg);
}

.founder-card {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  border-left: none;
  border-top: 1px solid #d89b35;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  align-items: center;
}

.founder-photo {
  width: 110px;
  height: 110px;
  background: url("../Images/hendrik.jpg"), #ddd;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  border: 3px solid #d89b35;
}

.founder-card h4 {
  color: #e3a536;
  font-size: 27px;
  font-family: cursive;
  font-weight: 400;
  margin-bottom: 8px;
}

.founder-card p {
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.founder-card strong {
  color: #e3a536;
  display: block;
}

.founder-card small {
  display: block;
  color: #d8e0ea;
}

.problem-section {
  min-height: 640px;
  background:
    linear-gradient(90deg, #f7f5f1 0%, #f7f5f1 39%, rgba(247,245,241,0.82) 52%, rgba(247,245,241,0.05) 68%),
    url("../Images/safari-road.jpg");
  background-size: cover;
  background-position: center right;
  padding: 58px 60px;
}

.problem-content {
  max-width: 470px;
}

.section-label {
  color: #d09128;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: #d09128;
  margin-right: 10px;
  vertical-align: middle;
}

.problem-section h2 {
  font-size: 39px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.problem-section h2 span {
  color: #d09128;
}

.problem-section > p,
.problem-content > p {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 26px;
}

.problem-list {
  margin-top: 24px;
}

.problem-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #d7d7d7;
}

.problem-icon {
  width: 52px;
  height: 52px;
  background: #06172a;
  color: #e3a536;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 800;
}

.problem-item strong {
  font-size: 16px;
}

.problem-item p {
  font-size: 13px;
  line-height: 1.35;
}

.warning-box {
  margin-top: 28px;
  background: #eee8df;
  padding: 18px;
  border-radius: 7px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  color: #061527;
}

.warning-box p {
  font-size: 15px;
  line-height: 1.4;
}

.warning-box span {
  color: #d09128;
}

.clarity-strip {
  background: #06172a;
  color: #fff;
  text-align: center;
  padding: 26px 20px 34px;
}

.clarity-strip small {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.clarity-strip h2 {
  color: #e3a536;
  font-size: 37px;
  margin-top: 10px;
}

@media (max-width: 1100px) {
  nav {
    display: none;
  }

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

  .score-card {
    transform: none;
  }

  .next-panel {
    width: calc(100% - 36px);
    margin: 0 auto 22px;
    padding: 24px 18px;
  }

  .founder-card {
    border-left: none;
    border-top: 1px solid #d89b35;
    padding-left: 0;
    padding-top: 24px;
  }
}

@media (max-width: 700px) {
  .logo-img {
    width: 135px;
  }

  .site-header {
    height: auto;
    padding: 18px;
    flex-direction: column;
    gap: 14px;
  }

  .hero {
    padding: 40px 24px;
  }

  .hero-btn {
    min-width: 100%;
  }

  .trust-row,
  .steps {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
  }

  .metric-list {
    grid-template-columns: 1fr;
  }

  .next-panel {
    margin: 0 18px 22px;
  }

  .signature {
    position: static;
    margin-top: 20px;
    text-align: center;
  }

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-photo {
    margin: auto;
  }

  .problem-section {
    padding: 44px 24px;
    background:
      linear-gradient(90deg, rgba(247,245,241,0.96), rgba(247,245,241,0.88)),
      url("../Images/safari-road.jpg");
    background-size: cover;
  }

  .clarity-strip h2 {
    font-size: 28px;
  }
}

.site-footer {
  background: #06172a;
  color: #fff;
  padding: 40px 40px 20px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-left strong {
  font-size: 20px;
}

.footer-left span {
  color: #e3a536;
}

.footer-left p {
  font-size: 13px;
  color: #cbd5e1;
  margin-top: 5px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
}

.footer-links a:hover {
  color: #e3a536;
}

.footer-cta {
  display: flex;
  justify-content: flex-end;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 12px;
  font-size: 12px;
  color: #94a3b8;
}
.works-page {
  background: #f7f7f5;
  color: #07172a;
  padding: 34px 28px 24px;
}

.works-hero {
  text-align: center;
  margin-bottom: 22px;
}

.centered {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.centered::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 2px;
  background: #d09128;
  margin-left: 10px;
}

.works-hero h1 {
  font-size: 50px;
  line-height: 0.95;
  letter-spacing: -1.5px;
}

.works-hero h1 span {
  color: #c58a22;
}

.works-hero p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.35;
}

.process-row {
  max-width: 1180px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr;
  gap: 10px;
  align-items: center;
}

.process-card {
  min-height: 128px;
  background: #fff;
  border: 1px solid #d8dce2;
  border-radius: 8px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
}

.process-icon,
.measure-icon,
.strip-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #06172a;
  color: #e3a536;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 900;
}

.process-card span {
  color: #d09128;
  font-size: 19px;
  font-weight: 900;
}

.process-card h3 {
  font-size: 24px;
  line-height: 1;
}

.process-card p {
  font-size: 12px;
  line-height: 1.25;
  margin-top: 5px;
}

.process-arrow {
  color: #d09128;
  font-size: 42px;
  text-align: center;
}

.measure-panel {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.34fr 1.22fr;
  background: #fff;
  border: 1px solid #d8dce2;
  border-radius: 8px;
  overflow: hidden;
}

.measure-copy {
  padding: 22px 30px;
}

.measure-copy h2 {
  text-transform: uppercase;
  font-size: 21px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.measure-list {
  display: grid;
  gap: 7px;
}

.measure-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #e0e0e0;
}

.measure-icon {
  width: 48px;
  height: 48px;
  font-size: 24px;
}

.measure-item strong {
  font-size: 14px;
}

.measure-item p {
  font-size: 11.5px;
  line-height: 1.25;
}

.quote-box {
  align-self: center;
  margin: 0 18px;
  min-height: 240px;
  background: #f4eee7;
  border-radius: 9px;
  color: #07172a;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.quote-box div {
  color: #d09128;
  font-size: 50px;
  height: 28px;
}

.quote-box p {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.quote-box strong {
  color: #d09128;
  font-size: 18px;
  line-height: 1.2;
}

.laptop-preview {
  min-height: 390px;
  background:
    linear-gradient(rgba(4, 15, 27, 0.1), rgba(4, 15, 27, 0.2)),
    url("../Images/laptop-desk.jpg");
  background-size: cover;
  background-position: center;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laptop-screen {
  width: 88%;
  min-height: 275px;
  background: #06172a;
  border: 8px solid #111827;
  border-radius: 14px;
  padding: 18px;
  color: #fff;
  box-shadow: 0 25px 45px rgba(0,0,0,0.45);
}

.mini-brand {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 22px;
}

.mini-brand span {
  color: #e3a536;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.mini-metrics div {
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  padding: 12px;
}

.mini-metrics small {
  display: block;
  color: #dbe4ee;
  font-size: 8px;
  text-transform: uppercase;
}

.mini-metrics strong {
  display: block;
  font-size: 16px;
  margin: 7px 0;
}

.mini-metrics span {
  color: #7fc65d;
  font-size: 10px;
  font-weight: 800;
}

.mini-chart {
  margin-top: 26px;
  height: 90px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: end;
}

.mini-chart i {
  flex: 1;
  background: #e3a536;
  border-radius: 4px;
}

.mini-chart i:nth-child(1) { height: 18%; }
.mini-chart i:nth-child(2) { height: 30%; }
.mini-chart i:nth-child(3) { height: 44%; }
.mini-chart i:nth-child(4) { height: 38%; }
.mini-chart i:nth-child(5) { height: 52%; }
.mini-chart i:nth-child(6) { height: 63%; }
.mini-chart i:nth-child(7) { height: 75%; }
.mini-chart i:nth-child(8) { height: 92%; }

.works-bottom-strip {
  max-width: 1220px;
  margin: 10px auto 0;
  background: #06172a;
  color: #fff;
  border-radius: 8px;
  padding: 22px 42px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: 38px;
}

.works-bottom-strip > div:not(.strip-divider) {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
}

.strip-icon {
  width: 52px;
  height: 52px;
  font-size: 26px;
}

.works-bottom-strip h3 {
  color: #e3a536;
  font-size: 22px;
  margin-bottom: 6px;
}

.works-bottom-strip p {
  font-size: 13px;
}

.strip-divider {
  width: 1px;
  height: 58px;
  background: rgba(227,165,54,0.65);
}

@media (max-width: 1000px) {
  .process-row,
  .measure-panel,
  .works-bottom-strip {
    grid-template-columns: 1fr;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .quote-box {
    margin: 18px;
  }

  .strip-divider {
    display: none;
  }
}

@media (max-width: 700px) {
  .works-page {
    padding: 28px 16px;
  }

  .works-hero h1 {
    font-size: 34px;
  }

  .process-card,
  .works-bottom-strip > div:not(.strip-divider) {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .measure-panel {
    display: block;
  }

  .laptop-preview {
    padding: 20px;
  }

  .mini-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .works-bottom-strip {
    padding: 24px;
  }
}

.forwho-page {
  background: #f7f4ef;
  color: #07172a;
}

.forwho-hero {
  min-height: 675px;
  padding: 44px 36px 24px;
  background:
    linear-gradient(90deg, rgba(247,244,239,1) 0%, rgba(247,244,239,0.95) 38%, rgba(247,244,239,0.22) 62%),
    url("../Images/road-sign-bg.jpg");
  background-size: cover;
  background-position: center right;
}

.forwho-copy {
  max-width: 620px;
}

.forwho-copy h1 {
  font-size: 43px;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.forwho-copy h1 span {
  color: #c48724;
}

.forwho-copy > p {
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 24px;
}

.forwho-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,0.58);
  margin-bottom: 22px;
}

.forwho-grid div {
  text-align: center;
  padding: 18px 16px;
  border-right: 1px solid #ded6ca;
  border-bottom: 1px solid #ded6ca;
}

.forwho-grid i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #06172a;
  color: #e3a536;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  font-size: 26px;
  font-style: normal;
  font-weight: 900;
}

.forwho-grid strong {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}

.forwho-grid small {
  display: block;
  font-size: 10px;
  line-height: 1.35;
}

.not-for-box {
  background: #eee5db;
  border-radius: 8px;
  padding: 18px 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 15px;
}

.not-for-box strong {
  color: #c48724;
  font-size: 34px;
  line-height: 1;
}

.not-for-box span {
  color: #c48724;
  font-weight: 900;
}

.forwho-cta {
  margin: -88px 28px 0;
  position: relative;
  z-index: 2;
  background: #06172a;
  color: #fff;
  border: 1px solid #d89b35;
  border-radius: 8px;
  padding: 25px 38px;
  display: grid;
  grid-template-columns: 1.35fr 0.95fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.cta-icon {
  width: 72px;
  height: 72px;
  border: 2px solid #d89b35;
  color: #d89b35;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 34px;
}

.cta-left h2 {
  font-size: 28px;
  line-height: 1.15;
}

.cta-left h2 span {
  color: #e3a536;
}

.cta-mid {
  border-left: 1px solid rgba(216,155,53,0.7);
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.5;
}

.forwho-cta small {
  display: block;
  margin-top: 9px;
  color: #d8e0ea;
  font-size: 11px;
}

.hendrik-section {
  padding: 64px 36px 20px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 54px;
  background:
    linear-gradient(90deg, rgba(247,244,239,1), rgba(247,244,239,0.8)),
    url("../Images/safari-soft-bg.jpg");
  background-size: cover;
  background-position: center right;
}

.hendrik-copy h2,
.results-left h2 {
  font-size: 42px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.hendrik-copy h2 span,
.results-left h2 span {
  color: #b77d23;
}

.hendrik-copy p {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 13px;
}

.hendrik-copy blockquote {
  border-left: 2px solid #c48724;
  padding-left: 16px;
  margin: 14px 0;
  font-weight: 800;
  line-height: 1.45;
}

.hendrik-copy hr {
  border: none;
  border-top: 1px solid #ded6ca;
  margin: 18px 0;
}

.hendrik-visual {
  position: relative;
  min-height: 520px;
}

.hendrik-photo-main {
  width: 480px;
  height: 410px;
  background: url("../Images/hendrik-main.jpg"), #ccc;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.22);
}

.quote-card {
  position: absolute;
  right: 35px;
  top: 240px;
  background: rgba(6,23,42,0.88);
  color: #fff;
  border-radius: 8px;
  padding: 24px;
  width: 310px;
}

.quote-card p {
  font-size: 16px;
  line-height: 1.4;
}

.quote-card span {
  color: #e3a536;
  font-weight: 900;
}

.quote-card small {
  display: block;
  margin-top: 12px;
}

.small-photo {
  position: absolute;
  width: 180px;
  height: 145px;
  background-size: cover;
  background-position: center;
  border: 8px solid #fff;
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.small-photo.one {
  left: 30px;
  bottom: 5px;
  transform: rotate(-5deg);
  background-image: url("../Images/hendrik-small.jpg");
}

.small-photo.two {
  left: 255px;
  bottom: -12px;
  transform: rotate(6deg);
  background-image: url("../Images/hendrik-cartoon.jpg");
}

.credentials-strip,
.trust-strip {
  margin: 0 36px 12px;
  background: #eee9e1;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
}

.credentials-strip div,
.trust-strip div {
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid #d8d0c4;
}

.credentials-strip i,
.trust-strip i {
  width: 50px;
  height: 50px;
  background: #06172a;
  color: #e3a536;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  font-style: normal;
}

.credentials-strip strong,
.trust-strip strong {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
}

.credentials-strip small,
.trust-strip p {
  font-size: 10px;
}

.outcome-strip {
  margin: 0 36px 30px;
  border: 1px solid #d8c49b;
  border-radius: 6px;
  padding: 18px 34px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 30px;
  align-items: center;
  background: rgba(255,255,255,0.6);
}

.outcome-strip h3 {
  font-size: 20px;
}

.outcome-strip h3 span {
  color: #b77d23;
}

.outcome-strip p {
  font-size: 13px;
}

.results-section {
  padding: 48px 36px 14px;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 26px;
}

.results-left > p {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.results-grid div {
  min-height: 150px;
  background: #fff;
  border: 1px solid #ded6ca;
  border-radius: 8px;
  padding: 16px;
}

.results-grid i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #06172a;
  color: #e3a536;
  display: grid;
  place-items: center;
  font-style: normal;
  margin-bottom: 8px;
}

.results-grid strong,
.results-grid b {
  color: #c48724;
  font-size: 20px;
}

.results-grid small,
.results-grid p {
  font-size: 11px;
  line-height: 1.35;
}

.results-grid em {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 800;
}

.results-photo {
  min-height: 530px;
  background: url("../Images/hendrik-results.jpg"), #ccc;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
}

.results-quote {
  position: absolute;
  right: 30px;
  bottom: 28px;
  width: 280px;
  background: rgba(6,23,42,0.9);
  color: #fff;
  padding: 28px;
  border-radius: 8px;
}

.results-quote p {
  font-size: 18px;
  line-height: 1.35;
}

.results-quote small {
  display: block;
  margin-top: 14px;
  color: #e3a536;
  font-family: cursive;
  font-size: 18px;
}

.trust-strip {
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 34px;
}

.trust-strip div {
  display: grid;
  grid-template-columns: 54px 1fr;
  text-align: left;
  gap: 12px;
  align-items: center;
}

.trust-strip i {
  margin: 0;
}

@media (max-width: 1050px) {
  .forwho-grid,
  .forwho-cta,
  .hendrik-section,
  .results-section,
  .outcome-strip,
  .credentials-strip,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .forwho-cta {
    margin-top: 20px;
  }

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

  .hendrik-photo-main {
    width: 100%;
  }

  .hendrik-visual {
    min-height: 700px;
  }
}

@media (max-width: 700px) {
  .forwho-hero {
    padding: 36px 20px;
    background:
      linear-gradient(90deg, rgba(247,244,239,0.96), rgba(247,244,239,0.85)),
      url("../Images/road-sign-bg.jpg");
    background-size: cover;
  }

  .forwho-copy h1,
  .hendrik-copy h2,
  .results-left h2 {
    font-size: 32px;
  }

  .forwho-cta,
  .credentials-strip,
  .outcome-strip,
  .trust-strip {
    margin-left: 18px;
    margin-right: 18px;
  }

  .cta-left {
    flex-direction: column;
    text-align: center;
  }

  .cta-mid {
    border-left: none;
    padding-left: 0;
  }

  .hendrik-section,
  .results-section {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .quote-card,
  .results-quote {
    position: static;
    width: auto;
    margin-top: 18px;
  }

  .small-photo {
    position: static;
    margin: 18px auto;
  }
}

.pricing-page {
  background: #f7f4ef;
  color: #07172a;
  padding: 0 18px 30px;
}

.pricing-hero {
  min-height: 500px;
  padding: 42px 28px 26px;
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 36px;
  background:
    linear-gradient(90deg, rgba(247,244,239,1) 0%, rgba(247,244,239,0.94) 40%, rgba(247,244,239,0.15) 65%),
    url("../Images/hendrik-writing.jpg");
  background-size: cover;
  background-position: center right;
}

.pricing-copy {
  max-width: 560px;
}

.pricing-copy h1 {
  font-size: 52px;
  line-height: 0.98;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.pricing-copy h1 span {
  color: #c48724;
}

.pricing-copy p {
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.pricing-copy strong {
  color: #c48724;
}

.pricing-note {
  width: 410px;
  border: 1px solid #c48724;
  border-radius: 7px;
  padding: 14px 20px;
  margin-top: 22px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  background: rgba(255,255,255,0.62);
}

.pricing-note i,
.next-cost-item i,
.promise-grid i {
  width: 54px;
  height: 54px;
  background: #06172a;
  color: #e3a536;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 24px;
}

.pricing-note p {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.pricing-note span {
  color: #c48724;
}

.next-cost-card {
  align-self: start;
  max-width: 330px;
  background: rgba(255,255,255,0.76);
  border: 1px solid #ded6ca;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.next-cost-card h3 {
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
  margin-bottom: 18px;
}

.next-cost-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #ddd3c6;
}

.next-cost-item:last-child {
  border-bottom: none;
}

.next-cost-item strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.next-cost-item strong span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: #c48724;
  color: #fff;
  border-radius: 50%;
  margin-right: 5px;
}

.next-cost-item p {
  font-size: 12px;
  line-height: 1.4;
  margin-top: 6px;
}

.promise-panel {
  max-width: 1240px;
  margin: -12px auto 26px;
  background: rgba(255,255,255,0.85);
  border: 1px solid #ded6ca;
  border-radius: 10px;
  padding: 24px 34px;
  position: relative;
  z-index: 2;
}

.promise-panel h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 19px;
  margin-bottom: 18px;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.promise-grid div {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid #d8d0c4;
}

.promise-grid div:last-child {
  border-right: none;
}

.promise-grid i {
  margin: 0 auto 12px;
  background: transparent;
  border: 1px solid #ead8bd;
}

.promise-grid strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.promise-grid p {
  font-size: 12px;
  line-height: 1.35;
}

.pricing-cta-strip {
  max-width: 1240px;
  margin: 0 auto 28px;
  background: #06172a;
  color: #fff;
  border-radius: 8px;
  padding: 25px 38px;
  display: grid;
  grid-template-columns: 1.25fr 1px 0.95fr;
  gap: 42px;
  align-items: center;
}

.pricing-cta-strip .cta-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pricing-cta-strip h2 {
  font-size: 24px;
  line-height: 1.2;
}

.pricing-cta-strip h2 span {
  color: #e3a536;
}

.pricing-cta-strip .cta-mid {
  width: 1px;
  height: 70px;
  background: rgba(227,165,54,0.75);
  padding: 0;
  border: none;
}

.pricing-cta-strip small {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  color: #d8e0ea;
}

.clarity-card {
  max-width: 1240px;
  margin: 0 auto 14px;
  min-height: 500px;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background:
    linear-gradient(90deg, rgba(6,23,42,1) 0%, rgba(6,23,42,0.95) 43%, rgba(6,23,42,0.7) 68%, rgba(6,23,42,0.18) 100%),
    url("../Images/hendrik-safari-cta.jpg");
  background-size: cover;
  background-position: center right;
  padding: 48px 38px;
}

.clarity-left span {
  color: #e3a536;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
}

.clarity-left span::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: #e3a536;
  margin: 12px 0 18px;
}

.clarity-left h2 {
  font-size: 42px;
  line-height: 1.12;
  margin-bottom: 28px;
}

.clarity-left h2 strong {
  color: #e3a536;
}

.clarity-left p {
  font-size: 17px;
  line-height: 1.45;
  margin-bottom: 30px;
}

.clarity-left p strong {
  color: #e3a536;
}

.clarity-left ul {
  list-style: none;
  display: grid;
  gap: 18px;
  font-size: 15px;
}

.clarity-left li::before {
  content: "✓";
  color: #e3a536;
  border: 1px solid #e3a536;
  border-radius: 50%;
  margin-right: 10px;
  padding: 1px 4px;
}

.clarity-right {
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 36px;
}

.mini-promise {
  width: 280px;
  border: 1px solid #e3a536;
  border-radius: 6px;
  padding: 14px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.mini-promise i {
  color: #e3a536;
  font-style: normal;
  font-size: 32px;
}

.mini-promise p {
  font-size: 15px;
  line-height: 1.35;
}

.clarity-right h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.clarity-right small {
  display: block;
  margin-top: 12px;
  color: #d8e0ea;
  font-size: 12px;
}

.mini-process {
  margin-top: 42px;
  border-top: 1px solid rgba(227,165,54,0.5);
  padding-top: 16px;
}

.mini-process h4 {
  text-align: center;
  color: #e3a536;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.mini-process > div {
  display: flex;
  align-items: start;
  gap: 14px;
  text-align: center;
}

.mini-process span {
  font-size: 11px;
}

.mini-process b {
  display: inline-grid;
  place-items: center;
  background: #e3a536;
  color: #06172a;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-bottom: 8px;
}

.mini-process em {
  color: #e3a536;
  font-style: normal;
  font-size: 24px;
}

.promise-panel.second {
  margin-top: 0;
}

.hendrik-signoff {
  max-width: 1120px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 120px 1fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.signoff-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: url("../Images/hendrik-small.jpg"), #ccc;
  background-size: cover;
  background-position: center;
  border: 3px solid #d89b35;
}

.hendrik-signoff h3,
.hendrik-signoff h4 {
  color: #b77d23;
  font-family: cursive;
  font-size: 30px;
  font-weight: 400;
}

.hendrik-signoff p,
.hendrik-signoff small {
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1000px) {
  .pricing-hero,
  .pricing-cta-strip,
  .clarity-card,
  .hendrik-signoff {
    grid-template-columns: 1fr;
  }

  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .pricing-cta-strip .cta-mid {
    display: none;
  }

  .clarity-right {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 700px) {
  .pricing-page {
    padding: 0 12px 24px;
  }

  .pricing-hero {
    padding: 34px 18px;
    background:
      linear-gradient(90deg, rgba(247,244,239,0.96), rgba(247,244,239,0.85)),
      url("../Images/hendrik-writing.jpg");
    background-size: cover;
  }

  .pricing-copy h1,
  .clarity-left h2 {
    font-size: 34px;
  }

  .pricing-note {
    width: 100%;
  }

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

  .promise-grid div {
    border-right: none;
    border-bottom: 1px solid #d8d0c4;
    padding: 18px 0;
  }

  .mini-process > div {
    flex-direction: column;
    align-items: center;
  }

  .hendrik-signoff {
    text-align: center;
  }

  .signoff-photo {
    margin: auto;
  }
}

.contact-page {
  background: #f7f4ef;
  color: #07172a;
  padding: 28px 38px 30px;
}

.contact-top {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 1.12fr;
  gap: 22px;
  margin-bottom: 20px;
}

.contact-intro h1 {
  font-size: 43px;
  line-height: 1.03;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.contact-intro h1 span {
  color: #b77d23;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 500;
}

.contact-intro p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.contact-intro > strong {
  color: #b77d23;
  display: block;
  margin-bottom: 22px;
}

.real-value-card {
  border: 1px solid #ded6ca;
  background: rgba(255,255,255,0.65);
  border-radius: 8px;
  padding: 18px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
}

.real-value-card i {
  width: 54px;
  height: 54px;
  background: #06172a;
  color: #e3a536;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 24px;
}

.real-value-card h3 {
  font-size: 14px;
  margin-bottom: 5px;
}

.real-value-card p {
  font-size: 12px;
  margin: 0;
}

.connect-card,
.message-form,
.contact-info-card,
.contact-promise-card {
  background: rgba(255,255,255,0.75);
  border: 1px solid #ded6ca;
  border-radius: 10px;
  padding: 24px;
}

.connect-card h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 24px;
}

.connect-card h2::before,
.connect-card h2::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 2px;
  background: #c48724;
  vertical-align: middle;
  margin: 0 14px;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.connect-item {
  text-align: center;
  padding: 0 18px;
  border-right: 1px solid #ded6ca;
}

.connect-item:last-child {
  border-right: none;
}

.connect-item i {
  width: 56px;
  height: 56px;
  background: #c48724;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-style: normal;
  font-size: 24px;
}

.connect-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
}

.connect-item p {
  font-size: 11px;
  line-height: 1.45;
  margin-bottom: 16px;
}

.connect-item span {
  color: #b77d23;
  font-size: 11px;
  font-weight: 800;
}

.whatsapp-panel {
  background: #06172a;
  color: #fff;
  border-radius: 10px;
  padding: 46px 36px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

.wa-icon {
  width: 62px;
  height: 62px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 34px;
  margin-bottom: 12px;
}

.whatsapp-panel small {
  font-weight: 800;
}

.whatsapp-panel h2 {
  font-size: 28px;
  margin: 6px 0 12px;
}

.whatsapp-panel h2 span {
  color: #e3a536;
  float: right;
}

.whatsapp-panel p {
  font-size: 13px;
}

.wa-note {
  margin-top: 58px;
  border-top: 1px solid rgba(227,165,54,0.6);
  padding-top: 28px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
}

.wa-note i {
  color: #e3a536;
  font-style: normal;
  font-size: 34px;
}

.contact-middle {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr;
  gap: 22px;
  margin-bottom: 18px;
}

.message-form h2,
.contact-info-card h3,
.contact-promise-card h3 {
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 6px;
}

.message-form > p {
  font-size: 12px;
  margin-bottom: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.message-form input,
.message-form select,
.message-form textarea {
  width: 100%;
  border: 1px solid #ded6ca;
  border-radius: 4px;
  padding: 11px 12px;
  font-family: inherit;
  font-size: 12px;
  margin-bottom: 9px;
  background: rgba(255,255,255,0.9);
}

.message-form textarea {
  min-height: 82px;
  resize: vertical;
}

.privacy-check {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: #8a652d;
  margin-bottom: 10px;
}

.privacy-check input {
  width: auto;
  margin: 0;
}

.form-btn {
  width: 100%;
  border: none;
  cursor: pointer;
}

.message-form small {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
}

.contact-info-card {
  display: grid;
  gap: 24px;
}

.contact-info-card i,
.contact-promise-card i {
  color: #c48724;
  font-style: normal;
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
}

.contact-info-card p,
.contact-promise-card p {
  font-size: 12px;
  line-height: 1.5;
}

.contact-info-card blockquote {
  color: #8a652d;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
}

.contact-info-card blockquote span {
  display: block;
  color: #c48724;
  font-style: normal;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  margin-top: 8px;
}

.contact-promise-card {
  display: grid;
  gap: 0;
}

.contact-promise-card div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #ded6ca;
}

.contact-promise-card div:last-child {
  border-bottom: none;
}

.contact-promise-card i {
  width: 50px;
  height: 50px;
  border: 1px solid #ead8bd;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0;
  font-size: 22px;
}

.contact-cta-strip {
  background: #06172a;
  color: #fff;
  border-radius: 8px;
  padding: 22px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-cta-strip .cta-left {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 20px;
  align-items: center;
}

.contact-cta-strip h2 {
  font-size: 21px;
}

.contact-cta-strip h2 span {
  color: #e3a536;
}

.contact-cta-strip p {
  font-size: 14px;
  margin-top: 6px;
}

@media (max-width: 1100px) {
  .contact-top,
  .contact-middle {
    grid-template-columns: 1fr;
  }

  .connect-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .connect-item {
    border-right: none;
  }
}

@media (max-width: 700px) {
  .contact-page {
    padding: 24px 16px;
  }

  .contact-intro h1 {
    font-size: 34px;
  }

  .connect-grid,
  .form-grid,
  .contact-cta-strip,
  .contact-cta-strip .cta-left {
    grid-template-columns: 1fr;
  }

  .contact-cta-strip {
    display: grid;
    gap: 20px;
    text-align: center;
  }

  .contact-cta-strip .cta-icon {
    margin: auto;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #061527;
  background: #031424;
}

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

.site-header {
  height: 74px;
  padding: 0 34px;
  background: #06172a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  color: #e3a536;
  font-size: 22px;
}

.logo strong {
  display: block;
  font-size: 25px;
  line-height: 1;
}

.logo span {
  color: #e5a638;
}

.logo small {
  display: block;
  font-size: 8px;
  letter-spacing: 1px;
}

nav {
  display: flex;
  gap: 34px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

nav a:hover {
  color: #e5a638;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #e2a13b;
  color: #061527;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 14px 28px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.nav-btn {
  font-size: 13px;
  padding: 14px 24px;
}

.hero {
  min-height: 510px;
  padding: 38px 52px 24px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 620px;
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3,16,30,1) 0%, rgba(3,16,30,0.92) 32%, rgba(3,16,30,0.35) 72%),
    url("../Images/safari-bg.jpg");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: clamp(44px, 5vw, 64px);
  line-height: 0.96;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

.hero h1 span {
  color: #e4a437;
}

.hero h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #e4a437;
  margin-top: 22px;
}

.hero-lead {
  font-size: 20px;
  line-height: 1.35;
  max-width: 460px;
  margin-bottom: 26px;
}

.hero-small {
  font-size: 14px;
  margin-bottom: 22px;
}

.hero-btn {
  font-size: 18px;
  min-width: 370px;
  margin-bottom: 22px;
}

.hero-btn span {
  font-size: 28px;
}

.trust-row {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #e9eef5;
}

.score-card {
  background: #06192c;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 28px 45px rgba(0,0,0,0.55);
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
}

.card-top {
  color: #fff;
  margin-bottom: 24px;
}

.card-top strong {
  color: #f3b144;
}

.card-top small {
  display: block;
  font-size: 10px;
}

.score-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.gauge {
  height: 130px;
  border-radius: 150px 150px 0 0;
  background: conic-gradient(from 230deg, #f04735 0deg, #f1a536 75deg, #74bd42 140deg, transparent 142deg);
  position: relative;
  overflow: hidden;
}

.gauge::after {
  content: "";
  position: absolute;
  inset: 24px;
  bottom: 0;
  background: #06192c;
  border-radius: 120px 120px 0 0;
}

.needle {
  position: absolute;
  width: 82px;
  height: 4px;
  background: #f3c45b;
  bottom: 20px;
  left: 50%;
  transform-origin: left center;
  transform: rotate(-35deg);
  z-index: 2;
  border-radius: 10px;
}

.score-main h2 {
  font-size: 48px;
  color: #fff;
}

.score-main h2 span {
  font-size: 16px;
}

.score-main p {
  color: #84c65a;
  font-size: 11px;
  font-weight: 800;
}

.chart {
  height: 100px;
  display: flex;
  align-items: end;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 18px;
}

.chart div {
  flex: 1;
  background: #e4a437;
  border-radius: 4px;
}

.chart div:nth-child(1) { height: 24%; }
.chart div:nth-child(2) { height: 30%; }
.chart div:nth-child(3) { height: 42%; }
.chart div:nth-child(4) { height: 38%; }
.chart div:nth-child(5) { height: 52%; }
.chart div:nth-child(6) { height: 56%; }
.chart div:nth-child(7) { height: 60%; }
.chart div:nth-child(8) { height: 72%; }
.chart div:nth-child(9) { height: 82%; }
.chart div:nth-child(10) { height: 94%; }

.metric-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric-list div {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 14px;
}

.metric-list small {
  display: block;
  color: #a9b6c5;
  font-size: 10px;
}

.metric-list strong {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-top: 6px;
}

.next-panel {
  margin: 0 42px 26px;
  border: 1px solid #d89b35;
  border-radius: 10px;
  color: #fff;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  position: relative;
  background: #06172a;
}

.next-panel h3 {
  grid-column: 1 / 2;
  text-align: center;
  color: #e3a536;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 10px;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step {
  text-align: center;
  position: relative;
}

.step span {
  background: #e3a536;
  color: #061527;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
}

.step-icon {
  font-size: 36px;
  margin: 10px 0;
}

.step p {
  font-size: 13px;
}

.arrow {
  font-size: 42px;
}

.signature {
  position: absolute;
  left: 150px;
  bottom: 18px;
  color: #e3a536;
  font-family: cursive;
  font-size: 24px;
  transform: rotate(-3deg);
}

.founder-card {
  border-left: 1px solid #d89b35;
  padding-left: 36px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  align-items: center;
}

.founder-photo {
  width: 110px;
  height: 110px;
  background: url("../Images/hendrik.jpg"), #ddd;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  border: 3px solid #d89b35;
}

.founder-card h4 {
  color: #e3a536;
  font-size: 27px;
  font-family: cursive;
  font-weight: 400;
  margin-bottom: 8px;
}

.founder-card p {
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.founder-card strong {
  color: #e3a536;
  display: block;
}

.founder-card small {
  display: block;
  color: #d8e0ea;
}

.problem-section {
  min-height: 640px;
  background:
    linear-gradient(90deg, #f7f5f1 0%, #f7f5f1 39%, rgba(247,245,241,0.82) 52%, rgba(247,245,241,0.05) 68%),
    url("../Images/safari-road.jpg");
  background-size: cover;
  background-position: center right;
  padding: 58px 60px;
}

.problem-content {
  max-width: 470px;
}

.section-label {
  color: #d09128;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: #d09128;
  margin-right: 10px;
  vertical-align: middle;
}

.problem-section h2 {
  font-size: 39px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.problem-section h2 span {
  color: #d09128;
}

.problem-section > p,
.problem-content > p {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 26px;
}

.problem-list {
  margin-top: 24px;
}

.problem-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #d7d7d7;
}

.problem-icon {
  width: 52px;
  height: 52px;
  background: #06172a;
  color: #e3a536;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 800;
}

.problem-item strong {
  font-size: 16px;
}

.problem-item p {
  font-size: 13px;
  line-height: 1.35;
}

.warning-box {
  margin-top: 28px;
  background: #eee8df;
  padding: 18px;
  border-radius: 7px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  color: #061527;
}

.warning-box p {
  font-size: 15px;
  line-height: 1.4;
}

.warning-box span {
  color: #d09128;
}

.clarity-strip {
  background: #06172a;
  color: #fff;
  text-align: center;
  padding: 26px 20px 34px;
}

.clarity-strip small {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.clarity-strip h2 {
  color: #e3a536;
  font-size: 37px;
  margin-top: 10px;
}

@media (max-width: 1100px) {
  nav {
    display: none;
  }

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

  .score-card {
    transform: none;
  }

  .next-panel {
    grid-template-columns: 1fr;
  }

  .founder-card {
    border-left: none;
    border-top: 1px solid #d89b35;
    padding-left: 0;
    padding-top: 24px;
  }
}

@media (max-width: 700px) {
  .site-header {
    height: auto;
    padding: 18px;
    flex-direction: column;
    gap: 14px;
  }

  .hero {
    padding: 40px 24px;
  }

  .hero-btn {
    min-width: 100%;
  }

  .trust-row,
  .steps {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
  }

  .metric-list {
    grid-template-columns: 1fr;
  }

  .next-panel {
    margin: 0 18px 22px;
  }

  .signature {
    position: static;
    margin-top: 20px;
    text-align: center;
  }

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-photo {
    margin: auto;
  }

  .problem-section {
    padding: 44px 24px;
    background:
      linear-gradient(90deg, rgba(247,245,241,0.96), rgba(247,245,241,0.88)),
      url("../Images/safari-road.jpg");
    background-size: cover;
  }

  .clarity-strip h2 {
    font-size: 28px;
  }
}

.site-footer {
  background: #06172a;
  color: #fff;
  padding: 40px 40px 20px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-left strong {
  font-size: 20px;
}

.footer-left span {
  color: #e3a536;
}

.footer-left p {
  font-size: 13px;
  color: #cbd5e1;
  margin-top: 5px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
}

.footer-links a:hover {
  color: #e3a536;
}

.footer-cta {
  display: flex;
  justify-content: flex-end;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 12px;
  font-size: 12px;
  color: #94a3b8;
}
.works-page {
  background: #f7f7f5;
  color: #07172a;
  padding: 34px 28px 24px;
}

.works-hero {
  text-align: center;
  margin-bottom: 22px;
}

.centered {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.centered::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 2px;
  background: #d09128;
  margin-left: 10px;
}

.works-hero h1 {
  font-size: 50px;
  line-height: 0.95;
  letter-spacing: -1.5px;
}

.works-hero h1 span {
  color: #c58a22;
}

.works-hero p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.35;
}

.process-row {
  max-width: 1180px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr;
  gap: 10px;
  align-items: center;
}

.process-card {
  min-height: 128px;
  background: #fff;
  border: 1px solid #d8dce2;
  border-radius: 8px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
}

.process-icon,
.measure-icon,
.strip-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #06172a;
  color: #e3a536;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 900;
}

.process-card span {
  color: #d09128;
  font-size: 19px;
  font-weight: 900;
}

.process-card h3 {
  font-size: 24px;
  line-height: 1;
}

.process-card p {
  font-size: 12px;
  line-height: 1.25;
  margin-top: 5px;
}

.process-arrow {
  color: #d09128;
  font-size: 42px;
  text-align: center;
}

.measure-panel {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.34fr 1.22fr;
  background: #fff;
  border: 1px solid #d8dce2;
  border-radius: 8px;
  overflow: hidden;
}

.measure-copy {
  padding: 22px 30px;
}

.measure-copy h2 {
  text-transform: uppercase;
  font-size: 21px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.measure-list {
  display: grid;
  gap: 7px;
}

.measure-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #e0e0e0;
}

.measure-icon {
  width: 48px;
  height: 48px;
  font-size: 24px;
}

.measure-item strong {
  font-size: 14px;
}

.measure-item p {
  font-size: 11.5px;
  line-height: 1.25;
}

.quote-box {
  align-self: center;
  margin: 0 18px;
  min-height: 240px;
  background: #f4eee7;
  border-radius: 9px;
  color: #07172a;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.quote-box div {
  color: #d09128;
  font-size: 50px;
  height: 28px;
}

.quote-box p {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.quote-box strong {
  color: #d09128;
  font-size: 18px;
  line-height: 1.2;
}

.laptop-preview {
  min-height: 390px;
  background:
    linear-gradient(rgba(4, 15, 27, 0.1), rgba(4, 15, 27, 0.2)),
    url("../Images/laptop-desk.jpg");
  background-size: cover;
  background-position: center;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laptop-screen {
  width: 88%;
  min-height: 275px;
  background: #06172a;
  border: 8px solid #111827;
  border-radius: 14px;
  padding: 18px;
  color: #fff;
  box-shadow: 0 25px 45px rgba(0,0,0,0.45);
}

.mini-brand {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 22px;
}

.mini-brand span {
  color: #e3a536;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.mini-metrics div {
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  padding: 12px;
}

.mini-metrics small {
  display: block;
  color: #dbe4ee;
  font-size: 8px;
  text-transform: uppercase;
}

.mini-metrics strong {
  display: block;
  font-size: 16px;
  margin: 7px 0;
}

.mini-metrics span {
  color: #7fc65d;
  font-size: 10px;
  font-weight: 800;
}

.mini-chart {
  margin-top: 26px;
  height: 90px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: end;
}

.mini-chart i {
  flex: 1;
  background: #e3a536;
  border-radius: 4px;
}

.mini-chart i:nth-child(1) { height: 18%; }
.mini-chart i:nth-child(2) { height: 30%; }
.mini-chart i:nth-child(3) { height: 44%; }
.mini-chart i:nth-child(4) { height: 38%; }
.mini-chart i:nth-child(5) { height: 52%; }
.mini-chart i:nth-child(6) { height: 63%; }
.mini-chart i:nth-child(7) { height: 75%; }
.mini-chart i:nth-child(8) { height: 92%; }

.works-bottom-strip {
  max-width: 1220px;
  margin: 10px auto 0;
  background: #06172a;
  color: #fff;
  border-radius: 8px;
  padding: 22px 42px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: 38px;
}

.works-bottom-strip > div:not(.strip-divider) {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
}

.strip-icon {
  width: 52px;
  height: 52px;
  font-size: 26px;
}

.works-bottom-strip h3 {
  color: #e3a536;
  font-size: 22px;
  margin-bottom: 6px;
}

.works-bottom-strip p {
  font-size: 13px;
}

.strip-divider {
  width: 1px;
  height: 58px;
  background: rgba(227,165,54,0.65);
}

@media (max-width: 1000px) {
  .process-row,
  .measure-panel,
  .works-bottom-strip {
    grid-template-columns: 1fr;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .quote-box {
    margin: 18px;
  }

  .strip-divider {
    display: none;
  }
}

@media (max-width: 700px) {
  .works-page {
    padding: 28px 16px;
  }

  .works-hero h1 {
    font-size: 34px;
  }

  .process-card,
  .works-bottom-strip > div:not(.strip-divider) {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .measure-panel {
    display: block;
  }

  .laptop-preview {
    padding: 20px;
  }

  .mini-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .works-bottom-strip {
    padding: 24px;
  }
}

.forwho-page {
  background: #f7f4ef;
  color: #07172a;
}

.forwho-hero {
  min-height: 675px;
  padding: 44px 36px 24px;
  background:
    linear-gradient(90deg, rgba(247,244,239,1) 0%, rgba(247,244,239,0.95) 38%, rgba(247,244,239,0.22) 62%),
    url("../Images/road-sign-bg.jpg");
  background-size: cover;
  background-position: center right;
}

.forwho-copy {
  max-width: 620px;
}

.forwho-copy h1 {
  font-size: 43px;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.forwho-copy h1 span {
  color: #c48724;
}

.forwho-copy > p {
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 24px;
}

.forwho-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,0.58);
  margin-bottom: 22px;
}

.forwho-grid div {
  text-align: center;
  padding: 18px 16px;
  border-right: 1px solid #ded6ca;
  border-bottom: 1px solid #ded6ca;
}

.forwho-grid i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #06172a;
  color: #e3a536;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  font-size: 26px;
  font-style: normal;
  font-weight: 900;
}

.forwho-grid strong {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}

.forwho-grid small {
  display: block;
  font-size: 10px;
  line-height: 1.35;
}

.not-for-box {
  background: #eee5db;
  border-radius: 8px;
  padding: 18px 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 15px;
}

.not-for-box strong {
  color: #c48724;
  font-size: 34px;
  line-height: 1;
}

.not-for-box span {
  color: #c48724;
  font-weight: 900;
}

.forwho-cta {
  margin: -88px 28px 0;
  position: relative;
  z-index: 2;
  background: #06172a;
  color: #fff;
  border: 1px solid #d89b35;
  border-radius: 8px;
  padding: 25px 38px;
  display: grid;
  grid-template-columns: 1.35fr 0.95fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.cta-icon {
  width: 72px;
  height: 72px;
  border: 2px solid #d89b35;
  color: #d89b35;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 34px;
}

.cta-left h2 {
  font-size: 28px;
  line-height: 1.15;
}

.cta-left h2 span {
  color: #e3a536;
}

.cta-mid {
  border-left: 1px solid rgba(216,155,53,0.7);
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.5;
}

.forwho-cta small {
  display: block;
  margin-top: 9px;
  color: #d8e0ea;
  font-size: 11px;
}

.hendrik-section {
  padding: 64px 36px 20px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 54px;
  background:
    linear-gradient(90deg, rgba(247,244,239,1), rgba(247,244,239,0.8)),
    url("../Images/safari-soft-bg.jpg");
  background-size: cover;
  background-position: center right;
}

.hendrik-copy h2,
.results-left h2 {
  font-size: 42px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.hendrik-copy h2 span,
.results-left h2 span {
  color: #b77d23;
}

.hendrik-copy p {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 13px;
}

.hendrik-copy blockquote {
  border-left: 2px solid #c48724;
  padding-left: 16px;
  margin: 14px 0;
  font-weight: 800;
  line-height: 1.45;
}

.hendrik-copy hr {
  border: none;
  border-top: 1px solid #ded6ca;
  margin: 18px 0;
}

.hendrik-visual {
  position: relative;
  min-height: 520px;
}

.hendrik-photo-main {
  width: 480px;
  height: 410px;
  background: url("../Images/hendrik-main.jpg"), #ccc;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.22);
}

.quote-card {
  position: absolute;
  right: 35px;
  top: 240px;
  background: rgba(6,23,42,0.88);
  color: #fff;
  border-radius: 8px;
  padding: 24px;
  width: 310px;
}

.quote-card p {
  font-size: 16px;
  line-height: 1.4;
}

.quote-card span {
  color: #e3a536;
  font-weight: 900;
}

.quote-card small {
  display: block;
  margin-top: 12px;
}

.small-photo {
  position: absolute;
  width: 180px;
  height: 145px;
  background-size: cover;
  background-position: center;
  border: 8px solid #fff;
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.small-photo.one {
  left: 30px;
  bottom: 5px;
  transform: rotate(-5deg);
  background-image: url("../Images/hendrik-small.jpg");
}

.small-photo.two {
  left: 255px;
  bottom: -12px;
  transform: rotate(6deg);
  background-image: url("../Images/hendrik-cartoon.jpg");
}

.credentials-strip,
.trust-strip {
  margin: 0 36px 12px;
  background: #eee9e1;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
}

.credentials-strip div,
.trust-strip div {
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid #d8d0c4;
}

.credentials-strip i,
.trust-strip i {
  width: 50px;
  height: 50px;
  background: #06172a;
  color: #e3a536;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  font-style: normal;
}

.credentials-strip strong,
.trust-strip strong {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
}

.credentials-strip small,
.trust-strip p {
  font-size: 10px;
}

.outcome-strip {
  margin: 0 36px 30px;
  border: 1px solid #d8c49b;
  border-radius: 6px;
  padding: 18px 34px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 30px;
  align-items: center;
  background: rgba(255,255,255,0.6);
}

.outcome-strip h3 {
  font-size: 20px;
}

.outcome-strip h3 span {
  color: #b77d23;
}

.outcome-strip p {
  font-size: 13px;
}

.results-section {
  padding: 48px 36px 14px;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 26px;
}

.results-left > p {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.results-grid div {
  min-height: 150px;
  background: #fff;
  border: 1px solid #ded6ca;
  border-radius: 8px;
  padding: 16px;
}

.results-grid i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #06172a;
  color: #e3a536;
  display: grid;
  place-items: center;
  font-style: normal;
  margin-bottom: 8px;
}

.results-grid strong,
.results-grid b {
  color: #c48724;
  font-size: 20px;
}

.results-grid small,
.results-grid p {
  font-size: 11px;
  line-height: 1.35;
}

.results-grid em {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 800;
}

.results-photo {
  min-height: 530px;
  background: url("../Images/hendrik-results.jpg"), #ccc;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
}

.results-quote {
  position: absolute;
  right: 30px;
  bottom: 28px;
  width: 280px;
  background: rgba(6,23,42,0.9);
  color: #fff;
  padding: 28px;
  border-radius: 8px;
}

.results-quote p {
  font-size: 18px;
  line-height: 1.35;
}

.results-quote small {
  display: block;
  margin-top: 14px;
  color: #e3a536;
  font-family: cursive;
  font-size: 18px;
}

.trust-strip {
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 34px;
}

.trust-strip div {
  display: grid;
  grid-template-columns: 54px 1fr;
  text-align: left;
  gap: 12px;
  align-items: center;
}

.trust-strip i {
  margin: 0;
}

@media (max-width: 1050px) {
  .forwho-grid,
  .forwho-cta,
  .hendrik-section,
  .results-section,
  .outcome-strip,
  .credentials-strip,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .forwho-cta {
    margin-top: 20px;
  }

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

  .hendrik-photo-main {
    width: 100%;
  }

  .hendrik-visual {
    min-height: 700px;
  }
}

@media (max-width: 700px) {
  .forwho-hero {
    padding: 36px 20px;
    background:
      linear-gradient(90deg, rgba(247,244,239,0.96), rgba(247,244,239,0.85)),
      url("../Images/road-sign-bg.jpg");
    background-size: cover;
  }

  .forwho-copy h1,
  .hendrik-copy h2,
  .results-left h2 {
    font-size: 32px;
  }

  .forwho-cta,
  .credentials-strip,
  .outcome-strip,
  .trust-strip {
    margin-left: 18px;
    margin-right: 18px;
  }

  .cta-left {
    flex-direction: column;
    text-align: center;
  }

  .cta-mid {
    border-left: none;
    padding-left: 0;
  }

  .hendrik-section,
  .results-section {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .quote-card,
  .results-quote {
    position: static;
    width: auto;
    margin-top: 18px;
  }

  .small-photo {
    position: static;
    margin: 18px auto;
  }
}

.pricing-page {
  background: #f7f4ef;
  color: #07172a;
  padding: 0 18px 30px;
}

.pricing-hero {
  min-height: 500px;
  padding: 42px 28px 26px;
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 36px;
  background:
    linear-gradient(90deg, rgba(247,244,239,1) 0%, rgba(247,244,239,0.94) 40%, rgba(247,244,239,0.15) 65%),
    url("../Images/hendrik-writing.jpg");
  background-size: cover;
  background-position: center right;
}

.pricing-copy {
  max-width: 560px;
}

.pricing-copy h1 {
  font-size: 52px;
  line-height: 0.98;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.pricing-copy h1 span {
  color: #c48724;
}

.pricing-copy p {
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.pricing-copy strong {
  color: #c48724;
}

.pricing-note {
  width: 410px;
  border: 1px solid #c48724;
  border-radius: 7px;
  padding: 14px 20px;
  margin-top: 22px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  background: rgba(255,255,255,0.62);
}

.pricing-note i,
.next-cost-item i,
.promise-grid i {
  width: 54px;
  height: 54px;
  background: #06172a;
  color: #e3a536;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 24px;
}

.pricing-note p {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.pricing-note span {
  color: #c48724;
}

.next-cost-card {
  align-self: start;
  max-width: 330px;
  background: rgba(255,255,255,0.76);
  border: 1px solid #ded6ca;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.next-cost-card h3 {
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
  margin-bottom: 18px;
}

.next-cost-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #ddd3c6;
}

.next-cost-item:last-child {
  border-bottom: none;
}

.next-cost-item strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.next-cost-item strong span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: #c48724;
  color: #fff;
  border-radius: 50%;
  margin-right: 5px;
}

.next-cost-item p {
  font-size: 12px;
  line-height: 1.4;
  margin-top: 6px;
}

.promise-panel {
  max-width: 1240px;
  margin: -12px auto 26px;
  background: rgba(255,255,255,0.85);
  border: 1px solid #ded6ca;
  border-radius: 10px;
  padding: 24px 34px;
  position: relative;
  z-index: 2;
}

.promise-panel h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 19px;
  margin-bottom: 18px;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.promise-grid div {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid #d8d0c4;
}

.promise-grid div:last-child {
  border-right: none;
}

.promise-grid i {
  margin: 0 auto 12px;
  background: transparent;
  border: 1px solid #ead8bd;
}

.promise-grid strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.promise-grid p {
  font-size: 12px;
  line-height: 1.35;
}

.pricing-cta-strip {
  max-width: 1240px;
  margin: 0 auto 28px;
  background: #06172a;
  color: #fff;
  border-radius: 8px;
  padding: 25px 38px;
  display: grid;
  grid-template-columns: 1.25fr 1px 0.95fr;
  gap: 42px;
  align-items: center;
}

.pricing-cta-strip .cta-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pricing-cta-strip h2 {
  font-size: 24px;
  line-height: 1.2;
}

.pricing-cta-strip h2 span {
  color: #e3a536;
}

.pricing-cta-strip .cta-mid {
  width: 1px;
  height: 70px;
  background: rgba(227,165,54,0.75);
  padding: 0;
  border: none;
}

.pricing-cta-strip small {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  color: #d8e0ea;
}

.clarity-card {
  max-width: 1240px;
  margin: 0 auto 14px;
  min-height: 500px;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background:
    linear-gradient(90deg, rgba(6,23,42,1) 0%, rgba(6,23,42,0.95) 43%, rgba(6,23,42,0.7) 68%, rgba(6,23,42,0.18) 100%),
    url("../Images/hendrik-safari-cta.jpg");
  background-size: cover;
  background-position: center right;
  padding: 48px 38px;
}

.clarity-left span {
  color: #e3a536;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
}

.clarity-left span::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: #e3a536;
  margin: 12px 0 18px;
}

.clarity-left h2 {
  font-size: 42px;
  line-height: 1.12;
  margin-bottom: 28px;
}

.clarity-left h2 strong {
  color: #e3a536;
}

.clarity-left p {
  font-size: 17px;
  line-height: 1.45;
  margin-bottom: 30px;
}

.clarity-left p strong {
  color: #e3a536;
}

.clarity-left ul {
  list-style: none;
  display: grid;
  gap: 18px;
  font-size: 15px;
}

.clarity-left li::before {
  content: "✓";
  color: #e3a536;
  border: 1px solid #e3a536;
  border-radius: 50%;
  margin-right: 10px;
  padding: 1px 4px;
}

.clarity-right {
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 36px;
}

.mini-promise {
  width: 280px;
  border: 1px solid #e3a536;
  border-radius: 6px;
  padding: 14px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.mini-promise i {
  color: #e3a536;
  font-style: normal;
  font-size: 32px;
}

.mini-promise p {
  font-size: 15px;
  line-height: 1.35;
}

.clarity-right h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.clarity-right small {
  display: block;
  margin-top: 12px;
  color: #d8e0ea;
  font-size: 12px;
}

.mini-process {
  margin-top: 42px;
  border-top: 1px solid rgba(227,165,54,0.5);
  padding-top: 16px;
}

.mini-process h4 {
  text-align: center;
  color: #e3a536;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.mini-process > div {
  display: flex;
  align-items: start;
  gap: 14px;
  text-align: center;
}

.mini-process span {
  font-size: 11px;
}

.mini-process b {
  display: inline-grid;
  place-items: center;
  background: #e3a536;
  color: #06172a;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-bottom: 8px;
}

.mini-process em {
  color: #e3a536;
  font-style: normal;
  font-size: 24px;
}

.promise-panel.second {
  margin-top: 0;
}

.hendrik-signoff {
  max-width: 1120px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 120px 1fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.signoff-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: url("../Images/hendrik-small.jpg"), #ccc;
  background-size: cover;
  background-position: center;
  border: 3px solid #d89b35;
}

.hendrik-signoff h3,
.hendrik-signoff h4 {
  color: #b77d23;
  font-family: cursive;
  font-size: 30px;
  font-weight: 400;
}

.hendrik-signoff p,
.hendrik-signoff small {
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1000px) {
  .pricing-hero,
  .pricing-cta-strip,
  .clarity-card,
  .hendrik-signoff {
    grid-template-columns: 1fr;
  }

  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .pricing-cta-strip .cta-mid {
    display: none;
  }

  .clarity-right {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 700px) {
  .pricing-page {
    padding: 0 12px 24px;
  }

  .pricing-hero {
    padding: 34px 18px;
    background:
      linear-gradient(90deg, rgba(247,244,239,0.96), rgba(247,244,239,0.85)),
      url("../Images/hendrik-writing.jpg");
    background-size: cover;
  }

  .pricing-copy h1,
  .clarity-left h2 {
    font-size: 34px;
  }

  .pricing-note {
    width: 100%;
  }

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

  .promise-grid div {
    border-right: none;
    border-bottom: 1px solid #d8d0c4;
    padding: 18px 0;
  }

  .mini-process > div {
    flex-direction: column;
    align-items: center;
  }

  .hendrik-signoff {
    text-align: center;
  }

  .signoff-photo {
    margin: auto;
  }
}

.contact-page {
  background: #f7f4ef;
  color: #07172a;
  padding: 28px 38px 30px;
}

.contact-top {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 1.12fr;
  gap: 22px;
  margin-bottom: 20px;
}

.contact-intro h1 {
  font-size: 43px;
  line-height: 1.03;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.contact-intro h1 span {
  color: #b77d23;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 500;
}

.contact-intro p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.contact-intro > strong {
  color: #b77d23;
  display: block;
  margin-bottom: 22px;
}

.real-value-card {
  border: 1px solid #ded6ca;
  background: rgba(255,255,255,0.65);
  border-radius: 8px;
  padding: 18px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
}

.real-value-card i {
  width: 54px;
  height: 54px;
  background: #06172a;
  color: #e3a536;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 24px;
}

.real-value-card h3 {
  font-size: 14px;
  margin-bottom: 5px;
}

.real-value-card p {
  font-size: 12px;
  margin: 0;
}

.connect-card,
.message-form,
.contact-info-card,
.contact-promise-card {
  background: rgba(255,255,255,0.75);
  border: 1px solid #ded6ca;
  border-radius: 10px;
  padding: 24px;
}

.connect-card h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 24px;
}

.connect-card h2::before,
.connect-card h2::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 2px;
  background: #c48724;
  vertical-align: middle;
  margin: 0 14px;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.connect-item {
  text-align: center;
  padding: 0 18px;
  border-right: 1px solid #ded6ca;
}

.connect-item:last-child {
  border-right: none;
}

.connect-item i {
  width: 56px;
  height: 56px;
  background: #c48724;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-style: normal;
  font-size: 24px;
}

.connect-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
}

.connect-item p {
  font-size: 11px;
  line-height: 1.45;
  margin-bottom: 16px;
}

.connect-item span {
  color: #b77d23;
  font-size: 11px;
  font-weight: 800;
}

.whatsapp-panel {
  background: #06172a;
  color: #fff;
  border-radius: 10px;
  padding: 46px 36px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

.wa-icon {
  width: 62px;
  height: 62px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 34px;
  margin-bottom: 12px;
}

.whatsapp-panel small {
  font-weight: 800;
}

.whatsapp-panel h2 {
  font-size: 28px;
  margin: 6px 0 12px;
}

.whatsapp-panel h2 span {
  color: #e3a536;
  float: right;
}

.whatsapp-panel p {
  font-size: 13px;
}

.wa-note {
  margin-top: 58px;
  border-top: 1px solid rgba(227,165,54,0.6);
  padding-top: 28px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
}

.wa-note i {
  color: #e3a536;
  font-style: normal;
  font-size: 34px;
}

.contact-middle {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr;
  gap: 22px;
  margin-bottom: 18px;
}

.message-form h2,
.contact-info-card h3,
.contact-promise-card h3 {
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 6px;
}

.message-form > p {
  font-size: 12px;
  margin-bottom: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.message-form input,
.message-form select,
.message-form textarea {
  width: 100%;
  border: 1px solid #ded6ca;
  border-radius: 4px;
  padding: 11px 12px;
  font-family: inherit;
  font-size: 12px;
  margin-bottom: 9px;
  background: rgba(255,255,255,0.9);
}

.message-form textarea {
  min-height: 82px;
  resize: vertical;
}

.privacy-check {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: #8a652d;
  margin-bottom: 10px;
}

.privacy-check input {
  width: auto;
  margin: 0;
}

.form-btn {
  width: 100%;
  border: none;
  cursor: pointer;
}

.message-form small {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
}

.contact-info-card {
  display: grid;
  gap: 24px;
}

.contact-info-card i,
.contact-promise-card i {
  color: #c48724;
  font-style: normal;
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
}

.contact-info-card p,
.contact-promise-card p {
  font-size: 12px;
  line-height: 1.5;
}

.contact-info-card blockquote {
  color: #8a652d;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
}

.contact-info-card blockquote span {
  display: block;
  color: #c48724;
  font-style: normal;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  margin-top: 8px;
}

.contact-promise-card {
  display: grid;
  gap: 0;
}

.contact-promise-card div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #ded6ca;
}

.contact-promise-card div:last-child {
  border-bottom: none;
}

.contact-promise-card i {
  width: 50px;
  height: 50px;
  border: 1px solid #ead8bd;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0;
  font-size: 22px;
}

.contact-cta-strip {
  background: #06172a;
  color: #fff;
  border-radius: 8px;
  padding: 22px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-cta-strip .cta-left {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 20px;
  align-items: center;
}

.contact-cta-strip h2 {
  font-size: 21px;
}

.contact-cta-strip h2 span {
  color: #e3a536;
}

.contact-cta-strip p {
  font-size: 14px;
  margin-top: 6px;
}

@media (max-width: 1100px) {
  .contact-top,
  .contact-middle {
    grid-template-columns: 1fr;
  }

  .connect-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .connect-item {
    border-right: none;
  }
}

@media (max-width: 700px) {
  .contact-page {
    padding: 24px 16px;
  }

  .contact-intro h1 {
    font-size: 34px;
  }

  .connect-grid,
  .form-grid,
  .contact-cta-strip,
  .contact-cta-strip .cta-left {
    grid-template-columns: 1fr;
  }

  .contact-cta-strip {
    display: grid;
    gap: 20px;
    text-align: center;
  }

  .contact-cta-strip .cta-icon {
    margin: auto;
  }
}


/* Static header/footer include helpers */
.site-header nav a.is-active,
.footer-links a.is-active {
  color: #e3a536;
}

.include-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid #fecaca;
}

/* Business Health Barometer */
.barometer-page {
  background: #f3eee7;
  min-height: 100vh;
}

.barometer-hero {
  color: #fff;
  padding: 62px 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 36px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3, 16, 30, 0.98), rgba(3, 16, 30, 0.78) 54%, rgba(3, 16, 30, 0.35)),
    url("../Images/safari-road.jpg");
  background-size: cover;
  background-position: center;
}

.barometer-hero-copy {
  max-width: 760px;
}

.eyebrow {
  color: #e3a536;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.barometer-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
  margin-bottom: 24px;
}

.barometer-hero p:not(.eyebrow) {
  font-size: 19px;
  line-height: 1.45;
  max-width: 620px;
}

.barometer-score-preview {
  background: rgba(6, 25, 44, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 28px 44px rgba(0, 0, 0, 0.34);
}

.barometer-score-preview span,
.barometer-score-preview small {
  color: #dbe7f1;
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.barometer-score-preview strong {
  color: #fff;
  display: block;
  font-size: 92px;
  line-height: 0.9;
  margin: 12px 0 4px;
}

.mini-bars {
  height: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  margin-top: 24px;
}

.mini-bars i {
  background: #e3a536;
  border-radius: 4px 4px 0 0;
  display: block;
}

.barometer-workspace {
  padding: 42px 52px 70px;
}

.barometer-form,
.report-panel {
  max-width: 1120px;
  margin: 0 auto;
}

.form-panel,
.report-content {
  background: #fffaf2;
  border: 1px solid #e5d9c8;
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(54, 36, 16, 0.08);
}

.contact-panel {
  padding: 30px;
  margin-bottom: 24px;
}

.contact-panel h2,
.question-group legend,
.executive-report h2,
.executive-report h3 {
  color: #061527;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.contact-grid label {
  color: #4f4639;
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-grid input {
  background: #fff;
  border: 1px solid #d9c9b4;
  border-radius: 5px;
  color: #061527;
  font: inherit;
  font-size: 15px;
  min-height: 48px;
  padding: 12px 14px;
}

.question-sections {
  display: grid;
  gap: 24px;
}

.question-group {
  border: 1px solid #e5d9c8;
  padding: 0;
  overflow: hidden;
}

.question-group legend {
  background: #06172a;
  color: #fff;
  float: left;
  width: 100%;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 900;
}

.question-row {
  clear: both;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: center;
  padding: 18px 24px;
  border-top: 1px solid #eadfce;
}

.question-row p {
  color: #1f2f40;
  line-height: 1.45;
}

.question-row p span {
  background: #e3a536;
  border-radius: 50%;
  color: #061527;
  display: inline-grid;
  font-size: 12px;
  font-weight: 900;
  height: 28px;
  margin-right: 12px;
  place-items: center;
  width: 28px;
}

.answer-toggle {
  background: #efe5d6;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
}

.answer-toggle input {
  position: absolute;
  opacity: 0;
}

.answer-toggle span {
  border-radius: 5px;
  color: #473622;
  cursor: pointer;
  display: block;
  font-size: 13px;
  font-weight: 900;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
}

.answer-toggle input:checked + span {
  background: #06172a;
  color: #fff;
}

.submit-panel,
.report-actions {
  background: #06172a;
  border-radius: 8px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 20px 24px;
}

.submit-panel strong,
.submit-panel span {
  display: block;
}

.submit-panel span {
  color: #d7e0ea;
  font-size: 13px;
  margin-top: 4px;
}

.secondary-btn {
  background: #fff;
}

.report-panel[hidden],
.barometer-form[hidden] {
  display: none;
}

.report-content {
  margin-top: 24px;
  padding: 34px;
}

.report-header {
  border-bottom: 2px solid #e4a437;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 28px;
  padding-bottom: 28px;
}

.report-header h2 {
  font-size: 42px;
  line-height: 1;
}

.report-header dl {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.report-header dl div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
}

.report-header dt {
  color: #6e6254;
  font-weight: 900;
}

.report-header dd {
  color: #061527;
}

.report-score {
  background: #06172a;
  border-radius: 8px;
  color: #fff;
  padding: 24px;
  text-align: center;
}

.report-score span,
.report-score small,
.report-score b {
  display: block;
  text-transform: uppercase;
}

.report-score strong {
  color: #e3a536;
  display: block;
  font-size: 74px;
  line-height: 0.95;
  margin-top: 10px;
}

.report-score b {
  margin-top: 16px;
}

.report-summary,
.report-section,
.report-cta {
  margin-top: 30px;
}

.report-summary p,
.section-score-card p,
.priority-list p,
.report-cta p,
.risk-list {
  color: #3c4652;
  line-height: 1.55;
}

.section-score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.section-score-card {
  background: #fff;
  border: 1px solid #e6d8c4;
  border-radius: 8px;
  padding: 18px;
}

.section-score-card strong,
.section-score-card span {
  display: block;
}

.section-score-card span {
  color: #a36d18;
  font-size: 13px;
  font-weight: 900;
  margin: 6px 0 10px;
  text-transform: uppercase;
}

.score-bar {
  background: #eadfce;
  border-radius: 99px;
  height: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}

.score-bar i {
  background: #e3a536;
  display: block;
  height: 100%;
}

.priority-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.priority-list div {
  background: #fff;
  border: 1px solid #e6d8c4;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 70px;
  gap: 12px;
  padding: 16px;
}

.priority-list span {
  background: #06172a;
  border-radius: 50%;
  color: #fff;
  display: grid;
  font-weight: 900;
  height: 34px;
  place-items: center;
  width: 34px;
}

.priority-list p {
  grid-column: 2 / 4;
}

.risk-list {
  margin: 14px 0 0 20px;
}

.risk-list li {
  margin-bottom: 10px;
}

.report-cta {
  background: #020b14;
  border-radius: 8px;
  color: #fff;
  border: 2px solid #e3a536;
  padding: 24px;
}

.report-cta h3,
.report-cta p {
  color: #fff;
}

.pdf-view-body {
  background: #f3eee7;
}

.pdf-view-shell {
  max-width: 920px;
  margin: 30px auto;
  padding: 0 18px 40px;
}

.pdf-view-shell .report-content {
  margin-top: 0;
}

.pdf-view-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

  .site-header,
  .site-footer,
  .barometer-hero,
  .report-actions,
  .pdf-view-toolbar {
    display: none !important;
  }

  body,
  .barometer-page {
    background: #fff;
  }

  .barometer-workspace,
  .report-content {
    padding: 0;
  }

  .report-content {
    border: none;
    box-shadow: none;
    margin-top: 0;
  }

  .executive-report {
    color: #061527;
    font-size: 11pt;
  }

  .report-header {
    grid-template-columns: 1fr 48mm;
    gap: 12mm;
    padding-bottom: 8mm;
  }

  .report-header h2 {
    font-size: 28pt;
  }

  .report-score {
    background: #06172a !important;
    color: #fff !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .report-score strong {
    color: #e3a536 !important;
  }

  .report-summary {
    display: none;
  }

  .section-scores-page,
  .priorities-page {
    break-before: page;
    page-break-before: always;
    margin-top: 0;
  }

  .report-section,
  .report-cta,
  .section-score-card,
  .priority-list div {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .section-score-grid {
    grid-template-columns: 1fr;
  }

  .section-score-card,
  .priority-list div {
    box-shadow: none;
  }

  .report-cta {
    background: #020b14 !important;
    border: 2px solid #e3a536;
    color: #fff !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .report-cta h3,
  .report-cta p {
    color: #fff !important;
  }
}

@media (max-width: 1000px) {
  .site-header {
    height: auto;
    min-height: 74px;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .site-header nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .barometer-hero,
  .report-header {
    grid-template-columns: 1fr;
  }

  .barometer-score-preview {
    max-width: 360px;
  }
}

@media (max-width: 760px) {
  .barometer-hero,
  .barometer-workspace {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-grid,
  .question-row,
  .section-score-grid,
  .report-header dl div,
  .submit-panel,
  .report-actions {
    grid-template-columns: 1fr;
  }

  .submit-panel,
  .report-actions {
    display: grid;
  }

  .question-row {
    gap: 14px;
    padding: 16px;
  }

  .report-content {
    padding: 22px 18px;
  }

  .priority-list div {
    grid-template-columns: 42px 1fr;
  }

  .priority-list b {
    grid-column: 2;
  }

  .priority-list p {
    grid-column: 1 / 3;
  }
}


/* === Final logo + image path safety overrides === */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
  gap: 0;
}

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

.logo-icon,
.logo strong,
.logo span,
.logo small {
  display: none;
}

@media (max-width: 700px) {
  .logo-img {
    width: 135px;
  }
}
