:root {
  --navy-950: #061f37;
  --navy-900: #0a3156;
  --navy-800: #0b477d;
  --blue-600: #0a69b7;
  --blue-500: #1484d4;
  --green-700: #0c6f32;
  --green-600: #16843a;
  --green-500: #20a34a;
  --green-100: #ddf4e4;
  --sky-100: #e3f3ff;
  --ink: #10243b;
  --slate: #4f6275;
  --muted: #718297;
  --line: #dbe5eb;
  --surface: #ffffff;
  --surface-soft: #f4f8fa;
  --surface-blue: #eef7fc;
  --shadow-sm: 0 8px 24px rgba(9, 50, 87, 0.08);
  --shadow-md: 0 18px 45px rgba(9, 50, 87, 0.13);
  --shadow-lg: 0 30px 70px rgba(9, 50, 87, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a,
select {
  cursor: pointer;
  touch-action: manipulation;
}

svg {
  display: block;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy-950);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.85rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.25vw, 4rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

p:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy-950);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid #f5be28;
  outline-offset: 4px;
}

.service-bar {
  color: #fff;
  background: var(--navy-950);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.service-bar__inner,
.service-bar__links,
.service-bar p,
.service-bar a {
  display: flex;
  align-items: center;
}

.service-bar__inner {
  min-height: 36px;
  justify-content: space-between;
}

.service-bar p {
  gap: 8px;
  margin: 0;
  font-weight: 700;
}

.service-bar svg {
  width: 16px;
  height: 16px;
  fill: var(--green-500);
}

.service-bar__links {
  gap: 20px;
}

.service-bar__links a {
  min-height: 36px;
  gap: 7px;
  font-weight: 700;
  transition: color 180ms ease;
}

.service-bar__links a:hover {
  color: #a9e8bd;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(219, 229, 235, 0.78);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  transition: box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(6, 31, 55, 0.09);
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand img,
.footer-brand img {
  width: 60px;
  height: 60px;
  border: 1px solid #c6d6dd;
  border-radius: 50%;
  object-fit: cover;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__copy strong {
  color: var(--green-700);
  font-size: 1.34rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.brand__copy > span {
  margin-top: 2px;
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.075em;
}

.brand__copy small {
  margin-top: 7px;
  color: var(--green-700);
  font-size: 0.65rem;
  font-weight: 700;
}

.primary-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 13px;
  color: #31455a;
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 13px;
  bottom: 4px;
  left: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-600);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--navy-950);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy-900);
  background: #fff;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.menu-toggle__close,
.menu-toggle[aria-expanded="true"] .menu-toggle__open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
  display: block;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid var(--green-600);
  border-radius: 12px;
  color: #fff;
  background: var(--green-600);
  box-shadow: 0 10px 22px rgba(22, 132, 58, 0.22);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button svg,
.service-card a svg,
.site-footer__bottom svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  border-color: var(--green-700);
  background: var(--green-700);
  box-shadow: 0 14px 30px rgba(12, 111, 50, 0.27);
  transform: translateY(-2px);
}

.button:active {
  box-shadow: 0 6px 14px rgba(12, 111, 50, 0.2);
  transform: translateY(0);
}

.button--small {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.button--outline {
  border-color: #a8bac8;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
}

.button--outline:hover {
  border-color: var(--navy-900);
  color: #fff;
  background: var(--navy-900);
}

.button--full {
  width: 100%;
  border: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98) 4%, rgba(238, 247, 252, 0.94) 50%, rgba(221, 244, 228, 0.72) 100%),
    radial-gradient(circle at 85% 20%, #95d2f5 0, transparent 38%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(10, 49, 86, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 49, 86, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.44;
}

.hero__glow--one {
  top: -140px;
  right: 2vw;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #bfe5ff, transparent 68%);
}

.hero__glow--two {
  right: 32vw;
  bottom: -180px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #b7e5c2, transparent 70%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 610px;
  align-items: center;
  grid-template-columns: 1fr;
  gap: 0;
}

.hero__content {
  position: relative;
  z-index: 4;
  width: min(52%, 620px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.eyebrow--light {
  color: #79d594;
}

.hero h1 span {
  color: var(--green-600);
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--slate);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.hero__actions,
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero__proof {
  margin-top: 28px;
  gap: 18px;
}

.hero__proof span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #355168;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero__proof svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 50%;
  fill: none;
  stroke: var(--green-700);
  stroke-width: 2.5;
  background: var(--green-100);
}

.hero__visual {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: 66%;
  min-height: 0;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.hero__visual::before {
  position: absolute;
  top: 2%;
  right: -2%;
  width: min(720px, 92%);
  aspect-ratio: 1;
  border: 1px solid rgba(10, 105, 183, 0.12);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(196, 230, 246, 0.55));
  box-shadow: inset 0 0 0 34px rgba(255, 255, 255, 0.32);
  content: "";
}

.hero__visual img {
  position: absolute;
  z-index: 2;
  right: clamp(-150px, -7vw, -70px);
  bottom: -30px;
  width: clamp(820px, 65vw, 1120px);
  height: auto;
  max-width: none;
  margin: 0;
  filter: drop-shadow(0 28px 30px rgba(6, 31, 55, 0.25));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.32) 15%, #000 36%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.32) 15%, #000 36%);
}

.hero__watermark {
  position: absolute;
  z-index: 1;
  top: -8%;
  right: 10%;
  color: rgba(255, 255, 255, 0.66);
  font-size: 24rem;
  font-weight: 900;
  line-height: 1;
}

.hero__badge {
  position: absolute;
  z-index: 4;
  top: 38px;
  right: 8px;
  display: grid;
  width: 112px;
  height: 112px;
  place-content: center;
  border: 8px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.hero__badge strong {
  font-size: 1.6rem;
  line-height: 1;
}

.hero__badge span {
  margin-top: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__visual-note {
  position: absolute;
  z-index: 5;
  right: 2%;
  bottom: 20px;
  display: flex;
  max-width: 310px;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(219, 229, 235, 0.88);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  color: var(--slate);
  font-size: 0.76rem;
  line-height: 1.35;
}

.hero__visual-note svg {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  fill: var(--green-600);
}

.hero__visual-note strong {
  display: block;
  color: var(--navy-950);
  font-size: 0.86rem;
}

.hero-stats {
  position: relative;
  z-index: 5;
  display: grid;
  margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -8px 40px rgba(9, 50, 87, 0.07);
  grid-template-columns: repeat(4, 1fr);
}

.hero-stats article {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  justify-content: center;
  padding: 22px 30px;
  border-right: 1px solid var(--line);
}

.hero-stats article:last-child {
  border-right: 0;
}

.hero-stats strong {
  color: var(--green-700);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.1;
}

.hero-stats span {
  margin-top: 6px;
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 700;
}

.section {
  padding: 110px 0;
}

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

.about__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(58px, 7vw, 100px);
}

.about__media {
  position: relative;
  min-height: 570px;
}

.about__media::before {
  position: absolute;
  top: 5%;
  right: 6%;
  width: 78%;
  height: 88%;
  border: 1px solid #bfe4cc;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #effaf2, #e7f5fd);
  content: "";
}

.about__photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 8px solid #fff;
  border-radius: 24px;
  background: #dce7ec;
  box-shadow: var(--shadow-md);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__photo--main {
  z-index: 1;
  top: 0;
  left: 0;
  width: 78%;
  height: 72%;
}

.about__photo--secondary {
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 47%;
}

.about__experience {
  position: absolute;
  z-index: 3;
  bottom: 50px;
  left: 12px;
  display: flex;
  max-width: 190px;
  align-items: center;
  gap: 10px;
  padding: 14px 17px;
  border-radius: 14px;
  color: #fff;
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
  font-size: 0.78rem;
  line-height: 1.35;
}

.about__experience svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  fill: #6bd389;
}

.about__experience strong {
  display: block;
  font-size: 0.95rem;
}

.about__content > p:not(.eyebrow) {
  color: var(--slate);
  font-size: 1.03rem;
}

.about__commitment {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 30px;
  padding: 20px;
  border-left: 4px solid var(--green-600);
  border-radius: 0 14px 14px 0;
  background: var(--surface-soft);
}

.about__commitment svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: var(--blue-600);
}

.about__commitment p {
  margin: 0;
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.55;
}

.about__commitment strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy-950);
  font-size: 1rem;
}

.why-us {
  margin-top: 95px;
  padding: 34px;
  border: 1px solid #dce9e0;
  border-radius: var(--radius-md);
  background: linear-gradient(110deg, #f2faf4 0%, #f4f9fc 100%);
}

.section-heading--compact h3 {
  margin-bottom: 26px;
}

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

.why-us__grid article {
  display: flex;
  gap: 14px;
  padding: 8px 24px;
  border-right: 1px solid #ceded3;
}

.why-us__grid article:first-child {
  padding-left: 0;
}

.why-us__grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: var(--green-600);
}

.why-us h4 {
  margin: 1px 0 7px;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.why-us article p {
  margin: 0;
  color: var(--slate);
  font-size: 0.78rem;
  line-height: 1.5;
}

.services {
  background: var(--surface-soft);
}

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

.section-heading > div {
  max-width: 720px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 410px;
  margin-bottom: 4px;
  color: var(--slate);
}

.section-heading--center {
  display: block;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center h2 {
  margin-bottom: 18px;
}

.section-heading--center > p {
  max-width: none;
}

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

.service-card {
  position: relative;
  min-height: 325px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid #dbe6eb;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 28px rgba(9, 50, 87, 0.055);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.service-card:hover {
  border-color: #b8d6c1;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card::after {
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--green-100);
  content: "";
  opacity: 0.6;
}

.service-card__image {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f7fcf8, #e9f4f9);
}

.service-card__image img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.service-card__number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #b7c6cf;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.service-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-card--wide {
  display: grid;
  min-height: auto;
  align-items: center;
  padding: 26px 32px;
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
}

.service-card--wide::after {
  right: 22%;
  bottom: -70px;
}

.service-card--wide .service-card__image,
.service-card--wide h3 {
  margin-bottom: 0;
}

.service-card--wide p {
  margin-top: 7px;
}

.service-card--wide .service-card__number {
  display: none;
}

.service-card a {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
  color: var(--green-700);
  font-weight: 900;
}

.compliance {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  color: #fff;
  background: var(--navy-950);
}

.compliance::before,
.contact__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(20, 132, 212, 0.25) 0 2px, transparent 3px), radial-gradient(circle at 90% 80%, rgba(32, 163, 74, 0.2) 0 2px, transparent 3px);
  background-size: 60px 60px, 76px 76px;
  content: "";
  opacity: 0.25;
}

.compliance .container {
  position: relative;
  z-index: 1;
}

.compliance__heading {
  display: grid;
  align-items: end;
  margin-bottom: 44px;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
}

.compliance h2 {
  max-width: 660px;
  margin: 0;
  color: #fff;
}

.compliance__heading > p {
  margin-bottom: 4px;
  color: #c2d6e5;
}

.compliance__grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  grid-template-columns: repeat(5, 1fr);
}

.compliance__grid article {
  display: flex;
  min-height: 164px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  text-align: center;
}

.compliance__grid article:last-child {
  border-right: 0;
}

.compliance__grid img {
  width: 74px;
  height: 74px;
  padding: 6px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
}

.compliance__grid strong,
.compliance__grid span {
  display: block;
}

.compliance__grid strong {
  color: #fff;
  font-size: 0.98rem;
}

.compliance__grid span {
  margin-top: 3px;
  color: #aac1d2;
  font-size: 0.7rem;
  line-height: 1.35;
}

.clients {
  padding-bottom: 100px;
}

.client-logos {
  display: grid;
  overflow: hidden;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  grid-template-columns: repeat(6, 1fr);
}

.client-logo {
  display: grid;
  min-height: 145px;
  place-items: center;
  padding: 24px;
  border-right: 1px solid var(--line);
  filter: grayscale(100%);
  opacity: 0.72;
  transition: filter 200ms ease, opacity 200ms ease, background 200ms ease;
}

.client-logo:last-child {
  border-right: 0;
}

.client-logo:hover {
  background: var(--surface-soft);
  filter: grayscale(0);
  opacity: 1;
}

.client-logo img {
  max-width: 130px;
  max-height: 76px;
  object-fit: contain;
}

.client-logo--wordmark {
  color: var(--navy-900);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-align: center;
}

.client-logo--wordmark strong {
  font-size: 1rem;
  font-weight: 900;
}

.sector-grid {
  display: grid;
  margin-bottom: 100px;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.sector-grid span {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  color: #375168;
  background: var(--surface-soft);
  font-size: 0.84rem;
  font-weight: 900;
}

.sector-grid svg {
  width: 24px;
  height: 24px;
  fill: var(--green-600);
}

.testimonials {
  display: grid;
  grid-template-columns: 0.82fr repeat(3, 1fr);
  gap: 20px;
}

.testimonials__intro {
  padding-right: 32px;
}

.testimonials__intro h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.testimonials__intro > p:last-child {
  color: var(--slate);
}

.testimonial-card {
  position: relative;
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.testimonial-card::before {
  position: absolute;
  top: 15px;
  right: 24px;
  color: #d5e8db;
  content: "“";
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.testimonial-card__stars {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: #e5a80e;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  color: #2e4559;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
}

.testimonial-card figcaption strong {
  color: var(--navy-950);
}

.testimonial-card figcaption span {
  color: var(--muted);
  font-size: 0.8rem;
}

.gallery {
  padding-top: 90px;
  background: var(--surface-soft);
}

.gallery__grid {
  display: grid;
  grid-auto-rows: 235px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 16px;
  background: #dbe5eb;
}

.gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery__item:hover img {
  transform: scale(1.035);
}

.gallery__item figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(90deg, rgba(6, 31, 55, 0.84), rgba(6, 31, 55, 0.55));
  backdrop-filter: blur(5px);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: #fff;
  background: linear-gradient(125deg, var(--navy-950) 0%, #0a3e69 100%);
}

.contact__pattern {
  opacity: 0.2;
}

.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 8vw, 110px);
}

.contact h2 {
  color: #fff;
}

.contact__content > p:not(.eyebrow) {
  max-width: 550px;
  margin-bottom: 34px;
  color: #c4d8e7;
  font-size: 1.05rem;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-list a:hover {
  border-color: rgba(121, 213, 148, 0.45);
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(3px);
}

.contact-list__icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--green-600);
}

.contact-list__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-list small,
.contact-list strong {
  display: block;
}

.contact-list small {
  color: #9fb9cc;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list strong {
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
}

.estimate-form {
  padding: 38px;
  border-radius: 24px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.estimate-form__heading {
  margin-bottom: 28px;
}

.estimate-form__heading > span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--green-700);
  background: var(--green-100);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.estimate-form h3 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.estimate-form__heading p,
.estimate-form__note {
  color: var(--muted);
  font-size: 0.84rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: #263d52;
  font-size: 0.8rem;
  font-weight: 900;
}

.form-field label span {
  color: #c43b3b;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cddbe3;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green-600);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(22, 132, 58, 0.15);
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.recaptcha-field {
  margin: 2px 0 18px;
}

.recaptcha-widget {
  min-height: 78px;
}

.recaptcha-help,
.recaptcha-config-message {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.recaptcha-config-message {
  min-height: 64px;
  padding: 14px;
  border: 1px solid #e2c58d;
  border-radius: 10px;
  color: #6c4d16;
  background: #fff8e8;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  box-shadow: none;
}

.button.is-loading svg {
  animation: submit-pulse 900ms ease-in-out infinite alternate;
}

@keyframes submit-pulse {
  to { opacity: 0.3; }
}

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

.form-status.is-error {
  color: #a12d2d;
}

.form-status.is-success {
  color: var(--green-700);
}

.estimate-form__note {
  margin: 9px 0 0;
  line-height: 1.45;
}

/* Reusable inner-page template */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 88px;
  background: linear-gradient(120deg, #f7fbfd 0%, #edf8fc 58%, #e6f5ea 100%);
}

.page-hero::after {
  position: absolute;
  right: -110px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(10, 105, 183, 0.14);
  border-radius: 50%;
  content: "";
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumbs a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--green-700);
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.page-hero__lead {
  max-width: 720px;
  margin: 0;
  color: var(--slate);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.page-content {
  padding: 88px 0 104px;
}

.page-content__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 68px;
}

.page-article {
  min-width: 0;
}

.page-article > * {
  max-width: 74ch;
}

.page-article h2 {
  margin-top: 58px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.page-article h2:first-child {
  margin-top: 0;
}

.page-article h3 {
  margin-top: 38px;
  margin-bottom: 14px;
}

.page-article p,
.page-article li {
  color: var(--slate);
}

.page-article ul {
  padding-left: 22px;
}

.page-article li + li {
  margin-top: 9px;
}

.page-feature-grid {
  display: grid;
  max-width: none;
  margin: 34px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.page-feature-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
}

.page-feature-grid h3 {
  margin: 0 0 9px;
  font-size: 1.12rem;
}

.page-feature-grid p {
  margin: 0;
  font-size: 0.92rem;
}

.page-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.page-sidebar h2 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.page-sidebar p {
  margin-bottom: 22px;
  color: var(--slate);
  font-size: 0.92rem;
}

.page-sidebar .button + .button {
  margin-top: 10px;
}

.site-footer {
  padding: 54px 0 25px;
  color: #bed0dd;
  background: #041728;
}

.site-footer__grid {
  display: grid;
  align-items: center;
  padding-bottom: 35px;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 52px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.07em;
}

.footer-brand strong {
  color: #72d78e;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.site-footer__grid p {
  margin: 0;
  font-size: 0.82rem;
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

.site-footer nav a,
.site-footer__bottom a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-footer nav a:hover,
.site-footer__bottom a:hover {
  color: #72d78e;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.74rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  gap: 7px;
}

.mobile-actions {
  display: none;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 360ms ease, transform 360ms ease;
}

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

@media (max-width: 1120px) {
  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }

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

  .hero__visual {
    width: 70%;
    min-height: 0;
  }

  .hero__visual img {
    right: -145px;
    width: clamp(720px, 76vw, 900px);
    margin: 0;
  }

  .why-us__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
  }

  .why-us__grid article:nth-child(2) {
    border-right: 0;
  }

  .why-us__grid article:nth-child(3) {
    padding-left: 0;
  }

  .client-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-logo:nth-child(3) {
    border-right: 0;
  }

  .client-logo:nth-child(-n+3) {
    border-bottom: 1px solid var(--line);
  }

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

  .testimonials__intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

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

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    z-index: 101;
    top: calc(36px + var(--header-height));
    right: 18px;
    left: 18px;
    display: grid;
    overflow: hidden;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .primary-nav a {
    justify-content: center;
    padding: 8px 14px;
  }

  .hero__grid,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
  }

  .hero__content {
    width: 100%;
    max-width: 760px;
  }

  .hero__visual {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 500px;
    pointer-events: auto;
  }

  .hero__visual::before {
    right: 8%;
    width: 76%;
  }

  .hero__visual img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin-right: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero__badge {
    right: 12%;
  }

  .hero__visual-note {
    right: 8%;
  }

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

  .hero-stats article:nth-child(2) {
    border-right: 0;
  }

  .hero-stats article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .about__grid {
    gap: 62px;
  }

  .about__media {
    max-width: 620px;
  }

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

  .service-card--wide {
    grid-template-columns: auto 1fr;
  }

  .service-card--wide a {
    grid-column: 2;
    justify-self: start;
  }

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

  .compliance__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .compliance__grid article:nth-child(3) {
    border-right: 0;
  }

  .compliance__grid article:nth-child(-n+3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .sector-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery__grid {
    grid-auto-rows: 220px;
    grid-template-columns: repeat(2, 1fr);
  }

  .page-content__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .page-sidebar {
    position: static;
    max-width: 620px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 70px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

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

  .service-bar p {
    display: none;
  }

  .service-bar__inner {
    justify-content: center;
  }

  .service-bar__links {
    width: 100%;
    justify-content: space-between;
  }

  .service-bar__links a:last-child {
    font-size: 0.76rem;
  }

  .brand img {
    width: 51px;
    height: 51px;
  }

  .brand__copy strong {
    font-size: 1.08rem;
  }

  .brand__copy > span {
    font-size: 0.68rem;
  }

  .brand__copy small {
    display: none;
  }

  .hero {
    padding-top: 50px;
  }

  .page-hero {
    padding: 64px 0 60px;
  }

  .page-content {
    padding: 64px 0 84px;
  }

  .page-feature-grid {
    grid-template-columns: 1fr;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero__visual {
    min-height: 390px;
  }

  .hero__visual img {
    width: 119%;
    max-width: none;
    margin: 0 -12% 28px -7%;
  }

  .hero__visual::before {
    top: 4%;
    right: 3%;
    width: 94%;
  }

  .hero__watermark {
    top: -5%;
    right: 4%;
    font-size: 16rem;
  }

  .hero__badge {
    top: 14px;
    right: 2%;
    width: 92px;
    height: 92px;
    border-width: 6px;
  }

  .hero__badge strong {
    font-size: 1.3rem;
  }

  .hero__visual-note {
    right: 0;
    bottom: 6px;
    max-width: 270px;
  }

  .hero-stats {
    margin-top: 24px;
  }

  .hero-stats article {
    min-height: 98px;
    padding: 18px;
  }

  .hero-stats strong {
    font-size: 1.35rem;
  }

  .section {
    padding: 78px 0;
  }

  .about__media {
    min-height: 450px;
  }

  .about__photo--main {
    width: 88%;
  }

  .about__photo--secondary {
    width: 64%;
  }

  .about__experience {
    bottom: 32px;
  }

  .why-us {
    width: min(var(--container), calc(100% - 28px));
    margin-top: 70px;
    padding: 25px;
  }

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

  .why-us__grid article {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid #ceded3;
  }

  .why-us__grid article:nth-child(3) {
    padding-left: 0;
  }

  .why-us__grid article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 34px;
  }

  .section-heading > p {
    margin-top: 18px;
  }

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

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

  .service-card--wide {
    display: block;
  }

  .service-card--wide .service-card__image {
    margin-bottom: 24px;
  }

  .service-card--wide a {
    margin-top: 14px;
  }

  .compliance {
    padding: 76px 0;
  }

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

  .compliance__grid article,
  .compliance__grid article:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .compliance__grid article:nth-child(even) {
    border-right: 0;
  }

  .compliance__grid article:last-child {
    grid-column: 1 / -1;
    border: 0;
  }

  .client-logos {
    grid-template-columns: 1fr 1fr;
  }

  .client-logo,
  .client-logo:nth-child(3) {
    min-height: 120px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .client-logo:nth-child(even) {
    border-right: 0;
  }

  .client-logo:nth-child(n+5) {
    border-bottom: 0;
  }

  .sector-grid {
    margin-bottom: 72px;
    grid-template-columns: 1fr 1fr;
  }

  .sector-grid span:last-child {
    grid-column: 1 / -1;
  }

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

  .testimonials__intro {
    padding-right: 0;
  }

  .gallery__grid {
    grid-auto-rows: 210px;
    grid-template-columns: 1fr;
  }

  .gallery__item--large {
    grid-column: auto;
    grid-row: auto;
  }

  .contact {
    padding: 80px 0;
  }

  .estimate-form {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-actions {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    padding: 8px max(10px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -8px 26px rgba(6, 31, 55, 0.12);
    backdrop-filter: blur(12px);
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .mobile-actions a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    color: #fff;
    background: var(--navy-900);
    font-size: 0.84rem;
    font-weight: 900;
  }

  .mobile-actions a:last-child {
    background: var(--green-600);
  }

  .mobile-actions svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .mobile-actions a:last-child svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
  }
}

@media (max-width: 430px) {
  .brand__copy strong {
    font-size: 0.92rem;
  }

  .brand__copy > span {
    font-size: 0.58rem;
  }

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

  .hero__visual {
    min-height: 340px;
  }

  .hero__visual-note {
    display: none;
  }

  .hero__badge {
    top: 20px;
  }

  .hero-stats strong {
    font-size: 1.15rem;
  }

  .hero-stats span {
    font-size: 0.72rem;
  }

  .contact-list strong {
    font-size: 0.86rem;
  }
}

@media (max-width: 389px) {
  .recaptcha-widget {
    min-height: 144px;
  }
}

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

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

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