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

:root {
  --navy-950: #061522;
  --navy-900: #081e31;
  --navy-800: #0c2b43;
  --navy-700: #123d5d;
  --ink: #10283b;
  --muted: #5d7181;
  --line: #d8e3e9;
  --line-dark: rgba(214, 232, 241, 0.2);
  --paper: #f7fafb;
  --white: #ffffff;
  --blue: #2b78a9;
  --blue-soft: #e6f1f7;
  --red: #e53b35;
  --red-dark: #b92b2a;
  --green: #2c8766;
  --shadow-sm: 0 10px 30px rgba(9, 35, 54, 0.08);
  --shadow-md: 0 20px 60px rgba(9, 35, 54, 0.13);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--red);
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

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

.section {
  padding: 112px 0;
}

.section--tight {
  padding: 72px 0;
}

.section--dark {
  color: var(--white);
  background: var(--navy-900);
}

.section--blueprint {
  position: relative;
  isolation: isolate;
  background-color: var(--navy-800);
  background-image: linear-gradient(rgba(188, 224, 240, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(188, 224, 240, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
}

.section--blueprint::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(110deg, rgba(6, 21, 34, 0.3), transparent 64%);
  content: '';
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: '';
}

.section--dark .eyebrow,
.page-hero .eyebrow {
  color: #ff7169;
}

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

.display,
h1,
h2,
h3,
h4 {
  font-family: 'Manrope', Arial, sans-serif;
  letter-spacing: -0.045em;
}

.display {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: clamp(2.9rem, 7vw, 6.6rem);
  font-weight: 800;
  line-height: 0.99;
}

h1,
h2,
h3,
h4 {
  color: var(--navy-900);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.page-hero h1 {
  color: var(--white);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.05rem, 4vw, 3.55rem);
  font-weight: 800;
  line-height: 1.06;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.lede {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.section--dark .lede,
.page-hero .lede {
  color: rgba(255, 255, 255, 0.74);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.section-head__copy {
  max-width: 680px;
}

.section-head h2 {
  margin-bottom: 14px;
}

.section-head .lede {
  max-width: 520px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}

.text-link .arrow {
  transition: transform 260ms var(--ease);
}

.text-link:hover .arrow,
.button:hover .arrow {
  transform: translateX(5px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms var(--ease), box-shadow 220ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 24px rgba(229, 59, 53, 0.22);
}

.button--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 14px 28px rgba(229, 59, 53, 0.3);
}

.button--blue {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(43, 120, 169, 0.2);
}

.button--blue:hover {
  background: var(--navy-700);
}

.button--outline {
  color: var(--navy-900);
  border-color: var(--line);
  background: transparent;
}

.button--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--white);
}

.button--light {
  color: var(--navy-900);
  background: var(--white);
}

.button--light:hover {
  background: var(--blue-soft);
}

.button--ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.button--ghost-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.arrow {
  display: inline-block;
  font-size: 1.1em;
  line-height: 1;
  transition: transform 220ms var(--ease);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease, color 300ms ease;
}

.site-header.is-scrolled,
.site-header--solid {
  color: var(--white);
  border-color: rgba(215, 232, 240, 0.13);
  background: rgba(6, 21, 34, 0.94);
  box-shadow: 0 12px 35px rgba(5, 19, 30, 0.15);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand__logo {
  width: 184px;
  height: 104px;
  padding: 5px;
  border-radius: 4px;
  background: var(--white);
  object-fit: contain;
  object-position: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-left: auto;
}

.site-nav__link {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  transition: color 200ms ease;
}

.site-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.site-nav__link:hover,
.site-nav__link[aria-current='page'] {
  color: var(--white);
}

.site-nav__link:hover::after,
.site-nav__link[aria-current='page']::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__cta {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  color: var(--white);
  background: transparent;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: auto;
  background: currentColor;
  transition: transform 240ms var(--ease), opacity 200ms ease;
}

.menu-toggle__lines {
  position: relative;
}

.menu-toggle__lines::before,
.menu-toggle__lines::after {
  position: absolute;
  left: 0;
  content: '';
}

.menu-toggle__lines::before {
  top: -7px;
}

.menu-toggle__lines::after {
  top: 7px;
}

.menu-toggle[aria-expanded='true'] .menu-toggle__lines {
  background: transparent;
}

.menu-toggle[aria-expanded='true'] .menu-toggle__lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded='true'] .menu-toggle__lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: min(880px, 100svh);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero__media,
.hero__media::after {
  position: absolute;
  inset: 0;
}

.hero__media::after {
  background: linear-gradient(90deg, rgba(4, 18, 30, 0.97) 0%, rgba(5, 24, 40, 0.85) 42%, rgba(5, 24, 40, 0.35) 75%, rgba(5, 24, 40, 0.5) 100%), linear-gradient(0deg, rgba(4, 18, 30, 0.52), transparent 52%);
  content: '';
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  transform: scale(1.04);
  animation: hero-breathe 16s ease-in-out infinite alternate;
}

.hero__grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.38;
  background-image: linear-gradient(rgba(179, 217, 235, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(179, 217, 235, 0.09) 1px, transparent 1px);
  background-position: center;
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 154px 0 96px;
}

.hero__copy {
  max-width: 720px;
}

.hero .display {
  margin-bottom: 24px;
  color: var(--white);
}

.hero__statement {
  max-width: 510px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero__statement strong {
  color: var(--white);
  font-weight: 600;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 68px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero__meta span::before {
  width: 7px;
  height: 7px;
  border: 1px solid var(--red);
  border-radius: 50%;
  content: '';
}

.hero__corner {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 48px;
  width: 115px;
  height: 115px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  opacity: 0.7;
}

.hero__corner::before,
.hero__corner::after {
  position: absolute;
  content: '';
}

.hero__corner::before {
  top: 50%;
  right: -16px;
  left: -16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.hero__corner::after {
  top: -16px;
  bottom: -16px;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}

@keyframes hero-breathe {
  from { transform: scale(1.04); }
  to { transform: scale(1.09); }
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 80px;
  align-items: start;
}

.intro-copy h2 {
  max-width: 600px;
}

.intro-copy .lede {
  max-width: 590px;
}

.intro-aside {
  position: relative;
  padding: 34px 0 0 34px;
  border-left: 1px solid var(--line);
}

.intro-aside::before {
  position: absolute;
  top: 0;
  left: -1px;
  width: 3px;
  height: 74px;
  background: var(--red);
  content: '';
}

.intro-aside strong {
  display: block;
  margin-bottom: 11px;
  color: var(--navy-900);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.intro-aside p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 300ms var(--ease), box-shadow 300ms ease, border-color 300ms ease;
}

.service-card:hover {
  border-color: rgba(43, 120, 169, 0.38);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.service-card__image {
  position: relative;
  height: 156px;
  overflow: hidden;
  background: var(--navy-800);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 650ms var(--ease);
}

.service-card:hover .service-card__image img {
  transform: scale(1.04);
}

.service-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 21, 34, 0.65), transparent 70%);
  content: '';
}

.service-card__number {
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 16px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
}

.service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 22px 22px;
}

.service-card__body h3 {
  font-size: 1.2rem;
}

.service-card__body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
}

.service-card__link .arrow {
  transition: transform 220ms var(--ease);
}

.service-card:hover .service-card__link .arrow {
  transform: translateX(4px);
}

.process-section {
  position: relative;
  overflow: hidden;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 90px;
  align-items: start;
}

.process-layout h2 {
  max-width: 430px;
}

.process-list {
  position: relative;
  display: grid;
  gap: 0;
}

.process-list::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 20px;
  width: 1px;
  background: rgba(255, 255, 255, 0.23);
  content: '';
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 23px;
  padding: 0 0 43px;
}

.process-item:last-child {
  padding-bottom: 0;
}

.process-item__number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-900);
  font-size: 0.73rem;
  font-weight: 700;
}

.process-item h3 {
  margin: 2px 0 8px;
  color: var(--white);
  font-size: 1.3rem;
}

.process-item p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-item {
  min-height: 235px;
  padding: 32px 30px 30px 0;
}

.why-item + .why-item {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.why-item__icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(43, 120, 169, 0.3);
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-soft);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.why-item h3 {
  font-size: 1.1rem;
}

.why-item p {
  max-width: 280px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.preview-tile {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--navy-800);
}

.preview-tile--large {
  min-height: 500px;
}

.preview-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 700ms var(--ease);
}

.preview-tile:hover img {
  transform: scale(1.04);
}

.preview-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 18, 30, 0.88), rgba(4, 18, 30, 0.05) 70%);
  content: '';
}

.preview-tile__content {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  left: 28px;
  color: var(--white);
}

.preview-tile__content h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.preview-tile__content p {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
}

.final-cta::before {
  position: absolute;
  top: -160px;
  right: -80px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(152, 204, 228, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(152, 204, 228, 0.03), 0 0 0 60px rgba(152, 204, 228, 0.025), 0 0 0 90px rgba(152, 204, 228, 0.02);
  content: '';
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.final-cta h2 {
  max-width: 690px;
  margin-bottom: 14px;
}

.final-cta p {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.final-cta .button-row {
  flex: 0 0 auto;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 510px;
  align-items: flex-end;
  overflow: hidden;
  padding: 160px 0 78px;
  color: var(--white);
  background: var(--navy-900);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(190, 222, 237, 0.065) 1px, transparent 1px), linear-gradient(90deg, rgba(190, 222, 237, 0.065) 1px, transparent 1px);
  background-size: 52px 52px;
  content: '';
  mask-image: linear-gradient(90deg, black, transparent 90%);
}

.page-hero::after {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(255, 255, 255, 0.025), 0 0 0 52px rgba(255, 255, 255, 0.02);
  content: '';
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.page-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 1.02;
}

.page-hero__content .lede {
  max-width: 700px;
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.breadcrumbs a {
  transition: color 180ms ease;
}

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

.breadcrumbs__current {
  color: var(--white);
}

.breadcrumbs__separator {
  color: var(--red);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--navy-800);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  opacity: 0.82;
}

.about-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 21, 34, 0.78), transparent 62%);
  content: '';
}

.about-visual__label {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  left: 28px;
  color: var(--white);
}

.about-visual__label strong {
  display: block;
  margin-bottom: 6px;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.about-visual__label span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.leadership {
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 44px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--white) 0%, var(--blue-soft) 100%);
  box-shadow: var(--shadow-sm);
}

.leadership__copy {
  max-width: 760px;
}

.leadership h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  line-height: 1.12;
}

.leadership__role {
  margin: 0;
  color: var(--red);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.value-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 300ms var(--ease), box-shadow 300ms ease;
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.value-card__index {
  display: block;
  margin-bottom: 40px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.value-card h3 {
  margin-bottom: 11px;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.statement-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.statement-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.statement-card::after {
  position: absolute;
  right: -35px;
  bottom: -60px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(43, 120, 169, 0.18);
  border-radius: 50%;
  content: '';
}

.statement-card h3 {
  font-size: 1.7rem;
}

.statement-card p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
}

.statement-card--accent {
  color: var(--white);
  background: var(--navy-800);
}

.statement-card--accent h3 {
  color: var(--white);
}

.statement-card--accent p {
  color: rgba(255, 255, 255, 0.7);
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 40px;
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 300ms var(--ease), box-shadow 300ms ease, border-color 300ms ease;
}

.service-row:hover {
  border-color: rgba(43, 120, 169, 0.38);
  box-shadow: var(--shadow-md);
  transform: translateX(7px);
}

.service-row__number {
  color: var(--red);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-row h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.service-row p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-row__arrow {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  font-size: 1.1rem;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms var(--ease);
}

.service-row:hover .service-row__arrow {
  color: var(--white);
  background: var(--blue);
  transform: translateX(3px);
}

.service-row__details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.service-tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 4px;
  color: var(--navy-700);
  background: var(--blue-soft);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
}

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

.capability-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.capability-card h3 {
  margin-top: 28px;
  font-size: 1.1rem;
}

.capability-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.capability-card__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(43, 120, 169, 0.28);
  border-radius: 50%;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.project-capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.project-capability-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 300ms var(--ease), box-shadow 300ms ease, border-color 300ms ease;
}

.project-capability-card:hover {
  border-color: rgba(43, 120, 169, 0.38);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.project-capability-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 12px;
  color: var(--red);
  background: var(--blue-soft);
  transition: color 220ms ease, background-color 220ms ease, transform 300ms var(--ease);
}

.project-capability-card:hover .project-capability-card__icon {
  color: var(--white);
  background: var(--red);
  transform: rotate(-4deg) scale(1.05);
}

.project-capability-card__icon svg {
  width: 29px;
  height: 29px;
}

.project-capability-card h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.project-capability-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.project-capability-card__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 25px;
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  transition: color 200ms ease;
}

.project-capability-card__link:hover {
  color: var(--red);
}

.project-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 490px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-800);
}

.project-feature__visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
}

.project-feature__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.project-feature__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, var(--navy-800));
  content: '';
}

.project-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 60px;
}

.project-feature__content h2 {
  max-width: 490px;
  color: var(--white);
}

.project-feature__content p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.68);
}

.project-feature__content .eyebrow {
  margin-bottom: 19px;
}

.project-feature__content .text-link {
  color: #ff7169;
}

.not-found-card {
  display: grid;
  min-height: 320px;
  place-items: center;
  padding: 50px 24px;
  border: 1px dashed #b8cbd5;
  border-radius: var(--radius-md);
  text-align: center;
  background: var(--white);
}

.not-found-card__inner {
  max-width: 470px;
}

.not-found-card__code {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  place-items: center;
  border: 1px solid rgba(229, 59, 53, 0.35);
  border-radius: 50%;
  color: var(--red);
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 84px;
  align-items: start;
}

.contact-details h2 {
  max-width: 440px;
}

.contact-details > p {
  max-width: 450px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.contact-list__item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list__item svg {
  margin-top: 3px;
  color: var(--red);
}

.contact-list__label {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list__value,
.contact-list__value a {
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}

.contact-list__value a:hover {
  color: var(--red);
}

.form-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.form-card h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.form-card__intro {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 700;
}

.form-field label span {
  color: var(--red);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cbd9e0;
  border-radius: 4px;
  outline: 0;
  background: #fbfdfe;
  font-size: 0.88rem;
  transition: border-color 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #91a3ad;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #9ab4c1;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(43, 120, 169, 0.12);
}

.form-card .button-row {
  margin-top: 24px;
}

.form-note {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
}

.map-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(0.2);
}

.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 118px;
  padding: 20px 0;
  border-top: 2px solid var(--red);
}

.policy-nav strong {
  display: block;
  margin-bottom: 13px;
  color: var(--navy-900);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.85rem;
}

.policy-nav a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  font-size: 0.78rem;
  transition: color 180ms ease;
}

.policy-nav a:hover {
  color: var(--red);
}

.policy-content {
  max-width: 760px;
}

.policy-content__updated {
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 0.8rem;
}

.policy-content section {
  margin-bottom: 42px;
  scroll-margin-top: 120px;
}

.policy-content h2 {
  margin-bottom: 13px;
  font-size: 1.55rem;
}

.policy-content h3 {
  margin-top: 24px;
  font-size: 1.1rem;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 0.93rem;
}

.policy-content ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.85fr 1.15fr;
  gap: 54px;
  padding: 84px 0 70px;
}

.footer-brand__logo {
  width: 190px;
  height: 108px;
  padding: 5px;
  border-radius: 4px;
  background: var(--white);
  object-fit: contain;
  object-position: center;
}

.footer-brand p {
  max-width: 290px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
}

.footer-brand__name {
  color: var(--white);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.footer-brand__tagline {
  margin-top: 8px;
}

.footer-heading {
  display: block;
  margin-bottom: 20px;
  color: var(--white);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact p {
  margin-bottom: 0;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

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

.whatsapp-float {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 57px;
  height: 57px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 12px 28px rgba(15, 47, 34, 0.25);
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
  animation: float-pulse 3.8s ease-in-out infinite;
}

.whatsapp-float:hover {
  box-shadow: 0 16px 32px rgba(15, 47, 34, 0.34);
  transform: translateY(-4px) scale(1.03);
}

@keyframes float-pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

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

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

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

.hero-reveal {
  opacity: 0;
  transform: translateY(25px);
  animation: hero-reveal 900ms var(--ease) forwards;
}

.hero-reveal--delay-1 { animation-delay: 130ms; }
.hero-reveal--delay-2 { animation-delay: 260ms; }
.hero-reveal--delay-3 { animation-delay: 390ms; }

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-word-reveal 760ms var(--ease) forwards;
  animation-delay: var(--word-delay, 0ms);
}

@keyframes hero-word-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mask-reveal {
  position: relative;
  overflow: hidden;
}

.mask-reveal::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: var(--navy-900);
  content: '';
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 950ms var(--ease);
}

.mask-reveal.is-visible::after {
  transform: scaleY(0);
  transform-origin: top;
}

.mask-reveal > * {
  position: relative;
  z-index: 1;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--navy-900);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 20px;
  }

  .site-header__cta {
    display: none;
  }

  .project-capability-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .intro-grid,
  .about-intro,
  .contact-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 52px;
  }

  .process-layout {
    gap: 55px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .section {
    padding: 84px 0;
  }

  .section--tight {
    padding: 60px 0;
  }

  .site-header__inner {
    height: 88px;
  }

  .brand__logo {
    width: 154px;
    height: 86px;
    padding: 5px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    top: 88px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 25px 20px 40px;
    background: var(--navy-950);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 280ms ease, transform 380ms var(--ease);
  }

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

  .site-nav__link {
    width: 100%;
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.95rem;
  }

  .site-nav__link::after {
    right: auto;
    bottom: 0;
    width: 34px;
  }

  .site-nav .site-header__cta {
    display: inline-flex;
    width: 100%;
    margin-top: 25px;
  }

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

  .hero {
    min-height: 760px;
  }

  .hero__content {
    padding: 140px 0 78px;
  }

  .hero__meta {
    margin-top: 48px;
  }

  .hero__corner {
    right: 5%;
    bottom: 25px;
    width: 88px;
    height: 88px;
  }

  .section-head,
  .final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .section-head {
    margin-bottom: 38px;
  }

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

  .intro-grid,
  .process-layout,
  .about-intro,
  .contact-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .process-layout {
    gap: 42px;
  }

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

  .why-item,
  .why-item + .why-item {
    min-height: auto;
    padding: 27px 0;
    border-left: 0;
  }

  .why-item + .why-item {
    border-top: 1px solid var(--line);
  }

  .why-item__icon {
    margin-bottom: 17px;
  }

  .preview-grid,
  .project-feature {
    grid-template-columns: 1fr;
  }

  .preview-tile--large {
    min-height: 380px;
  }

  .project-feature__visual {
    min-height: 300px;
  }

  .project-feature__visual::after {
    background: linear-gradient(0deg, var(--navy-800), transparent 50%);
  }

  .project-feature__content {
    padding: 18px 32px 42px;
  }

  .about-visual,
  .about-visual img {
    min-height: 390px;
  }

  .policy-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 18px;
    padding: 0 0 22px;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .policy-nav strong {
    width: 100%;
    margin-bottom: 5px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 30px;
  }
}

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

  .section {
    padding: 70px 0;
  }

  .section--tight {
    padding: 50px 0;
  }

  .display {
    font-size: clamp(2.65rem, 14vw, 4.5rem);
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero__content {
    padding: 130px 0 66px;
  }

  .hero__statement {
    font-size: 1rem;
  }

  .hero__meta {
    display: grid;
    gap: 10px;
    margin-top: 38px;
    font-size: 0.62rem;
  }

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

  .button-row .button {
    width: 100%;
  }

  .services-grid,
  .capability-grid,
  .project-capability-grid,
  .value-grid,
  .statement-band,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field--full {
    grid-column: auto;
  }

  .service-card {
    min-height: 315px;
  }

  .intro-aside {
    padding: 25px 0 0 24px;
  }

  .service-row {
    grid-template-columns: 42px minmax(0, 1fr) 34px;
    gap: 12px;
    padding: 23px 18px;
  }

  .service-row h3 {
    font-size: 1.12rem;
  }

  .service-row p {
    font-size: 0.83rem;
  }

  .service-row__arrow {
    width: 34px;
    height: 34px;
  }

  .statement-card,
  .form-card {
    padding: 28px 23px;
  }

  .statement-card h3 {
    font-size: 1.4rem;
  }

  .leadership {
    padding: 32px 23px;
  }

  .project-feature__content {
    padding: 13px 23px 32px;
  }

  .page-hero {
    min-height: 440px;
    padding: 132px 0 60px;
  }

  .page-hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .map-wrap iframe {
    height: 290px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 65px 0 52px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 53px;
    height: 53px;
  }
}

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

  .reveal,
  .hero-reveal,
  .hero-word,
  .mask-reveal::after {
    opacity: 1;
    transform: none;
  }

  .mask-reveal::after {
    display: none;
  }
}
