:root {
  --ink: #152033;
  --muted: #5f7085;
  --paper: #ffffff;
  --soft: #eef4f7;
  --line: #d9e4eb;
  --navy: #071b30;
  --navy-2: #0d2a47;
  --blue: #1268ad;
  --cyan: #1c9ca1;
  --green: #1f9b63;
  --amber: #e2a33a;
  --red: #d84635;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(15, 34, 54, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8fbfd;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(2.85rem, 4.8vw, 5.25rem);
  font-weight: 900;
}

h2 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(1.38rem, 1.95vw, 2.2rem);
  font-weight: 750;
  line-height: 1.16;
}

h3 {
  color: var(--ink);
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  font-weight: 800;
  line-height: 1.15;
}

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

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--navy);
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 228, 235, 0.92);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(15, 34, 54, 0.08);
}

.nav-shell {
  width: min(1200px, calc(100% - 40px));
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
}

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

.brand img {
  width: 174px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: #35475a;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--navy);
  background: var(--soft);
  outline: none;
}

.nav-links .nav-cta {
  padding-inline: 20px;
  color: #fff;
  background: var(--navy);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: #fff;
  background: var(--blue);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

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

.hero {
  position: relative;
  min-height: clamp(560px, 66svh, 640px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 18, 33, 0.98) 0%, rgba(5, 18, 33, 0.84) 45%, rgba(5, 18, 33, 0.32) 100%),
    linear-gradient(0deg, rgba(5, 18, 33, 0.74), rgba(5, 18, 33, 0.08) 58%);
}

.hero-grid {
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 118px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero .eyebrow {
  color: #f0bd62;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: #dce9f2;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button.primary {
  color: #142030;
  background: linear-gradient(135deg, #f5c46b, var(--amber));
  box-shadow: 0 18px 38px rgba(226, 163, 58, 0.28);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.button.outline {
  width: fit-content;
  margin-top: 24px;
  color: var(--navy);
  border-color: rgba(18, 104, 173, 0.24);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 34, 54, 0.08);
}

.button.outline:hover,
.button.outline:focus-visible {
  color: #fff;
  background: var(--navy);
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--blue);
  font-size: 0.94rem;
  font-weight: 900;
}

.text-link::after {
  content: "";
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.18s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.hero-proof {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  transform: translateX(-50%);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.22);
}

.hero-proof span {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px 22px;
  color: #dbeaf4;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 27, 48, 0.9);
  backdrop-filter: blur(12px);
}

.hero-proof span:last-child {
  border-right: 0;
}

.hero-proof strong {
  color: #fff;
  font-size: 1.08rem;
}

.scope-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.scope-strip span {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: var(--navy);
  border-right: 1px solid var(--line);
  font-weight: 900;
  text-align: center;
}

.scope-strip span:nth-child(1) {
  border-top: 4px solid var(--red);
}

.scope-strip span:nth-child(2) {
  border-top: 4px solid var(--amber);
}

.scope-strip span:nth-child(3) {
  border-top: 4px solid var(--green);
}

.scope-strip span:nth-child(4) {
  border-top: 4px solid var(--blue);
}

.scope-strip span:nth-child(5) {
  border-top: 4px solid var(--cyan);
  border-right: 0;
}

.section,
.project-band,
.clients-section,
.contact-section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.section-kicker,
.about-section,
.delivery-section,
.clients-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 52px;
  align-items: start;
}

.about-section {
  margin-top: 70px;
  padding: 42px;
  border: 1px solid rgba(217, 228, 235, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 246, 248, 0.96)),
    #ffffff;
  box-shadow: 0 18px 46px rgba(15, 34, 54, 0.09);
}

.services-section,
.delivery-section,
.project-band {
  padding: 42px;
  border: 1px solid rgba(217, 228, 235, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 250, 0.96)),
    #ffffff;
  box-shadow: 0 18px 46px rgba(15, 34, 54, 0.09);
}

.services-section,
.delivery-section,
.project-band,
.clients-section {
  margin-top: 70px;
}

.about-section .section-kicker {
  display: block;
}

.about-section .section-kicker h2,
.delivery-section .section-kicker h2,
.project-heading h2,
.section-title h2 {
  max-width: 540px;
}

.about-section .eyebrow,
.services-section .eyebrow,
.delivery-section .eyebrow,
.project-band .eyebrow {
  margin-bottom: 14px;
}

.about-section .about-copy {
  align-self: center;
}

.about-section .metric-row {
  box-shadow: 0 12px 30px rgba(15, 34, 54, 0.06);
}

.services-section .section-title,
.project-heading {
  display: block;
}

.delivery-section .section-kicker {
  display: block;
}

.about-copy {
  display: grid;
  gap: 20px;
}

.about-copy p,
.about-visual-card p,
.service-content p,
.delivery-steps p,
.project-list p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.about-copy p {
  margin: 0;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.metric-row div {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 20px;
  background: #fff;
}

.metric-row strong {
  color: var(--navy);
  font-size: clamp(1.36rem, 2.2vw, 2.05rem);
  line-height: 1;
}

.metric-row span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.about-visual-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
  padding: 30px;
  margin-top: 8px;
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 27, 48, 0.96), rgba(13, 42, 71, 0.94)),
    var(--navy);
  box-shadow: var(--shadow);
}

.about-image-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.about-image-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-visual-card p {
  color: #d8e6ef;
}

.services-section {
  padding-top: 42px;
}

.section-title {
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 100%;
  display: grid;
  grid-template-columns: 42% 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(15, 34, 54, 0.08);
}

.service-card.wide {
  grid-column: 1 / -1;
  grid-template-columns: 49% 1fr;
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 252px;
  object-fit: cover;
}

.service-content {
  display: grid;
  align-content: center;
  padding: 30px;
}

.service-content span,
.project-list small {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-content h3 {
  margin-top: 12px;
}

.service-content p,
.project-list p,
.delivery-steps p,
.contact-copy p {
  margin: 15px 0 0;
}

.delivery-section {
  align-items: start;
}

.delivery-steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  list-style: none;
}

.delivery-steps li {
  counter-increment: step;
  min-height: 184px;
  padding: 26px;
  background: #fff;
}

.delivery-steps li::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 24px;
  color: var(--amber);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
}

.delivery-steps span {
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
}

.project-band {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 44px;
  padding: 42px;
}

.project-list {
  display: grid;
  gap: 16px;
}

.project-list article {
  padding: 26px 28px;
  border-left: 5px solid var(--amber);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 34, 54, 0.08);
}

.project-list h3 {
  margin-top: 12px;
}

.projects-hero {
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 52px;
  align-items: end;
  padding: 70px 42px 46px;
  margin: 70px auto 0;
  border: 1px solid rgba(217, 228, 235, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 246, 248, 0.96)),
    #ffffff;
  box-shadow: 0 18px 46px rgba(15, 34, 54, 0.09);
}

.projects-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.projects-hero h1 {
  max-width: 620px;
  color: var(--navy);
  font-size: clamp(2.15rem, 3.8vw, 4rem);
}

.projects-directory {
  width: min(1200px, calc(100% - 40px));
  padding: 42px;
  margin: 42px auto 86px;
  border: 1px solid rgba(217, 228, 235, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 250, 0.96)),
    #ffffff;
  box-shadow: 0 18px 46px rgba(15, 34, 54, 0.09);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-bar button {
  min-height: 40px;
  padding: 9px 14px;
  color: var(--navy);
  border: 1px solid rgba(18, 104, 173, 0.2);
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.filter-bar button:hover,
.filter-bar button:focus-visible,
.filter-bar button.is-active {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
  outline: none;
}

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

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.project-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  color: var(--navy);
  border: 1px solid rgba(18, 104, 173, 0.18);
  border-radius: 999px;
  background: #f3f8fb;
  font-size: 0.82rem;
  font-weight: 800;
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 18px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.project-facts div {
  padding: 12px;
  background: #f8fbfd;
}

.project-facts dt,
.project-facts dd {
  margin: 0;
}

.project-facts dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-facts dd {
  margin-top: 3px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
}

.data-status {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.data-status.error {
  color: #b42318;
}

.clients-section {
  align-items: center;
  padding: 42px;
  color: #fff;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 27, 48, 0.96), rgba(18, 104, 173, 0.84)),
    var(--navy);
  box-shadow: var(--shadow);
}

.clients-section h2,
.about-visual-card h2,
.contact-copy h2 {
  color: #fff;
}

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

.client-grid span {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  color: #e8f3f8;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.client-grid img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  padding: 5px;
  border-radius: 6px;
  background: #fff;
  flex: 0 0 auto;
}

.client-grid strong {
  font: inherit;
}

.service-detail-hero,
.service-detail-grid {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.service-detail-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 38px;
  align-items: center;
  padding: 42px;
  margin-top: 70px;
  border: 1px solid rgba(217, 228, 235, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 246, 248, 0.96)),
    #ffffff;
  box-shadow: 0 18px 46px rgba(15, 34, 54, 0.09);
}

.service-detail-hero h1 {
  max-width: 640px;
  color: var(--navy);
  font-size: clamp(2.1rem, 3.8vw, 4rem);
}

.service-detail-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.service-detail-hero .button {
  margin-top: 28px;
}

.service-detail-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  margin-top: 42px;
  margin-bottom: 0;
}

.service-detail-grid article {
  padding: 34px;
  border: 1px solid rgba(217, 228, 235, 0.9);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 34, 54, 0.08);
}

.service-detail-grid p {
  margin: 18px 0 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 22px 0 0;
  color: var(--muted);
  list-style: none;
}

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

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.mini-stats {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.mini-stats span {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
  color: var(--muted);
  font-weight: 800;
}

.mini-stats strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.service-seo-section,
.faq-section,
.related-links {
  width: min(1200px, calc(100% - 40px));
  margin: 42px auto 0;
  padding: 34px;
  border: 1px solid rgba(217, 228, 235, 0.9);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 34, 54, 0.08);
}

.faq-section {
  margin-bottom: 86px;
}

.service-seo-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
}

.service-seo-section p,
.faq-section p {
  color: var(--muted);
}

.service-seo-section p:first-of-type {
  margin-top: 0;
}

.service-seo-section h2,
.faq-section h2,
.related-links h2 {
  max-width: 620px;
}

.service-seo-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.service-seo-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius);
  background: #f8fbfd;
  color: var(--muted);
}

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

.faq-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
}

.faq-grid h3 {
  font-size: 1.05rem;
}

.faq-grid p {
  margin: 10px 0 0;
}

.related-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.related-link-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(18, 104, 173, 0.2);
  border-radius: 999px;
  color: var(--navy);
  background: #f8fbfd;
  font-weight: 900;
}

.related-link-grid a:hover,
.related-link-grid a:focus-visible {
  color: #fff;
  background: var(--navy);
  outline: none;
}

.contact-section {
  align-items: stretch;
  padding: 86px 0;
}

.contact-copy {
  display: grid;
  align-content: center;
  padding: 42px;
  color: #fff;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 27, 48, 0.97), rgba(28, 156, 161, 0.72)),
    var(--navy);
  box-shadow: var(--shadow);
}

.contact-copy p {
  color: #d8e7f0;
}

.mail-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #f5c46b;
  font-weight: 900;
}

.mail-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

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

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

.contact-form label span {
  color: #314052;
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(18, 104, 173, 0.16);
  border-color: var(--blue);
  background: #fff;
}

.hp-field {
  display: none !important;
}

.captcha-field {
  padding: 14px;
  border: 1px solid #d9e4eb;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f8fbfd 0%, #eef7f4 100%);
}

.captcha-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 10px;
  align-items: center;
}

.captcha-question {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  border: 1px solid #bfd3df;
  border-radius: var(--radius);
  background: #fff;
  font-size: 1rem;
}

.captcha-refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--blue);
  border: 1px solid #bfd3df;
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.captcha-refresh:hover,
.captcha-refresh:focus-visible {
  border-color: var(--blue);
  background: #eef7ff;
}

.captcha-refresh:active {
  transform: rotate(18deg) scale(0.98);
}

.captcha-refresh svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.captcha-field.is-loading .captcha-refresh {
  opacity: 0.65;
  pointer-events: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.form-status.success {
  color: #217a55;
}

.form-status.error {
  color: #b42318;
}

.site-footer {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 42px 24px 28px;
  color: #d8e7f3;
  text-align: center;
  background: var(--navy);
}

.site-footer img {
  width: 154px;
  height: auto;
  padding: 8px;
  border-radius: var(--radius);
  background: #fff;
}

.site-footer p {
  margin: 0;
  color: #9fb4c8;
}

.site-footer small {
  color: #8199af;
}

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

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

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

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

@media (max-width: 1050px) {
  .menu-button {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 18px 34px rgba(6, 29, 53, 0.12);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    justify-content: center;
  }

  .hero-proof,
  .scope-strip,
  .metric-row,
  .delivery-steps,
  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-kicker,
  .about-section,
  .about-visual-card,
  .delivery-section,
  .project-band,
  .projects-hero,
  .service-detail-hero,
  .service-detail-grid,
  .service-seo-section,
  .clients-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .projects-directory .project-list {
    grid-template-columns: 1fr;
  }

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

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

  .service-card,
  .service-card.wide {
    grid-template-columns: 43% 1fr;
  }
}

@media (max-width: 720px) {
  .nav-shell,
  .hero-inner,
  .section,
  .project-band,
  .projects-hero,
  .projects-directory,
  .service-detail-hero,
  .service-detail-grid,
  .service-seo-section,
  .faq-section,
  .related-links,
  .clients-section,
  .contact-section,
  .hero-proof {
    width: min(100% - 24px, 1200px);
  }

  .nav-shell {
    min-height: 68px;
  }

  .nav-links {
    top: 68px;
  }

  .brand img {
    width: 144px;
  }

  .hero {
    min-height: auto;
    display: block;
  }

  .hero-inner {
    padding: 58px 0 24px;
  }

  h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.45rem);
  }

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

  .hero-proof {
    position: relative;
    left: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin: 0 auto;
    transform: none;
  }

  .hero-proof span {
    min-height: 58px;
    padding: 12px 16px;
  }

  .scope-strip,
  .metric-row,
  .field-row,
  .delivery-steps,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .scope-strip span {
    min-height: 60px;
    border-right: 0;
  }

  .section,
  .contact-section {
    padding: 72px 0;
  }

  .about-section {
    margin-top: 42px;
    padding: 24px;
  }

  .services-section,
  .delivery-section,
  .project-band,
  .projects-hero,
  .projects-directory,
  .service-detail-hero,
  .clients-section {
    margin-top: 42px;
  }

  .about-visual-card,
  .services-section,
  .delivery-section,
  .project-band,
  .projects-hero,
  .projects-directory,
  .service-detail-hero,
  .clients-section {
    padding: 24px;
  }

  .service-detail-grid {
    margin-top: 22px;
    margin-bottom: 56px;
  }

  .service-detail-grid article {
    padding: 24px;
  }

  .service-seo-section,
  .faq-section,
  .related-links {
    padding: 24px;
  }

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

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

  .service-card img {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }

  .service-content,
  .contact-copy,
  .contact-form {
    padding: 24px;
  }

  .project-band {
    padding: 24px;
  }
}
