.partner-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.partner-grid h2 { margin-bottom: 22px; }
.partner-grid > div:first-child > p:not(.eyebrow) { font-size: 1.08rem; margin-bottom: 30px; }
.dashboard-card {
  overflow: hidden;
  background: white;
  color: var(--ink);
  border-radius: 18px;
  box-shadow: 0 35px 80px rgba(0,0,0,.3);
  transform: rotate(1.5deg);
}
.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 20px;
  color: white;
  background: var(--navy-800);
  font-size: .9rem;
  font-weight: 850;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  font-size: .72rem;
}
.status-pill i { width: 7px; height: 7px; border-radius: 50%; background: #69dd89; }
.dashboard-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  background: #f6f8fc;
}
.dashboard-metric {
  padding: 18px;
  background: white;
  border: 1px solid #e5eaf3;
  border-radius: 11px;
}
.dashboard-metric span, .dashboard-metric strong, .dashboard-metric small { display: block; }
.dashboard-metric span { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.dashboard-metric strong { color: var(--navy-900); margin: 10px 0 5px; font-size: 1.1rem; }
.dashboard-metric small { color: var(--muted); }
.dashboard-timeline {
  grid-column: 1 / -1;
  display: flex;
  padding: 18px;
  background: white;
  border: 1px solid #e5eaf3;
  border-radius: 11px;
}
.dashboard-timeline span {
  flex: 1;
  position: relative;
  padding-top: 23px;
  color: #8b94a7;
  font-size: .72rem;
  text-align: center;
}
.dashboard-timeline span::before {
  content: "";
  position: absolute;
  top: 4px;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd2de;
  z-index: 2;
}
.dashboard-timeline span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #dfe4ed;
}
.dashboard-timeline span:last-child::after { display: none; }
.dashboard-timeline .done::before,
.dashboard-timeline .done::after { background: var(--blue-600); }
.dashboard-timeline .active::before {
  background: var(--gold-500);
  box-shadow: 0 0 0 5px var(--gold-100);
}

.process-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 90px;
  align-items: start;
}
.process-intro { position: sticky; top: 140px; }
.process-intro h2 { margin-bottom: 20px; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 0 0 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.steps li:last-child { margin-bottom: 0; }
.steps li > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-900);
  color: white;
  font-size: 1.08rem;
  font-weight: 900;
}
.steps h3 { margin: 5px 0 8px; color: var(--navy-900); }
.steps p { margin: 0; }

.service-area-section { padding-top: 30px; }
.service-area-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  align-items: center;
  min-height: 470px;
  border-radius: 24px;
  background: var(--gold-100);
}
.area-copy { padding: clamp(40px, 7vw, 75px); position: relative; z-index: 2; }
.area-copy h2 { color: var(--navy-950); }
.area-graphic {
  position: relative;
  height: 100%;
  min-height: 470px;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  overflow: hidden;
  display: grid;
  place-content: center;
  text-align: center;
  color: white;
}
.area-graphic::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 35px 35px;
  transform: rotate(9deg) scale(1.3);
}
.map-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ring-one { width: 150px; height: 150px; }
.ring-two { width: 270px; height: 270px; }
.ring-three { width: 390px; height: 390px; }
.map-pin {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold-500);
  transform: rotate(-45deg);
  box-shadow: 0 0 0 12px rgba(237,174,43,.14);
}
.map-pin span {
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: var(--navy-950);
}
.area-graphic strong, .area-graphic small { position: relative; z-index: 2; display: block; }
.area-graphic strong { font-size: 1.35rem; }
.area-graphic small { color: rgba(255,255,255,.6); }

.promise-section { padding-top: 40px; }
.promise-grid {
  display: grid;
  grid-template-columns: 70px 1fr .9fr;
  gap: 30px;
  align-items: center;
  padding: 52px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.promise-mark {
  align-self: start;
  color: var(--gold-500);
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: .8;
}
.promise-grid blockquote { margin: 0; }
.promise-grid blockquote p {
  color: var(--navy-950);
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.35;
}
.promise-grid blockquote footer { color: var(--blue-700); font-weight: 850; }
.promise-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.promise-values span {
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-900);
  font-size: .85rem;
  font-weight: 800;
  text-align: center;
}

.final-cta { padding-top: 0; }
.final-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 52px;
  color: white;
  border-radius: 20px;
  background: linear-gradient(110deg, var(--navy-950), var(--navy-800));
}
.final-cta h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.2rem); }
.final-actions { display: flex; gap: 12px; flex-wrap: wrap; flex: 0 0 auto; }

/* Homepage hero photography: simple, balanced and respectful of the real HMR image. */
.hero .eyebrow { color: var(--gold-400); }
.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr);
  gap: clamp(48px, 6vw, 82px);
}
.hero-visual {
  position: relative;
  padding: 0;
  max-width: 520px;
  width: 100%;
  justify-self: end;
}
.hero-visual::before { display: none; }
.hero-photo-frame {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.28);
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 28px 65px rgba(0,0,0,.28);
}
.hero-photo-frame::after { display: none; }
.hero-photo-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 17px;
}
.hero-note {
  position: static;
  margin: 14px 0 0;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-left: 4px solid var(--gold-500);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 35px rgba(0,0,0,.18);
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { justify-self: center; max-width: 600px; }
  .hero-photo-frame img { aspect-ratio: 4 / 3; object-position: center 45%; }
}

@media (max-width: 620px) {
  .hero-visual { width: 100%; }
  .hero-photo-frame { padding: 6px; border-radius: 18px; }
  .hero-photo-frame img { aspect-ratio: 1 / 1; border-radius: 12px; }
  .hero-note { margin: 12px 0 0; }
}
