/* =========================================================
   ALLSTRIVE RESULTS - PREMIUM HOMEPAGE BUILD
   ========================================================= */

:root {
  --navy: #07142f;
  --navy-2: #061333;
  --blue: #3676a6;
  --blue-soft: #eef7fd;
  --gold: #9b7800;
  --gold-2: #c09313;
  --soft: #f6f8fb;
  --white: #ffffff;
  --text: #111827;
  --muted: #687386;
  --border: #d8e4ee;
  --shadow: 0 24px 60px rgba(7, 20, 47, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, 92%); margin: 0 auto; }

/* =========================================================
   GLOBAL TYPOGRAPHY
   ========================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: inherit;
}


/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  border-radius: 4px;
  border: 2px solid var(--navy);
  transition: all 0.25s ease;
  cursor: pointer;
  line-height: 1;
}
.btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); }
.gold-btn { background: var(--gold); border-color: var(--gold); color: #fff; }
.gold-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.72); }
.outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.contact-btn { background: var(--navy); border-color: var(--navy); color: var(--white); padding: 15px 26px; }
.contact-btn:hover { color: #fff !important; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 6px 22px rgba(7,20,47,.045);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo img { width: 172px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
}

.main-nav > a:not(.btn)::after,
.dropdown > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: .25s ease;
}

.main-nav > a:not(.btn):hover::after,
.main-nav > a.active::after,
.dropdown:hover > a::before {
  width: 100%;
}

.main-nav a:hover {
  color: var(--navy);
}

.dropdown {
  position: relative;
  padding: 14px 0;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: .25s ease;
  margin-top: -4px;
}

.dropdown:hover > a::after {
  transform: rotate(225deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(7, 20, 47, 0.12);
  border-radius: 10px;
  padding: 12px;
  display: none;
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--navy);
}

.dropdown-menu a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 99px;
}

/* =========================================================
   HERO - CLEAN STABLE VERSION
   ========================================================= */
.premium-hero {
  position: relative;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,20,47,.98) 0%, rgba(7,20,47,.90) 42%, rgba(7,20,47,.66) 100%),
    url("hero.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.premium-hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 45px;
  height: 6px;
  background: var(--gold);
  transform: rotate(-3deg);
  z-index: 5;
}

.premium-hero-grid {
  position: relative;
  z-index: 4;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr 1.03fr;
  align-items: center;
  gap: 50px;
  padding: 54px 0 120px;
}

.premium-hero-copy {
  position: relative;
  z-index: 6;
}

.premium-hero-copy h1 {
  font-family:"Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.02;
  letter-spacing: -.9px;
  max-width: 660px;
  margin-bottom: 24px;
}

.premium-hero-copy p {
  color: rgba(255,255,255,.88);
  font-size: 20px;
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.premium-hero-visual {
  position: relative;
  min-height: 535px;
  z-index: 6;
}

.mike-hero-card {
  position: absolute;
  left: 5%;
  bottom: 0;
  width: 56%;
  height: 515px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
  background: rgba(255,255,255,.06);
}

.mike-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.hero-pill {
  position: absolute;
  right: 0;
  width: 230px;
  background: rgba(7,20,47,.94);
  border: 1px solid rgba(255,255,255,.30);
  color: #fff;
  padding: 18px 20px;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 7;
}

.hero-pill i {
  color: var(--gold-2);
  font-size: 29px;
}

.hero-pill span {
  line-height: 1.16;
}

.pill-one { top: 98px; }
.pill-two { top: 228px; }
.pill-three { top: 358px; }

.hero-pill::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  width: 75px;
  height: 1px;
  border-top: 2px dashed rgba(192,147,19,.65);
}

/* =========================================================
   SHARED SECTION TITLES
   ========================================================= */
.premium-section { padding: 96px 0; }
.section-title { max-width: 860px; margin: 0 auto 54px; text-align: center; }
.section-title span,
.problem-copy span,
.scorecard-intro span,
.mike-copy span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.55px;
  font-size: 13px;
  margin-bottom: 8px;
}
.section-title h2 {
  font-family:"Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-title p { color: var(--muted); font-size: 18px; }
.dot-pattern {
  position: absolute;
  width: 190px;
  height: 190px;
  background-image: radial-gradient(rgba(54,118,166,.30) 1.4px, transparent 1.4px);
  background-size: 14px 14px;
  pointer-events: none;
}
.dot-right { right: 4%; bottom: 52px; }

/* =========================================================
   WHO WE HELP
   ========================================================= */
.who-premium { position: relative; background: #fff; padding-top: 70px; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; max-width: 980px; margin: 0 auto; }
.who-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}
.who-card > img { width: 100%; height: 220px; object-fit: cover; }
.who-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-size: 29px;
  margin: -36px auto 18px;
  position: relative;
  z-index: 2;
  border: 4px solid #fff;
}
.who-content { padding: 0 42px 36px; }
.who-content h3 { font-size: 24px; margin-bottom: 20px; line-height: 24px; }
.who-content p { color: var(--muted); max-width: 420px; margin: 0 auto 22px; }
.who-content ul { list-style: none; text-align: left; max-width: 380px; margin: 0 auto 24px; }
.who-content li { margin-bottom: 10px; font-weight: 700; }
.who-content li::before { content: "✓"; color: #fff; background: var(--gold); width: 18px; height: 18px; border-radius: 50%; display: inline-grid; place-items: center; font-size: 11px; margin-right: 10px; }
.who-content a { color: var(--blue); font-weight: 600; }
.who-content a:hover { color: var(--navy); font-weight: 600; }
.who-content a i { margin-left: 7px; }

/* =========================================================
   PROBLEM / CHALLENGE - WIDE MOCKUP STYLE
   ========================================================= */

.premium-problem {
  background: linear-gradient(90deg, #f7fbff 0%, #eef6fc 100%);
  padding: 78px 0;
  position: relative;
  overflow: hidden;
}

.problem-premium-grid {
  width: min(1500px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: center;
}

.problem-copy h2 {
  font-family:"Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  margin-bottom: 22px;
}

.problem-copy p {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 560px;
}

.problem-copy ul {
  list-style: none;
  margin-bottom: 28px;
}

.problem-copy li {
  font-weight: 800;
  margin-bottom: 12px;
}

.problem-copy li::before {
  content: "✓";
  color: #fff;
  background: var(--gold);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  margin-right: 10px;
}

.problem-visual{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;

    padding:40px;
    min-height:560px;

    overflow:hidden;
    border-radius:14px;
}

.problem-visual > img{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;
    object-fit:cover;

    z-index:0;
}

.problem-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(238,246,252,.90) 0%,
    rgba(238,246,252,.58) 38%,
    rgba(238,246,252,.10) 100%
  );
}

.growth-map {
  position: absolute;
  left: 34px;
  top: 26px;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(420px, 52%);
}

.growth-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 18px;
  box-shadow: 0 14px 35px rgba(7,20,47,.14);
  position: relative;
}

.growth-step:not(:last-child)::after {
  content: "↓";
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--blue);
  font-weight: 900;
  z-index: 3;
}

.growth-step i {
  color: var(--blue);
  font-size: 24px;
  grid-row: span 2;
  align-self: center;
}

.growth-step strong {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 14px;
}

.growth-step small {
  color: var(--muted);
  font-weight: 700;
}

.growth-step.dark {
  background: var(--navy);
  color: #fff;
}

.growth-step.dark i {
  color: var(--gold-2);
}

.growth-step.dark small {
  color: rgba(255,255,255,.82);
}

@media (max-width: 900px) {
  .problem-premium-grid {
    grid-template-columns: 1fr;
    width: min(1180px, 92%);
  }

  .growth-map {
    width: calc(100% - 40px);
    left: 20px;
  }
}

/* =========================================================
   SOLUTION TRANSITION
   ========================================================= */

.solution-transition {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(54, 118, 166, 0.30),
      transparent 48%
    ),
    linear-gradient(
      135deg,
      #07142f 0%,
      #0b1d42 52%,
      #12365f 100%
    );
  border-top: 5px solid var(--gold);
  padding: 48px 0 52px;
}

.solution-transition::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.solution-transition::after {
  width: 300px;
  height: 300px;
  right: -170px;
  bottom: -220px;
  background: rgba(192,147,19,.08);
  filter: blur(6px);
}

.solution-transition-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    rgba(0,0,0,.8),
    transparent
  );
  pointer-events: none;
}

.solution-transition-inner {
  position: relative;
  z-index: 2;
}

.solution-transition-label {
  display: block;
  margin-bottom: 13px;
  color: var(--gold-2);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.solution-transition h2 {
  margin: 0 auto;
  color: #fff;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -.035em;
}

.solution-transition h2 strong {
  display: block;
  color: var(--gold-2);
  font-weight: 800;
}

.solution-transition-divider {
  width: 74px;
  height: 3px;
  margin: 27px auto;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-2),
    transparent
  );
}

.solution-transition-lead {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(21px, 2.2vw, 29px);
  font-weight: 500;
  line-height: 1.4;
}

.solution-transition-lead strong {
  color: var(--gold-2);
  font-weight: 900;
}

.solution-transition-copy {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.75;
}

.solution-transition-arrow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-top: 31px;
  color: rgba(255,255,255,.86);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: .25s ease;
}

.solution-transition-arrow i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 50%;
  color: var(--gold-2);
  font-size: 15px;
  transition: .25s ease;
  animation: transitionArrowBounce 1.8s ease-in-out infinite;
}

.solution-transition-arrow:hover {
  color: #fff;
}

.solution-transition-arrow:hover i {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

@keyframes transitionArrowBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/*======================================
3S SCALING SECTION
======================================*/

.scaling-method{
    padding:110px 0;
    background:#fff;
    position:relative;
}

.scaling-grid {
  max-width: 1180px;
  margin: 85px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.scaling-card {
  position: relative;
  background: #fff;
  border: 1px solid #e7edf6;
  border-radius: 20px;
  padding: 82px 34px 42px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(15,35,75,.08);
  transition: .35s ease;
  overflow: visible;
}

.scaling-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #b6922e, #d8bc63);
  border-radius: 20px 20px 0 0;
}

.scaling-number {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #10193d;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  z-index: 5;
}

.scaling-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: #eef5ff;
  color: #5579b0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  transition: .35s;
}

.scaling-card h3 {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .5px;
  margin-bottom: 12px;
  color: #10193d;
}

.scaling-card h4 {
  color: #5579b0;
  font-size: 21px;
  line-height: 1.35;
  margin-bottom: 22px;
  font-weight: 800;
}

.scaling-card p {
  color: #5b667e;
  line-height: 1.7;
  font-size: 17px;
}

.scaling-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(15,35,75,.13);
}

.scaling-card:hover .scaling-icon {
  transform: scale(1.06);
}

@media (max-width: 991px) {
  .scaling-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    gap: 42px;
  }
}

/* =========================================================
   SCORECARD
   ========================================================= */
.premium-scorecard {
  background: linear-gradient(90deg,#eef7fd,#fff);
  padding: 90px 0;
}

.scorecard-intro-top {
  max-width: 850px;
  margin: 0 auto 46px;
  text-align: center;
}

.scorecard-intro-top span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.55px;
  font-size: 13px;
  margin-bottom: 8px;
}

.scorecard-intro-top h2 {
  font-family:"Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.08;
  margin-bottom: 14px;
}

.scorecard-intro-top p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
}

.scorecard-two-column {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: stretch;
}

.score-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.quick-assessment h3,
.score-result h3 {
  text-transform: uppercase;
  font-size: 19px;
  letter-spacing: .7px;
  text-align: center;
  margin-bottom: 28px;
}

.question {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 22px;
}

.question h4 {
  font-size: 17px;
  line-height: 1.35;
}

.options {
  display: grid;
  grid-template-columns: repeat(5, 32px);
  gap: 8px;
}

.options input {
  display: none;
}

.options span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: #f4f9fd;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
}

.options input:checked + span {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.score-result {
  text-align: center;
  border: 4px solid var(--navy);
}

.score-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: conic-gradient(var(--blue) 0deg, #e3edf5 0deg);
  display: grid;
  place-items: center;
}

.score-circle-inner {
  width: 126px;
  height: 126px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

#totalScore {
  font-size: 58px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

#scoreLabel {
  color: #15923d;
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
  font-size: 19px;
}

.bar-row {
  text-align: left;
  margin: 17px 0;
}

.bar-top {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 7px;
}

.bar {
  height: 11px;
  background: #dceaf4;
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0%;
  background: var(--blue);
  transition: .3s ease;
}

.full-assessment-box {
  margin-top: 24px;
  background: #f4f9fd;
  border-left: 5px solid var(--gold);
  padding: 22px;
  border-radius: 8px;
}

.full-assessment-box h4 {
  font-size: 19px;
  margin-bottom: 9px;
}

.full-assessment-box p {
  color: var(--muted);
  margin-bottom: 15px;
  font-size: 15px;
}

.full-assessment-box .btn {
  padding: 13px 18px;
  font-size: 14px;
}

.full-assessment-box small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.gold-squiggle {
  display: none;
}

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

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

.score-email-form {
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 8px;
}

.score-email-form h4 {
  margin-bottom: 14px;
}

.locked-results {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.locked-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 26px;
}

.locked-results h3 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.locked-results > p {
  color: var(--muted);
  margin-bottom: 24px;
}

.score-email-form input {
  width: 100%;
  padding: 14px 15px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font: inherit;
}

.score-email-form .btn {
  width: 100%;
}

#scoreEmailMessage {
  margin-top: 14px;
  font-weight: 800;
  color: var(--blue);
}

.score-note {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

#scoreEmailMessage.success {
  color: #15923d;
}

#scoreEmailMessage.error {
  color: #b42318;
}

/* =========================================================
   ABOUT MIKE
   ========================================================= */

.premium-mike {
  background:
    linear-gradient(135deg, #07142f 0%, #0b1d42 55%, #12365f 100%);
  color: #fff;
  position: relative;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.premium-mike::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1180px, 92%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(192,147,19,.75),
    transparent
  );
}

.mike-grid { display: grid; grid-template-columns: .9fr .8fr .85fr; align-items: center; gap: 34px; }
.mike-copy { padding: 64px 0; }
.mike-copy h2 { font-family:"Montserrat", Arial, Helvetica, sans-serif; font-size: 42px; line-height: 1.1; margin-bottom: 12px; }
.mike-copy h4 { color: var(--gold-2); margin-bottom: 20px; }
.mike-copy p { color: rgba(255,255,255,.84); margin-bottom: 24px; max-width: 420px; }
.mike-photo img { height: 480px; width: 100%; object-fit: cover; object-position: center 18%; }
.mike-proof { padding: 34px; }
.mike-proof div { margin-bottom: 18px; display: grid; grid-template-columns: 34px 1fr; column-gap: 12px; align-items: start; }
.mike-proof i { color: var(--gold-2); font-size: 22px; grid-row: span 2; }
.mike-proof strong { display: block; color: var(--gold-2); font-size: 22px; line-height: 1; }
.mike-proof span { color: rgba(255,255,255,.82); }
.mike-proof blockquote { background: #fff; color: var(--navy); padding: 20px; border-radius: 10px; margin: 24px 0; font-weight: 900; }

/* =========================================================
   PHASE 2 INNER PAGES - ABOUT + CONTACT
   Append to styles.css
   ========================================================= */

.page-section {
  padding: 90px 0;
}

.soft-bg {
  background: linear-gradient(90deg, #f7fbff 0%, #eef6fc 100%);
}

.premium-inner-hero {
  position: relative;
  background: linear-gradient(135deg, #07142f 0%, #0b1d42 58%, #12365f 100%);
  color: #fff;
  padding: 40px 0 40px;
  overflow: hidden;
}

.premium-inner-hero .container {
  position: relative;
  z-index: 2;
}

.premium-inner-hero .breadcrumb {
  color: rgba(255,255,255,.72);
  margin-bottom: 18px;
}

.premium-inner-hero .breadcrumb a {
  color: var(--gold-2);
}

.inner-kicker,
.section-eyebrow {
  display: block;
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 13px;
  margin-bottom: 12px;
}

.premium-inner-hero h1 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.05;
  letter-spacing: -.04em;
  max-width: 880px;
  margin-bottom: 22px;
}

.premium-inner-hero p {
  max-width: 720px;
  color: rgba(255,255,255,.84);
  font-size: 18px;
}

.about-story-grid,
.mike-feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.about-story h2,
.mike-feature h2,
.contact-form-card h2,
.inner-cta h2 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.about-story p,
.mike-feature p,
.contact-form-card p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 18px;
}

.about-stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 38px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
}

.about-stat-card div {
  border-left: 5px solid var(--gold);
  padding-left: 20px;
}

.about-stat-card strong {
  display: block;
  font-size: 38px;
  line-height: 1;
  color: var(--blue);
  font-weight: 900;
}

.about-stat-card span {
  color: var(--muted);
  font-weight: 800;
}

.mike-feature-image img {
  width: 100%;
  height: 750px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.mike-feature h3 {
  color: var(--blue);
  font-size: 20px;
  margin-bottom: 20px;
}

.mike-feature blockquote {
  margin-top: 28px;
  background: #fff;
  border-left: 5px solid var(--gold);
  padding: 22px;
  border-radius: 10px;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(7,20,47,.08);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.approach-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(15,35,75,.08);
}

.approach-card i {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 32px;
}

.approach-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.approach-card p {
  color: var(--muted);
}

.inner-cta {
  background: #fff;
  padding: 70px 0;
}

.inner-cta-box {
  background: linear-gradient(135deg, #07142f 0%, #12365f 100%);
  color: #fff;
  border-radius: 18px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.inner-cta-box span {
  display: block;
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  margin-bottom: 8px;
}

.inner-cta-box h2 {
  color: #fff;
  margin-bottom: 0;
  max-width: 760px;
}

.contact-grid {
  grid-template-columns: 1.08fr .72fr;
  align-items: start;
}

.contact-form-card,
.contact-side-card .side-card-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form {
  margin-top: 28px;
}

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

.contact-form label {
  display: block;
  font-weight: 900;
  margin: 0 0 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  margin-bottom: 18px;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-side-card {
  display: grid;
  gap: 22px;
}

.side-card-block h3 {
  font-size: 23px;
  margin-bottom: 16px;
}

.side-card-block p,
.side-card-block li {
  color: var(--muted);
}

.side-card-block ul {
  list-style: none;
}

.side-card-block li {
  margin-bottom: 10px;
  font-weight: 800;
}

.side-card-block li::before {
  content: "✓";
  color: #fff;
  background: var(--gold);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  margin-right: 10px;
}

.dark-side-card {
  background: var(--navy) !important;
  color: #fff;
}

.dark-side-card i {
  color: var(--gold-2);
  font-size: 34px;
  margin-bottom: 16px;
}

.dark-side-card li,
.dark-side-card p {
  color: rgba(255,255,255,.82);
}

.blue-side-card {
  background: linear-gradient(135deg, #eef7fd, #fff) !important;
}

.text-link-light {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 900px) {
  .page-section {
    padding: 70px 0;
  }

  .about-story-grid,
  .mike-feature-grid,
  .approach-grid,
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .premium-inner-hero {
    padding: 68px 0 76px;
  }

  .premium-inner-hero p {
    font-size: 18px;
  }

  .mike-feature-image img {
    height: auto;
  }

  .inner-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .inner-cta-box .btn {
    width: 100%;
  }
}

/* =========================================================
   CONTACT PAGE - MEET YOUR ADVISOR
   ========================================================= */

.contact-advisor-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(54, 118, 166, 0.15),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #f4f9fd 0%,
      #eaf3fa 48%,
      #f8fbfe 100%
    );
  border-top: 1px solid var(--border);
}

.contact-advisor-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  background-image:
    radial-gradient(
      rgba(54, 118, 166, 0.28) 1.2px,
      transparent 1.2px
    );
  background-size: 20px 20px;
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65),
    transparent 46%
  );
}

.contact-advisor-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 68px;
  align-items: center;
}

.contact-advisor-image {
  position: relative;
}

.contact-advisor-image::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 110px;
  height: 110px;
  border-top: 5px solid var(--gold-2);
  border-left: 5px solid var(--gold-2);
  border-radius: 18px 0 0 0;
  z-index: 2;
}

.contact-advisor-image::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 75%;
  height: 75%;
  border-radius: 24px;
  background: var(--navy);
  z-index: -1;
}

.contact-advisor-image > img {
  width: 100%;
  min-height: 535px;
  max-height: 650px;
  object-fit: cover;
  object-position: center center;
  border-radius: 22px;
  box-shadow: 0 30px 75px rgba(7, 20, 47, 0.2);
}

.contact-advisor-image-badge {
  position: absolute;
  right: -36px;
  bottom: 34px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  align-items: center;
  max-width: 290px;
  padding: 17px 20px;
  background: var(--navy);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(7,20,47,.26);
}

.contact-advisor-image-badge i {
  color: var(--gold-2);
  font-size: 27px;
}

.contact-advisor-image-badge strong {
  display: block;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.25;
}

.contact-advisor-image-badge span {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.67);
  font-size: 12px;
  line-height: 1.35;
}

.contact-advisor-copy {
  max-width: 630px;
}

.contact-advisor-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.contact-advisor-copy h2 {
  margin-bottom: 25px;
  color: var(--navy);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-advisor-copy h2 strong {
  display: block;
  color: var(--blue);
}

.contact-advisor-copy > p {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.contact-advisor-copy blockquote {
  position: relative;
  margin: 28px 0;
  padding: 23px 26px 23px 54px;
  background: #fff;
  color: var(--navy);
  border-left: 5px solid var(--gold);
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(7,20,47,.08);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.contact-advisor-copy blockquote::before {
  content: "“";
  position: absolute;
  top: 11px;
  left: 17px;
  color: var(--gold-2);
  font-size: 48px;
  line-height: 1;
  font-family: Georgia, serif;
}

.contact-advisor-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
}

.contact-advisor-signature-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  font-size: 20px;
}

.contact-advisor-signature h3 {
  margin: 0 0 3px;
  color: var(--navy);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.contact-advisor-signature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.contact-advisor-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.contact-advisor-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.contact-advisor-link:hover {
  color: var(--navy);
  transform: translateX(4px);
}

/* =========================================================
   CLIENT TESTIMONIALS
   ========================================================= */

.client-testimonials {
  position: relative;
  overflow: hidden;
  padding: 100px 0 92px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(54,118,166,.14),
      transparent 42%
    ),
    linear-gradient(
      135deg,
      #f5f9fd 0%,
      #eaf3fa 52%,
      #f8fbfe 100%
    );
  border-top: 1px solid var(--border);
}

.testimonial-pattern {
  position: absolute;
  inset: 0;
  opacity: .34;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(54,118,166,.22) 1.2px, transparent 1.2px);
  background-size: 20px 20px;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,0,0,.65) 28%,
    rgba(0,0,0,.35) 78%,
    transparent 100%
  );
}

.testimonial-section-title {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.testimonial-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 34px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(216,228,238,.95);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(7,20,47,.10);
  transition: transform .3s ease, box-shadow .3s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-2),
    transparent
  );
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(7,20,47,.15);
}

.featured-testimonial {
  background: var(--navy);
  border-color: rgba(255,255,255,.12);
  color: #fff;
  transform: translateY(-12px);
}

.featured-testimonial:hover {
  transform: translateY(-18px);
}

.testimonial-quote-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 21px;
}

.featured-testimonial .testimonial-quote-icon {
  background: rgba(255,255,255,.10);
  color: var(--gold-2);
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 22px;
  color: var(--gold-2);
  font-size: 14px;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  font-style: italic;
}

.featured-testimonial blockquote {
  color: rgba(255,255,255,.82);
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.featured-testimonial .testimonial-person {
  border-top-color: rgba(255,255,255,.15);
}

.testimonial-initials {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
}

.featured-testimonial .testimonial-initials {
  background: var(--gold);
}

.testimonial-person h3 {
  margin: 0 0 2px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.2;
  color: var(--navy);
}

.featured-testimonial .testimonial-person h3 {
  color: #fff;
}

.testimonial-person p {
  margin: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.featured-testimonial .testimonial-person p {
  color: var(--gold-2);
}

.testimonial-person span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.featured-testimonial .testimonial-person span {
  color: rgba(255,255,255,.64);
}

.testimonial-cta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  max-width: 900px;
  margin: 48px auto 0;
  padding: 24px 28px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(7,20,47,.08);
}

.testimonial-cta p {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

/* =========================================================
   WHY ALLSTRIVE RESULTS
   ========================================================= */

.why-allstrive {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  background:
    linear-gradient(
      135deg,
      #07142f 0%,
      #0b1d42 55%,
      #12365f 100%
    );
  color: #fff;
}

.why-allstrive::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  top: -250px;
  right: -180px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 0 0 70px rgba(255,255,255,.022),
    0 0 0 140px rgba(255,255,255,.015);
}

.why-allstrive-pattern {
  position: absolute;
  inset: 0;
  opacity: .2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
}

.why-allstrive-inner {
  position: relative;
  z-index: 2;
}

.why-allstrive-heading {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.why-allstrive-heading span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.why-allstrive-heading h2 {
  margin-bottom: 14px;
  color: #fff;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.why-allstrive-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,.76);
  font-size: 18px;
  line-height: 1.7;
}

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

.why-allstrive-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  align-items: start;
  padding: 30px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  transition: .3s ease;
}

.why-allstrive-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.11);
  border-color: rgba(192,147,19,.50);
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
}

.why-allstrive-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(192,147,19,.14);
  border: 1px solid rgba(192,147,19,.42);
  color: var(--gold-2);
  font-size: 24px;
}

.why-allstrive-card h3 {
  margin: 2px 0 8px;
  color: #fff;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.why-allstrive-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.7;
}

.why-allstrive-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 42px;
  padding: 28px 30px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
}

.why-allstrive-cta h3 {
  margin-bottom: 5px;
  color: var(--navy);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.why-allstrive-cta p {
  margin: 0;
  color: var(--muted);
}


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

.site-footer {
  background: #050d26;
  color: #fff;
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 46px;
  margin-bottom: 48px;
}

.footer-logo {
  width: 120px;
  background: #fff;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.footer-blurb {
  color: rgba(255,255,255,.72);
  max-width: 320px;
}

.site-footer h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.62);
  margin-bottom: 18px;
  font-weight: 900;
}

.site-footer a {
  display: block;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
  transition: .25s ease;
}

.site-footer a:hover {
  color: var(--blue);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.social-links a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 20px;
  transition: .3s ease;
  transform: none;
}

.social-links a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(54,118,166,.35);
}
/* =========================================================
   BACK TO TOP
   ========================================================= */
#backToTop { position: fixed; right: 30px; bottom: 30px; width: 52px; height: 52px; border: none; border-radius: 50%; background: var(--blue); color: #fff; font-size: 22px; cursor: pointer; opacity: 0; visibility: hidden; transition: .3s ease; box-shadow: 0 12px 30px rgba(0,0,0,.18); z-index: 9999; }
#backToTop.show { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--white); color: var(--blue); transform: translateY(-4px); }

/* =========================================================
   INNER PAGE SHELL SUPPORT
   ========================================================= */
.page-hero { background: linear-gradient(135deg, #f7fbff 0%, #eef3f7 100%); padding: 70px 0; border-bottom: 1px solid var(--border); }
.breadcrumb { font-size: 14px; color: var(--muted); margin-bottom: 16px; font-weight: 700; }
.breadcrumb a { color: var(--blue); }
.page-hero h1 { font-size: clamp(38px, 5vw, 62px); line-height: 1.08; max-width: 850px; }
.page-intro { padding: 70px 0; }
.placeholder-box { background: var(--soft); border: 1px dashed var(--border); border-radius: 14px; padding: 34px; color: var(--muted); }


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

@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
    font-size: 14px;
  }

  .logo img {
    width: 150px;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    min-height: 86px;
  }

  .mobile-toggle {
    display: flex;
    flex: 0 0 auto;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 4%;
    right: 4%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 18px 45px rgba(7,20,47,.14);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    font-size: 20px;
    font-weight: 900;
  }

  .main-nav.show {
    display: flex;
  }

  .main-nav > a,
  .dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    border-radius: 10px;
    line-height: 1.25;
  }

  .main-nav > a:not(.btn)::after,
  .dropdown > a::before {
    display: none;
  }

  .dropdown {
    padding: 0;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 4px 0 10px 20px;
  }

  .dropdown-menu a {
    padding: 12px 16px;
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    border-radius: 9px;
  }

  .dropdown-menu a:hover {
    background: var(--blue-soft);
    color: var(--blue);
  }

  .contact-btn {
    width: 100%;
    margin-top: 12px;
    padding: 18px 20px;
    text-align: center;
    justify-content: center;
    font-size: 18px;
  }

  /* Mobile hero: clean stacked layout, no diagonal clipping */
  .premium-hero {
    clip-path: none;
    overflow: hidden;
  }

  .premium-hero::after {
    display: none;
  }

  .premium-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 34px;
    padding: 58px 0 72px;
    text-align: center;
  }

  .premium-hero-copy h1,
  .premium-hero-copy p {
    max-width: none;
  }

  .premium-hero-copy h1 {
    font-size: clamp(38px, 10vw, 54px);
  }

  .hero-actions {
    justify-content: center;
  }

  .premium-hero-visual {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .mike-hero-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(720px, 86vw);
    height: 330px;
    margin: 0 auto 6px;
    border-radius: 18px;
  }

  .hero-pill {
    position: static;
    width: min(430px, 88vw);
    margin: 0 auto;
    justify-content: center;
    text-align: left;
    background: rgba(7,20,47,.96);
    padding: 18px 20px;
  }

  .hero-pill::before {
    display: none;
  }

  .pill-one,
  .pill-two,
  .pill-three {
    top: auto;
    margin-bottom: 0;
  }

  .pill-three {
    margin-bottom: 24px;
  }

  /* Mobile challenge: keep right card readable and prevent bottom collision */
  .problem-premium-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    width: min(1180px, 92%);
  }

  .problem-visual {
    min-height: auto;
    height: auto;
    padding: 30px 20px 54px;
    border-radius: 16px;
    display: block;
  }

  .problem-visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
  }

  .problem-visual::after {
    background: rgba(238,246,252,.76);
  }

  .growth-map {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    z-index: 3;
    gap: 14px;
  }

  .growth-step {
    grid-template-columns: 44px 1fr;
    padding: 16px 18px;
  }

  .growth-step:not(:last-child)::after {
    bottom: -20px;
  }

  .growth-step.dark {
    margin-bottom: 12px;
  }

  /* General mobile section grids */
  .who-grid,
  .scaling-grid,
  .scorecard-two-column,
  .mike-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .scorecard-showcase {
    align-items: stretch;
  }

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

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

  .mike-photo img {
    height: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-links {
    justify-content: flex-start;
  }
}

/*=========================================================
  REAL CLIENT RESULTS
=========================================================*/

.results-proof{

    padding:100px 0;

    background:
    linear-gradient(
    180deg,
    #ffffff 0%,
    #f7faff 100%
    );

    position:relative;

}

.results-proof::before{

    content:"";

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    width:140px;

    height:4px;

    background:var(--gold);

    border-radius:50px;

}

.results-proof .section-heading{

    max-width:820px;

    margin:0 auto 70px;

    text-align:center;

}

.results-proof .section-heading p{

    font-size:20px;

    color:var(--muted);

    margin-top:18px;

}

.results-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:34px;

}

.result-card{

    background:#fff;

    border:1px solid rgba(18,30,63,.08);

    border-radius:22px;

    padding:48px 36px;

    text-align:center;

    box-shadow:0 18px 45px rgba(16,30,64,.08);

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.result-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:6px;

    background:var(--gold);

}

.result-card:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 55px rgba(16,30,64,.16);

}

.result-number{

    font-size:72px;

    font-weight:900;

    color:var(--gold);

    line-height:1;

    margin-bottom:22px;

}

.result-card h3{

    font-size:28px;

    color:var(--navy);

    margin-bottom:18px;

    font-family:inherit;

}

.result-card p{

    font-size:18px;

    line-height:1.8;

    color:var(--muted);

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.results-grid{

grid-template-columns:1fr;

gap:28px;

}

.result-card{

padding:40px 28px;

}

.result-number{

font-size:60px;

}

}

@media (max-width: 600px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .logo img {
    width: 145px;
  }

  .header-inner {
    min-height: 78px;
  }

  .premium-section,
  .premium-problem,
  .premium-scorecard {
    padding: 70px 0;
  }

  .who-content,
  .score-panel {
    padding-left: 24px;
    padding-right: 24px;
  }

  .mike-hero-card {
   height: 100%;
  }

  .hero-pill {
    width: 92vw;
  }

  .options span {
    width: 100%;
  }

  .footer-grid {
    gap: 34px;
  }
}

@media (max-width: 700px) {
  .solution-transition {
    padding: 62px 0 66px;
  }

  .solution-transition-inner {
    width: min(100% - 34px, 960px);
  }

  .solution-transition h2 {
    font-size: 34px;
    line-height: 1.16;
  }

  .solution-transition-lead {
    font-size: 21px;
  }

  .solution-transition-copy {
    font-size: 16px;
    line-height: 1.65;
  }

  .solution-transition-arrow {
    margin-top: 27px;
  }
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
    gap: 28px;
  }

  .featured-testimonial,
  .featured-testimonial:hover {
    transform: none;
  }

  .testimonial-card {
    min-height: auto;
  }

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

@media (max-width: 600px) {
  .client-testimonials {
    padding: 72px 0 68px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .testimonial-card blockquote {
    font-size: 16px;
  }

  .testimonial-cta {
    padding: 22px;
  }

  .testimonial-cta .btn {
    width: 100%;
  }
}

@media (max-width: 850px) {
  .why-allstrive-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .why-allstrive {
    padding: 72px 0 68px;
  }

  .why-allstrive-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 26px 22px;
  }

  .why-allstrive-icon {
    margin: 0 auto;
  }

  .why-allstrive-heading p {
    font-size: 16px;
  }

  .why-allstrive-cta {
    padding: 24px 20px;
  }

  .why-allstrive-cta .btn {
    width: 100%;
  }
}

@media (max-width: 950px) {
  .contact-advisor-shell {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-advisor-image {
    max-width: 720px;
    margin: 0 auto;
  }

  .contact-advisor-image > img {
    min-height: auto;
    max-height: 650px;
  }

  .contact-advisor-image-badge {
    right: 24px;
  }

  .contact-advisor-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-advisor-signature {
    justify-content: center;
    text-align: left;
  }

  .contact-advisor-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .contact-advisor-section {
    padding: 74px 0 68px;
  }

  .contact-advisor-image::before {
    top: -10px;
    left: -8px;
    width: 72px;
    height: 72px;
    border-width: 3px;
  }

  .contact-advisor-image::after {
    right: -8px;
    bottom: -10px;
  }

  .contact-advisor-image > img {
    min-height: 390px;
    border-radius: 16px;
  }

  .contact-advisor-image-badge {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -42px 16px 0;
  }

  .contact-advisor-copy h2 {
    font-size: 35px;
  }

  .contact-advisor-copy > p {
    font-size: 16px;
  }

  .contact-advisor-copy blockquote {
    padding: 22px 20px 22px 46px;
    text-align: left;
    font-size: 15px;
  }

  .contact-advisor-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-advisor-actions .btn {
    width: 100%;
  }

  .contact-advisor-link {
    justify-content: center;
  }
}


/* =========================================================
   HOMEPAGE - FULL ASSESSMENT CTA
   ========================================================= */
.assessment-cta-section { position: relative; overflow: hidden; padding: 100px 0; background: radial-gradient(circle at 12% 20%, rgba(54,118,166,.18), transparent 35%), linear-gradient(135deg,#eef7fd 0%,#f8fbfe 48%,#fff 100%); border-top: 1px solid var(--border); }
.assessment-cta-pattern { position:absolute; inset:0; pointer-events:none; opacity:.32; background-image:radial-gradient(rgba(54,118,166,.23) 1.1px,transparent 1.1px); background-size:20px 20px; mask-image:linear-gradient(90deg,rgba(0,0,0,.65),transparent 52%); }
.assessment-cta-grid { position:relative; z-index:2; display:grid; grid-template-columns:.92fr 1.08fr; gap:70px; align-items:center; }
.assessment-cta-eyebrow { display:block; color:var(--gold); font-size:13px; font-weight:900; letter-spacing:2px; text-transform:uppercase; margin-bottom:12px; }
.assessment-cta-copy h2 { font-size:clamp(38px,4.6vw,58px); line-height:1.07; letter-spacing:-.04em; margin-bottom:22px; }
.assessment-cta-lead { color:var(--muted); font-size:18px; line-height:1.75; margin-bottom:28px; }
.assessment-cta-pillars { display:grid; gap:13px; margin-bottom:24px; }
.assessment-cta-pillars > div { display:grid; grid-template-columns:52px 1fr; align-items:center; gap:15px; padding:14px 16px; background:rgba(255,255,255,.88); border:1px solid var(--border); border-radius:12px; box-shadow:0 12px 30px rgba(7,20,47,.055); }
.assessment-cta-pillars i { width:46px; height:46px; display:grid; place-items:center; border-radius:50%; background:var(--navy); color:var(--gold-2); font-size:19px; }
.assessment-cta-pillars span { color:var(--muted); font-size:14px; line-height:1.45; }
.assessment-cta-pillars strong { display:block; color:var(--navy); font-size:16px; }
.assessment-cta-benefits { display:flex; flex-wrap:wrap; gap:10px 18px; margin:0 0 25px; color:var(--navy); font-size:13px; font-weight:800; }
.assessment-cta-benefits span { display:inline-flex; align-items:center; gap:7px; }
.assessment-cta-benefits i { color:var(--blue); }
.assessment-cta-button { margin-bottom:12px; }
.assessment-cta-copy small { display:block; color:var(--muted); font-size:12px; }
.assessment-cta-preview { position:relative; background:#fff; border:4px solid var(--navy); border-radius:18px; padding:30px; box-shadow:0 35px 80px rgba(7,20,47,.18); }
.assessment-cta-preview::before { content:""; position:absolute; inset:12px -18px -18px 18px; background:var(--navy); border-radius:20px; z-index:-1; opacity:.10; }
.assessment-preview-header { display:flex; align-items:center; justify-content:space-between; gap:16px; background:var(--navy); color:#fff; padding:14px 18px; margin:-30px -30px 24px; border-radius:13px 13px 0 0; font-size:13px; font-weight:900; }
.assessment-preview-header em { color:var(--gold-2); font-style:normal; text-transform:uppercase; letter-spacing:1px; font-size:10px; }
.assessment-preview-score { text-align:center; padding-bottom:24px; border-bottom:1px solid var(--border); }
.assessment-preview-score span { display:block; font-size:12px; font-weight:900; text-transform:uppercase; color:var(--muted); }
.assessment-preview-score strong { display:block; color:#16853c; font-size:68px; line-height:1; margin:9px 0 0; }
.assessment-preview-score small { color:var(--muted); }
.assessment-preview-score b { display:block; color:var(--navy); font-size:20px; margin-top:8px; }
.assessment-preview-bars { display:grid; gap:18px; margin:25px 0; }
.assessment-preview-bars > div { display:grid; grid-template-columns:130px 1fr 70px; align-items:center; gap:12px; }
.assessment-preview-bars span { font-weight:900; font-size:13px; }
.assessment-preview-bars span i { color:var(--blue); width:20px; }
.assessment-preview-track { height:10px; background:#dceaf4; border-radius:99px; overflow:hidden; }
.assessment-preview-track i { display:block; height:100%; background:linear-gradient(90deg,var(--blue),#16853c); border-radius:99px; }
.assessment-preview-bars b { text-align:right; color:var(--navy); font-size:12px; }
.assessment-preview-insights { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.assessment-preview-insights > div { display:grid; grid-template-columns:40px 1fr; gap:10px; padding:14px; background:var(--blue-soft); border-radius:10px; }
.assessment-preview-insights i { width:36px; height:36px; display:grid; place-items:center; border-radius:50%; background:var(--navy); color:var(--gold-2); }
.assessment-preview-insights span { color:var(--muted); font-size:11px; line-height:1.45; }
.assessment-preview-insights strong { display:block; color:var(--navy); font-size:12px; }
.assessment-preview-lock { margin-top:18px; padding:13px; text-align:center; background:#f7f9fc; border-left:4px solid var(--gold); border-radius:7px; color:var(--muted); font-size:12px; font-weight:700; }
.assessment-preview-lock i { color:var(--gold); margin-right:7px; }

/* =========================================================
   DEDICATED 3S ASSESSMENT PAGE
   ========================================================= */
.assessment-page-body { background:#f5f8fc; }
.assessment-hero { position:relative; overflow:hidden; color:#fff; padding:74px 0 68px; background:radial-gradient(circle at 78% 0%,rgba(54,118,166,.45),transparent 36%),linear-gradient(135deg,#07142f,#0b2855); }
.assessment-hero-pattern { position:absolute; inset:0; opacity:.24; background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size:42px 42px; }
.assessment-hero-grid { position:relative; z-index:2; display:grid; grid-template-columns:1.25fr .75fr; gap:58px; align-items:center; }
.assessment-hero-eyebrow { display:block; color:var(--gold-2); font-size:13px; font-weight:900; letter-spacing:2px; text-transform:uppercase; margin-bottom:12px; }
.assessment-hero h1 { color:#fff; font-size: clamp(30px, 5vw, 44px); line-height:1.04; letter-spacing:-.045em; margin-bottom:20px; }
.assessment-hero p { max-width:780px; color:rgba(255,255,255,.82); font-size:18px; line-height:1.75; }
.assessment-hero-meta { display:flex; flex-wrap:wrap; gap:12px 22px; margin-top:25px; }
.assessment-hero-meta span { display:inline-flex; align-items:center; gap:8px; color:#fff; font-size:13px; font-weight:800; }
.assessment-hero-meta i { color:var(--gold-2); }
.assessment-scale-card { background:#fff; color:var(--navy); border-radius:16px; padding:25px 22px; box-shadow:0 25px 60px rgba(0,0,0,.23); }
.assessment-scale-card h2 { text-align:center; font-size:18px; margin-bottom:22px; text-transform:uppercase; }
.assessment-scale-line { display:grid; grid-template-columns:repeat(5,1fr); gap:8px; position:relative; }
.assessment-scale-line::before { content:""; position:absolute; top:17px; left:9%; right:9%; height:3px; background:linear-gradient(90deg,#d7191c,#f57c00,#efb715,#16853c,#087238); }
.assessment-scale-line > span { position:relative; z-index:2; width:36px; height:36px; display:grid; place-items:center; justify-self:center; border-radius:50%; color:#fff; font-weight:900; }
.assessment-scale-line small { position:absolute; top:44px; left:50%; transform:translateX(-50%); width:75px; color:var(--navy); font-size:9px; line-height:1.15; text-align:center; font-weight:700; }
.scale-1{background:#d7191c}.scale-2{background:#f57c00}.scale-3{background:#efb715}.scale-4{background:#16853c}.scale-5{background:#087238}
.assessment-scale-card { padding-bottom:62px; }
.assessment-workspace { padding:64px 0 90px; }
.assessment-instructions { display:grid; grid-template-columns:50px 1fr; gap:16px; align-items:center; margin-bottom:24px; padding:20px 24px; background:#fff; border:1px solid var(--border); border-radius:14px; box-shadow:0 12px 30px rgba(7,20,47,.06); }
.assessment-instructions i { width:46px; height:46px; display:grid; place-items:center; border-radius:50%; background:var(--navy); color:var(--gold-2); font-size:20px; }
.assessment-instructions strong { text-transform:uppercase; letter-spacing:1px; }
.assessment-instructions p { color:var(--muted); margin-top:3px; }
.assessment-progress-shell { position:sticky; top:88px; z-index:90; margin-bottom:26px; padding:17px 22px 14px; background:rgba(255,255,255,.97); border:1px solid var(--border); border-radius:14px; box-shadow:0 15px 40px rgba(7,20,47,.10); backdrop-filter:blur(12px); }
.assessment-progress-top { display:flex; justify-content:space-between; gap:20px; margin-bottom:9px; font-size:13px; font-weight:900; }
.assessment-progress-top span { color:var(--blue); text-transform:uppercase; }
.assessment-progress-track { height:9px; background:#dceaf4; border-radius:99px; overflow:hidden; }
.assessment-progress-track > div { width:0; height:100%; background:linear-gradient(90deg,var(--blue),#16853c); transition:width .3s ease; }
.assessment-progress-stages { display:grid; grid-template-columns:repeat(4,1fr); margin-top:10px; gap:8px; }
.assessment-progress-stages span { color:var(--muted); font-size:10px; font-weight:800; text-align:center; }
.assessment-progress-stages span.active { color:var(--blue); }
.assessment-progress-stages span.complete { color:#16853c; }
.assessment-step { display:none; background:#fff; border:1px solid var(--border); border-radius:20px; box-shadow:var(--shadow); overflow:hidden; }
.assessment-step.active { display:block; animation:assessmentFade .28s ease; }
@keyframes assessmentFade { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }
.assessment-pillar-heading { display:grid; grid-template-columns:92px 1fr; gap:22px; align-items:center; padding:30px 34px; color:#fff; background:var(--navy); }
.assessment-pillar-heading.simplify{background:linear-gradient(135deg,#0b7040,#168c4d)}
.assessment-pillar-heading.systemize{background:linear-gradient(135deg,#084b99,#126fc5)}
.assessment-pillar-heading.sustain{background:linear-gradient(135deg,#d94d00,#f06a15)}
.assessment-pillar-icon { width:76px; height:76px; display:grid; place-items:center; border-radius:50%; background:rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.28); font-size:32px; }
.assessment-pillar-heading span { display:block; color:rgba(255,255,255,.74); text-transform:uppercase; letter-spacing:1.4px; font-size:11px; font-weight:900; }
.assessment-pillar-heading h2 { color:#fff; font-size:36px; margin:2px 0 3px; }
.assessment-pillar-heading p { color:rgba(255,255,255,.82); }
.assessment-question-list { padding:18px 34px 8px; }
.assessment-question { display:grid; grid-template-columns:1fr 285px; align-items:center; gap:25px; padding:18px 8px; border-bottom:1px solid #e7edf4; border-radius:8px; }
.assessment-question:last-child { border-bottom:none; }
.assessment-question.has-error { background:#fff3f1; box-shadow:inset 4px 0 #b42318; }
.assessment-question-copy { display:grid; grid-template-columns:36px 1fr; gap:10px; align-items:start; }
.assessment-question-number { width:30px; height:30px; display:grid; place-items:center; border-radius:50%; background:var(--navy); color:#fff; font-size:12px; font-weight:900; }
.assessment-question-copy p { color:var(--text); font-size:15px; font-weight:700; line-height:1.5; }
.assessment-options { display:grid; grid-template-columns:repeat(5,44px); gap:10px; justify-content:end; }
.assessment-option input { position:absolute; opacity:0; pointer-events:none; }
.assessment-option span { width:42px; height:42px; display:grid; place-items:center; border-radius:50%; background:#f4f8fc; border:1px solid var(--border); color:var(--navy); font-weight:900; cursor:pointer; transition:.2s ease; }
.assessment-option:hover span { transform:translateY(-2px); border-color:var(--blue); }
.assessment-option input:focus-visible + span { outline:3px solid rgba(54,118,166,.28); outline-offset:2px; }
.assessment-option input:checked + span { background:var(--navy); color:#fff; border-color:var(--navy); box-shadow:0 8px 20px rgba(7,20,47,.22); }
.assessment-step-actions { display:flex; justify-content:space-between; gap:18px; padding:24px 34px 30px; border-top:1px solid var(--border); background:#fbfcfe; }
.assessment-btn { display:inline-flex; align-items:center; justify-content:center; gap:9px; min-height:48px; padding:13px 22px; border-radius:7px; border:2px solid var(--navy); font:inherit; font-size:14px; font-weight:900; cursor:pointer; transition:.25s ease; }
.assessment-btn-primary,.assessment-btn-submit { background:var(--navy); color:#fff; }
.assessment-btn-primary:hover,.assessment-btn-submit:hover { background:var(--blue); border-color:var(--blue); transform:translateY(-2px); }
.assessment-btn-secondary { background:#fff; color:var(--navy); }
.assessment-btn-secondary:hover { background:var(--blue-soft); }
.assessment-btn-submit { background:var(--gold); border-color:var(--gold); }
.assessment-btn:disabled { opacity:.65; cursor:wait; transform:none; }
.assessment-complete-heading { display:grid; grid-template-columns:80px 1fr; gap:20px; align-items:center; padding:32px 34px; background:linear-gradient(135deg,var(--navy),#12365f); color:#fff; }
.assessment-complete-icon { width:70px; height:70px; display:grid; place-items:center; border-radius:50%; background:#16853c; font-size:28px; }
.assessment-complete-heading span { color:var(--gold-2); text-transform:uppercase; letter-spacing:1.5px; font-size:12px; font-weight:900; }
.assessment-complete-heading h2 { color:#fff; font-size:32px; margin:3px 0 5px; }
.assessment-complete-heading p { color:rgba(255,255,255,.77); }
.assessment-contact-grid { display:grid; grid-template-columns:1.15fr .85fr; gap:28px; padding:32px 34px 12px; }
.assessment-contact-form-card label { display:block; margin-bottom:7px; font-size:13px; font-weight:900; }
.assessment-contact-form-card label span { color:var(--muted); font-weight:500; }
.assessment-contact-form-card input[type="text"],.assessment-contact-form-card input[type="email"],.assessment-contact-form-card input[type="tel"] { width:100%; padding:14px 15px; margin-bottom:17px; border:1px solid var(--border); border-radius:8px; font:inherit; }
.assessment-contact-form-card input:focus { border-color:var(--blue); outline:3px solid rgba(54,118,166,.12); }
.assessment-form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.assessment-consent { display:grid!important; grid-template-columns:20px 1fr; gap:10px; align-items:start; padding:13px; background:var(--blue-soft); border-radius:8px; line-height:1.45; }
.assessment-consent input { margin-top:4px; }
.assessment-delivery-card { background:var(--navy); color:#fff; border-radius:14px; padding:28px; }
.assessment-delivery-card > i { color:var(--gold-2); font-size:34px; margin-bottom:15px; }
.assessment-delivery-card h3 { color:#fff; font-size:22px; margin-bottom:16px; }
.assessment-delivery-card ul { list-style:none; display:grid; gap:10px; }
.assessment-delivery-card li { color:rgba(255,255,255,.82); font-size:14px; }
.assessment-delivery-card li::before { content:"✓"; color:#fff; background:#16853c; width:18px; height:18px; display:inline-grid; place-items:center; border-radius:50%; margin-right:9px; font-size:10px; }
.assessment-delivery-card p { margin-top:20px; padding-top:17px; border-top:1px solid rgba(255,255,255,.16); color:rgba(255,255,255,.76); font-size:13px; }
.assessment-form-message { margin:14px 34px 0; padding:0; font-weight:800; }
.assessment-form-message.error { padding:13px 15px; background:#fff1ef; color:#b42318; border-radius:8px; }
.assessment-form-message.success { padding:13px 15px; background:#eaf8ef; color:#087238; border-radius:8px; }
.assessment-form-message.sending { color:var(--blue); }
.assessment-honeypot { position:absolute!important; left:-9999px!important; width:1px!important; height:1px!important; opacity:0!important; }
.assessment-success { max-width:850px; margin:20px auto; text-align:center; padding:55px 42px; background:#fff; border:1px solid var(--border); border-radius:20px; box-shadow:var(--shadow); }
.assessment-success-icon { width:84px; height:84px; display:grid; place-items:center; border-radius:50%; margin:0 auto 18px; background:#16853c; color:#fff; font-size:34px; }
.assessment-success > span { color:var(--gold); text-transform:uppercase; letter-spacing:1.5px; font-size:12px; font-weight:900; }
.assessment-success h2 { font-size:40px; margin:5px 0 14px; }
.assessment-success p { max-width:650px; margin:0 auto; color:var(--muted); font-size:17px; }
.assessment-success-actions { display:flex; justify-content:center; align-items:center; flex-wrap:wrap; gap:20px; margin-top:27px; }
.assessment-success-link { color:var(--blue); font-weight:900; }

@media (max-width:950px) {
  .assessment-cta-grid,.assessment-hero-grid,.assessment-contact-grid { grid-template-columns:1fr; }
  .assessment-cta-copy { text-align:center; }
  .assessment-cta-benefits { justify-content:center; }
  .assessment-cta-pillars { max-width:700px; margin-left:auto; margin-right:auto; text-align:left; }
  .assessment-cta-preview { max-width:720px; margin:0 auto; width:100%; }
  .assessment-scale-card { max-width:620px; width:100%; }
  .assessment-question { grid-template-columns:1fr; }
  .assessment-options { justify-content:start; margin-left:46px; }
}
@media (max-width:700px) {
  .assessment-cta-section { padding:72px 0; }
  .assessment-preview-bars > div { grid-template-columns:110px 1fr; }
  .assessment-preview-bars b { display:none; }
  .assessment-preview-insights { grid-template-columns:1fr; }
  .assessment-hero { padding:58px 0; }
  .assessment-hero h1 { font-size:38px; }
  .assessment-progress-shell { top:78px; padding:14px; }
  .assessment-progress-stages { display:none; }
  .assessment-pillar-heading,.assessment-complete-heading { grid-template-columns:1fr; text-align:center; padding:27px 22px; }
  .assessment-pillar-icon,.assessment-complete-icon { margin:0 auto; }
  .assessment-question-list { padding:12px 16px 4px; }
  .assessment-question { padding:18px 4px; gap:15px; }
  .assessment-options { grid-template-columns:repeat(5,1fr); justify-content:stretch; margin-left:0; gap:7px; }
  .assessment-option span { width:100%; height:42px; border-radius:9px; }
  .assessment-step-actions { padding:20px 18px 24px; }
  .assessment-btn { padding:12px 15px; }
  .assessment-contact-grid { padding:24px 18px 8px; }
  .assessment-form-row { grid-template-columns:1fr; gap:0; }
  .assessment-form-message { margin-left:18px; margin-right:18px; }
  .assessment-success { padding:42px 22px; }
}
@media (max-width:480px) {
  .assessment-scale-line small { font-size:8px; width:57px; }
  .assessment-step-actions { flex-direction:column-reverse; }
  .assessment-step-actions > span { display:none; }
  .assessment-step-actions .assessment-btn { width:100%; }
  .assessment-preview-header { align-items:flex-start; flex-direction:column; }
}

/* =========================================================
   BUSINESS ADVISORY PAGE
   Append to the current master styles.css
   ========================================================= */

.ba-hero,
.ba-method,
.ba-final-cta {
  position: relative;
  overflow: hidden;
}

.ba-grid-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .42;
}

.ba-hero {
  padding: 96px 0 92px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 22%, rgba(54,118,166,.30), transparent 34%),
    linear-gradient(135deg, #07142f 0%, #0b1d42 58%, #153b67 100%);
  border-bottom: 5px solid var(--gold);
}

.ba-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 68px;
  align-items: center;
}

.ba-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.ba-hero h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.ba-hero-copy > p {
  max-width: 690px;
  color: rgba(255,255,255,.80);
  font-size: 18px;
  line-height: 1.75;
}

.ba-hero-copy .ba-lead {
  margin-bottom: 8px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.ba-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.ba-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: .25s ease;
}

.ba-text-link:hover {
  color: var(--gold-2);
  transform: translateY(2px);
}

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

.ba-orbit {
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(255,255,255,.025),
    0 0 0 104px rgba(255,255,255,.015);
}

.ba-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 30px 70px rgba(0,0,0,.24);
  z-index: 2;
}

.ba-core span {
  color: var(--gold);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.ba-core strong {
  margin-top: 6px;
  font-size: 15px;
}

.ba-visual-card {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  width: min(315px, 82%);
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  background: rgba(7,20,47,.92);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}

.ba-visual-card i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(192,147,19,.16);
  color: var(--gold-2);
  font-size: 21px;
}

.ba-visual-card span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ba-visual-card strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.ba-visual-card.one { top: 28px; left: 0; }
.ba-visual-card.two { top: 50%; right: 0; transform: translateY(-50%); }
.ba-visual-card.three { left: 28px; bottom: 24px; }

.ba-breadcrumb {
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.ba-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.ba-breadcrumb a { color: var(--blue); }
.ba-breadcrumb i { color: var(--gold); font-size: 9px; }

.ba-fit,
.ba-engagement,
.ba-outcomes {
  padding: 100px 0;
}

.ba-fit,
.ba-outcomes {
  background: #fff;
}

.ba-engagement {
  background: linear-gradient(180deg, #fff 0%, #f4f9fd 100%);
}

.ba-two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.ba-two-col h2 {
  margin: 8px 0 18px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.ba-two-col > div > p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.ba-fit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ba-fit-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 108px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f8fbfe;
  transition: .3s ease;
}

.ba-fit-list article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(7,20,47,.09);
}

.ba-fit-list i {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
}

.ba-fit-list p {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.ba-method {
  padding: 100px 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(54,118,166,.26), transparent 44%),
    linear-gradient(135deg, #07142f 0%, #0b1d42 52%, #153b67 100%);
}

.ba-light-title {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.ba-light-title h2 { color: #fff; }
.ba-light-title p { color: rgba(255,255,255,.72); }

.ba-method-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ba-method-card {
  position: relative;
  overflow: hidden;
  min-height: 355px;
  padding: 38px 32px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  transition: .3s ease;
}

.ba-method-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.11);
}

.ba-method-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
}

.ba-method-card.simplify::before { background: #16853c; }
.ba-method-card.systemize::before { background: #3676a6; }
.ba-method-card.sustain::before { background: #e65000; }

.ba-num {
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(255,255,255,.12);
  font-size: 58px;
  font-weight: 900;
}

.ba-method-card > i {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  color: var(--gold-2);
  font-size: 24px;
}

.ba-method-card h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 29px;
}

.ba-method-card p {
  color: rgba(255,255,255,.74);
  line-height: 1.75;
}

.ba-note {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 15px;
  padding: 22px;
  border-left: 5px solid var(--gold);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(7,20,47,.08);
}

.ba-note i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
}

.ba-note p {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.65;
}

.ba-steps {
  display: grid;
  gap: 18px;
}

.ba-steps article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 24px 26px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7,20,47,.06);
  transition: .3s ease;
}

.ba-steps article:hover {
  transform: translateX(7px);
}

.ba-steps article > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  font-weight: 900;
}

.ba-steps h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

.ba-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.ba-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ba-outcomes-grid article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 130px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #f8fbfe;
  transition: .3s ease;
}

.ba-outcomes-grid article:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 20px 48px rgba(7,20,47,.10);
}

.ba-outcomes-grid i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
}

.ba-outcomes-grid h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
}

.ba-final-cta {
  padding: 80px 0;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(192,147,19,.17), transparent 35%),
    linear-gradient(135deg, #07142f 0%, #0d2950 100%);
  border-top: 5px solid var(--gold);
}

.ba-final-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.ba-final-cta span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.ba-final-cta h2 {
  max-width: 930px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
}

.ba-final-cta p {
  max-width: 850px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .ba-hero-inner,
  .ba-two-col,
  .ba-final-inner {
    grid-template-columns: 1fr;
  }

  .ba-hero-visual {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .ba-method-grid,
  .ba-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .ba-method-card {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .ba-hero {
    padding: 72px 0 76px;
  }

  .ba-hero h1 {
    font-size: 40px;
  }

  .ba-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ba-actions .btn,
  .ba-text-link {
    width: 100%;
    justify-content: center;
  }

  .ba-hero-visual {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .ba-orbit,
  .ba-core {
    display: none;
  }

  .ba-visual-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none !important;
  }

  .ba-fit,
  .ba-method,
  .ba-engagement,
  .ba-outcomes {
    padding: 74px 0;
  }

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

  .ba-steps article {
    grid-template-columns: 52px 1fr;
    padding: 22px 20px;
  }

  .ba-outcomes-grid article {
    grid-template-columns: 48px 1fr;
  }

  .ba-final-cta {
    padding: 68px 0;
  }

  .ba-final-inner .btn {
    width: 100%;
  }
}

/* =========================================================
   LEADERSHIP DEVELOPMENT PAGE
   Append to the current master styles.css
   ========================================================= */

.ld-hero,
.ld-journey,
.ld-final-cta {
  position: relative;
  overflow: hidden;
}

.ld-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,.045) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  opacity: .42;
}

.ld-hero {
  padding: 100px 0 96px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(72,106,165,.34), transparent 34%),
    linear-gradient(135deg, #07142f 0%, #101e43 54%, #283e72 100%);
  border-bottom: 5px solid var(--gold);
}

.ld-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.ld-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.ld-hero h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(44px, 5.3vw, 74px);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.ld-hero-copy > p {
  max-width: 700px;
  color: rgba(255,255,255,.80);
  font-size: 18px;
  line-height: 1.75;
}

.ld-hero-copy .ld-hero-lead {
  margin-bottom: 8px;
  color: #fff;
  font-size: 23px;
  font-weight: 800;
}

.ld-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.ld-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: .25s ease;
}

.ld-hero-link:hover {
  color: var(--gold-2);
  transform: translateY(2px);
}

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

.ld-leadership-ring {
  position: absolute;
  inset: 46px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(255,255,255,.025),
    0 0 0 96px rgba(255,255,255,.015);
}

.ld-leader-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
  z-index: 2;
}

.ld-leader-center i {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 44px;
}

.ld-leader-center span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.ld-leader-center strong {
  margin-top: 4px;
  font-size: 18px;
}

.ld-orbit-card {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  width: min(330px, 84%);
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  background: rgba(7,20,47,.92);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}

.ld-orbit-card i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(192,147,19,.16);
  color: var(--gold-2);
  font-size: 21px;
}

.ld-orbit-card span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ld-orbit-card strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.ld-orbit-card.trust { top: 26px; right: 20px; }
.ld-orbit-card.accountability { top: 50%; left: 0; transform: translateY(-50%); }
.ld-orbit-card.growth { right: 0; bottom: 24px; }

.ld-breadcrumb {
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.ld-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.ld-breadcrumb a { color: var(--blue); }
.ld-breadcrumb i { color: var(--gold); font-size: 9px; }

.ld-fit,
.ld-engagement,
.ld-outcomes {
  padding: 100px 0;
}

.ld-fit,
.ld-outcomes {
  background: #fff;
}

.ld-fit-heading,
.ld-outcomes-heading {
  max-width: 900px;
}

.ld-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ld-fit-grid article {
  position: relative;
  min-height: 270px;
  padding: 34px 28px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: linear-gradient(180deg, #fff 0%, #f6faff 100%);
  box-shadow: 0 16px 40px rgba(7,20,47,.07);
  transition: .3s ease;
}

.ld-fit-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 55px rgba(7,20,47,.12);
}

.ld-fit-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 22px;
}

.ld-fit-grid h3 {
  margin-bottom: 11px;
  font-size: 20px;
  line-height: 1.35;
}

.ld-fit-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.ld-journey {
  padding: 100px 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(54,118,166,.24), transparent 43%),
    linear-gradient(135deg, #07142f 0%, #101e43 54%, #283e72 100%);
}

.ld-light-title {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.ld-light-title h2 { color: #fff; }
.ld-light-title p { color: rgba(255,255,255,.72); }

.ld-journey-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ld-journey-grid article {
  position: relative;
  min-height: 310px;
  padding: 34px 26px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  transition: .3s ease;
}

.ld-journey-grid article:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.11);
}

.ld-step-number {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(255,255,255,.13);
  font-size: 48px;
  font-weight: 900;
}

.ld-journey-grid i {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(192,147,19,.15);
  color: var(--gold-2);
  font-size: 23px;
}

.ld-journey-grid h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 23px;
}

.ld-journey-grid p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.ld-engagement {
  background: linear-gradient(180deg, #fff 0%, #f4f9fd 100%);
}

.ld-engagement-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.ld-engagement-copy h2 {
  margin: 8px 0 18px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.ld-engagement-copy > p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.ld-engagement-quote {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 24px;
  border-left: 5px solid var(--gold);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(7,20,47,.08);
}

.ld-engagement-quote i {
  color: var(--gold);
  font-size: 28px;
}

.ld-engagement-quote p {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.7;
}

.ld-engagement-list {
  display: grid;
  gap: 18px;
}

.ld-engagement-list article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 24px 26px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7,20,47,.06);
  transition: .3s ease;
}

.ld-engagement-list article:hover {
  transform: translateX(7px);
}

.ld-engagement-list article > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  font-weight: 900;
}

.ld-engagement-list h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

.ld-engagement-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.ld-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ld-outcomes-grid article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 130px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #f8fbfe;
  transition: .3s ease;
}

.ld-outcomes-grid article:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 20px 48px rgba(7,20,47,.10);
}

.ld-outcomes-grid i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
}

.ld-outcomes-grid h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
}

.ld-brand-band {
  padding: 70px 0;
  background: linear-gradient(90deg, #eef7fd 0%, #fff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ld-brand-band-inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: center;
}

.ld-brand-icon {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(7,20,47,.16);
}

.ld-brand-icon span {
  color: var(--gold-2);
  font-size: 34px;
  font-weight: 900;
}

.ld-brand-band-inner > div:last-child > span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.ld-brand-band h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 3.4vw, 44px);
}

.ld-brand-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.ld-final-cta {
  padding: 82px 0;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(192,147,19,.17), transparent 35%),
    linear-gradient(135deg, #07142f 0%, #0d2950 100%);
  border-top: 5px solid var(--gold);
}

.ld-final-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.ld-final-cta span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.ld-final-cta h2 {
  max-width: 930px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
}

.ld-final-cta p {
  max-width: 850px;
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

@media (max-width: 1050px) {
  .ld-hero-inner,
  .ld-engagement-grid,
  .ld-final-inner {
    grid-template-columns: 1fr;
  }

  .ld-hero-visual {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

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

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

@media (max-width: 700px) {
  .ld-hero {
    padding: 72px 0 76px;
  }

  .ld-hero h1 {
    font-size: 40px;
  }

  .ld-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ld-hero-actions .btn,
  .ld-hero-link {
    width: 100%;
    justify-content: center;
  }

  .ld-hero-visual {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .ld-leadership-ring,
  .ld-leader-center {
    display: none;
  }

  .ld-orbit-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none !important;
  }

  .ld-fit,
  .ld-journey,
  .ld-engagement,
  .ld-outcomes {
    padding: 74px 0;
  }

  .ld-fit-grid,
  .ld-journey-grid,
  .ld-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .ld-fit-grid article,
  .ld-journey-grid article {
    min-height: auto;
  }

  .ld-engagement-list article {
    grid-template-columns: 52px 1fr;
    padding: 22px 20px;
  }

  .ld-brand-band-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ld-brand-icon {
    margin: 0 auto;
  }

  .ld-final-cta {
    padding: 68px 0;
  }

  .ld-final-inner .btn {
    width: 100%;
  }
}

/* =========================================================
   RESOURCES PAGE
   Append to the current master styles.css
   ========================================================= */

.res-hero,
.res-library,
.res-final-cta {
  position: relative;
  overflow: hidden;
}

.res-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .42;
}

.res-pattern-light {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(54,118,166,.16) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .35;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,.8), transparent);
}

.res-hero {
  padding: 100px 0 96px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(54,118,166,.34), transparent 34%),
    linear-gradient(135deg, #07142f 0%, #0b1d42 56%, #153b67 100%);
  border-bottom: 5px solid var(--gold);
}

.res-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.res-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.res-hero h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.res-hero-copy > p {
  max-width: 720px;
  color: rgba(255,255,255,.80);
  font-size: 18px;
  line-height: 1.75;
}

.res-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.res-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: .25s ease;
}

.res-hero-link:hover {
  color: var(--gold-2);
  transform: translateX(4px);
}

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

.res-hero-visual::before {
  content: "";
  position: absolute;
  inset: 46px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(255,255,255,.025),
    0 0 0 96px rgba(255,255,255,.015);
}

.res-visual-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
  z-index: 2;
}

.res-visual-core i {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 44px;
}

.res-visual-core span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.res-visual-core strong {
  max-width: 130px;
  margin-top: 4px;
  text-align: center;
  font-size: 17px;
  line-height: 1.3;
}

.res-floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  width: min(330px, 84%);
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  background: rgba(7,20,47,.92);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}

.res-floating-card i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(192,147,19,.16);
  color: var(--gold-2);
  font-size: 21px;
}

.res-floating-card span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.res-floating-card strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.res-card-one { top: 28px; left: 0; }
.res-card-two { top: 50%; right: 0; transform: translateY(-50%); }
.res-card-three { left: 28px; bottom: 24px; }

.res-breadcrumb {
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.res-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.res-breadcrumb a { color: var(--blue); }
.res-breadcrumb i { color: var(--gold); font-size: 9px; }

.res-featured {
  padding: 100px 0;
  background: #fff;
}

.res-featured-shell {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.res-featured-copy h2 {
  margin: 8px 0 16px;
  font-size: clamp(38px, 4.3vw, 58px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.res-featured-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.res-featured-copy .res-featured-lead {
  color: var(--navy);
  font-size: 21px;
  font-weight: 800;
}

.res-featured-benefits {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
}

.res-featured-benefits li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-weight: 700;
}

.res-featured-benefits i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #16853c;
  color: #fff;
  font-size: 11px;
}

.res-featured-preview {
  overflow: hidden;
  border: 3px solid var(--navy);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 75px rgba(7,20,47,.16);
}

.res-scorecard-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.res-scorecard-top strong {
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: 1px;
}

.res-scorecard-body {
  padding: 34px;
}

.res-score-circle {
  width: 175px;
  height: 175px;
  display: grid;
  place-items: center;
  align-content: center;
  margin: 0 auto 28px;
  border: 18px solid #e4eef6;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 7px #fff;
}

.res-score-circle span {
  color: var(--blue);
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
}

.res-score-circle small {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.res-score-bars {
  display: grid;
  gap: 18px;
}

.res-score-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 900;
}

.res-score-label strong {
  color: var(--blue);
}

.res-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #dceaf4;
}

.res-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #16853c);
}

.res-score-insight {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  margin-top: 26px;
  padding: 20px;
  border-left: 5px solid var(--gold);
  border-radius: 10px;
  background: #f4f9fd;
}

.res-score-insight i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
}

.res-score-insight strong,
.res-score-insight span {
  display: block;
}

.res-score-insight span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.res-library {
  padding: 100px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(54,118,166,.10), transparent 43%),
    linear-gradient(180deg, #eef7fd 0%, #fff 100%);
}

.res-library-heading {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.res-library-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.res-library-card {
  position: relative;
  min-height: 320px;
  padding: 34px 30px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 16px 42px rgba(7,20,47,.08);
  transition: .3s ease;
}

.res-library-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 58px rgba(7,20,47,.13);
}

.res-library-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 180px;
}

.res-library-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 23px;
}

.res-library-card-wide .res-library-icon {
  margin-bottom: 0;
}

.res-library-card > span,
.res-library-card > div > span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.res-library-card h3 {
  margin-bottom: 11px;
  font-size: 23px;
}

.res-library-card p {
  color: var(--muted);
  line-height: 1.7;
}

.res-coming-soon {
  position: absolute;
  left: 30px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.res-library-card-wide .res-coming-soon {
  position: static;
  justify-self: end;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--blue-soft);
}

.res-principles {
  padding: 100px 0;
  background: #fff;
}

.res-principles-heading {
  max-width: 860px;
}

.res-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.res-principles-grid article {
  min-height: 240px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #f8fbfe;
  transition: .3s ease;
}

.res-principles-grid article:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 20px 48px rgba(7,20,47,.10);
}

.res-principles-grid i {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  font-size: 23px;
}

.res-principles-grid h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.res-principles-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.res-final-cta {
  padding: 82px 0;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(192,147,19,.17), transparent 35%),
    linear-gradient(135deg, #07142f 0%, #0d2950 100%);
  border-top: 5px solid var(--gold);
}

.res-final-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.res-final-cta span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.res-final-cta h2 {
  max-width: 930px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
}

.res-final-cta p {
  max-width: 850px;
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

@media (max-width: 1050px) {
  .res-hero-inner,
  .res-featured-shell,
  .res-final-inner {
    grid-template-columns: 1fr;
  }

  .res-hero-visual {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

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

@media (max-width: 750px) {
  .res-hero {
    padding: 72px 0 76px;
  }

  .res-hero h1 {
    font-size: 40px;
  }

  .res-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .res-hero-actions .btn,
  .res-hero-link {
    width: 100%;
    justify-content: center;
  }

  .res-hero-visual {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .res-hero-visual::before,
  .res-visual-core {
    display: none;
  }

  .res-floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none !important;
  }

  .res-featured,
  .res-library,
  .res-principles {
    padding: 74px 0;
  }

  .res-library-grid,
  .res-principles-grid {
    grid-template-columns: 1fr;
  }

  .res-library-card-wide {
    grid-column: auto;
    display: block;
    min-height: 320px;
  }

  .res-library-card-wide .res-library-icon {
    margin-bottom: 23px;
  }

  .res-library-card-wide .res-coming-soon {
    position: absolute;
    left: 30px;
    bottom: 28px;
    justify-self: auto;
    padding: 0;
    background: transparent;
  }

  .res-scorecard-body {
    padding: 26px 20px;
  }

  .res-scorecard-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .res-final-cta {
    padding: 68px 0;
  }

  .res-final-inner .btn {
    width: 100%;
  }
}

/* =========================================================
   STANDARD INTERNAL PAGE HERO + BREADCRUMB
   ========================================================= */

.service-page-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 68px;
  color: #fff;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(54, 118, 166, 0.25),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      #07142f 0%,
      #0c1c42 55%,
      #233965 100%
    );
}

.service-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(
      rgba(255,255,255,.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.025) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
}

.service-page-hero .container {
  position: relative;
  z-index: 2;
}

.service-page-hero .inner-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.service-page-hero h1 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.05;
  letter-spacing: -.04em;
  max-width: 880px;
  margin-bottom: 22px;
}

.service-page-hero p {
  max-width: 900px;
  margin: 0 0 27px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.7;
}

.inner-breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(7,20,47,.035);
}

.inner-breadcrumb .container {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.inner-breadcrumb a {
  color: var(--blue);
  transition: color .25s ease;
}

.inner-breadcrumb a:hover {
  color: var(--navy);
}

.inner-breadcrumb i {
  color: var(--gold);
  font-size: 9px;
}

.inner-breadcrumb strong {
  color: var(--navy);
}

@media (max-width: 700px) {
  .service-page-hero {
    padding: 54px 0 58px;
  }

  .service-page-hero h1 {
    font-size: 37px;
    line-height: 1.1;
  }

  .service-page-hero p {
    font-size: 16px;
    line-height: 1.65;
  }

  .service-page-hero .btn {
    width: 100%;
  }

  .inner-breadcrumb .container {
    min-height: 50px;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/* =========================================================
   FINAL INTERNAL HERO SPACING ALIGNMENT
   About, Contact, Business Advisory,
   Leadership Development and Resources
   ========================================================= */

/*
 * All five internal-page banners now use the same
 * top and bottom spacing.
 */
.premium-inner-hero,
.premium-inner-hero.service-page-hero {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Keep the shared internal-page typography consistent */
.premium-inner-hero .inner-kicker,
.premium-inner-hero.service-page-hero .inner-kicker {
  margin-bottom: 12px;
}

.premium-inner-hero h1,
.premium-inner-hero.service-page-hero h1 {
  max-width: 880px;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.05;
}

/*
 * About and Contact have no hero CTA.
 * Service pages retain their CTA but use a tighter gap.
 */
.premium-inner-hero.service-page-hero p {
  margin-top: 0;
  margin-bottom: 20px;
}

/* Slightly compact the service-page hero CTA */
.premium-inner-hero.service-page-hero .btn {
  padding: 13px 21px;
}

/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 900px) {
  .premium-inner-hero,
  .premium-inner-hero.service-page-hero {
    padding-top: 54px;
    padding-bottom: 58px;
  }
}

@media (max-width: 700px) {
  .premium-inner-hero,
  .premium-inner-hero.service-page-hero {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .premium-inner-hero h1,
  .premium-inner-hero.service-page-hero h1 {
    font-size: 37px;
    line-height: 1.1;
  }

  .premium-inner-hero p,
  .premium-inner-hero.service-page-hero p {
    font-size: 16px;
    line-height: 1.65;
  }

  .premium-inner-hero.service-page-hero .btn {
    width: 100%;
  }
}

/* =========================================================
   LEGAL PAGES
   Disclaimer, Privacy Policy and Terms of Use
   Append this block to the current master styles.css
   ========================================================= */

.legal-page-hero p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  font-weight: 700;
}

.legal-breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(7,20,47,.035);
}

.legal-breadcrumb .container {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.legal-breadcrumb a {
  color: var(--blue);
  transition: color .25s ease;
}

.legal-breadcrumb a:hover {
  color: var(--navy);
}

.legal-breadcrumb i {
  color: var(--gold);
  font-size: 9px;
}

.legal-breadcrumb strong {
  color: var(--navy);
}

.legal-content-section {
  padding: 82px 0 96px;
  background:
    linear-gradient(180deg, #f6faff 0%, #fff 240px);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 920px);
  gap: 56px;
  align-items: start;
  justify-content: center;
}

.legal-toc {
  position: relative;
}

.legal-toc-inner {
  position: sticky;
  top: 118px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(7,20,47,.07);
}

.legal-toc-inner > span {
  display: block;
  padding: 18px 20px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.legal-toc nav {
  max-height: calc(100vh - 190px);
  overflow-y: auto;
  padding: 10px;
}

.legal-toc a {
  display: block;
  padding: 10px 11px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  transition: .22s ease;
}

.legal-toc a:hover {
  background: var(--blue-soft);
  color: var(--blue);
  transform: translateX(3px);
}

.legal-document {
  min-width: 0;
  padding: 48px 54px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(7,20,47,.08);
}

.legal-section {
  scroll-margin-top: 125px;
  padding-top: 10px;
}

.legal-section + .legal-section {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid #e7eef5;
}

.legal-introduction {
  padding-top: 0;
}

.legal-section h2 {
  position: relative;
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.02em;
}

.legal-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .18em;
  width: 5px;
  height: 1.1em;
  border-radius: 999px;
  background: var(--gold);
}

.legal-section p {
  margin: 0 0 17px;
  color: #526079;
  font-size: 16px;
  line-height: 1.82;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(54,118,166,.35);
  text-underline-offset: 3px;
}

.legal-section a:hover {
  color: var(--navy);
  text-decoration-color: var(--navy);
}

.legal-help-card {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 52px;
  padding: 28px 30px;
  border-left: 5px solid var(--gold);
  border-radius: 14px;
  background:
    linear-gradient(135deg, #eef7fd 0%, #fff 100%);
  box-shadow: 0 16px 42px rgba(7,20,47,.08);
}

.legal-help-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  font-size: 22px;
}

.legal-help-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.legal-help-card h2 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 22px;
}

.legal-help-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.legal-help-card p a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 1050px) {
  .legal-layout {
    grid-template-columns: 1fr;
    max-width: 920px;
  }

  .legal-toc {
    display: none;
  }
}

@media (max-width: 700px) {
  .legal-breadcrumb .container {
    min-height: 50px;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .legal-content-section {
    padding: 58px 0 72px;
  }

  .legal-document {
    padding: 30px 22px;
    border-radius: 14px;
  }

  .legal-section + .legal-section {
    margin-top: 30px;
    padding-top: 30px;
  }

  .legal-section h2 {
    padding-left: 16px;
    font-size: 21px;
  }

  .legal-section p {
    font-size: 15px;
    line-height: 1.75;
  }

  .legal-help-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
    text-align: center;
  }

  .legal-help-icon {
    margin: 0 auto;
  }

  .legal-help-card .btn {
    width: 100%;
  }
}

/* =========================================================
   FINAL 3S ASSESSMENT HERO SPACING ALIGNMENT
   Matches About, Contact and service-page heroes
   ========================================================= */

/* Desktop */
.assessment-hero {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Tablet */
@media (max-width: 900px) {
  .assessment-hero {
    padding-top: 54px;
    padding-bottom: 58px;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .assessment-hero {
    padding-top: 48px;
    padding-bottom: 52px;
  }
}

/* =========================================================
   SPEAKING & WORKSHOPS PAGE
   Append to the end of the master styles.css
   ========================================================= */

.sw-hero { position: relative; }
.sw-hero-pattern,.sw-topic-pattern,.sw-difference-pattern,.sw-final-pattern { position:absolute; inset:0; pointer-events:none; }
.sw-hero-pattern { opacity:.34; background-image:radial-gradient(rgba(255,255,255,.08) 1.2px,transparent 1.2px); background-size:22px 22px; mask-image:linear-gradient(90deg,transparent 0%,rgba(0,0,0,.75) 46%,rgba(0,0,0,.45) 100%); }
.sw-hero-inner { position:relative; z-index:2; display:grid; grid-template-columns:1fr .72fr; gap:58px; align-items:center; }
.sw-hero-copy p { max-width:760px; }
.sw-hero-highlight { padding:26px 28px; border:1px solid rgba(255,255,255,.17); border-radius:15px; background:rgba(255,255,255,.08); box-shadow:0 22px 55px rgba(0,0,0,.18); backdrop-filter:blur(10px); }
.sw-hero-highlight-icon { width:58px; height:58px; display:grid; place-items:center; margin-bottom:18px; border-radius:50%; background:rgba(192,147,19,.15); color:var(--gold-2); font-size:24px; }
.sw-hero-highlight>span { display:block; margin-bottom:8px; color:var(--gold-2); font-size:12px; font-weight:900; letter-spacing:1.5px; text-transform:uppercase; }
.sw-hero-highlight h2 { margin:0; color:#fff; font-size:25px; line-height:1.3; }
.sw-hero-tags { display:flex; flex-wrap:wrap; gap:9px; margin-top:20px; }
.sw-hero-tags span { padding:8px 11px; border:1px solid rgba(255,255,255,.15); border-radius:999px; background:rgba(255,255,255,.07); color:rgba(255,255,255,.83); font-size:11px; font-weight:800; }
.sw-intro,.sw-audience,.sw-outcomes { padding:100px 0; }
.sw-intro,.sw-outcomes { background:#fff; }
.sw-intro-grid,.sw-audience-grid,.sw-difference-grid { display:grid; grid-template-columns:.92fr 1.08fr; gap:70px; align-items:center; }
.sw-intro-copy h2,.sw-audience-copy h2,.sw-difference-copy h2 { margin:8px 0 18px; color:var(--navy); font-size:clamp(36px,4vw,54px); line-height:1.08; letter-spacing:-.035em; }
.sw-intro-copy p,.sw-audience-copy p,.sw-difference-copy p { color:var(--muted); font-size:17px; line-height:1.75; margin-bottom:18px; }
.sw-intro-proof { display:grid; gap:18px; }
.sw-intro-proof article { display:grid; grid-template-columns:58px 1fr; gap:16px; align-items:center; padding:23px 25px; border:1px solid var(--border); border-radius:14px; background:#f8fbfe; box-shadow:0 14px 36px rgba(7,20,47,.06); transition:.3s ease; }
.sw-intro-proof article:hover { transform:translateX(7px); background:#fff; box-shadow:0 20px 46px rgba(7,20,47,.10); }
.sw-intro-proof i { width:54px; height:54px; display:grid; place-items:center; border-radius:50%; background:var(--navy); color:var(--gold-2); font-size:20px; }
.sw-intro-proof strong,.sw-intro-proof span { display:block; }
.sw-intro-proof strong { color:var(--navy); font-size:18px; }
.sw-intro-proof span { margin-top:3px; color:var(--muted); line-height:1.55; }
.sw-topics { position:relative; overflow:hidden; padding:100px 0; color:#fff; background:radial-gradient(circle at 50% 0%,rgba(54,118,166,.26),transparent 45%),linear-gradient(135deg,#07142f 0%,#0b1d42 54%,#153b67 100%); }
.sw-topic-pattern { opacity:.28; background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size:42px 42px; }
.sw-light-title { position:relative; z-index:2; max-width:900px; }
.sw-light-title h2 { color:#fff; }
.sw-light-title p { color:rgba(255,255,255,.72); }
.sw-topics-grid { position:relative; z-index:2; display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.sw-topic-card { position:relative; overflow:hidden; min-height:310px; padding:34px 30px; border:1px solid rgba(255,255,255,.15); border-radius:17px; background:rgba(255,255,255,.07); backdrop-filter:blur(10px); transition:.3s ease; }
.sw-topic-card:hover { transform:translateY(-7px); background:rgba(255,255,255,.11); box-shadow:0 24px 58px rgba(0,0,0,.18); }
.sw-topic-number { position:absolute; right:22px; top:16px; color:rgba(255,255,255,.11); font-size:52px; font-weight:900; }
.sw-topic-icon { width:62px; height:62px; display:grid; place-items:center; margin-bottom:22px; border-radius:50%; background:rgba(192,147,19,.15); color:var(--gold-2); font-size:23px; }
.sw-topic-card h3 { margin-bottom:12px; color:#fff; font-size:25px; }
.sw-topic-card p { margin:0; color:rgba(255,255,255,.73); line-height:1.75; }
.sw-audience { background:linear-gradient(180deg,#fff 0%,#f4f9fd 100%); }
.sw-audience-copy .btn { margin-top:8px; }
.sw-audience-list { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.sw-audience-list article { display:grid; grid-template-columns:48px 1fr; gap:13px; align-items:center; min-height:92px; padding:18px 20px; border:1px solid var(--border); border-radius:13px; background:#fff; box-shadow:0 12px 30px rgba(7,20,47,.055); transition:.3s ease; }
.sw-audience-list article:hover { transform:translateY(-5px); border-color:rgba(54,118,166,.35); box-shadow:0 20px 44px rgba(7,20,47,.10); }
.sw-audience-list i { width:44px; height:44px; display:grid; place-items:center; border-radius:50%; background:var(--blue-soft); color:var(--blue); font-size:18px; }
.sw-audience-list span { color:var(--navy); font-size:14px; font-weight:800; line-height:1.45; }
.sw-outcomes-heading { max-width:880px; }
.sw-outcomes-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.sw-outcomes-grid article { min-height:240px; padding:30px 26px; text-align:center; border:1px solid var(--border); border-radius:16px; background:#f8fbfe; transition:.3s ease; }
.sw-outcomes-grid article:hover { transform:translateY(-6px); background:#fff; box-shadow:0 20px 48px rgba(7,20,47,.10); }
.sw-outcomes-grid i { width:62px; height:62px; display:grid; place-items:center; margin:0 auto 20px; border-radius:50%; background:var(--navy); color:var(--gold-2); font-size:22px; }
.sw-outcomes-grid h3 { margin-bottom:9px; color:var(--navy); font-size:20px; }
.sw-outcomes-grid p { margin:0; color:var(--muted); line-height:1.65; }
.sw-difference { position:relative; overflow:hidden; padding:96px 0; background:radial-gradient(circle at 8% 22%,rgba(54,118,166,.16),transparent 34%),linear-gradient(135deg,#eef7fd 0%,#fff 58%,#f7faff 100%); border-top:1px solid var(--border); }
.sw-difference-pattern { opacity:.30; background-image:radial-gradient(rgba(54,118,166,.20) 1.1px,transparent 1.1px); background-size:20px 20px; mask-image:linear-gradient(90deg,rgba(0,0,0,.72),transparent 48%); }
.sw-difference-grid { position:relative; z-index:2; grid-template-columns:.72fr 1.28fr; }
.sw-difference-stat { min-height:360px; display:grid; place-items:center; align-content:center; padding:34px; text-align:center; border-radius:22px; background:var(--navy); color:#fff; box-shadow:0 30px 70px rgba(7,20,47,.20); }
.sw-difference-stat span { color:var(--gold-2); font-size:clamp(78px,9vw,120px); font-weight:900; line-height:.9; }
.sw-difference-stat strong { max-width:280px; margin-top:18px; color:#fff; font-size:19px; line-height:1.4; }
.sw-difference-copy p strong { color:var(--navy); }
.sw-3s-row { display:flex; flex-wrap:wrap; gap:12px; margin-top:24px; }
.sw-3s-row span { padding:10px 14px; border-radius:999px; background:var(--navy); color:var(--gold-2); font-size:12px; font-weight:900; letter-spacing:1px; text-transform:uppercase; }
.sw-final-cta { position:relative; overflow:hidden; padding:82px 0; color:#fff; background:radial-gradient(circle at 90% 20%,rgba(192,147,19,.17),transparent 35%),linear-gradient(135deg,#07142f 0%,#0d2950 100%); border-top:5px solid var(--gold); }
.sw-final-pattern { opacity:.30; background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size:42px 42px; }
.sw-final-inner { position:relative; z-index:2; display:grid; grid-template-columns:1fr auto; gap:50px; align-items:center; }
.sw-final-cta span { display:block; margin-bottom:10px; color:var(--gold-2); font-size:13px; font-weight:900; letter-spacing:2px; text-transform:uppercase; }
.sw-final-cta h2 { max-width:930px; margin:0 0 12px; color:#fff; font-size:clamp(34px,4vw,52px); line-height:1.1; }
.sw-final-cta p { margin:0; color:rgba(255,255,255,.72); font-size:18px; }
@media (max-width:1050px) { .sw-hero-inner,.sw-intro-grid,.sw-audience-grid,.sw-difference-grid,.sw-final-inner { grid-template-columns:1fr; } .sw-hero-highlight { max-width:760px; } .sw-difference-stat { min-height:280px; } }
@media (max-width:800px) { .sw-topics-grid,.sw-outcomes-grid { grid-template-columns:1fr; } .sw-audience-list { grid-template-columns:1fr; } }
@media (max-width:700px) { .sw-hero-inner { gap:34px; } .sw-hero-highlight { padding:24px 20px; } .sw-intro,.sw-topics,.sw-audience,.sw-outcomes,.sw-difference { padding:74px 0; } .sw-topic-card { min-height:auto; padding:30px 24px; } .sw-outcomes-grid article { min-height:auto; } .sw-difference-stat { min-height:240px; } .sw-difference-stat span { font-size:76px; } .sw-final-cta { padding:68px 0; } .sw-final-inner .btn { width:100%; } }

/* =========================================================
   DESKTOP ICON BALANCE
   Business Advisory, Leadership Development,
   Speaking & Workshops
   ========================================================= */

@media (min-width: 901px) {

  /* -----------------------------------------
     BUSINESS ADVISORY
     Is This Right For You?
     ----------------------------------------- */

  .ba-fit-list article {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    min-height: 122px;
    padding: 24px;
  }

  .ba-fit-list i {
    width: 60px;
    height: 60px;
    font-size: 23px;
  }


  /* -----------------------------------------
     BUSINESS ADVISORY
     What You Can Expect
     ----------------------------------------- */

  .ba-outcomes-grid article {
    grid-template-columns: 70px 1fr;
    gap: 20px;
    min-height: 145px;
    padding: 28px;
  }

  .ba-outcomes-grid i {
    width: 66px;
    height: 66px;
    font-size: 25px;
  }

  .ba-outcomes-grid h3 {
    font-size: 18px;
    line-height: 1.45;
  }


  /* -----------------------------------------
     LEADERSHIP DEVELOPMENT
     What You Can Expect
     ----------------------------------------- */

  .ld-outcomes-grid article {
    grid-template-columns: 70px 1fr;
    gap: 20px;
    min-height: 145px;
    padding: 28px;
  }

  .ld-outcomes-grid i {
    width: 66px;
    height: 66px;
    font-size: 25px;
  }

  .ld-outcomes-grid h3 {
    font-size: 18px;
    line-height: 1.45;
  }


  /* -----------------------------------------
     SPEAKING & WORKSHOPS
     Is This Right For Your Audience?
     ----------------------------------------- */

  .sw-audience-list article {
    grid-template-columns: 64px 1fr;
    gap: 17px;
    min-height: 108px;
    padding: 22px 24px;
  }

  .sw-audience-list i {
    width: 60px;
    height: 60px;
    font-size: 23px;
  }

  .sw-audience-list span {
    font-size: 15px;
    line-height: 1.45;
  }
}
