
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --navy: #0D2238;
  --blue: #2E5B8C;
  --steel: #5E7FA8;
  --slate: #6D6F73;
  --gold: #D4A35A;
  --light: #F2F4F7;
  --off: #FAFAFC;
  --white: #FFFFFF;
  --line: rgba(13,34,56,.13);
  --soft-line: rgba(13,34,56,.08);
  --shadow: 0 24px 70px rgba(13,34,56,.10);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--off);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(1210px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--soft-line);
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  width: 232px;
  height: auto;
  display: block;
  background: transparent;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.nav-links a:not(.button) {
  position: relative;
  padding: 8px 0;
}
.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:not(.button):hover::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 21px;
  border-radius: 3px;
  border: 1px solid transparent;
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(46,91,140,.18);
}
.button:hover { transform: translateY(-1px); }
.button.dark { background: var(--navy); color: rgba(255,255,255,.92); }
.footer .button.dark { color: #ffffff; opacity: 1; }
.button.outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
  box-shadow: none;
}
.button.light {
  background: white;
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
}

a.button.gold {
    background: var(--gold);
    color: #fff;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .20em;
  text-transform: uppercase;
}
.kicker::after {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--gold);
}
.kicker-soft { color: #9bb7d6; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: .99;
  letter-spacing: -.045em;
  margin: 0;
}
h1 {
  font-size: 100px;
  max-width: 720px;
}
h2 {
  font-size: clamp(44px, 4.8vw, 74px);
}
h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.28;
}
p { margin: 0; }
.lead {
  font-size: 18px;
  line-height: 1.85;
  color: #46525f;
}
.muted { color: #56616d; }

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(94,127,168,.10);
  border: 1px solid rgba(46,91,140,.13);
}
.icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon.gold svg { stroke: var(--gold); }


.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: var(--white);
}
.hero-image-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 0;
}
.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 83%);
  z-index: 1;
}
.hero-copy-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* max-width: 620px; */
  padding-top: 100px;
  padding-bottom: 100px;
}
.hero-copy-panel h1 { margin: 22px 0 30px; }
.hero-copy-panel .lead { max-width: 540px; } 
.hero-copy-panel h1 { margin: 22px 0 30px; }
.hero-copy-panel .lead { max-width: 540px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.hero-proof {
  margin-top: 40px;
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
}
.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-proof span::before {
  content: "✓";
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}
.hero-line {
  position: absolute;
  left: 10%;
  bottom: 6%;
  z-index: 3;
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 18px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-line::before {
  content: "";
  height: 2px;
  background: var(--gold);
}

.metrics {
  position: relative;
  background: var(--navy);
  color: white;
  overflow: hidden;
}
.metrics::before {
  content: "";
  position: absolute;
  right: -220px;
  top: -410px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  border: 64px solid rgba(255,255,255,0.018);
}
.metrics-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.metric {
  padding: 36px 30px 34px;
  min-height: 152px;
  border-right: 1px solid rgba(255,255,255,.15);
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
}
.metric:last-child { border-right: 0; }
.metric strong {
  display: block;
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.02em;
}
.metric span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.55;
}

.section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}
.section.light { background: var(--light); }
.section.white { background: var(--white); }
.section-head {
  max-width: 770px;
  margin-bottom: 48px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .kicker { justify-content: center; }
.section-head.center .kicker::after { display: none; }
.section-head h2 { margin-top: 18px; }
.section-head p {
  margin-top: 24px;
  max-width: 720px;
}
.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

.problem {
  background:
    radial-gradient(circle at 78% 16%, rgba(94,127,168,.12), transparent 25%),
    var(--off);
}
.problem::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -270px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  border: 52px solid rgba(94,127,168,0.037);
}
.problem-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.problem-left { display: flex; flex-direction: column; gap: 32px; }
.problem-copy p + p { margin-top: 18px; }
.problem-copy p {
  font-size: 18px;
  line-height: 1.85;
  color: #46525f;
}
.problem-graphic {
  justify-self: center;
  width: min(440px, 100%);
  aspect-ratio: 1;
  position: relative;
}
/* .ring {
  position: absolute;
  inset: 58px;
  border-radius: 50%;
  background: conic-gradient(var(--navy) 0 50%, var(--gold) 50% 100%);
  box-shadow: 0 22px 60px rgba(13,34,56,.10);
} */

@property --gold-fill {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}
.ring {
  position: absolute;
  inset: 58px;
  border-radius: 50%;
  background: conic-gradient(var(--navy) 0 calc(100% - var(--gold-fill, 0%)), var(--gold) calc(100% - var(--gold-fill, 0%)) 100%);
  box-shadow: 0 22px 60px rgba(13,34,56,.10);
}
.ring.animated {
  animation: ring-fill 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes ring-fill {
  from { --gold-fill: 0%; }
  to   { --gold-fill: 50%; }
}

.ring::before {
  content: "NUMBERS + EXPERIENCE";
  position: absolute;
  inset: 54px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  z-index: 3;
}
.ring-label {
  position: absolute;
  padding: 18px 20px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
      min-width: 170px;
}
.ring-label.left { left: 0; top: 34%; }
.ring-label.right { right: 0; top: 48%; }
.ring-label b {
  display: block;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.ring-label.right {
  text-align: right;
}

.ring-label span {
  display: block;
  margin-top: 6px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.solution {
  background: var(--white);
  padding: 0;
}
.solution-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 620px;
}
.solution-image {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: var(--light);
}
.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution-image::after {
  content: "";
  position: absolute;
  top: -14%;
  right: -22%;
  width: 68%;
  height: 128%;
  border-radius: 50%;
  border: 38px solid rgba(250,250,252,0.313);
}
.solution-content {
  position: relative;
  padding: 110px max(64px, calc((100vw - 1210px)/2)) 110px 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.solution-list {
  margin-top: 30px;
  display: grid;
  gap: 15px;
}
.solution-list li {
  list-style: none;
  position: relative;
  padding-left: 34px;
  color: #56616d;
}
.solution-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
}
.solution-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: .78em;
  width: 7px;
  height: 4px;
  border-left: 1.7px solid var(--blue);
  border-bottom: 1.7px solid var(--blue);
  transform: rotate(-45deg);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.insight-card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  padding: 36px 34px 34px;
  min-height: 360px;
  box-shadow: 0 18px 55px rgba(13,34,56,.055);
}
.insight-card::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 0;
  width: 62px;
  height: 3px;
  background: var(--gold);
}
.insight-card h3 {
  margin-top: 24px;
  font-size: 21px;
}
.insight-card p {
  margin-top: 15px;
  color: #56616d;
}
.insight-card .number {
  position: absolute;
  right: 28px;
  top: 28px;
  color: rgba(94,127,168,.22);
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
}

.process {
  background:
    linear-gradient(180deg, var(--light), #eef3f8),
    var(--light);
}
.process::before {
  content: "";
  position: absolute;
  inset: -270px auto auto -280px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  border: 70px solid rgba(255,255,255,0.193);
  z-index: 0;
}
.process::after {
  content: "";
  position: absolute;
  right: -280px;
  bottom: -430px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  border: 40px solid rgba(94,127,168,0.04);
}
.process .section-head {
  position: relative;
  z-index: 2;
}
.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.phase {
  position: relative;
  padding: 38px 32px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(13,34,56,.10);
  box-shadow: 0 16px 40px rgba(13,34,56,.045);
}
.phase:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 48%;
  right: -31px;
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.phase-num {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  font-weight: 800;
}
.phase h3 {
  margin-top: 24px;
  font-size: 19px;
  white-space: nowrap;
}
.phase ul {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.phase li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  color: #56616d;
  font-size: 15px;
}
.phase li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.phase .deliverable {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.clients { background: var(--white); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.client {
  min-height: 210px;
  padding: 32px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.client h3 { margin-top: 22px; }
.client p {
  margin-top: 12px;
  color: #56616d;
  font-size: 15px;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: var(--navy);
  color: white;
}
.cta::before {
  content: "";
  position: absolute;
  right: -11%;
  top: -82%;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  border: 92px solid rgba(255,255,255,0.033);
}
.cta::after {
  content: "";
  position: absolute;
  right: -6%;
  top: -58%;
  width: 590px;
  height: 590px;
  border-radius: 50%;
  border: 16px solid rgba(212,163,90,0.093);
}
.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .66fr;
  gap: 80px;
  align-items: center;
}
.cta h2 {
  color: white;
  max-width: 760px;
}
.cta p {
  margin-top: 24px;
  color: rgba(255,255,255,.74);
  max-width: 620px;
  font-size: 18px;
}
.cta-actions {
  display: flex;
  justify-content: flex-end;
}

.footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 46px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.footer-logo { width: 214px; }
.footer-intro {
  margin-top: 18px;
  max-width: 330px;
}
.footer-cta { margin-top: 16px; }
.footer p, .footer a {
  color: #56616d;
  font-size: 13px;
}
.footer h4 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 8px;
}
.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--slate);
  font-size: 13px;
}
.dot-field {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(rgba(46,91,140,.18) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: .22;
  pointer-events: none;
}
.dot-field.one { left: 4%; top: 22%; }
.dot-field.two { right: 6%; bottom: 10%; }

/* Services page */
.services-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 690px;
  overflow: hidden;
  background: var(--white);
}
.services-hero-image-panel {
  position: relative;
  min-height: 690px;
  overflow: hidden;
}
.services-hero-image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.services-hero-copy-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 72px;
  background: var(--white);
}
.services-hero h1 {
  font-size: clamp(42px, 4.2vw, 72px);
  max-width: 640px;
  margin: 22px 0 0;
}
.services-hero .lead {
  max-width: 560px;
  margin-top: 28px;
}
.package-nav {
  background: var(--navy);
  color:white;
}
.package-nav-grid {
  display:grid;
  grid-template-columns: repeat(3,1fr);
}
.package-nav-item {
  padding:36px 32px;
  border-right:1px solid rgba(255,255,255,.15);
  display:grid;
  grid-template-columns:58px 1fr;
  gap:18px;
  align-items:start;
}
.package-nav-item:last-child { border-right:0; }
.package-nav-item h3 {
  color:white;
  margin:0 0 8px;
}
.package-nav-item p {
  color:rgba(255,255,255,.70);
  font-size:14px;
}
.sales-note {
  background: rgba(255,255,255,.82);
  border:1px solid var(--line);
  padding:28px;
  margin-top:36px;
  display:grid;
  grid-template-columns:58px 1fr;
  gap:18px;
  align-items:start;
}
.audience-tabs {
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:18px;
  margin-bottom:28px;
}
.audience-tab {
  background:white;
  border:1px solid var(--line);
  padding:26px 24px;
  position:relative;
}
.audience-tab.featured {
  border-color:rgba(46,91,140,.34);
  box-shadow:0 18px 52px rgba(13,34,56,.06);
}
.audience-tab.featured::before {
  content:"";
  position:absolute;
  left:24px;
  top:0;
  width:60px;
  height:3px;
  background:var(--gold);
}
.audience-tab h3 { margin-top:16px; }
.audience-tab p {
  margin-top:10px;
  color:#56616d;
  font-size:15px;
}
.package-section { background: var(--white); }
.package-section.alt { background: var(--light); }
.package-grid {
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:24px;
}
.package-card {
  position:relative;
  background:white;
  border:1px solid var(--line);
  box-shadow:0 18px 56px rgba(13,34,56,.055);
  padding:34px;
  overflow:hidden;
}
.package-card::before {
  content:"";
  position:absolute;
  right:-210px;
  top:-270px;
  width:460px;
  height:460px;
  border-radius:50%;
  border:36px solid rgba(94,127,168,0.025);
}
.package-head {
  position:relative;
  display:grid;
  grid-template-columns:58px 1fr;
  gap:18px;
  align-items:start;
}
.package-head h3 {
  font-family: var(--serif);
  font-size:32px;
  font-weight:500;
  letter-spacing:-.025em;
}
.package-head p {
  margin-top:10px;
  color:#56616d;
}
.included {
  position:relative;
  margin-top:28px;
  display:grid;
  gap:11px;
}
.included li {
  list-style:none;
  position:relative;
  padding-left:24px;
  color:#56616d;
  font-size:15px;
}
.included li::before {
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gold);
}
.tiers {
  position:relative;
  margin-top:28px;
  display:grid;
  grid-template-columns: repeat(3,1fr);
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}
.tier {
  padding:20px 18px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:rgba(250,250,252,.72);
}
.tier strong {
  display:block;
  color:var(--navy);
  font-size:14px;
  letter-spacing:.10em;
  text-transform:uppercase;
}
.tier span {
  display:block;
  margin-top:8px;
  color:#56616d;
  font-size:13px;
  line-height:1.6;
}
.entry-offer {
  position:relative;
  margin-top:26px;
  background:linear-gradient(135deg, rgba(13,34,56,.98), rgba(46,91,140,.96));
  color:white;
  padding:22px 24px;
  display:grid;
  grid-template-columns:46px 1fr;
  gap:16px;
  align-items:start;
  overflow:hidden;
}
.entry-offer::after {
  content:"";
  position:absolute;
  right:-110px;
  top:-160px;
  width:300px;
  height:300px;
  border-radius:50%;
  border:26px solid rgba(255,255,255,0.033);
}
.entry-offer .icon {
  width:46px;
  height:46px;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.18);
}
.entry-offer .icon svg {
  stroke:var(--gold);
  width:25px;
  height:25px;
}
.entry-offer strong {
  display:block;
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.82);
}
.entry-offer span {
  display:block;
  margin-top:6px;
  color:white;
  font-family:var(--serif);
  font-size:24px;
  line-height:1.18;
}
.entry-offer p {
  margin-top:8px;
  color:rgba(255,255,255,.75);
  font-size:14px;
}
.service-matrix {
  display:grid;
  grid-template-columns: .88fr 1.12fr;
  gap:62px;
  align-items:start;
}
.matrix-card {
  background:white;
  border:1px solid var(--line);
  padding:34px;
}
.matrix-row {
  display:grid;
  grid-template-columns: 1.1fr repeat(3,.7fr);
  gap:0;
  border-left:1px solid var(--line);
  border-top:1px solid var(--line);
  font-size:14px;
}
.matrix-row > div {
  padding:16px 14px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.matrix-row.header > div {
  background:var(--navy);
  color:white;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.check {
  color:var(--blue);
  font-weight:800;
}
.ad-note {
  background:var(--navy);
  color:white;
  padding:34px;
  position:relative;
  overflow:hidden;
}
.ad-note::before {
  content:"";
  position:absolute;
  right:-160px;
  top:-240px;
  width:420px;
  height:420px;
  border:42px solid rgba(255,255,255,0.027);
  border-radius:50%;
}
.ad-note h3 {
  position:relative;
  font-family:var(--serif);
  font-weight:500;
  font-size:36px;
  line-height:1.1;
}
.ad-note p {
  position:relative;
  margin-top:16px;
  color:rgba(255,255,255,.74);
}

@media (max-width: 1020px) {
  .nav-links a:not(.button) { display: none; }
  .hero-grid, .problem-grid, .solution-grid, .cta-grid,
  .services-hero-grid, .package-nav-grid, .audience-tabs, .package-grid, .service-matrix {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-image-panel { min-height: 360px; }
  .hero-copy-panel { padding: 56px 32px; }
  .metrics-grid, .cards-grid, .process-grid, .clients-grid {
    grid-template-columns: 1fr 1fr;
  }
  .metric:nth-child(2) { border-right: 0; }
  .solution-content { padding: 70px 32px; }
  .phase:not(:last-child)::after { display: none; }
  .cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-hero { grid-template-columns: 1fr; min-height: auto; }
  .services-hero-image-panel { min-height: 360px; }
  .services-hero-copy-panel { padding: 56px 32px; }
  .package-nav-item {
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.15);
  }
}

@media (max-width: 680px) {
  .container { width: min(100% - 32px, 520px); }
  .nav { height: 78px; }
  .logo { width: 188px; }
  .nav-links .button { display: none; }
  h1, .services-hero h1 { font-size: 48px; }
  h2 { font-size: 40px; }
  .hero-image-panel { min-height: 280px; }
  .hero-proof { flex-direction: column; gap: 14px; }
  .phase h3 { white-space: normal; }
  .metrics-grid, .cards-grid, .process-grid, .clients-grid, .footer-grid, .tiers {
    grid-template-columns: 1fr;
  }
  .metric {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  .section { padding: 76px 0; }
  .ring-label { display: none; }
  .cta { padding: 84px 0; }
  .footer-bottom { flex-direction: column; }
  .matrix-row { grid-template-columns:1fr; }
}



/* Shared inner pages */
.nav-links a.active {
  color: var(--blue);
}
.active-button {
  box-shadow: 0 0 0 3px rgba(46,91,140,.14), 0 10px 24px rgba(46,91,140,.18);
}
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(94,127,168,.13), transparent 30%),
    linear-gradient(90deg, var(--white), var(--off) 58%, var(--light));
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -260px;
  top: -440px;
  width: 880px;
  height: 880px;
  border-radius: 50%;
  border: 74px solid rgba(13,34,56,0.012);
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -280px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 18px solid rgba(212,163,90,0.08);
}
.page-hero.compact {
  min-height: 520px;
}
.page-hero.consultation,
.page-hero.faq {
  min-height: 620px;
}
.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .58fr;
  gap: 72px;
  align-items: center;
  padding: 104px 0;
}
.page-hero h1 {
  font-size: clamp(56px, 6vw, 100px);
  max-width: 780px;
}
.page-hero .lead {
  max-width: 700px;
  margin-top: 28px;
}
.page-hero-card,
.consultation-summary,
.sidebar-card {
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  box-shadow: 0 18px 55px rgba(13,34,56,.06);
  padding: 34px;
  position: relative;
  overflow: hidden;
}
.page-hero-card::before,
.consultation-summary::before,
.sidebar-card::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -260px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 34px solid rgba(94,127,168,0.027);
}
.page-hero-card h3,
.consultation-summary h3,
.sidebar-card h3 {
  margin-top: 22px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -.025em;
}
.page-hero-card p,
.consultation-summary p,
.sidebar-card p {
  margin-top: 14px;
  color: #56616d;
}
.page-hero-card .button,
.sidebar-card .button {
  margin-top: 24px;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}
.contact-layout.reverse {
  grid-template-columns: 390px minmax(0, 1fr);
}
.form-panel {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 55px rgba(13,34,56,.055);
  padding: 42px;
}
.apto-form {
  display: grid;
  gap: 18px;
}
.form-grid {
  display: grid;
  gap: 18px;
}
.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.apto-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.apto-form input,
.apto-form select,
.apto-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--off);
  color: var(--navy);
  padding: 15px 16px;
  border-radius: 0;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.apto-form input:focus,
.apto-form select:focus,
.apto-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46,91,140,.10);
}
.contact-sidebar {
  display: grid;
  gap: 22px;
}
.sidebar-card.navy {
  background: var(--navy);
  color: white;
}
.sidebar-card.navy h3 {
  color: white;
  margin-top: 0;
}
.sidebar-card.navy ul {
  position: relative;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.sidebar-card.navy li {
  list-style: none;
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,.76);
}
.sidebar-card.navy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}
.summary-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}
.summary-list > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.summary-list span {
  color: #56616d;
  font-weight: 600;
}
.faq-layout {
  display: grid;
  grid-template-columns: .45fr .55fr;
  gap: 70px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(13,34,56,.04);
}
.faq-item summary {
  cursor: pointer;
  padding: 24px 60px 24px 28px;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 22px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "–";
}
.faq-item p {
  padding: 0 28px 26px;
  color: #56616d;
}
@media (max-width: 1020px) {
  .page-hero-grid,
  .contact-layout,
  .contact-layout.reverse,
  .faq-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .page-hero h1 { font-size: 52px; }
  .page-hero-grid { padding: 76px 0; }
  .form-panel { padding: 28px; }
  .form-grid.two { grid-template-columns: 1fr; }
}

/* =====================
   ABOUT PAGE
   ===================== */
 
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: start;
}
.about-body {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  color: #56616d;
  line-height: 1.78;
}
.about-word-card {
  position: sticky;
  top: 108px;
}
.word-card-inner {
  background: var(--navy);
  color: white;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.word-card-inner::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -180px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.023);
}
.word-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.word-latin {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.03em;
  color: white;
}
.word-phonetic {
  margin-top: 8px;
  color: rgba(255,255,255,.5);
  font-size: 15px;
  font-style: italic;
}
.word-def {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.7;
}
.word-meaning {
  margin-top: 14px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.7;
}
 
/* Philosophy */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.philosophy-item {
  background: white;
  border: 1px solid var(--line);
  padding: 34px 30px;
  position: relative;
  box-shadow: 0 12px 40px rgba(13,34,56,.045);
}
.philosophy-item::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 48px;
  height: 3px;
  background: var(--gold);
}
.philosophy-item h3 {
  margin-top: 22px;
  font-size: 17px;
}
.philosophy-item p {
  margin-top: 12px;
  color: #56616d;
  font-size: 15px;
  line-height: 1.7;
}
 
/* Compare */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.compare-col {
  padding: 38px 36px;
  border: 1px solid var(--line);
}
.compare-col.apto {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.compare-col h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.compare-col.apto h3 {
  color: white;
  border-color: rgba(255,255,255,.15);
}
.compare-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.compare-list li {
  list-style: none;
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: #56616d;
  line-height: 1.5;
}
.compare-col.apto .compare-list li {
  color: rgba(255,255,255,.82);
}
.compare-list li.no::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #b0b8c4;
  font-size: 13px;
  top: 2px;
}
.compare-list li.yes::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
  top: 1px;
}
 
/* Founder */
.founder-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.founder-image-wrap {
  position: relative;
}
.founder-image-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.founder-content .about-body {
  margin-top: 24px;
}
.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(46,91,140,.3);
  padding-bottom: 4px;
  transition: border-color .2s;
}
.linkedin-link:hover { border-color: var(--blue); }
.linkedin-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
 
/* Expect */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.expect-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: var(--off);
}
.expect-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(94,127,168,.10);
  border: 1px solid rgba(46,91,140,.13);
  flex-shrink: 0;
}
.expect-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.expect-item strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}
.expect-item p {
  color: #56616d;
  font-size: 14px;
  line-height: 1.65;
}
 
/* About responsive */
@media (max-width: 1020px) {
  .about-intro-grid,
  .founder-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-word-card { position: static; }
  .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .expect-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-image-wrap { max-width: 360px; }
}
@media (max-width: 680px) {
  .philosophy-grid,
  .compare-grid,
  .expect-grid { grid-template-columns: 1fr; }
  .word-latin { font-size: 48px; }
}

/* Extra-scope services restructure: three service areas with Foundation / Growth / Partner tiers */

.services-hero-clean .service-audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.service-audience-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-nav-simple .package-nav-item p {
  max-width: 300px;
}

.compact-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.tier-explainer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tier-explainer-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px 32px;
  min-height: 235px;
  box-shadow: 0 18px 50px rgba(13,34,56,.045);
  overflow: hidden;
}

.tier-explainer-card::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  width: 58px;
  height: 3px;
  background: var(--gold);
}

.tier-explainer-card.featured {
  border-color: rgba(46,91,140,.28);
  box-shadow: 0 24px 66px rgba(13,34,56,.08);
}

.tier-explainer-card.featured::after {
  content: "";
  position: absolute;
  right: -155px;
  top: -220px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 28px solid rgba(94,127,168,.08);
}

.tier-eyebrow,
.plan-topline {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.tier-explainer-card h3 {
  position: relative;
  margin-top: 18px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.tier-explainer-card p {
  position: relative;
  margin-top: 16px;
  color: #56616d;
  font-size: 14px;
}

.service-plan-section .section-head {
  max-width: 860px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(13,34,56,.06);
}

.plan-card {
  position: relative;
  min-height: 455px;
  padding: 38px 36px 34px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

.plan-card:last-child {
  border-right: 0;
}

.plan-card::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 0;
  width: 62px;
  height: 3px;
  background: var(--gold);
}

.plan-card.featured {
  background: linear-gradient(180deg, rgba(250,250,252,.96), rgba(255,255,255,.98));
}

.plan-card.featured::after {
  content: "Recommended";
  position: absolute;
  right: 26px;
  top: 28px;
  min-height: 28px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  background: rgba(212,163,90,.12);
  color: var(--gold);
  border: 1px solid rgba(212,163,90,.30);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin-top: 18px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 39px;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.plan-fit {
  margin-top: 18px;
  color: #56616d;
  font-size: 14px;
  line-height: 1.75;
}

.plan-list {
  margin: 26px 0 32px;
  padding: 0;
  display: grid;
  gap: 11px;
}

.plan-list li {
  list-style: none;
  position: relative;
  padding-left: 27px;
  color: #46525f;
  font-size: 14px;
  line-height: 1.58;
}

.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}

.plan-card .button {
  margin-top: auto;
  width: 100%;
}

.comparison-wrap {
  margin-top: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 56px rgba(13,34,56,.05);
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: 13px;
}

.comparison-table th,
.comparison-table td {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
  vertical-align: middle;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 40%;
  text-align: left;
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
  width: 20%;
  text-align: center;
}

.comparison-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.comparison-table th:first-child {
  background: #102943;
}

.comparison-table tbody tr:nth-child(even) td {
  background: rgba(242,244,247,.42);
}

.comparison-table td:first-child {
  color: var(--navy);
  font-weight: 700;
}

.tick {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(46,91,140,.12);
  color: var(--blue);
  font-weight: 900;
  line-height: 1;
}

.dash {
  color: rgba(86,97,109,.45);
  font-weight: 700;
}

.service-choice-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 64px;
  align-items: start;
}

.choice-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 38px;
  box-shadow: 0 20px 58px rgba(13,34,56,.055);
  overflow: hidden;
}

.choice-card::before {
  content: "";
  position: absolute;
  right: -155px;
  top: -235px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  border: 30px solid rgba(94,127,168,.075);
}

.choice-card h3 {
  position: relative;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.choice-card h3:not(:first-child) {
  margin-top: 30px;
}

.choice-card p {
  position: relative;
  margin-top: 8px;
  color: #56616d;
}

/* =========================================================
   Services Page Hero Fix
   Makes the new services hero match the existing Apto hero structure
   ========================================================= */

.services-hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  background:
    radial-gradient(circle at 82% 20%, rgba(94,127,168,.12), transparent 32%),
    linear-gradient(90deg, var(--white) 0%, var(--off) 62%, var(--light) 100%);
}

.services-hero::before {
  content: "";
  position: absolute;
  right: -260px;
  top: -420px;
  width: 880px;
  height: 880px;
  border-radius: 50%;
  border: 76px solid rgba(13,34,56,.035);
  pointer-events: none;
}

.services-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -260px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  border: 18px solid rgba(212,163,90,.22);
  pointer-events: none;
}

.services-hero .services-hero-grid {
  width: min(1210px, calc(100% - 64px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 64px;
  align-items: center;
  min-height: 690px;
  padding: 86px 0 92px;
}

.services-hero h1 {
  margin: 22px 0 0;
  font-size: clamp(56px, 5.5vw, 96px);
  line-height: .94;
  max-width: 760px;
}

.services-hero .lead {
  max-width: 660px;
  margin-top: 32px;
}

.services-hero .hero-actions {
  margin-top: 36px;
}

.services-hero-panel {
  position: relative;
  min-height: 560px;
}

.services-hero-image {
  position: absolute;
  inset: 30px 0 0 10px;
  overflow: hidden;
  border-radius: 320px 0 0 320px;
  box-shadow: var(--shadow);
  background: var(--light);
}

.services-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transform: scale(1.04);
}

.services-hero-image::before {
  content: "";
  position: absolute;
  inset: -12% auto -12% -24%;
  width: 78%;
  border-radius: 50%;
  border: 20px solid rgba(255,255,255,.22);
  z-index: 1;
  pointer-events: none;
}

.services-hero-image::after {
  content: "";
  position: absolute;
  inset: -5% auto -5% -16%;
  width: 62%;
  border-radius: 50%;
  border: 4px solid rgba(212,163,90,.18);
  z-index: 2;
  pointer-events: none;
}

.service-audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.service-audience-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Tablet */
@media (max-width: 1020px) {
  .services-hero {
    min-height: auto;
  }

  .services-hero .services-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 72px 0;
  }

  .services-hero-panel {
    min-height: 420px;
  }

  .services-hero-image {
    inset: 0;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .services-hero .services-hero-grid {
    width: min(100% - 32px, 520px);
    padding: 64px 0;
  }

  .services-hero h1 {
    font-size: 54px;
  }

  .services-hero-panel {
    min-height: 340px;
  }

  .services-hero .hero-actions {
    gap: 12px;
  }

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

@media (max-width: 1020px) {
  .tier-explainer-grid,
  .plan-grid,
  .service-choice-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: auto;
  }

  .plan-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .compact-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .tier-explainer-card,
  .plan-card,
  .choice-card {
    padding: 30px 24px;
  }

  .plan-card.featured::after {
    right: 20px;
    top: 22px;
  }

  .plan-card h3 {
    font-size: 33px;
  }

  .comparison-table {
    min-width: 760px;
  }
}


/* =========================================================
   Whole-site mobile menu and mobile hero readability overrides
   ========================================================= */

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.mobile-menu-icon {
  width: 22px;
  height: 16px;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  transition: transform .24s ease, opacity .24s ease;
}

html.mobile-menu-open,
html.mobile-menu-open body,
body.mobile-menu-open {
  overflow: hidden;
}

#consultation-form {
  scroll-margin-top: 120px;
}

@media (max-width: 1020px) {
  .site-header {
    --mobile-header-height: 88px;
    z-index: 10000;
  }

  .site-header.menu-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  .nav {
    position: relative;
  }

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

  .nav-links {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: 100vw !important;
    height: calc(100dvh - var(--mobile-header-height)) !important;
    min-height: calc(100vh - var(--mobile-header-height)) !important;
    z-index: 9999;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 22px 32px 36px;
    background: rgba(255,255,255,.99);
    border-top: 1px solid var(--soft-line);
    box-shadow: 0 24px 70px rgba(13,34,56,.14);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -10px);
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
  }

  .site-header.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .nav-links a:not(.button),
  .nav-links .button {
    display: flex !important;
  }

  .nav-links a:not(.button) {
    width: 100%;
    min-height: 58px;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid var(--soft-line);
    font-size: 15px;
    letter-spacing: .12em;
  }

  .nav-links a:not(.button)::after {
    display: none;
  }

  .nav-links .button {
    width: 100%;
    min-height: 56px;
    margin-top: 18px;
  }

  .site-header.menu-open .mobile-menu-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .mobile-menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .mobile-menu-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 680px) {
  .site-header {
    --mobile-header-height: 78px;
  }

  .mobile-menu-text {
    display: none;
  }

  .mobile-menu-toggle {
    width: 46px;
    padding: 0;
  }

  .nav-links {
    padding: 20px 24px 34px;
  }

  .hero-image-panel,
  .services-hero-image-panel,
  .services-hero-image,
  .page-hero-image,
  .hero-bg,
  .hero-background {
    background-color: var(--white);
  }

  .hero-image-panel img,
  .services-hero-image-panel img,
  .services-hero-image img,
  .page-hero-image img,
  .hero-bg img,
  .hero-background img {
    opacity: .8;
    filter: brightness(1.08) contrast(.96) saturate(.95);
  }

  .hero-image-panel::after,
  .services-hero-image-panel::after {
    background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,.45) 58%, rgba(255,255,255,.12) 100%);
  }
}

/* Mobile/tablet hero readability: matches the mobile-menu breakpoint. */
@media (max-width: 1020px) {
  .hero-image-panel,
  .services-hero-image-panel,
  .services-hero-image,
  .page-hero-image,
  .hero-bg,
  .hero-background {
    background-color: var(--white);
  }

  .hero-image-panel img,
  .services-hero-image-panel img,
  .services-hero-image img,
  .page-hero-image img,
  .hero-bg img,
  .hero-background img {
    opacity: .3;
    filter: brightness(1.08) contrast(.96) saturate(.95);
  }

  .hero-image-panel::after,
  .services-hero-image-panel::after {
    background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,.45) 58%, rgba(255,255,255,.12) 100%);
  }
}
