:root {
  --ink: #10202a;
  --ink-soft: #4f626b;
  --paper: #f8fbf9;
  --white: #ffffff;
  --green: #00735b;
  --green-dark: #063f36;
  --green-soft: #dff2ea;
  --mint: #83dec4;
  --red: #ce3340;
  --blue: #236a7a;
  --blue-dark: #103c46;
  --cyan: #22b9a4;
  --orange: #ff5215;
  --gold: #d8a23a;
  --line: rgba(16, 32, 42, 0.12);
  --shadow: 0 24px 60px rgba(7, 48, 43, 0.12);
  --radius-sm: 16px;
  --radius: 28px;
  --radius-lg: 42px;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Iowan Old Style, Baskerville, Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.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;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  color: white;
  background: var(--green);
  border-radius: 0 0 12px 12px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.page-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section-pad {
  padding: 112px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 251, 249, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(7, 48, 43, 0.08);
}

.header-inner {
  width: min(1360px, calc(100% - 40px));
  min-height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.partnership-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-vynzo {
  width: 166px;
  height: auto;
}

.brand-almanar {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-cross {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #7b898e;
  font-weight: 700;
  font-size: 17px;
}

.proposal-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.proposal-nav a {
  padding: 10px 11px;
  border-radius: 999px;
  color: #40545d;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.proposal-nav a:hover,
.proposal-nav a.is-active {
  color: var(--green);
  background: rgba(0, 107, 79, 0.08);
}

.proposal-nav .nav-download {
  margin-left: 7px;
  padding-inline: 17px;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 9px 24px rgba(0, 80, 63, 0.18);
}

.proposal-nav .nav-download:hover {
  color: white;
  background: var(--green-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.scroll-progress {
  height: 2px;
  background: rgba(0, 107, 79, 0.08);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--blue));
}

.hero {
  position: relative;
  min-height: calc(100svh - 84px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(34, 185, 164, 0.18), transparent 31%),
    radial-gradient(circle at 8% 88%, rgba(206, 51, 64, 0.08), transparent 30%),
    linear-gradient(145deg, #fffdf9 0%, #eff9f5 58%, #f8fbf9 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image: radial-gradient(rgba(0, 107, 79, 0.24) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to right, transparent, black 40%, transparent 85%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  width: 420px;
  height: 420px;
  right: -160px;
  top: 4%;
  border: 1px solid rgba(0, 107, 79, 0.14);
}

.hero-orb-two {
  width: 190px;
  height: 190px;
  right: 37%;
  bottom: -100px;
  background: rgba(255, 82, 21, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 46px;
}

.eyebrow,
.kicker,
.mini-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.approval-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: -8px 0 22px;
  padding: 8px 13px 8px 9px;
  color: var(--green-dark);
  border: 1px solid rgba(0, 115, 91, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(6, 63, 54, 0.07);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.approval-pill span {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  color: white;
  border-radius: 50%;
  background: var(--green);
  font-size: 12px;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6.4vw, 94px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero h1 em {
  color: var(--green);
  font-style: italic;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(0, 107, 79, 0.2);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary,
.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}

.button-secondary:hover,
.button-ghost:hover {
  background: white;
}

.button-secondary-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.button-full {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  margin: 42px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-facts > div {
  padding-right: 20px;
}

.hero-facts > div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero-facts dt {
  color: #74838a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 3px 0 0;
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  min-height: 665px;
  display: grid;
  align-items: end;
}

.hero-building-wrap {
  position: relative;
  height: 650px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 17% 18%, rgba(131, 222, 196, 0.24), transparent 26%),
    linear-gradient(150deg, #0f6359 0%, #075047 45%, #083b3c 100%),
    var(--green);
  box-shadow: var(--shadow);
}

.hero-building-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(3, 33, 37, 0.42));
}

.hero-building {
  position: absolute;
  right: 4%;
  bottom: -1px;
  width: 76%;
  height: 96%;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(-24px 20px 28px rgba(0, 30, 33, 0.34));
}

.hospital-seal {
  position: absolute;
  z-index: 3;
  left: 24px;
  top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px 11px 10px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hospital-seal img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  padding: 3px;
  border-radius: 12px;
  background: white;
}

.hospital-seal span {
  font-size: 10px;
  line-height: 1.25;
  text-transform: uppercase;
}

.hospital-seal strong {
  font-size: 15px;
}

.proof-card {
  position: absolute;
  z-index: 4;
  left: 24px;
  bottom: 24px;
  display: grid;
  width: min(310px, calc(100% - 48px));
  padding: 20px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 20px 45px rgba(2, 30, 38, 0.25);
  backdrop-filter: blur(12px);
}

.proof-label {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-card strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.05;
}

.proof-card > span:last-child {
  color: var(--ink-soft);
  font-size: 13px;
}

/* Integrated opening scene */
.hero {
  min-height: 900px;
  background: linear-gradient(180deg, #d9f0f3 0%, #eff9f7 56%, #dbeadd 100%);
}

.hero::before {
  z-index: 1;
  opacity: 0.52;
  background:
    linear-gradient(90deg, rgba(248, 252, 249, 0.96) 0%, rgba(248, 252, 249, 0.58) 43%, transparent 69%),
    linear-gradient(180deg, transparent 68%, rgba(0, 74, 58, 0.12));
  mask-image: none;
}

.hero-orb {
  display: none;
}

.hero-grid {
  min-height: 780px;
  display: flex;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(710px, 64%);
  margin: 56px 0;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 80px rgba(21, 76, 69, 0.14);
  backdrop-filter: blur(20px) saturate(1.15);
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(50px, 5.35vw, 78px);
}

.hero-lead {
  font-size: clamp(16px, 1.35vw, 19px);
}

.hero-facts {
  max-width: 620px;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  min-height: 780px;
  display: block;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-visual.reveal,
.hero-visual.reveal.is-visible {
  transform: translateX(-50%);
}

.hero-building-wrap {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 86% 17%, rgba(255, 255, 255, 0.95) 0 7%, transparent 15%),
    radial-gradient(ellipse at 72% 26%, rgba(255, 255, 255, 0.62) 0 9%, transparent 19%),
    linear-gradient(180deg, #cbe8ee 0%, #eaf7f5 54%, #d3e5d7 100%);
  box-shadow: none;
}

.hero-building-wrap::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 84% 31%, rgba(38, 137, 132, 0.11), transparent 25%),
    linear-gradient(90deg, rgba(250, 253, 250, 0.95) 0%, rgba(250, 253, 250, 0.45) 40%, transparent 62%);
}

.hero-building-wrap::after {
  z-index: 1;
  height: 28%;
  background:
    radial-gradient(ellipse at 80% 100%, rgba(16, 89, 66, 0.46), transparent 48%),
    linear-gradient(transparent, rgba(28, 98, 75, 0.28));
}

.hero-building {
  z-index: 2;
  right: max(2%, calc((100vw - 1380px) / 2));
  bottom: -2%;
  width: auto;
  height: 102%;
  filter: saturate(0.88) contrast(1.04) drop-shadow(-30px 24px 34px rgba(12, 72, 67, 0.28));
}

.sky-cloud {
  position: absolute;
  z-index: 1;
  display: block;
  width: 210px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  filter: blur(4px);
  opacity: 0.7;
}

.sky-cloud::before,
.sky-cloud::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: inherit;
}

.sky-cloud::before {
  left: 34px;
  width: 82px;
  height: 82px;
}

.sky-cloud::after {
  right: 34px;
  width: 104px;
  height: 104px;
}

.sky-cloud-one {
  right: 8%;
  top: 15%;
  transform: scale(1.15);
}

.sky-cloud-two {
  right: 37%;
  top: 28%;
  transform: scale(0.7);
  opacity: 0.48;
}

.sky-cloud-three {
  left: 4%;
  bottom: 17%;
  transform: scale(0.9);
  opacity: 0.38;
}

.hospital-seal {
  left: auto;
  right: max(28px, calc((100vw - 1370px) / 2));
  top: 28px;
  color: var(--green-dark);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 38px rgba(21, 76, 69, 0.11);
}

.proof-card {
  left: auto;
  right: max(32px, calc((100vw - 1370px) / 2));
  bottom: 32px;
  box-shadow: 0 24px 55px rgba(2, 45, 40, 0.18);
}

.scene-caption {
  position: absolute;
  z-index: 4;
  right: max(38px, calc((100vw - 1360px) / 2));
  top: 112px;
  display: grid;
  padding: 10px 13px;
  color: var(--green-dark);
  border-left: 2px solid var(--red);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(10px);
}

.scene-caption span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scene-caption strong {
  margin-top: 2px;
  font-size: 13px;
}

.trust-strip {
  position: relative;
  z-index: 2;
  color: white;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 22%),
    var(--ink);
}

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

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 100px;
  padding: 23px 20px;
}

.trust-grid > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-grid span {
  color: var(--mint);
  font-family: var(--serif);
  font-size: 30px;
}

.status-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(216, 162, 58, 0.13), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, #f5faf7 100%);
}

.status-section::before {
  content: "APPROVED";
  position: absolute;
  right: -38px;
  top: 36px;
  color: rgba(0, 115, 91, 0.035);
  font-family: var(--serif);
  font-size: clamp(90px, 15vw, 220px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
}

.status-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 44px;
}

.status-head h2 {
  max-width: 770px;
  margin: 11px 0 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5.7vw, 76px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.status-head > p {
  margin: 0;
  padding-left: 22px;
  color: var(--ink-soft);
  border-left: 2px solid var(--red);
  font-size: 16px;
}

.approval-dashboard {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 12px;
}

.approval-dashboard article {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 50px rgba(6, 63, 54, 0.07);
}

.approval-dashboard .approval-primary {
  color: white;
  border-color: transparent;
  background:
    radial-gradient(circle at 92% 10%, rgba(131, 222, 196, 0.34), transparent 28%),
    linear-gradient(145deg, var(--green), var(--green-dark));
}

.approval-dashboard .status-pending {
  background:
    linear-gradient(145deg, rgba(216, 162, 58, 0.12), transparent 70%),
    white;
}

.status-label {
  position: absolute;
  left: 28px;
  top: 26px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.approval-primary .status-label {
  color: var(--mint);
}

.approval-dashboard strong {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.approval-dashboard p {
  max-width: 390px;
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.approval-primary p {
  color: rgba(255, 255, 255, 0.7);
}

.approved-stamp {
  position: absolute;
  right: 22px;
  top: 22px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  color: var(--green-dark);
  border-radius: 999px;
  background: var(--mint);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.activation-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}

.activation-path > div {
  position: relative;
  min-height: 185px;
  padding: 24px;
}

.activation-path > div + div {
  border-left: 1px solid var(--line);
}

.activation-path > div + div::before {
  content: "\2192";
  position: absolute;
  left: -14px;
  top: 25px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: white;
  border-radius: 50%;
  background: var(--red);
  font-size: 13px;
}

.activation-path span {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.activation-path strong,
.activation-path small {
  display: block;
}

.activation-path strong {
  margin-top: 26px;
  font-size: 15px;
}

.activation-path small {
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.status-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 22px 24px;
  color: white;
  border-radius: 22px;
  background: var(--ink);
}

.status-contact div {
  display: grid;
}

.status-contact span {
  color: var(--mint);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-contact strong {
  margin-top: 4px;
  font-size: 14px;
}

.commitment-section {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 8% 0%, rgba(131, 222, 196, 0.14), transparent 27%),
    radial-gradient(circle at 95% 88%, rgba(206, 51, 64, 0.12), transparent 26%),
    linear-gradient(145deg, #0b2527 0%, #082f2c 55%, #071c23 100%);
}

.commitment-section::before {
  content: "90";
  position: absolute;
  right: -30px;
  top: -60px;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--serif);
  font-size: clamp(250px, 37vw, 560px);
  line-height: 1;
}

.commitment-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 62px;
  margin-bottom: 48px;
}

.commitment-heading .kicker {
  color: var(--mint);
}

.commitment-heading h2 {
  max-width: 820px;
  margin: 11px 0 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5.4vw, 72px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.commitment-heading > p {
  margin: 0;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.65);
  border-left: 2px solid var(--red);
  font-size: 15px;
}

.position-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: stretch;
}

.position-board > article {
  min-height: 510px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 32px;
}

.current-position {
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
}

.approved-commitment {
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(131, 222, 196, 0.28), transparent 35%),
    #f7fbf8;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.position-title {
  display: grid;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.approved-commitment .position-title {
  border-bottom-color: var(--line);
}

.position-title span {
  color: var(--mint);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.approved-commitment .position-title span {
  color: var(--green);
}

.position-title strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.position-title small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.approved-commitment .position-title small {
  color: var(--ink-soft);
}

.current-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.current-metrics div {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.current-metrics div:first-child {
  color: var(--green-dark);
  background: var(--mint);
}

.current-metrics div:last-child {
  grid-column: span 2;
  min-height: 90px;
}

.current-metrics strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.current-metrics span {
  margin-top: 8px;
  color: currentColor;
  font-size: 10px;
  opacity: 0.72;
}

.commitment-bridge {
  position: relative;
  z-index: 3;
  display: grid;
  place-content: center;
  place-items: center;
  gap: 5px;
  margin-inline: -1px;
}

.commitment-bridge::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 16px 38px rgba(206, 51, 64, 0.26);
}

.commitment-bridge span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commitment-bridge strong {
  font-size: 23px;
  line-height: 1;
}

.approved-commitment ul {
  display: grid;
  gap: 0;
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
}

.approved-commitment li {
  position: relative;
  padding: 13px 12px 13px 38px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.approved-commitment li:last-child {
  border-bottom: 0;
}

.approved-commitment li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 10px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: white;
  border-radius: 50%;
  background: var(--green);
  font-size: 10px;
}

.month-commitment {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.month-commitment article {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.month-commitment article:nth-child(2) {
  color: var(--ink);
  background: var(--mint);
}

.month-tag {
  align-self: flex-start;
  padding: 7px 10px;
  color: var(--mint);
  border: 1px solid rgba(131, 222, 196, 0.28);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.month-commitment article:nth-child(2) .month-tag {
  color: var(--green-dark);
  border-color: rgba(6, 63, 54, 0.18);
}

.month-commitment article > strong {
  margin-top: 52px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
}

.month-commitment p {
  margin: 14px 0 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.month-commitment article:nth-child(2) p {
  color: rgba(16, 32, 42, 0.72);
}

.month-commitment small {
  margin-top: auto;
  padding-top: 15px;
  color: var(--mint);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
  font-weight: 800;
}

.month-commitment article:nth-child(2) small {
  color: var(--green-dark);
  border-top-color: rgba(6, 63, 54, 0.15);
}

.commitment-assurance {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 120px 1.2fr 0.8fr;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding: 22px 24px;
  color: var(--ink);
  border-radius: 22px;
  background: white;
}

.commitment-assurance span {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.commitment-assurance p,
.commitment-assurance strong {
  margin: 0;
  font-size: 11px;
}

.commitment-assurance p {
  color: var(--ink-soft);
}

.commitment-assurance strong {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.trust-grid strong {
  font-size: 13px;
  line-height: 1.35;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-heading h2,
.execution-title h2,
.team-hero h2,
.closing-content h2 {
  margin: 11px 0 18px;
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-heading > p:last-child,
.execution-title > p:last-child,
.team-hero > div:first-child > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.patient-journey {
  background: white;
}

.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.journey-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 63px;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--green) 0 6px, transparent 6px 13px);
}

.journey-step {
  position: relative;
  z-index: 1;
  min-height: 250px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(248, 251, 249, 0.92);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.journey-step:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 107, 79, 0.32);
  background: white;
}

.journey-number {
  color: #839095;
  font-size: 11px;
  font-weight: 800;
}

.journey-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 18px 0 28px;
  color: var(--green);
  border: 1px solid rgba(0, 107, 79, 0.2);
  border-radius: 50%;
  background: white;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 107, 79, 0.08);
}

.journey-step:nth-child(even) .journey-icon {
  color: white;
  background: var(--green);
}

.journey-step h3 {
  margin: 0;
  font-size: 17px;
}

.journey-step p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.journey-note {
  margin-top: 20px;
  padding: 18px 22px;
  border-left: 4px solid var(--red);
  border-radius: 0 15px 15px 0;
  background: #f5f9f7;
}

.audit-section {
  color: white;
  background:
    radial-gradient(circle at 90% 0%, rgba(22, 184, 195, 0.16), transparent 34%),
    linear-gradient(145deg, #102d2b, #0b1e2b 70%);
}

.section-heading.inverse .kicker {
  color: #6fe1cb;
}

.section-heading.inverse > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.metric-grid article:nth-child(1),
.metric-grid article:nth-child(6) {
  color: #061d22;
  background: #76e0cd;
}

.metric-grid article:nth-child(3),
.metric-grid article:nth-child(8) {
  background: rgba(13, 101, 223, 0.22);
}

.metric-grid span {
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1;
}

.metric-grid strong {
  margin-top: 12px;
  font-size: 14px;
}

.metric-grid small {
  margin-top: 5px;
  color: currentColor;
  font-size: 11px;
  opacity: 0.7;
}

.audit-story {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 36px;
  margin-top: 54px;
}

.audit-copy {
  padding: 36px;
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
}

.audit-copy h3 {
  max-width: 670px;
  margin: 9px 0 22px;
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.clean-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li,
.check-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

.clean-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 19px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 107, 79, 0.11);
}

.evidence-stack {
  display: grid;
  gap: 10px;
}

.evidence-card {
  display: grid;
  gap: 5px;
  min-height: 104px;
  padding: 20px;
  color: white;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.evidence-card:hover,
.evidence-card.is-active {
  transform: translateX(-5px);
  border-color: #6fe1cb;
  background: rgba(111, 225, 203, 0.13);
}

.evidence-card span {
  font-weight: 800;
}

.evidence-card small {
  color: rgba(255, 255, 255, 0.62);
}

.evidence-preview,
.social-evidence {
  position: relative;
  width: 100%;
  margin-top: 22px;
  padding: 0;
  overflow: hidden;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #10232c;
  cursor: zoom-in;
}

.evidence-preview img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  background: white;
}

.evidence-preview > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(10, 26, 32, 0.82);
  font-size: 11px;
  font-weight: 800;
}

.growth-section {
  background: #f6faf8;
}

.growth-tabs {
  display: inline-flex;
  gap: 4px;
  margin: -22px 0 36px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
}

.growth-tab {
  padding: 11px 18px;
  color: var(--ink-soft);
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.growth-tab.is-active {
  color: white;
  background: var(--green);
}

.growth-panel[hidden] {
  display: none;
}

.projection-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 36px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(0, 107, 79, 0.15);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.projection-copy h3,
.social-intro h3 {
  margin: 10px 0 16px;
  font-family: var(--serif);
  font-size: clamp(34px, 4.3vw, 54px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.projection-copy > p:nth-of-type(2),
.social-intro > p:nth-of-type(2) {
  color: var(--ink-soft);
}

.projection-stat {
  display: grid;
  margin-top: 28px;
  padding: 21px;
  color: white;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.projection-stat span {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
}

.projection-stat small {
  margin-top: 8px;
  opacity: 0.78;
}

.line-chart {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fcfb, #eef8f7);
}

.chart-grid {
  position: absolute;
  inset: 24px;
  background-image:
    linear-gradient(rgba(16, 32, 42, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 42, 0.06) 1px, transparent 1px);
  background-size: 100% 55px, 100px 100%;
}

.line-chart svg {
  position: absolute;
  inset: 54px 20px 62px;
  width: calc(100% - 40px);
  height: calc(100% - 116px);
  overflow: visible;
}

.chart-area {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 9;
  stroke-linecap: round;
}

.line-chart circle {
  fill: white;
  stroke: var(--green);
  stroke-width: 6;
}

.chart-label {
  position: absolute;
  display: grid;
  padding: 8px 10px;
  color: var(--green-dark);
  border: 1px solid rgba(0, 107, 79, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  line-height: 1.1;
}

.chart-label strong {
  font-size: 15px;
}

.chart-label span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 9px;
}

.chart-label-start {
  left: 6%;
  bottom: 26px;
}

.chart-label-mid {
  left: 58%;
  top: 35%;
}

.chart-label-end {
  right: 4%;
  top: 18px;
}

.service-grid,
.content-shift {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.service-grid article,
.content-shift > div {
  min-height: 225px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.service-grid span,
.content-shift span {
  color: var(--green);
  font-family: var(--serif);
  font-size: 30px;
}

.service-grid h3,
.content-shift h4 {
  margin: 28px 0 10px;
  font-size: 16px;
  line-height: 1.3;
}

.service-grid p,
.content-shift p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.month-roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}

.month-roadmap article {
  padding: 28px;
}

.month-roadmap article + article {
  border-left: 1px solid var(--line);
}

.month-roadmap span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.month-roadmap h3 {
  margin: 7px 0 8px;
}

.month-roadmap p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.complimentary-note,
.posting-note {
  margin-top: 20px;
  padding: 20px 24px;
  color: #dceefc;
  border-radius: 18px;
  background: linear-gradient(90deg, var(--blue-dark), #075d8a);
  font-size: 13px;
}

.complimentary-note strong {
  color: white;
}

.social-projection {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 30px;
}

.social-intro {
  padding: 36px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.social-stat {
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.platform-grid article {
  display: grid;
  align-content: end;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.platform-grid article:first-child {
  grid-row: span 2;
  min-height: 392px;
  color: white;
  background: linear-gradient(160deg, var(--blue), var(--blue-dark));
}

.platform-grid article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.platform-grid h4 {
  margin: 34px 0 3px;
}

.platform-grid p {
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
}

.platform-grid small {
  margin-top: 12px;
  opacity: 0.7;
}

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

.social-evidence {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  margin-top: 26px;
  color: var(--ink);
  border-color: var(--line);
  background: white;
}

.social-evidence img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
}

.social-evidence > span {
  display: grid;
  gap: 8px;
  padding: 28px;
  color: var(--ink-soft);
  text-align: left;
}

.social-evidence strong {
  color: var(--ink);
}

.posting-note {
  background: var(--green-dark);
}

.execution-section {
  background: white;
}

.execution-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.execution-title {
  position: sticky;
  top: 120px;
}

.execution-title h2 {
  font-size: clamp(48px, 5.5vw, 74px);
}

.execution-cards {
  display: grid;
  gap: 14px;
}

.execution-cards article {
  display: grid;
  grid-template-columns: 80px minmax(150px, 0.55fr) 1fr;
  align-items: center;
  gap: 18px;
  min-height: 150px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #f8fbf9;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.execution-cards article:hover {
  transform: translateX(-6px);
  border-color: rgba(0, 107, 79, 0.35);
}

.execution-cards span {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--green);
}

.execution-cards h3 {
  margin: 0;
  font-size: 19px;
}

.execution-cards p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.team-section {
  color: white;
  background:
    radial-gradient(circle at 3% 0%, rgba(22, 184, 195, 0.18), transparent 27%),
    var(--green-dark);
}

.team-hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  align-items: end;
}

.team-hero .kicker,
.team-section .mini-label {
  color: #7ae3ce;
}

.team-hero > div:first-child > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.team-promise {
  display: grid;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.07);
}

.team-promise span {
  color: #7ae3ce;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-promise strong {
  font-family: var(--serif);
  font-size: 30px;
}

.team-promise small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.65);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 44px;
}

.team-grid article {
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.team-grid article > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--green-dark);
  border-radius: 50%;
  background: #7ae3ce;
  font-size: 11px;
  font-weight: 900;
}

.team-grid h3 {
  margin: 44px 0 12px;
  font-size: 18px;
}

.team-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.onsite-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 30px;
  margin-top: 20px;
  padding: 34px;
  color: var(--ink);
  border-radius: var(--radius);
  background: #f2fbf7;
}

.onsite-copy h3 {
  margin: 10px 0 10px;
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.onsite-copy p:last-child {
  color: var(--ink-soft);
}

.visit-plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.visit-plan > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.visit-plan span {
  margin-bottom: auto;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-plan strong {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.05;
}

.visit-plan small {
  margin-top: 9px;
  color: var(--ink-soft);
}

.investment-section {
  background: #f5f8f6;
}

.price-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 20px;
  align-items: start;
}

.price-card {
  position: sticky;
  top: 112px;
  padding: 30px;
  overflow: hidden;
  color: white;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(22, 184, 195, 0.45), transparent 42%),
    var(--green-dark);
  box-shadow: var(--shadow);
}

.selected-badge {
  display: inline-flex;
  padding: 8px 12px;
  color: var(--green-dark);
  border-radius: 999px;
  background: #7ae3ce;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card > p:first-of-type {
  margin: 50px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 8px;
}

.price span {
  padding-bottom: 10px;
  color: #7ae3ce;
  font-weight: 900;
}

.price strong {
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 76px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-term {
  margin: 6px 0 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.price-total {
  display: grid;
  margin-bottom: 20px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.06);
}

.price-total span,
.price-total small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.price-total strong {
  font-size: 20px;
}

.price-card .button {
  margin-top: 10px;
}

.price-card .button-primary {
  color: var(--green-dark);
  background: #7ae3ce;
}

.price-card .button-ghost {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
}

.scope-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.scope-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.scope-heading span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scope-heading strong {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.scope-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
  margin-top: 26px;
}

.scope-columns h3 {
  margin: 0 0 18px;
  font-size: 17px;
}

.check-list li {
  padding-block: 10px;
  font-size: 13px;
}

.check-list li::before {
  top: 17px;
}

.proof-phase {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 22px;
  padding: 38px;
  color: white;
  border-radius: var(--radius);
  background: var(--ink);
}

.proof-phase-number {
  font-family: var(--serif);
  font-size: 108px;
  line-height: 0.8;
  color: #7ae3ce;
}

.proof-phase h3 {
  max-width: 780px;
  margin: 9px 0 13px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 45px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.proof-phase p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.start-date-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  padding: 17px 20px;
  color: var(--green-dark);
  border: 1px solid rgba(216, 162, 58, 0.26);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(216, 162, 58, 0.14), rgba(255, 255, 255, 0.82));
}

.start-date-note span {
  flex: 0 0 auto;
  padding: 6px 9px;
  color: #684814;
  border-radius: 999px;
  background: rgba(216, 162, 58, 0.24);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.start-date-note strong {
  font-size: 12px;
}

.outcomes {
  margin-top: 22px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.outcome-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.outcome-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.outcome-grid article {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border-radius: 18px;
  background: #f2f8f5;
}

.outcome-grid strong {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.1;
}

.outcome-grid span {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 11px;
}

.projection-disclaimer {
  margin: 22px 0 0;
  padding-top: 18px;
  color: #77868c;
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.commencement-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 88%, rgba(206, 51, 64, 0.1), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(34, 185, 164, 0.15), transparent 28%),
    linear-gradient(135deg, #f2faf6, #fffdf8);
}

.commencement-section::after {
  content: "START";
  position: absolute;
  right: -24px;
  bottom: -28px;
  color: rgba(0, 115, 91, 0.035);
  font-family: var(--serif);
  font-size: clamp(140px, 24vw, 330px);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.commencement-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 70px;
}

.commencement-copy {
  position: sticky;
  top: 120px;
}

.commencement-copy h2 {
  margin: 10px 0 22px;
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.commencement-copy > p:not(.kicker) {
  margin: 0 0 27px;
  color: var(--ink-soft);
  font-size: 16px;
}

.commencement-steps {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.commencement-steps::before {
  content: "";
  position: absolute;
  left: 59px;
  top: 72px;
  bottom: 72px;
  width: 2px;
  background: linear-gradient(var(--green), var(--mint), var(--red));
}

.commencement-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 142px;
  padding: 24px 28px 24px 23px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 50px rgba(6, 63, 54, 0.065);
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.commencement-steps li:hover {
  transform: translateX(6px);
  box-shadow: 0 26px 65px rgba(6, 63, 54, 0.11);
}

.commencement-steps li:last-child {
  color: white;
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0%, rgba(131, 222, 196, 0.28), transparent 34%),
    linear-gradient(135deg, var(--green), var(--green-dark));
}

.commencement-steps > li > span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--green);
  border: 1px solid rgba(0, 115, 91, 0.15);
  border-radius: 50%;
  background: var(--green-soft);
  font-family: var(--serif);
  font-size: 26px;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.86);
}

.commencement-steps li:last-child > span {
  color: var(--green-dark);
  border-color: transparent;
  background: var(--mint);
}

.commencement-steps strong {
  font-size: 16px;
}

.commencement-steps p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.commencement-steps li:last-child p {
  color: rgba(255, 255, 255, 0.68);
}

.closing-section {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: #071d23;
}

.closing-image {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-image:
    linear-gradient(90deg, rgba(7, 29, 35, 0.94), rgba(7, 29, 35, 0.22)),
    url("assets/dhaka-city.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.closing-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 72px;
}

.closing-content .kicker {
  color: #7ae3ce;
}

.closing-content h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(48px, 7vw, 90px);
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  padding-bottom: 6px;
}

.site-footer {
  padding: 64px 0 24px;
  color: #d6e0e0;
  background: #07181e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  gap: 34px;
}

.footer-brand > p,
.footer-grid > div:not(.footer-brand) p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.footer-mark {
  display: flex;
  padding: 10px;
  border-radius: 16px;
  background: white;
  width: max-content;
}

.footer-mark .brand-vynzo {
  width: 145px;
}

.footer-mark .brand-almanar {
  width: 46px;
  height: 46px;
}

.footer-grid h3 {
  margin: 4px 0 18px;
  color: white;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid p {
  margin: 0 0 9px;
}

.footer-grid a {
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.lightbox {
  width: min(1100px, calc(100% - 32px));
  max-height: calc(100svh - 40px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: white;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}

.lightbox::backdrop {
  background: rgba(4, 18, 22, 0.78);
  backdrop-filter: blur(6px);
}

.lightbox img {
  width: 100%;
  max-height: calc(100svh - 40px);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  right: 14px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: white;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 24, 30, 0.84);
  font-size: 28px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .proposal-nav a:not(.nav-download) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.78fr);
  }

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

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

  .content-shift > div:last-child {
    grid-column: span 2;
  }

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

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

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

  .commencement-steps li:nth-child(2),
  .commencement-steps li:nth-child(3),
  .commencement-steps li:nth-child(4) {
    transform: none;
  }
}

@media (max-width: 860px) {
  .section-pad {
    padding: 82px 0;
  }

  .page-shell {
    width: min(100% - 32px, 720px);
  }

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

  .brand-vynzo {
    width: 145px;
  }

  .brand-almanar {
    width: 48px;
    height: 48px;
  }

  .menu-button {
    display: block;
  }

  .proposal-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 7px;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    background: rgba(248, 251, 249, 0.98);
    box-shadow: 0 25px 40px rgba(7, 48, 43, 0.1);
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .proposal-nav.is-open {
    max-height: 520px;
    padding-block: 14px 22px;
  }

  .proposal-nav a,
  .proposal-nav a:not(.nav-download) {
    display: block;
    padding: 13px 15px;
    text-align: center;
  }

  .proposal-nav .nav-download {
    margin: 4px 0 0;
  }

  .hero {
    min-height: 940px;
    padding-top: 72px;
  }

  .hero-grid {
    min-height: 820px;
    display: flex;
  }

  .hero-copy {
    width: min(620px, 82%);
    padding: 34px;
  }

  .status-head,
  .commitment-heading,
  .commencement-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .status-head > p {
    max-width: 620px;
  }

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

  .approval-dashboard .approval-primary {
    grid-column: span 2;
  }

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

  .activation-path > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .activation-path > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .activation-path > div:nth-child(3)::before {
    display: none;
  }

  .commencement-copy {
    position: static;
    max-width: 700px;
  }

  .position-board {
    grid-template-columns: 1fr;
  }

  .position-board > article {
    min-height: auto;
  }

  .commitment-bridge {
    min-height: 78px;
  }

  .commitment-bridge strong {
    transform: rotate(90deg);
  }

  .month-commitment {
    grid-template-columns: 1fr;
  }

  .month-commitment article {
    min-height: 250px;
  }

  .commitment-assurance {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .commitment-assurance strong {
    padding: 12px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero h1 {
    font-size: clamp(50px, 12vw, 78px);
  }

  .hero-visual {
    height: 100%;
    min-height: 820px;
  }

  .hero-building-wrap {
    height: 100%;
  }

  .hero-building {
    right: -8%;
    width: auto;
    height: 83%;
  }

  .hospital-seal,
  .scene-caption,
  .proof-card {
    right: 20px;
  }

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

  .trust-grid > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .trust-grid > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

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

  .journey-track::before {
    display: none;
  }

  .journey-step:last-child {
    grid-column: span 2;
  }

  .audit-story,
  .projection-card,
  .social-projection,
  .execution-grid,
  .team-hero,
  .onsite-card,
  .price-layout {
    grid-template-columns: 1fr;
  }

  .execution-title,
  .price-card {
    position: static;
  }

  .execution-cards article {
    grid-template-columns: 64px 1fr;
  }

  .execution-cards p {
    grid-column: 2;
  }

  .scope-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .social-evidence {
    grid-template-columns: 1fr;
  }

  .closing-content {
    display: grid;
  }

  .closing-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    font-size: 15px;
  }

  .page-shell {
    width: calc(100% - 24px);
  }

  .section-pad {
    padding: 66px 0;
  }

  .header-inner {
    width: calc(100% - 20px);
    gap: 8px;
  }

  .partnership-mark {
    gap: 7px;
  }

  .brand-vynzo {
    width: 118px;
  }

  .brand-almanar {
    width: 40px;
    height: 40px;
  }

  .brand-cross {
    width: 16px;
    font-size: 14px;
  }

  .hero {
    min-height: 1120px;
    padding: 54px 0 0;
  }

  .hero-grid {
    min-height: 1040px;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    margin: 22px 0 390px;
    padding: 24px;
    border-radius: 27px;
  }

  .hero h1 {
    font-size: clamp(43px, 14vw, 62px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .approval-pill {
    align-items: flex-start;
    border-radius: 18px;
  }

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

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

  .hero-facts > div,
  .hero-facts > div + div {
    padding: 10px 0;
    border-left: 0;
  }

  .hero-facts > div + div {
    border-top: 1px solid var(--line);
  }

  .hero-visual {
    height: 100%;
    min-height: 1040px;
  }

  .hero-building-wrap {
    height: 100%;
    border-radius: 0;
  }

  .hero-building {
    right: -29%;
    width: auto;
    height: 57%;
  }

  .hospital-seal {
    left: auto;
    right: 12px;
    top: auto;
    bottom: 312px;
  }

  .proof-card {
    left: 12px;
    right: 12px;
    bottom: 16px;
    width: auto;
  }

  .scene-caption {
    display: none;
  }

  .sky-cloud-one {
    right: -22%;
    top: 61%;
  }

  .sky-cloud-two {
    right: 42%;
    top: 72%;
  }

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

  .trust-grid > div + div,
  .trust-grid > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .execution-title h2,
  .team-hero h2 {
    font-size: 39px;
  }

  .section-heading > p:last-child,
  .execution-title > p:last-child,
  .team-hero > div:first-child > p:last-child {
    font-size: 16px;
  }

  .journey-track,
  .metric-grid,
  .service-grid,
  .content-shift,
  .team-grid,
  .outcome-grid,
  .approval-dashboard,
  .activation-path {
    grid-template-columns: 1fr;
  }

  .commitment-heading h2 {
    font-size: 40px;
  }

  .position-board > article {
    padding: 24px;
    border-radius: 24px;
  }

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

  .month-commitment article {
    min-height: 270px;
    padding: 22px;
  }

  .commitment-assurance {
    padding: 20px;
  }

  .approval-dashboard .approval-primary {
    grid-column: auto;
  }

  .approval-dashboard article {
    min-height: 225px;
    padding: 23px;
  }

  .status-label {
    left: 23px;
    top: 22px;
  }

  .approved-stamp {
    right: 16px;
    top: 16px;
  }

  .activation-path > div {
    min-height: 155px;
  }

  .activation-path > div + div,
  .activation-path > div:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .activation-path > div + div::before {
    display: none;
  }

  .status-contact,
  .start-date-note {
    display: grid;
    align-items: start;
  }

  .status-contact .button {
    width: 100%;
  }

  .journey-step:last-child,
  .content-shift > div:last-child {
    grid-column: auto;
  }

  .journey-step {
    min-height: 0;
  }

  .metric-grid article {
    min-height: 155px;
  }

  .audit-copy,
  .projection-card,
  .social-intro,
  .scope-card,
  .outcomes,
  .proof-phase,
  .onsite-card {
    padding: 24px;
    border-radius: 23px;
  }

  .line-chart {
    min-height: 300px;
  }

  .growth-tabs {
    display: grid;
    width: 100%;
    border-radius: 18px;
  }

  .growth-tab {
    border-radius: 13px;
  }

  .month-roadmap {
    grid-template-columns: 1fr;
  }

  .month-roadmap article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .platform-grid article:first-child {
    grid-column: span 2;
    grid-row: auto;
    min-height: 230px;
  }

  .execution-cards article {
    grid-template-columns: 48px 1fr;
    padding: 20px;
  }

  .execution-cards span {
    font-size: 34px;
  }

  .visit-plan {
    grid-template-columns: 1fr;
  }

  .commencement-steps li {
    grid-template-columns: 58px 1fr;
    gap: 15px;
    min-height: 130px;
    padding: 18px;
  }

  .commencement-steps::before {
    left: 46px;
    top: 60px;
    bottom: 60px;
  }

  .commencement-steps > li > span {
    width: 56px;
    height: 56px;
    font-size: 21px;
  }

  .visit-plan > div {
    min-height: 150px;
  }

  .scope-heading,
  .outcome-heading {
    display: grid;
    align-items: start;
  }

  .proof-phase {
    grid-template-columns: 1fr;
  }

  .proof-phase-number {
    font-size: 70px;
  }

  .closing-section {
    min-height: 520px;
  }

  .closing-content h2 {
    font-size: 50px;
  }

  .closing-actions .button {
    width: 100%;
  }

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

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .site-header,
  .hero-actions,
  .growth-tabs,
  .evidence-preview > span,
  .closing-actions,
  .lightbox,
  [data-print] {
    display: none !important;
  }

  body {
    background: white;
    font-size: 11px;
  }

  .section-pad {
    padding: 34px 0;
  }

  .page-shell {
    width: 100%;
  }

  .hero {
    min-height: 0;
    padding: 38px 0;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-visual,
  .hero-building-wrap {
    min-height: 0;
    height: 420px;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .audit-section,
  .team-section,
  .proof-phase,
  .price-card,
  .closing-section,
  .trust-strip {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  section,
  article,
  .price-layout,
  .onsite-card,
  .proof-phase,
  .outcomes {
    break-inside: avoid;
  }
}
