:root {
  --blue-950: #07233f;
  --blue-850: #0b3e72;
  --blue-700: #0c5798;
  --blue-100: #eaf5fb;
  --blue-050: #f5fbff;
  --stone-900: #26323b;
  --stone-700: #5f6b73;
  --stone-300: #d9e0e5;
  --stone-100: #f4f6f7;
  --white: #ffffff;
  --warm: #c8a863;
  --leaf: #6e8c7d;
  --shadow: 0 18px 50px rgba(7, 35, 63, 0.13);
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--stone-900);
  background: var(--white);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--white);
  color: var(--blue-950);
  border-radius: 6px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
  padding: 10px clamp(18px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 224, 229, 0.75);
  backdrop-filter: blur(14px);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--stone-700);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue-850);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.nav-cta {
  color: var(--white) !important;
  background: var(--blue-850);
  box-shadow: 0 10px 22px rgba(11, 62, 114, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--stone-300);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-950);
}

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #061b31 0%, #07325d 58%, #0a477a 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.8fr) minmax(560px, 1.2fr);
  gap: clamp(28px, 3.2vw, 48px);
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(46px, 5.4vw, 74px) 0;
  color: var(--white);
}

.hero-content {
  min-width: 0;
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.32);
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.05);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b7dcf4;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  color: var(--blue-950);
}

h1 {
  max-width: 610px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.35rem, 4.1vw, 4rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 2.75vw, 2.45rem);
  font-weight: 840;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

.hero-credibility {
  max-width: 640px;
  margin-bottom: 26px;
  padding: 13px 15px;
  color: #f6fbff;
  border: 1px solid rgba(234, 245, 251, 0.24);
  border-left: 4px solid var(--warm);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  font-size: clamp(0.96rem, 1.18vw, 1.06rem);
  font-weight: 850;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.button-primary {
  color: var(--white);
  background: var(--blue-700);
  box-shadow: 0 14px 30px rgba(12, 87, 152, 0.26);
}

.hero-actions .button-primary {
  min-height: 50px;
  padding: 15px 22px;
  color: var(--blue-950);
  background: var(--warm);
  box-shadow: 0 18px 36px rgba(200, 168, 99, 0.32);
}

.hero-actions .button-primary:hover,
.hero-actions .button-primary:focus-visible {
  background: #d9bd7a;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.1);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  max-width: 760px;
  gap: 0;
  color: #eaf5fb;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.5;
}

.hero-proof span:first-child {
  padding-left: 0;
}

.hero-proof span + span {
  border-left: 1px solid rgba(234, 245, 251, 0.48);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 5vw, 62px) 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading p,
.lead-copy {
  color: var(--stone-700);
  font-size: 1.08rem;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 3.5vw, 46px);
  align-items: start;
}

.problem-section {
  padding-top: clamp(50px, 6vw, 72px);
}

.pain-grid,
.framework-grid,
.pricing-grid,
.differentiator-grid {
  display: grid;
  gap: 18px;
}

.pain-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.pain-grid article,
.framework-grid article,
.price-card,
.differentiator-grid article,
.steps article {
  border: 1px solid var(--stone-300);
  border-radius: 8px;
  background: var(--white);
}

.pain-grid article {
  padding: 24px;
  box-shadow: 0 12px 32px rgba(7, 35, 63, 0.06);
}

.framework-section,
.pricing-section {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, var(--blue-050), var(--white));
}

.framework-section > *,
.pricing-section > * {
  width: min(var(--max), calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.framework-grid {
  grid-template-columns: repeat(10, 1fr);
}

.framework-grid article {
  position: relative;
  grid-column: span 2;
  padding: 24px 20px;
  min-height: 245px;
  box-shadow: 0 14px 34px rgba(7, 35, 63, 0.08);
}

.framework-number {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--warm);
  font-size: 0.86rem;
  font-weight: 900;
}

.framework-number::after {
  content: "";
  position: absolute;
  top: 58px;
  left: 20px;
  width: calc(100% - 40px);
  height: 3px;
  background: linear-gradient(90deg, var(--blue-700), rgba(12, 87, 152, 0.1));
}

.audience-section,
.process-section,
.about-main,
.credibility-strip,
.diagnostic-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(26px, 3.5vw, 46px);
  align-items: start;
}

.image-band,
.process-media,
.about-image {
  display: block;
  min-height: 0;
}

.audience-section .image-band {
  margin-top: 34px;
}

.process-section .process-media {
  margin-top: 138px;
}

.audience-content,
.about-copy {
  align-self: start;
}

.process-content,
.audience-content {
  align-self: start;
}

.image-band img,
.process-media img,
.about-image img,
.credibility-strip img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-band img {
  aspect-ratio: auto;
  height: auto;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.process-media img {
  aspect-ratio: auto;
  height: auto;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.audience-section {
  padding-top: clamp(38px, 4vw, 54px);
  padding-bottom: clamp(38px, 4vw, 54px);
}

.audience-content h2,
.process-content h2 {
  max-width: 600px;
  font-size: clamp(1.9rem, 2.65vw, 2.55rem);
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.audience-tags span {
  padding: 8px 10px;
  border: 1px solid var(--stone-300);
  border-radius: 6px;
  background: var(--stone-100);
  color: var(--stone-900);
  font-size: 0.9rem;
  font-weight: 750;
}

.process-section {
  width: 100%;
  max-width: none;
  background: var(--stone-100);
  padding-top: clamp(38px, 4vw, 54px);
  padding-bottom: clamp(38px, 4vw, 54px);
}

.process-section > * {
  width: min(var(--max), calc(100% - 36px));
}

.process-section {
  padding-left: max(18px, calc((100% - var(--max)) / 2));
  padding-right: max(18px, calc((100% - var(--max)) / 2));
}

.process-section > .process-media,
.process-section > .process-content {
  width: auto;
}

.process-content {
  max-width: 620px;
}

.steps {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.steps article {
  padding: 16px 18px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue-700);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.steps h3 {
  font-size: 1.08rem;
}

.steps p {
  margin-bottom: 0;
}

.pricing-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  padding: 22px;
  box-shadow: 0 16px 42px rgba(7, 35, 63, 0.08);
}

.price-card ul,
.differentiator-grid ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.price-card li {
  margin-bottom: 8px;
}

.price-top {
  min-height: 108px;
}

.price {
  margin: 12px 0 14px;
  color: var(--blue-850);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--stone-700);
  font-size: 0.98rem;
}

.fine-print,
.form-note {
  color: var(--stone-700);
  font-size: 0.92rem;
}

.thankyou-section {
  display: grid;
  min-height: 62vh;
  padding: clamp(62px, 9vw, 110px) 18px;
  background:
    linear-gradient(90deg, rgba(7, 35, 63, 0.94), rgba(7, 35, 63, 0.75)),
    url("images/hero-client-strategy-polished.jpg") center / cover no-repeat;
  place-items: center;
}

.thankyou-card {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.thankyou-card h1 {
  max-width: 660px;
  color: var(--blue-950);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.thankyou-card p:not(.eyebrow) {
  max-width: 620px;
  color: var(--stone-700);
  font-size: 1.08rem;
}

.thankyou-card .button-secondary {
  color: var(--blue-950);
  border-color: var(--stone-300);
  background: var(--white);
}

.featured-price {
  border: 2px solid var(--blue-700);
}

.popular-label {
  position: static;
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--blue-950);
  background: #f0d99d;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wide-price {
  grid-column: span 8;
}

.about-section {
  padding-bottom: clamp(56px, 7vw, 88px);
}

.about-image img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 600px;
  object-position: center top;
}

.about-copy .intro {
  color: var(--blue-850);
  font-size: 1.25rem;
  font-weight: 800;
}

.credibility-strip {
  grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1fr);
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--stone-300);
  border-radius: 8px;
  background: var(--blue-050);
}

.credibility-strip img {
  aspect-ratio: 16 / 10;
}

.why-section {
  width: 100%;
  max-width: none;
  color: var(--white);
  background: var(--blue-950);
}

.why-section > * {
  width: min(var(--max), calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.why-section h2,
.why-section h3 {
  color: var(--white);
}

.why-section .lead-copy,
.why-section p {
  color: rgba(255, 255, 255, 0.78);
}

.differentiator-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}

.differentiator-grid article {
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.diagnostic-section {
  align-items: stretch;
}

.diagnostic-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--stone-300);
  border-radius: 8px;
  background: var(--blue-050);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: var(--blue-850);
  font-weight: 850;
}

.diagnostic-form {
  padding: 28px;
  border: 1px solid var(--stone-300);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.form-row {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

label {
  color: var(--blue-950);
  font-size: 0.92rem;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c9d5dc;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--stone-900);
  background: var(--white);
  font: inherit;
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(12, 87, 152, 0.28);
  outline-offset: 2px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  padding: 38px clamp(18px, 4vw, 52px);
  color: rgba(255, 255, 255, 0.76);
  background: #061a2f;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
  text-decoration: none;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content {
    max-width: 820px;
  }

  .hero-visual {
    width: min(100%, 820px);
    justify-self: center;
  }

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

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

  .framework-grid article,
  .price-card {
    grid-column: span 1;
  }

  .framework-grid article {
    min-height: auto;
  }

  .wide-price {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 76px;
  }

  .brand img {
    width: 172px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--stone-300);
  }

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

  .site-nav a {
    padding: 12px 0;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-visual {
    max-width: 640px;
  }

  .section-grid,
  .audience-section,
  .process-section,
  .about-main,
  .credibility-strip,
  .diagnostic-section {
    grid-template-columns: 1fr;
  }

  .image-band,
  .process-media,
  .about-image {
    margin-top: 0;
    min-height: 0;
  }

  .image-band img,
  .process-media img,
  .about-image img {
    height: auto;
    min-height: 0;
  }

  .image-band img {
    aspect-ratio: 3 / 2;
  }

  .process-media img {
    aspect-ratio: 4 / 3;
  }

  .about-image img {
    aspect-ratio: 4 / 5;
  }

  .pain-grid,
  .differentiator-grid {
    grid-template-columns: 1fr;
  }

  .process-media {
    order: -1;
  }

  .diagnostic-copy {
    padding: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section,
  .framework-section > *,
  .pricing-section > *,
  .why-section > * {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .framework-grid article,
  .price-card,
  .wide-price {
    grid-column: span 1;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .diagnostic-form {
    padding: 20px;
  }
}
