:root {
  --navy: #061529;
  --navy-2: #0a203d;
  --navy-3: #102a4a;
  --white: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #eef2f6;
  --gray-200: #dce3eb;
  --silver: #c4ccd7;
  --silver-2: #eef1f5;
  --text: #101828;
  --muted: #66758a;
  --line: rgba(196, 204, 215, 0.58);
  --shadow: 0 24px 70px rgba(6, 21, 41, 0.14);
  --shadow-soft: 0 16px 40px rgba(6, 21, 41, 0.1);
  --radius: 8px;
  --max-width: 1180px;
  --header-height: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body.is-splash-open {
  overflow: hidden;
}

.intro-splash {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(215, 166, 76, 0.18), transparent 30%),
    rgba(6, 21, 41, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 460ms var(--ease),
    visibility 460ms var(--ease);
}

.intro-splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-splash__panel {
  position: relative;
  width: min(92vw, 720px);
  padding: clamp(18px, 4vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(196, 204, 215, 0.72);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 34px 110px rgba(6, 21, 41, 0.34);
  transform: translateY(0) scale(1);
  animation: splashIn 700ms var(--ease) both;
}

.intro-splash__panel img {
  width: 100%;
  max-height: min(58vh, 520px);
  object-fit: contain;
}

.intro-splash__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  border: 1px solid rgba(16, 42, 74, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition:
    color 180ms var(--ease),
    background 180ms var(--ease),
    transform 180ms var(--ease);
}

.intro-splash__close:hover,
.intro-splash__close:focus-visible {
  color: var(--white);
  background: var(--navy);
  transform: translateY(-1px);
}

.intro-splash__line {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 150px;
  max-width: 32%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(215, 166, 76, 0.28);
  transform: translateX(-50%);
}

.intro-splash__line::after {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #d7a64c;
  transform-origin: left;
  animation: splashProgress 2800ms linear both;
  content: "";
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

img,
svg {
  display: block;
}

.container {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 24px;
  transition: padding 260ms var(--ease);
}

.navbar {
  width: min(100%, var(--max-width));
  min-height: 64px;
  margin: 0 auto;
  padding: 0 16px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(6, 21, 41, 0.44);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    background 260ms var(--ease),
    border-color 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header.is-scrolled .navbar {
  color: var(--text);
  border-color: rgba(6, 21, 41, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
}

.brand__mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.brand__mark img {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
}

.site-header.is-scrolled .brand__mark {
  border-color: var(--gray-200);
  background: var(--white);
}

.brand__copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand__name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__subtitle {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.site-header.is-scrolled .brand__subtitle {
  color: var(--muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu > a:not(.nav-cta) {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius);
  transition:
    color 220ms var(--ease),
    background 220ms var(--ease);
}

.site-header.is-scrolled .nav-menu > a:not(.nav-cta) {
  color: #3d4d63;
}

.nav-menu > a:not(.nav-cta):hover,
.nav-menu > a:not(.nav-cta):focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .nav-menu > a:not(.nav-cta):hover,
.site-header.is-scrolled .nav-menu > a:not(.nav-cta):focus-visible {
  color: var(--navy);
  background: var(--gray-100);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    color 220ms var(--ease);
}

.nav-cta {
  margin-left: 8px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.site-header.is-scrolled .nav-cta {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 32px rgba(6, 21, 41, 0.2);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  color: inherit;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 3px 0;
  background: currentColor;
  border-radius: 999px;
  transition:
    transform 220ms var(--ease),
    opacity 220ms var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 148px 24px 104px;
  color: var(--white);
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -2;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(3, 12, 24, 0.88) 0%, rgba(3, 12, 24, 0.68) 45%, rgba(3, 12, 24, 0.38) 100%),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=2200&q=85") center / cover;
  transform: scale(1.02);
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 21, 41, 0.18), rgba(6, 21, 41, 0.74)),
    linear-gradient(90deg, rgba(196, 204, 215, 0.12), transparent 34%);
}

.hero__content {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  padding-top: 20px;
}

.hero__eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fade-up 900ms var(--ease) 40ms both;
}

.hero__eyebrow::before,
.section-kicker::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-kicker {
  color: var(--navy-3);
  animation: none;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: 68px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
  animation: fade-up 900ms var(--ease) both;
}

.hero p {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
  line-height: 1.55;
  animation: fade-up 900ms var(--ease) 120ms both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  animation: fade-up 900ms var(--ease) 220ms both;
}

.btn--primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 20px 42px rgba(6, 21, 41, 0.24);
}

.hero .btn--primary {
  color: var(--navy);
  background: var(--white);
}

.btn--secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn--primary:hover {
  box-shadow: 0 24px 52px rgba(6, 21, 41, 0.28);
}

.btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
}

.scroll-cue {
  position: absolute;
  right: 42px;
  bottom: 34px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.scroll-cue span {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg) translate(-1px, -1px);
  animation: cue 1.8s var(--ease) infinite;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading h2,
.about__copy h2,
.contact__copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: 44px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading p,
.about__copy p,
.contact__copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contents {
  position: relative;
  background:
    linear-gradient(180deg, var(--gray-50), var(--white));
}

.contents__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.content-link {
  position: relative;
  min-height: 168px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(6, 21, 41, 0.055);
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    border-color 260ms var(--ease),
    background 260ms var(--ease);
}

.content-link::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--navy), var(--silver));
  opacity: 0;
  transform: scaleX(0.78);
  transform-origin: left;
  transition:
    opacity 260ms var(--ease),
    transform 260ms var(--ease);
}

.content-link:hover,
.content-link:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(16, 42, 74, 0.24);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  outline: none;
}

.content-link:hover::after,
.content-link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.content-link span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.content-link strong {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: 0;
}

.content-link em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 64px;
  align-items: center;
}

.about__copy p + p {
  margin-top: 18px;
}

.about__panel {
  position: relative;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(247, 248, 250, 0.96)),
    linear-gradient(135deg, transparent 0%, rgba(196, 204, 215, 0.24) 100%);
  box-shadow: var(--shadow);
}

.about__panel::before {
  position: absolute;
  top: 0;
  left: 34px;
  right: 34px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--navy), var(--silver));
}

.about__panel h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.22;
  letter-spacing: 0;
}

.about__panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.about__values span {
  padding: 14px 16px;
  color: var(--navy-2);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.scope {
  background: var(--gray-50);
}

.scope__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.scope-card,
.impact-card,
.evaluation-card,
.schedule-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}

.scope-card {
  min-height: 244px;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(6, 21, 41, 0.055);
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    border-color 260ms var(--ease);
}

.scope-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 42, 74, 0.2);
  box-shadow: var(--shadow-soft);
}

.scope-card span,
.impact-card span,
.evaluation-card span,
.schedule-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scope-card h3,
.impact-card h3,
.evaluation-card h3 {
  margin: 28px 0 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.24;
}

.scope-card p,
.impact-card p,
.evaluation-card p,
.schedule-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.offer-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  margin-top: 26px;
  padding: 34px;
  color: var(--white);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 42%),
    var(--navy);
  box-shadow: var(--shadow);
}

.offer-panel .section-kicker {
  color: rgba(255, 255, 255, 0.64);
}

.offer-panel h3 {
  max-width: 420px;
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: 0;
}

.offer-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: offer;
}

.offer-list li {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 16px 16px 16px 58px;
  border: 1px solid rgba(196, 204, 215, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  counter-increment: offer;
}

.offer-list li::before {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  background: var(--white);
  content: counter(offer, decimal-leading-zero);
}

.offer-list strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.25;
}

.offer-list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.services {
  background: var(--white);
}

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

.service-card {
  min-height: 318px;
  padding: 30px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 21, 41, 0.06);
  transition:
    transform 280ms var(--ease),
    box-shadow 280ms var(--ease),
    border-color 280ms var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 42, 74, 0.22);
  box-shadow: var(--shadow);
}

.service-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--navy);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--white), var(--silver-2));
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.28;
  letter-spacing: 0;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.proposal-services {
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.service-card--detailed {
  min-height: auto;
  display: flex;
  flex-direction: column;
}

.service-card--wide {
  grid-column: 1 / -1;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
  list-style: none;
}

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

.check-list li {
  position: relative;
  padding-left: 20px;
}

.check-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--navy);
  content: "";
}

.proposal-strip {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 28px;
  padding: 32px;
  color: var(--white);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    var(--navy);
  box-shadow: var(--shadow);
}

.proposal-strip h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: 0;
}

.proposal-strip p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.proposal-strip ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proposal-strip li {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(196, 204, 215, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.impact {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--navy);
}

.impact .section-heading h2,
.impact .section-kicker {
  color: var(--white);
}

.impact .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.impact-card {
  min-height: 224px;
  padding: 28px;
  border-color: rgba(196, 204, 215, 0.22);
  background: rgba(255, 255, 255, 0.065);
  transition:
    transform 260ms var(--ease),
    background 260ms var(--ease),
    border-color 260ms var(--ease);
}

.impact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.impact-card span,
.impact-card h3 {
  color: var(--white);
}

.impact-card p {
  color: rgba(255, 255, 255, 0.68);
}

.methodology {
  background: var(--white);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 29px;
  left: 10%;
  right: 10%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--silver), var(--navy-3), var(--silver), transparent);
}

.timeline li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.timeline li span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  border: 7px solid var(--white);
  border-radius: 999px;
  background: var(--navy);
  box-shadow: 0 16px 32px rgba(6, 21, 41, 0.18);
  transition:
    transform 280ms var(--ease),
    box-shadow 280ms var(--ease);
}

.timeline li:hover span {
  transform: scale(1.08);
  box-shadow: 0 22px 42px rgba(6, 21, 41, 0.24);
}

.timeline li strong {
  color: var(--navy);
  font-size: 17px;
  letter-spacing: 0;
}

.timeline li p {
  max-width: 190px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.phase-example {
  width: fit-content;
  margin: 42px 0 0;
  padding: 8px 12px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: var(--silver-2);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.schedule-card {
  min-height: 156px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(238, 241, 245, 0.66), rgba(255, 255, 255, 0.98));
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    border-color 260ms var(--ease);
}

.schedule-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 42, 74, 0.18);
  box-shadow: var(--shadow-soft);
}

.schedule-card strong {
  display: block;
  margin-top: 16px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.22;
}

.planning-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  margin-top: 22px;
  padding: 30px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(238, 241, 245, 0.84), rgba(255, 255, 255, 0.98));
  box-shadow: 0 12px 34px rgba(6, 21, 41, 0.055);
}

.planning-panel__intro h3 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.16;
  letter-spacing: 0;
}

.planning-panel__intro p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.planning-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.2fr 0.88fr;
  gap: 14px;
  align-items: stretch;
}

.planning-card,
.calendar-card {
  min-height: 242px;
  padding: 22px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}

.planning-card h4 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.planning-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.planning-card--dark {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(196, 204, 215, 0.2);
}

.planning-card--dark h4 {
  color: var(--white);
}

.planning-card--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.calendar-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.calendar-card__head strong {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.2;
}

.calendar-card__head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-grid b,
.calendar-grid span {
  min-height: 28px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 12px;
  border-radius: 6px;
}

.calendar-grid b {
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  background: var(--silver-2);
}

.calendar-grid span {
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.calendar-grid .is-key {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.evaluation {
  background:
    linear-gradient(180deg, var(--gray-50), var(--white));
}

.evaluation__grid {
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 58px;
  align-items: start;
}

.evaluation-cards {
  display: grid;
  gap: 16px;
}

.evaluation-card {
  position: relative;
  min-height: 150px;
  padding: 26px 28px;
  box-shadow: 0 12px 34px rgba(6, 21, 41, 0.055);
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    border-color 260ms var(--ease);
}

.evaluation-card:hover {
  transform: translateX(6px);
  border-color: rgba(16, 42, 74, 0.2);
  box-shadow: var(--shadow-soft);
}

.evaluation-card h3 {
  margin-top: 16px;
}

.evaluation-card__percent {
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
}

.contact {
  background: var(--gray-50);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact__details {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(6, 21, 41, 0.06);
}

.contact-card--accent {
  border-color: rgba(16, 42, 74, 0.28);
  background: var(--white);
}

.contact-card__heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card__icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  flex: 0 0 34px;
  place-items: center;
  color: var(--navy);
  border: 1px solid rgba(16, 42, 74, 0.12);
  border-radius: 999px;
  background: rgba(16, 42, 74, 0.06);
}

.contact-card--accent .contact-card__icon {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.contact-card__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card__heading span:last-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
  transition: color 220ms var(--ease);
}

.contact-card__primary {
  color: var(--navy-3);
  font-size: 22px;
}

.contact-card a:hover {
  color: var(--navy-3);
}

.contact-form {
  padding: 32px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.contact-form span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  outline: none;
  transition:
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background 220ms var(--ease);
}

.contact-form input {
  min-height: 52px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 142px;
  padding: 15px 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(16, 42, 74, 0.58);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(16, 42, 74, 0.08);
}

.contact-form .btn {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.footer {
  color: var(--white);
  background: var(--navy);
}

.footer__grid {
  min-height: 136px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid rgba(196, 204, 215, 0.18);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__brand img {
  width: 48px;
  height: 38px;
  display: block;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
}

.footer strong {
  display: block;
  font-size: 20px;
  letter-spacing: 0;
}

.footer span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.footer__contact a {
  transition: color 220ms var(--ease);
}

.footer__contact a:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cue {
  0%,
  100% {
    transform: rotate(45deg) translate(-1px, -1px);
  }

  50% {
    transform: rotate(45deg) translate(3px, 3px);
  }
}

@keyframes splashIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes splashProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    top: 92px;
    left: 24px;
    right: 24px;
    display: grid;
    gap: 4px;
    max-height: calc(100svh - 116px);
    overflow-y: auto;
    padding: 16px;
    color: var(--text);
    border: 1px solid rgba(6, 21, 41, 0.1);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 220ms var(--ease),
      transform 220ms var(--ease);
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu > a:not(.nav-cta),
  .site-header.is-scrolled .nav-menu > a:not(.nav-cta) {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    color: var(--text);
  }

  .nav-cta,
  .site-header.is-scrolled .nav-cta {
    width: 100%;
    margin: 8px 0 0;
    color: var(--white);
    background: var(--navy);
  }

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

  .about__grid,
  .contact__grid,
  .evaluation__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

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

  .service-card--wide {
    grid-column: span 2;
  }

  .offer-panel {
    grid-template-columns: 1fr;
  }

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

  .planning-panel {
    grid-template-columns: 1fr;
  }

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

  .proposal-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 32px, var(--max-width));
  }

  .intro-splash {
    padding: 18px;
  }

  .intro-splash__panel {
    width: min(100%, 430px);
    padding: 18px;
    border-radius: 14px;
  }

  .intro-splash__panel img {
    max-height: 56vh;
  }

  .intro-splash__close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
  }

  .intro-splash__line {
    bottom: 14px;
    height: 3px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .navbar {
    min-height: 58px;
    padding: 0 10px 0 12px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand__mark img {
    width: 33px;
    height: 33px;
  }

  .brand__name {
    font-size: 15px;
  }

  .brand__subtitle {
    font-size: 10px;
  }

  .nav-menu {
    top: 78px;
    left: 14px;
    right: 14px;
  }

  .hero {
    min-height: 90svh;
    padding: 128px 16px 84px;
  }

  .hero__content {
    width: min(100% - 16px, var(--max-width));
  }

  .hero h1 {
    max-width: 16ch;
    font-size: 34px;
    line-height: 1.08;
    text-wrap: normal;
  }

  .hero p {
    max-width: 31ch;
    font-size: 16px;
  }

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

  .btn {
    width: 100%;
  }

  .scroll-cue {
    right: 22px;
    bottom: 22px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .about__copy h2,
  .contact__copy h2 {
    font-size: 34px;
  }

  .section-heading p,
  .about__copy p,
  .contact__copy p {
    font-size: 16px;
  }

  .hero__eyebrow,
  .section-kicker {
    font-size: 11px;
  }

  .contents__grid,
  .scope__grid,
  .impact__grid,
  .proposal-services,
  .schedule-grid,
  .planning-grid {
    grid-template-columns: 1fr;
  }

  .content-link,
  .scope-card,
  .impact-card {
    min-height: auto;
  }

  .offer-panel {
    padding: 24px;
  }

  .offer-panel h3 {
    font-size: 26px;
  }

  .planning-panel {
    padding: 22px;
  }

  .planning-panel__intro h3 {
    font-size: 24px;
  }

  .calendar-card__head {
    display: grid;
  }

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

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

  .service-card--wide {
    grid-column: auto;
  }

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

  .timeline {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-left: 4px;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 29px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--silver), var(--navy-3), var(--silver), transparent);
  }

  .timeline li {
    grid-template-columns: 58px 1fr;
    justify-items: start;
    align-items: center;
    gap: 18px;
    text-align: left;
  }

  .timeline li p {
    grid-column: 2;
    max-width: 100%;
    margin-top: -12px;
  }

  .proposal-strip {
    padding: 24px;
  }

  .proposal-strip ul {
    grid-template-columns: 1fr;
  }

  .contact__details {
    margin-top: 24px;
  }

  .contact-card {
    padding: 14px 15px;
  }

  .contact-card__icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .contact-card__icon svg {
    width: 16px;
    height: 16px;
  }

  .contact-card__primary {
    font-size: 20px;
  }

  .contact-form {
    padding: 22px;
  }

  .footer__grid {
    min-height: 156px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .footer__brand img {
    width: 44px;
    height: 35px;
  }

  .footer__contact {
    display: grid;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  @page {
    size: letter landscape;
    margin: 11mm;
  }

  .intro-splash {
    display: none !important;
  }

  *,
  *::before,
  *::after {
    box-shadow: none !important;
    text-shadow: none !important;
    animation: none !important;
    transition: none !important;
  }

  html,
  body {
    width: auto;
    min-width: 0;
    color: #061529;
    background: #ffffff;
    overflow: visible !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  body {
    font-size: 10.5pt;
    line-height: 1.38;
  }

  a {
    color: inherit;
  }

  .site-header {
    position: static;
    padding: 0;
    margin: 0 0 6mm;
  }

  .navbar {
    width: 100%;
    min-height: 14mm;
    padding: 0 4mm;
    color: #061529;
    border: 0.35mm solid #dce3eb;
    background: #f7f8fa;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand__mark,
  .site-header.is-scrolled .brand__mark {
    width: 9mm;
    height: 9mm;
    color: #ffffff;
    border-color: #061529;
    background: #061529;
  }

  .brand__name {
    font-size: 14pt;
  }

  .brand__subtitle {
    color: #66758a;
    font-size: 8pt;
  }

  .nav-menu,
  .nav-toggle,
  .hero__actions,
  .scroll-cue,
  .form-status {
    display: none !important;
  }

  .container,
  .hero__content {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .hero {
    min-height: 0;
    padding: 0 0 8mm;
    color: #061529;
    border-bottom: 0.35mm solid #dce3eb;
    background: #ffffff;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero__content {
    padding: 0;
  }

  .hero h1 {
    max-width: 190mm;
    margin: 0;
    color: #061529;
    font-size: 27pt;
    line-height: 1.02;
  }

  .hero p {
    max-width: 180mm;
    margin-top: 4mm;
    color: #334155;
    font-size: 11.2pt;
    line-height: 1.45;
  }

  .section {
    padding: 0;
  }

  .about {
    padding-top: 6mm;
    break-after: page;
  }

  .about__grid {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 10mm;
    align-items: start;
  }

  .section-heading {
    max-width: 175mm;
    margin: 0 0 7mm;
  }

  .section-heading h2,
  .about__copy h2,
  .contact__copy h2 {
    color: #061529;
    font-size: 23pt;
    line-height: 1.06;
  }

  .section-heading p,
  .about__copy p,
  .contact__copy p {
    margin-top: 4mm;
    color: #475569;
    font-size: 10.5pt;
  }

  .about__panel,
  .contact-form,
  .service-card {
    border: 0.35mm solid #dce3eb;
    background: #ffffff;
  }

  .about__panel {
    padding: 6mm;
  }

  .about__panel h3,
  .proposal-strip h3,
  .service-card h3 {
    color: #061529;
  }

  .about__panel p,
  .service-card p {
    color: #475569;
  }

  .about__values {
    gap: 3mm;
    margin-top: 4mm;
  }

  .about__values span {
    padding: 3mm 4mm;
    border: 0.35mm solid #dce3eb;
    background: #f7f8fa;
  }

  .services {
    padding-top: 0;
    break-after: page;
    background: #ffffff;
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4.5mm;
  }

  .service-card {
    min-height: 42mm;
    padding: 5.5mm;
    break-inside: avoid;
  }

  .service-card__icon {
    width: 10mm;
    height: 10mm;
    margin-bottom: 4mm;
    border: 0.35mm solid #dce3eb;
    background: #f7f8fa;
  }

  .service-card__icon svg {
    width: 5.2mm;
    height: 5.2mm;
  }

  .service-card h3 {
    font-size: 12.5pt;
    line-height: 1.2;
  }

  .service-card p {
    margin-top: 2.5mm;
    font-size: 8.8pt;
    line-height: 1.35;
  }

  .proposal-strip {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6mm;
    margin-top: 6mm;
    padding: 6mm;
    color: #ffffff;
    background: #061529;
    break-inside: avoid;
  }

  .proposal-strip p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 8.8pt;
  }

  .proposal-strip ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 3mm;
  }

  .proposal-strip li {
    min-height: 0;
    padding: 3mm;
    color: #ffffff;
    border: 0.25mm solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.08);
    font-size: 8.2pt;
  }

  .methodology {
    padding-top: 0;
  }

  .timeline {
    grid-template-columns: repeat(5, 1fr);
    margin-top: 8mm;
  }

  .timeline::before {
    top: 6.8mm;
    left: 10%;
    right: 10%;
    height: 0.35mm;
    width: auto;
    background: #c4ccd7;
  }

  .timeline li {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: start;
    gap: 2.5mm;
    text-align: center;
  }

  .timeline li span {
    width: 14mm;
    height: 14mm;
    color: #ffffff;
    border: 1.8mm solid #ffffff;
    background: #061529;
    font-size: 10pt;
  }

  .timeline li strong {
    color: #061529;
    font-size: 11pt;
  }

  .timeline li p {
    grid-column: auto;
    max-width: 34mm;
    margin: 0;
    color: #475569;
    font-size: 8.2pt;
    line-height: 1.28;
  }

  .contact {
    padding-top: 0;
    background: #ffffff;
  }

  .contact__grid {
    grid-template-columns: 0.78fr 1fr;
    gap: 10mm;
  }

  .contact__details {
    gap: 2.2mm;
    margin-top: 6mm;
  }

  .contact__details a {
    color: #061529;
    font-size: 10pt;
  }

  .contact-form {
    padding: 6mm;
    break-inside: avoid;
  }

  .contact-form label {
    gap: 1.6mm;
    margin-bottom: 3mm;
  }

  .contact-form span {
    color: #061529;
    font-size: 8.5pt;
  }

  .contact-form input {
    min-height: 10mm;
  }

  .contact-form textarea {
    min-height: 24mm;
  }

  .contact-form input,
  .contact-form textarea {
    border: 0.35mm solid #dce3eb;
    background: #ffffff;
  }

  .contact-form .btn {
    display: none;
  }

  .footer {
    margin-top: 8mm;
    color: #ffffff;
    background: #061529;
    break-inside: avoid;
  }

  .footer__grid {
    min-height: 18mm;
    border: 0;
  }

  .footer strong {
    font-size: 12pt;
  }

  .footer span,
  .footer__contact {
    font-size: 8pt;
  }

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

  h1,
  h2,
  h3,
  p,
  li,
  .service-card,
  .about__panel,
  .proposal-strip,
  .timeline,
  .contact-form,
  .footer {
    break-inside: avoid;
  }
}

@media print {
  .navbar {
    color: #ffffff;
    border-color: #061529;
    background:
      linear-gradient(135deg, #061529 0%, #0a203d 68%, #102a4a 100%);
  }

  .brand__mark,
  .site-header.is-scrolled .brand__mark {
    color: #061529;
    border-color: rgba(255, 255, 255, 0.72);
    background: #ffffff;
  }

  .brand__subtitle {
    color: rgba(255, 255, 255, 0.72);
  }

  .hero {
    position: relative;
    padding: 8mm 9mm;
    overflow: hidden;
    color: #ffffff;
    border: 0;
    border-radius: 3mm;
    background:
      linear-gradient(135deg, #061529 0%, #0a203d 58%, #102a4a 100%);
  }

  .hero::after {
    position: absolute;
    display: block;
    top: -28mm;
    right: -18mm;
    width: 82mm;
    height: 82mm;
    border: 0.45mm solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    content: "";
  }

  .hero__eyebrow,
  .hero h1,
  .hero p {
    position: relative;
    z-index: 1;
  }

  .hero__eyebrow {
    color: rgba(255, 255, 255, 0.72);
  }

  .hero h1 {
    color: #ffffff;
  }

  .hero p {
    color: rgba(255, 255, 255, 0.76);
  }

  .section-heading,
  .about__copy,
  .contact__copy {
    position: relative;
  }

  .section-heading::before,
  .about__copy::before,
  .contact__copy::before {
    display: block;
    width: 14mm;
    height: 0.55mm;
    margin-bottom: 3mm;
    background: linear-gradient(90deg, #061529, #c4ccd7);
    content: "";
  }

  .section-kicker::before,
  .hero__eyebrow::before {
    display: none;
  }

  .section-kicker,
  .content-link span,
  .scope-card span,
  .impact-card span,
  .evaluation-card span,
  .schedule-card span {
    color: #607089;
    letter-spacing: 0.1em;
  }

  .content-link,
  .scope-card,
  .service-card,
  .impact-card,
  .schedule-card,
  .evaluation-card,
  .planning-card,
  .calendar-card,
  .contact-form,
  .about__panel {
    position: relative;
    overflow: hidden;
    border-color: #d7e0ea;
    border-radius: 2.4mm;
    background:
      linear-gradient(135deg, #ffffff 0%, #ffffff 62%, #f4f7fa 100%);
  }

  .content-link::before,
  .scope-card::before,
  .service-card::before,
  .impact-card::before,
  .schedule-card::before,
  .evaluation-card::before,
  .planning-card::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.8mm;
    background: linear-gradient(90deg, #061529, #c4ccd7);
    content: "";
  }

  .content-link span,
  .scope-card span,
  .impact-card span,
  .evaluation-card span,
  .schedule-card span {
    display: inline-grid;
    width: fit-content;
    min-width: 8mm;
    min-height: 5mm;
    place-items: center;
    padding: 0 1.6mm;
    color: #ffffff;
    border-radius: 999px;
    background: #061529;
  }

  .content-link:nth-child(3n),
  .scope-card:nth-child(even),
  .schedule-card:nth-child(even) {
    background:
      linear-gradient(135deg, #f7f8fa 0%, #ffffff 72%);
  }

  .about__panel::before {
    left: 0;
    right: 0;
    height: 1mm;
  }

  .about__values span {
    border-left: 1.2mm solid #061529;
    background: #f7f8fa;
  }

  .service-card__icon {
    color: #ffffff;
    border-color: #061529;
    background: #061529;
  }

  .check-list li::before {
    background: #102a4a;
  }

  .offer-panel,
  .proposal-strip {
    border: 0.35mm solid #061529;
    border-radius: 2.4mm;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 42%),
      #061529;
  }

  .impact {
    padding: 7mm;
    border-radius: 3mm;
    background:
      linear-gradient(135deg, #f7f8fa 0%, #ffffff 62%);
  }

  .impact__grid {
    gap: 6mm;
  }

  .impact-card {
    min-height: 35mm;
    padding: 6mm;
  }

  .impact-card:nth-child(1),
  .impact-card:nth-child(4) {
    background:
      linear-gradient(135deg, #061529 0%, #0a203d 100%);
  }

  .impact-card:nth-child(1) span,
  .impact-card:nth-child(4) span {
    color: #061529;
    background: #ffffff;
  }

  .impact-card:nth-child(1) h3,
  .impact-card:nth-child(4) h3 {
    color: #ffffff;
  }

  .impact-card:nth-child(1) p,
  .impact-card:nth-child(4) p {
    color: rgba(255, 255, 255, 0.78);
  }

  .timeline li span {
    border-color: #eef1f5;
  }

  .phase-example {
    color: #ffffff;
    border-color: #061529;
    background: #061529;
  }

  .planning-panel {
    border-radius: 2.8mm;
    background:
      linear-gradient(135deg, #eef2f6 0%, #ffffff 66%);
  }

  .planning-card--dark {
    background:
      linear-gradient(135deg, #061529 0%, #102a4a 100%);
  }

  .calendar-grid .is-key {
    background: #102a4a;
  }

  .evaluation-card__percent {
    color: #ffffff;
    min-width: 17mm;
    padding: 1.5mm 2.4mm;
    text-align: center;
    border-radius: 999px;
    background: #061529;
  }

  .contact {
    padding: 7mm;
    border-radius: 3mm;
    background:
      linear-gradient(135deg, #f7f8fa 0%, #ffffff 60%);
  }

  .footer {
    border-radius: 2.4mm;
    background:
      linear-gradient(135deg, #061529 0%, #0a203d 100%);
  }
}

@media print {
  .site-header {
    margin-bottom: 4mm;
  }

  .hero {
    padding-bottom: 5mm;
  }

  .hero h1 {
    max-width: 178mm;
    font-size: 22.5pt;
    line-height: 1.02;
  }

  .hero p {
    max-width: 170mm;
    margin-top: 3mm;
    font-size: 9.8pt;
    line-height: 1.34;
  }

  .hero__eyebrow,
  .section-kicker {
    margin-bottom: 2.4mm;
    color: #334155;
    font-size: 7.5pt;
    animation: none;
  }

  .hero__eyebrow::before,
  .section-kicker::before {
    width: 10mm;
  }

  .contents {
    padding-top: 4.5mm;
    background: #ffffff;
    break-after: page;
  }

  .contents .section-heading {
    margin-bottom: 4mm;
  }

  .contents .section-heading h2 {
    font-size: 19pt;
  }

  .contents .section-heading p {
    max-width: 168mm;
    font-size: 8.8pt;
    line-height: 1.3;
  }

  .contents__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 2.4mm;
  }

  .content-link {
    min-height: 18.5mm;
    padding: 3mm;
    border: 0.35mm solid #dce3eb;
    background: #ffffff;
    break-inside: avoid;
  }

  .content-link::after {
    display: none;
  }

  .content-link span {
    color: #66758a;
    font-size: 6.4pt;
  }

  .content-link strong {
    color: #061529;
    font-size: 8.1pt;
    line-height: 1.14;
  }

  .content-link em {
    color: #475569;
    font-size: 6.5pt;
    line-height: 1.22;
  }

  .scope {
    padding-top: 0;
    background: #ffffff;
    break-after: page;
  }

  .scope__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 4mm;
  }

  .scope-card,
  .impact-card,
  .evaluation-card,
  .schedule-card {
    border: 0.35mm solid #dce3eb;
    background: #ffffff;
    break-inside: avoid;
  }

  .scope-card {
    min-height: 42mm;
    padding: 5mm;
  }

  .scope-card span,
  .impact-card span,
  .evaluation-card span,
  .schedule-card span {
    color: #66758a;
    font-size: 7pt;
  }

  .scope-card h3,
  .impact-card h3,
  .evaluation-card h3 {
    margin-top: 5mm;
    color: #061529;
    font-size: 11pt;
  }

  .scope-card p,
  .impact-card p,
  .evaluation-card p,
  .schedule-card p {
    color: #475569;
    font-size: 8pt;
    line-height: 1.34;
  }

  .offer-panel {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 6mm;
    margin-top: 5mm;
    padding: 6mm;
    color: #ffffff;
    background: #061529;
    break-inside: avoid;
  }

  .offer-panel .section-kicker {
    color: rgba(255, 255, 255, 0.76);
  }

  .offer-panel h3 {
    color: #ffffff;
    font-size: 15pt;
    line-height: 1.14;
  }

  .offer-list {
    gap: 2.4mm;
  }

  .offer-list li {
    padding: 3mm 3mm 3mm 12mm;
    border: 0.25mm solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
  }

  .offer-list li::before {
    top: 3mm;
    left: 3mm;
    width: 6mm;
    height: 6mm;
    font-size: 6.5pt;
  }

  .offer-list strong {
    color: #ffffff;
    font-size: 8.4pt;
  }

  .offer-list span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 7.2pt;
    line-height: 1.3;
  }

  .proposal-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 4mm;
  }

  .service-card--wide {
    grid-column: 1 / -1;
  }

  .service-card--detailed {
    min-height: 0;
    padding: 4.6mm;
  }

  .check-list {
    gap: 1.6mm;
    margin-top: 3mm;
    color: #475569;
    font-size: 7.3pt;
    line-height: 1.26;
  }

  .check-list--columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6mm 4mm;
  }

  .check-list li {
    padding-left: 4mm;
  }

  .check-list li::before {
    top: 0.62em;
    width: 1.5mm;
    height: 1.5mm;
    background: #061529;
  }

  .impact {
    padding-top: 0;
    color: #061529;
    background: #ffffff;
    break-after: page;
  }

  .impact .section-heading h2,
  .impact .section-kicker {
    color: #061529;
  }

  .impact .section-heading p,
  .impact-card p {
    color: #475569;
  }

  .impact__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5mm;
  }

  .impact-card {
    min-height: 34mm;
    padding: 5mm;
  }

  .methodology {
    padding-top: 0;
    break-after: auto;
  }

  .phase-example {
    margin-top: 6mm;
    padding: 1.6mm 3mm;
    color: #061529;
    font-size: 6.8pt;
    border: 0.25mm solid #dce3eb;
    background: #eef1f5;
  }

  .schedule-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5mm;
    margin-top: 3mm;
  }

  .schedule-card {
    min-height: 31mm;
    padding: 4mm;
  }

  .schedule-card strong {
    margin-top: 3mm;
    color: #061529;
    font-size: 9.5pt;
  }

  .planning-panel {
    grid-template-columns: 0.66fr 1.34fr;
    gap: 5mm;
    margin-top: 5mm;
    padding: 5mm;
    border: 0.35mm solid #dce3eb;
    background: #f7f8fa;
    break-inside: avoid;
  }

  .planning-panel__intro h3 {
    color: #061529;
    font-size: 13.5pt;
  }

  .planning-panel__intro p {
    color: #475569;
    font-size: 8pt;
    line-height: 1.32;
  }

  .planning-grid {
    grid-template-columns: 0.82fr 1.18fr 0.82fr;
    gap: 3mm;
  }

  .planning-card,
  .calendar-card {
    min-height: 35mm;
    padding: 4mm;
    border: 0.35mm solid #dce3eb;
    background: #ffffff;
    break-inside: avoid;
  }

  .planning-card h4 {
    color: #061529;
    font-size: 10.5pt;
  }

  .planning-card p {
    color: #475569;
    font-size: 7.4pt;
    line-height: 1.3;
  }

  .planning-card--dark {
    color: #ffffff;
    background: #061529;
  }

  .planning-card--dark h4 {
    color: #ffffff;
  }

  .planning-card--dark p {
    color: rgba(255, 255, 255, 0.78);
  }

  .calendar-card__head {
    margin-bottom: 3mm;
  }

  .calendar-card__head strong {
    color: #061529;
    font-size: 9pt;
  }

  .calendar-card__head span {
    color: #66758a;
    font-size: 6pt;
  }

  .calendar-grid {
    gap: 1mm;
  }

  .calendar-grid b,
  .calendar-grid span {
    min-height: 5.2mm;
    font-size: 6pt;
    border-radius: 1.2mm;
  }

  .calendar-grid b {
    color: #061529;
    font-size: 5.3pt;
    background: #eef1f5;
  }

  .calendar-grid span {
    border: 0.25mm solid #dce3eb;
    background: #ffffff;
  }

  .calendar-grid .is-key {
    color: #ffffff;
    border-color: #061529;
    background: #061529;
  }

  .evaluation {
    padding-top: 0;
    background: #ffffff;
  }

  .evaluation__grid {
    grid-template-columns: 0.72fr 1fr;
    gap: 9mm;
    align-items: start;
  }

  .evaluation-cards {
    gap: 3mm;
  }

  .evaluation-card {
    position: relative;
    min-height: 27mm;
    padding: 4mm 5mm;
  }

  .evaluation-card h3 {
    margin-top: 3mm;
  }

  .evaluation-card__percent {
    top: 4mm;
    right: 5mm;
    color: #061529;
    font-size: 15pt;
  }

  .footer__grid {
    display: grid;
    grid-template-columns: 0.42fr 1fr;
    gap: 6mm;
    align-items: center;
    padding: 0 5mm;
  }

  .footer__contact {
    justify-content: flex-start;
    gap: 3mm 7mm;
    font-size: 7pt;
    line-height: 1.2;
  }

  .footer__contact a {
    white-space: nowrap;
  }

  .content-link,
  .scope-card,
  .offer-panel,
  .offer-list li,
  .impact-card,
  .schedule-card,
  .planning-panel,
  .planning-card,
  .calendar-card,
  .evaluation-card {
    break-inside: avoid;
  }
}

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

  body {
    font-size: 9.6pt;
    line-height: 1.32;
  }

  .site-header {
    margin-bottom: 3mm;
  }

  .navbar {
    min-height: 11mm;
    padding: 0 3.5mm;
    border-radius: 2mm;
  }

  .brand__mark,
  .site-header.is-scrolled .brand__mark {
    width: 7.5mm;
    height: 7.5mm;
    border-radius: 1.2mm;
  }

  .brand__name {
    font-size: 11.5pt;
  }

  .brand__subtitle {
    font-size: 6.8pt;
  }

  .hero {
    margin-bottom: 4mm;
    padding: 6mm 8mm 7mm;
    border-radius: 2.6mm;
  }

  .hero__eyebrow {
    color: rgba(255, 255, 255, 0.7);
  }

  .hero h1 {
    max-width: 168mm;
    font-size: 20.5pt;
  }

  .hero p {
    max-width: 182mm;
    font-size: 8.8pt;
    line-height: 1.28;
  }

  .about,
  .scope,
  .services,
  .impact,
  .contents {
    break-after: auto;
  }

  .about,
  .scope,
  .services,
  .impact,
  .methodology,
  .evaluation,
  .contact {
    margin-top: 4mm;
  }

  .section-heading,
  .about__copy,
  .contact__copy {
    max-width: none;
    margin-bottom: 4mm;
  }

  .section-heading::before,
  .about__copy::before,
  .contact__copy::before {
    width: 11mm;
    height: 0.45mm;
    margin-bottom: 2mm;
  }

  .section-kicker {
    margin-bottom: 1.8mm;
    font-size: 6.8pt;
  }

  .section-heading h2,
  .about__copy h2,
  .contact__copy h2 {
    font-size: 18.5pt;
    line-height: 1.04;
  }

  .section-heading p,
  .about__copy p,
  .contact__copy p {
    margin-top: 2.2mm;
    font-size: 8.5pt;
    line-height: 1.28;
  }

  .contents {
    padding-top: 3mm;
  }

  .contents .section-heading {
    margin-bottom: 3mm;
  }

  .contents__grid {
    gap: 2mm;
  }

  .content-link {
    min-height: 15.5mm;
    padding: 2.4mm;
  }

  .content-link span,
  .scope-card span,
  .impact-card span,
  .evaluation-card span,
  .schedule-card span {
    min-width: 7mm;
    min-height: 4.3mm;
    padding: 0 1.3mm;
    font-size: 5.8pt;
  }

  .content-link strong {
    font-size: 7.2pt;
  }

  .content-link em {
    font-size: 5.9pt;
  }

  .about__grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 7mm;
  }

  .about__panel,
  .contact-form,
  .service-card {
    padding: 4mm;
  }

  .about__panel h3 {
    font-size: 13pt;
  }

  .about__panel p {
    font-size: 8.3pt;
    line-height: 1.28;
  }

  .about__values {
    gap: 2mm;
    margin-top: 3mm;
  }

  .about__values span {
    padding: 2mm 2.8mm;
    font-size: 7.1pt;
  }

  .scope__grid {
    gap: 3mm;
  }

  .scope-card {
    min-height: 30mm;
    padding: 4mm;
  }

  .scope-card h3,
  .impact-card h3,
  .evaluation-card h3 {
    margin-top: 3mm;
    font-size: 9.8pt;
  }

  .scope-card p,
  .impact-card p,
  .evaluation-card p,
  .schedule-card p {
    font-size: 7.1pt;
    line-height: 1.28;
  }

  .offer-panel {
    gap: 5mm;
    margin-top: 4mm;
    padding: 5mm;
  }

  .offer-panel h3 {
    font-size: 12.5pt;
  }

  .offer-list {
    gap: 2mm;
  }

  .offer-list li {
    padding: 2.4mm 2.6mm 2.4mm 10.5mm;
  }

  .offer-list li::before {
    top: 2.4mm;
    left: 2.4mm;
    width: 5.2mm;
    height: 5.2mm;
  }

  .offer-list strong {
    font-size: 7.6pt;
  }

  .offer-list span {
    font-size: 6.6pt;
  }

  .services .section-heading h2 {
    font-size: 19.5pt;
  }

  .proposal-services {
    gap: 3mm;
  }

  .service-card--detailed {
    padding: 3.6mm;
  }

  .service-card__icon {
    width: 8.2mm;
    height: 8.2mm;
    margin-bottom: 2.8mm;
    border-radius: 1.5mm;
  }

  .service-card__icon svg {
    width: 4.5mm;
    height: 4.5mm;
  }

  .service-card h3 {
    font-size: 10.6pt;
  }

  .service-card p {
    margin-top: 1.8mm;
    font-size: 7.2pt;
    line-height: 1.24;
  }

  .check-list {
    gap: 1.2mm;
    margin-top: 2.2mm;
    font-size: 6.5pt;
    line-height: 1.22;
  }

  .check-list li {
    padding-left: 3.4mm;
  }

  .impact {
    padding: 4.5mm;
    border-radius: 2.6mm;
  }

  .impact__grid {
    gap: 4mm;
  }

  .impact-card {
    min-height: 27mm;
    padding: 4mm;
  }

  .methodology .section-heading h2 {
    font-size: 19pt;
  }

  .timeline {
    margin-top: 5mm;
  }

  .timeline::before {
    top: 5.3mm;
  }

  .timeline li {
    gap: 1.8mm;
  }

  .timeline li span {
    width: 11mm;
    height: 11mm;
    border-width: 1.2mm;
    font-size: 8.4pt;
  }

  .timeline li strong {
    font-size: 9.4pt;
  }

  .timeline li p {
    max-width: 32mm;
    font-size: 6.8pt;
    line-height: 1.2;
  }

  .phase-example {
    margin-top: 4mm;
    padding: 1.2mm 2.4mm;
    font-size: 6.2pt;
  }

  .schedule-grid {
    gap: 3mm;
  }

  .schedule-card {
    min-height: 25mm;
    padding: 3.2mm;
  }

  .schedule-card strong {
    margin-top: 2.2mm;
    font-size: 8.7pt;
  }

  .planning-panel {
    grid-template-columns: 0.58fr 1.42fr;
    gap: 4mm;
    margin-top: 4mm;
    padding: 4mm;
  }

  .planning-panel__intro h3 {
    font-size: 12.2pt;
  }

  .planning-panel__intro p {
    font-size: 7.1pt;
    line-height: 1.24;
  }

  .planning-grid {
    gap: 2.4mm;
  }

  .planning-card,
  .calendar-card {
    min-height: 29mm;
    padding: 3.2mm;
  }

  .planning-card h4 {
    font-size: 9.5pt;
  }

  .planning-card p {
    font-size: 6.7pt;
    line-height: 1.22;
  }

  .calendar-card__head {
    margin-bottom: 2mm;
  }

  .calendar-grid {
    gap: 0.7mm;
  }

  .calendar-grid b,
  .calendar-grid span {
    min-height: 4.4mm;
    border-radius: 1mm;
    font-size: 5.3pt;
  }

  .evaluation {
    padding-top: 0;
  }

  .evaluation__grid {
    grid-template-columns: 0.56fr 1.44fr;
    gap: 5mm;
  }

  .evaluation .section-heading h2 {
    font-size: 18pt;
  }

  .evaluation-cards {
    gap: 3mm;
  }

  .evaluation-card {
    min-height: 25mm;
    padding: 3.8mm 4.5mm;
  }

  .evaluation-card h3 {
    margin-top: 2mm;
  }

  .evaluation-card__percent {
    top: 3mm;
    right: 4mm;
    min-width: 13mm;
    padding: 1mm 2mm;
    font-size: 10pt;
  }

  .contact {
    min-height: 138mm;
    padding: 5mm;
  }

  .contact__grid {
    grid-template-columns: 0.68fr 1fr;
    gap: 7mm;
  }

  .contact__copy h2 {
    font-size: 20pt;
  }

  .contact__details {
    gap: 1.4mm;
    margin-top: 4mm;
  }

  .contact__details a {
    font-size: 8.3pt;
  }

  .contact-form label {
    gap: 1mm;
    margin-bottom: 2.2mm;
  }

  .contact-form span {
    font-size: 7.3pt;
  }

  .contact-form input {
    min-height: 8.5mm;
  }

  .contact-form textarea {
    min-height: 42mm;
  }

  .footer {
    margin-top: 6mm;
  }

  .footer__grid {
    min-height: 14mm;
  }
}

/* Corporate presentation print layer */
@media print {
  @page {
    size: letter landscape;
    margin: 7mm;
  }

  html,
  body {
    background: #e9eef4;
  }

  body {
    color: #071529;
    font-size: 9.15pt;
    line-height: 1.28;
  }

  .container,
  .hero__content {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .site-header {
    margin: 0 0 2.5mm;
  }

  .navbar {
    min-height: 10.5mm;
    padding: 0 4mm;
    color: #ffffff;
    border: 0;
    border-radius: 2.2mm;
    background:
      linear-gradient(90deg, #071529 0%, #0d2745 64%, #1d3758 100%);
  }

  .brand__mark,
  .site-header.is-scrolled .brand__mark {
    width: 7.4mm;
    height: 7.4mm;
    color: #071529;
    border: 0.35mm solid rgba(255, 255, 255, 0.82);
    border-radius: 1.2mm;
    background: #ffffff;
  }

  .brand__mark img {
    width: 6.2mm;
    height: 6.2mm;
  }

  .brand__name {
    font-size: 11.8pt;
    letter-spacing: 0.02em;
  }

  .brand__subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 6.7pt;
  }

  .hero {
    position: relative;
    min-height: 50mm;
    margin: 0 0 3.2mm;
    padding: 7mm 8mm;
    overflow: hidden;
    color: #ffffff;
    border: 0.35mm solid rgba(255, 255, 255, 0.16);
    border-radius: 3mm;
    background:
      linear-gradient(110deg, rgba(7, 21, 41, 0.98) 0%, rgba(8, 30, 55, 0.96) 58%, rgba(31, 57, 86, 0.92) 100%),
      linear-gradient(135deg, #071529, #163456);
  }

  .hero::before,
  .hero::after {
    position: absolute;
    display: block;
    content: "";
    pointer-events: none;
  }

  .hero::before {
    inset: 0 0 0 auto;
    width: 94mm;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 45%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 0.25mm, transparent 0.25mm 8mm);
    opacity: 0.46;
  }

  .hero::after {
    top: -30mm;
    right: -16mm;
    width: 86mm;
    height: 86mm;
    border: 0.45mm solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
  }

  .hero__content,
  .hero__eyebrow,
  .hero h1,
  .hero p {
    position: relative;
    z-index: 1;
  }

  .hero__eyebrow {
    margin-bottom: 2.4mm;
    color: rgba(255, 255, 255, 0.7);
    font-size: 6.7pt;
  }

  .hero h1 {
    max-width: 160mm;
    color: #ffffff;
    font-size: 22.4pt;
    line-height: 1.02;
  }

  .hero p {
    max-width: 172mm;
    margin-top: 3mm;
    color: rgba(255, 255, 255, 0.78);
    font-size: 9.2pt;
    line-height: 1.34;
  }

  .contents,
  .about,
  .scope,
  .services,
  .impact,
  .methodology,
  .evaluation,
  .contact {
    position: relative;
    margin: 3mm 0 0;
    padding: 5mm;
    overflow: hidden;
    border: 0.28mm solid #cfd8e3;
    border-radius: 3mm;
    background:
      linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  .contents::before,
  .about::before,
  .scope::before,
  .services::before,
  .impact::before,
  .methodology::before,
  .evaluation::before,
  .contact::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1.15mm;
    background: linear-gradient(90deg, #071529 0%, #1a3c61 56%, #c5ced8 100%);
    content: "";
  }

  .section-heading,
  .about__copy,
  .contact__copy {
    max-width: none;
    margin: 0 0 3.4mm;
    padding-left: 4mm;
    border-left: 0.85mm solid #102a4a;
  }

  .section-heading::before,
  .about__copy::before,
  .contact__copy::before {
    display: none;
  }

  .section-kicker {
    margin-bottom: 1.3mm;
    color: #627186;
    font-size: 6.4pt;
    letter-spacing: 0.12em;
  }

  .section-heading h2,
  .about__copy h2,
  .contact__copy h2 {
    color: #071529;
    font-size: 17.2pt;
    line-height: 1.05;
  }

  .section-heading p,
  .about__copy p,
  .contact__copy p {
    max-width: 196mm;
    margin-top: 1.8mm;
    color: #536174;
    font-size: 7.8pt;
    line-height: 1.26;
  }

  .contents {
    padding-top: 4.2mm;
    min-height: 118mm;
  }

  .contents::after {
    position: absolute;
    right: 7mm;
    bottom: 5mm;
    color: rgba(7, 21, 41, 0.055);
    font-size: 20pt;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    content: "Propuesta ejecutiva";
  }

  .contents__grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 1.9mm;
  }

  .content-link {
    min-height: 19mm;
    gap: 1.2mm;
    padding: 2.4mm;
    border-color: #d7e0ea;
    border-radius: 2mm;
    background:
      linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  }

  .content-link::before {
    height: 0.75mm;
    background: linear-gradient(90deg, #071529, #c5ced8);
  }

  .content-link span,
  .scope-card span,
  .impact-card span,
  .evaluation-card span,
  .schedule-card span {
    display: inline-grid;
    width: fit-content;
    min-width: 6.7mm;
    min-height: 4mm;
    place-items: center;
    padding: 0 1.2mm;
    color: #ffffff;
    border-radius: 999px;
    background: #071529;
  }

  .content-link strong {
    color: #071529;
    font-size: 6.8pt;
    line-height: 1.14;
  }

  .content-link em {
    color: #627186;
    font-size: 5.6pt;
    line-height: 1.2;
  }

  .about__grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 5.5mm;
    align-items: stretch;
  }

  .about__copy p + p {
    margin-top: 2mm;
  }

  .about__panel,
  .contact-form,
  .service-card,
  .scope-card,
  .impact-card,
  .schedule-card,
  .evaluation-card,
  .planning-card,
  .calendar-card {
    border: 0.28mm solid #d3dde8;
    border-radius: 2.2mm;
    background:
      linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  }

  .about__panel {
    padding: 4mm;
  }

  .about__panel::before {
    left: 0;
    right: 0;
    height: 1mm;
    background: linear-gradient(90deg, #071529, #c5ced8);
  }

  .about__panel h3 {
    font-size: 12.5pt;
  }

  .about__panel p {
    font-size: 7.4pt;
    line-height: 1.28;
  }

  .about__values {
    gap: 1.8mm;
    margin-top: 3mm;
  }

  .about__values span {
    padding: 1.8mm 2.4mm;
    color: #071529;
    font-size: 6.5pt;
    border-left: 1mm solid #102a4a;
    background: #eef2f6;
  }

  .scope__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4mm;
  }

  .scope-card {
    min-height: 26mm;
    padding: 3.2mm;
  }

  .scope-card h3,
  .impact-card h3,
  .evaluation-card h3 {
    margin-top: 2.4mm;
    color: #071529;
    font-size: 8.8pt;
    line-height: 1.15;
  }

  .scope-card p,
  .impact-card p,
  .evaluation-card p,
  .schedule-card p {
    margin-top: 1.5mm;
    color: #5e6c7e;
    font-size: 6.6pt;
    line-height: 1.22;
  }

  .offer-panel {
    grid-template-columns: 0.56fr 1.44fr;
    gap: 4mm;
    margin-top: 3mm;
    padding: 4mm;
    border: 0;
    border-radius: 2.6mm;
    background:
      linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 42%),
      #071529;
  }

  .offer-panel .section-kicker {
    color: rgba(255, 255, 255, 0.62);
  }

  .offer-panel h3 {
    font-size: 11.8pt;
  }

  .offer-list {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.8mm;
  }

  .offer-list li {
    min-height: 18mm;
    padding: 2.2mm;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
  }

  .offer-list li::before {
    display: none;
  }

  .offer-list strong {
    font-size: 6.7pt;
  }

  .offer-list span {
    margin-top: 1mm;
    font-size: 5.7pt;
    line-height: 1.18;
  }

  .proposal-services {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5mm;
  }

  .services {
    break-before: page;
  }

  .service-card--wide {
    grid-column: 1 / -1;
    min-height: 30mm;
  }

  .service-card--wide .check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card--detailed {
    padding: 3.2mm;
  }

  .service-card__icon {
    width: 7.2mm;
    height: 7.2mm;
    margin-bottom: 2mm;
    color: #ffffff;
    border-color: #071529;
    border-radius: 1.4mm;
    background: #071529;
  }

  .service-card__icon svg {
    width: 4mm;
    height: 4mm;
  }

  .service-card h3 {
    font-size: 9.2pt;
    line-height: 1.16;
  }

  .service-card p {
    margin-top: 1.4mm;
    font-size: 6.5pt;
    line-height: 1.2;
  }

  .check-list {
    gap: 0.9mm;
    margin-top: 1.8mm;
    color: #5e6c7e;
    font-size: 5.75pt;
    line-height: 1.16;
  }

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

  .check-list li {
    padding-left: 2.6mm;
  }

  .check-list li::before {
    top: 0.55em;
    width: 1.2mm;
    height: 1.2mm;
    background: #102a4a;
  }

  .impact {
    color: #071529;
    background:
      linear-gradient(135deg, #f7f9fc 0%, #ffffff 70%);
    break-before: page;
  }

  .impact .section-heading h2,
  .impact .section-kicker {
    color: #071529;
  }

  .impact .section-heading p {
    color: #536174;
  }

  .impact__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3mm;
  }

  .impact-card {
    min-height: 24mm;
    padding: 3.4mm;
  }

  .impact-card:nth-child(1),
  .impact-card:nth-child(4) {
    border-color: #071529;
    background:
      linear-gradient(135deg, #071529 0%, #112c4d 100%);
  }

  .impact-card:nth-child(1) span,
  .impact-card:nth-child(4) span {
    color: #071529;
    background: #ffffff;
  }

  .impact-card:nth-child(1) h3,
  .impact-card:nth-child(4) h3 {
    color: #ffffff;
  }

  .impact-card:nth-child(1) p,
  .impact-card:nth-child(4) p {
    color: rgba(255, 255, 255, 0.76);
  }

  .timeline {
    margin-top: 4mm;
    padding: 3.4mm;
    border: 0.28mm solid #d3dde8;
    border-radius: 2.4mm;
    background: #f8fafc;
  }

  .timeline::before {
    top: 8.7mm;
    left: 9%;
    right: 9%;
    height: 0.35mm;
    background: linear-gradient(90deg, transparent, #9fb0c3, #071529, #9fb0c3, transparent);
  }

  .timeline li {
    gap: 1.4mm;
  }

  .timeline li span {
    width: 10mm;
    height: 10mm;
    color: #ffffff;
    border: 1.1mm solid #ffffff;
    font-size: 7.8pt;
    background: #071529;
  }

  .timeline li strong {
    color: #071529;
    font-size: 8.4pt;
  }

  .timeline li p {
    max-width: 33mm;
    color: #5e6c7e;
    font-size: 6.2pt;
    line-height: 1.18;
  }

  .phase-example {
    margin-top: 3mm;
    padding: 1mm 2.2mm;
    color: #ffffff;
    border: 0;
    background: #071529;
  }

  .schedule-grid {
    gap: 2.4mm;
    margin-top: 2.4mm;
  }

  .schedule-card {
    min-height: 22mm;
    padding: 3mm;
  }

  .schedule-card strong {
    margin-top: 1.8mm;
    color: #071529;
    font-size: 8pt;
  }

  .planning-panel {
    grid-template-columns: 0.56fr 1.44fr;
    gap: 3mm;
    margin-top: 3mm;
    padding: 3.4mm;
    border-color: #cfd8e3;
    border-radius: 2.6mm;
    background:
      linear-gradient(135deg, #eef2f6 0%, #ffffff 72%);
  }

  .planning-panel__intro h3 {
    color: #071529;
    font-size: 11.2pt;
  }

  .planning-panel__intro p {
    font-size: 6.4pt;
    line-height: 1.18;
  }

  .planning-grid {
    gap: 2mm;
  }

  .planning-card,
  .calendar-card {
    min-height: 24mm;
    padding: 2.8mm;
  }

  .planning-card h4 {
    font-size: 8.4pt;
  }

  .planning-card p {
    margin-top: 1.5mm;
    font-size: 6.1pt;
    line-height: 1.16;
  }

  .planning-card--dark {
    border-color: #071529;
    background:
      linear-gradient(135deg, #071529 0%, #113153 100%);
  }

  .calendar-card__head {
    margin-bottom: 1.8mm;
  }

  .calendar-card__head strong {
    font-size: 7.8pt;
  }

  .calendar-card__head span {
    font-size: 5.4pt;
  }

  .calendar-grid {
    gap: 0.65mm;
  }

  .calendar-grid b,
  .calendar-grid span {
    min-height: 3.8mm;
    border-radius: 0.8mm;
    font-size: 4.85pt;
  }

  .calendar-grid .is-key {
    border-color: #071529;
    background: #071529;
  }

  .evaluation {
    padding-top: 5mm;
  }

  .evaluation__grid {
    grid-template-columns: 0.62fr 1.38fr;
    gap: 4mm;
  }

  .evaluation .section-heading h2 {
    font-size: 15.8pt;
  }

  .evaluation-cards {
    gap: 2.4mm;
  }

  .evaluation-card {
    min-height: 20mm;
    padding: 2.8mm 3.8mm;
  }

  .evaluation-card__percent {
    top: 2.8mm;
    right: 3.6mm;
    min-width: 12mm;
    padding: 0.9mm 1.8mm;
    color: #ffffff;
    font-size: 8.2pt;
    text-align: center;
    border-radius: 999px;
    background: #071529;
  }

  .contact {
    min-height: 158mm;
    margin-top: 2.5mm;
    padding: 6mm;
    color: #ffffff;
    border-color: #071529;
    background:
      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 32%),
      linear-gradient(135deg, #071529 0%, #102a4a 100%);
  }

  .contact::before {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.28) 100%);
  }

  .contact::after {
    position: absolute;
    left: 7mm;
    bottom: 7mm;
    color: rgba(255, 255, 255, 0.055);
    font-size: 30pt;
    font-weight: 800;
    letter-spacing: 0.08em;
    content: "ESTRATTIVA";
  }

  .contact__grid {
    position: relative;
    z-index: 1;
    grid-template-columns: 0.56fr 1fr;
    gap: 3.8mm;
  }

  .contact__copy h2 {
    color: #ffffff;
    font-size: 15.8pt;
  }

  .contact__copy {
    border-left-color: rgba(255, 255, 255, 0.72);
  }

  .contact__copy p,
  .contact .section-kicker {
    color: rgba(255, 255, 255, 0.72);
  }

  .contact__details {
    gap: 1.2mm;
    margin-top: 3mm;
  }

  .contact__details a {
    padding: 1.7mm 2.2mm;
    color: #ffffff;
    font-size: 7.2pt;
    border: 0.28mm solid rgba(255, 255, 255, 0.18);
    border-radius: 1.8mm;
    background: rgba(255, 255, 255, 0.08);
  }

  .contact-card {
    gap: 1mm;
    padding: 2.2mm;
    border: 0.28mm solid rgba(255, 255, 255, 0.18);
    border-radius: 1.8mm;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .contact-card span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 5.9pt;
  }

  .contact-card__heading {
    gap: 1.4mm;
  }

  .contact-card__icon {
    width: 6mm;
    height: 6mm;
    flex-basis: 6mm;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
  }

  .contact-card__icon svg {
    width: 3.4mm;
    height: 3.4mm;
  }

  .contact-card a {
    padding: 0;
    color: #ffffff;
    font-size: 7.2pt;
    border: 0;
    background: transparent;
  }

  .contact-card__primary {
    font-size: 8.4pt;
  }

  .contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3mm;
    row-gap: 1.5mm;
    padding: 3.2mm;
    background: rgba(255, 255, 255, 0.98);
  }

  .contact-form label {
    gap: 0.8mm;
    margin-bottom: 0;
  }

  .contact-form label:nth-of-type(4) {
    grid-column: 1 / -1;
  }

  .contact-form span {
    font-size: 6.6pt;
  }

  .contact-form input {
    min-height: 6.4mm;
  }

  .contact-form textarea {
    min-height: 16mm;
  }

  .contact-form input,
  .contact-form textarea {
    border-color: #d3dde8;
    border-radius: 1.6mm;
    background: #ffffff;
  }

  .contact-form .btn {
    display: none !important;
  }

  .footer {
    margin-top: 3mm;
    color: #ffffff;
    border-radius: 2.4mm;
    background:
      linear-gradient(90deg, #071529 0%, #102a4a 100%);
  }

  .footer__grid {
    min-height: 11mm;
    padding: 0 4mm;
  }

  .footer__brand img {
    width: 8mm;
    height: 6.4mm;
    border-radius: 1.2mm;
  }
}
