:root {
  --blue: #1684c5;
  --blue-700: #0b4f7a;
  --navy: #102331;
  --ink: #151a1f;
  --grey: #66727c;
  --line: #dce6ec;
  --soft: #f4f7f9;
  --pale: #e8f5fc;
  --white: #ffffff;
  --logo-bg: #f7f7f7;
  --shadow: 0 18px 45px rgba(16, 35, 49, 0.11);
  --radius: 8px;
  --max: 1180px;
  --header: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--blue-700);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--blue);
}

:focus-visible {
  outline: 3px solid rgba(22, 132, 197, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 230, 236, 0.85);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand span {
  font-size: 1rem;
  line-height: 1.12;
  max-width: 13rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  color: var(--navy);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
}

.site-nav a:not(.button)::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 0.18rem;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--blue-700);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--blue);
  background: var(--pale);
  color: var(--blue-700);
}

.button.ghost {
  background: transparent;
  color: var(--blue-700);
  border-color: rgba(22, 132, 197, 0.35);
}

main {
  overflow: clip;
}

.hero {
  position: relative;
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(3.5rem, 6vw, 5.5rem);
  background:
    radial-gradient(circle at 86% 16%, rgba(22, 132, 197, 0.18), transparent 28%),
    linear-gradient(135deg, var(--white), var(--soft));
}

.hero::before,
.hero::after,
.orbital::before,
.orbital::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(22, 132, 197, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 560px;
  height: 560px;
  right: -210px;
  top: -220px;
}

.hero::after {
  width: 290px;
  height: 290px;
  right: 5vw;
  bottom: -120px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.72fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--blue-700);
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.55rem, 6vw, 5.45rem);
}

.page-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.25rem, 4.8vw, 4.6rem);
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 3.1rem);
}

h3 {
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
}

p {
  margin: 0;
}

.lead {
  max-width: 68ch;
  margin-top: 1.15rem;
  color: #40505b;
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-card {
  position: relative;
  min-height: 430px;
  padding: 2rem;
  border: 1px solid rgba(22, 132, 197, 0.18);
  border-radius: 8px;
  background: var(--logo-bg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card img {
  width: min(72%, 330px);
  margin: 0 auto 2rem;
}

.hero-card > img {
  background: var(--logo-bg);
}

.hero-card .rings {
  position: absolute;
  width: 390px;
  height: 390px;
  right: -110px;
  bottom: -145px;
  border: 28px solid rgba(22, 132, 197, 0.12);
  border-radius: 50%;
}

.hero-facts {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.8rem;
}

.fact {
  display: flex;
  align-items: start;
  gap: 0.8rem;
  padding: 0.95rem;
  border: 1px solid rgba(220, 230, 236, 0.8);
  border-radius: var(--radius);
  background: var(--white);
}

.icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--pale);
  color: var(--blue-700);
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.section.soft,
.page-hero {
  background: var(--soft);
}

.section-header {
  max-width: 760px;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header p {
  margin-top: 0.9rem;
  color: #4b5b66;
  font-size: 1.05rem;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-item {
  padding: 1.2rem;
  background: var(--white);
}

.trust-item strong {
  display: block;
  color: var(--navy);
}

.trust-item span {
  color: var(--grey);
  font-size: 0.95rem;
}

.grid {
  display: grid;
  gap: 1.1rem;
}

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

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.photo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.photo-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(16, 35, 49, 0.06);
}

.photo-card img,
.inline-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card picture {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--soft);
}

.photo-card.tall picture {
  aspect-ratio: 3 / 4;
}

.photo-card div {
  padding: 1rem;
}

.photo-card h3 {
  font-size: 1.05rem;
}

.photo-card p {
  margin-top: 0.45rem;
  color: #4b5b66;
  font-size: 0.95rem;
}

.inline-photo {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--soft);
}

.inline-photo.compact {
  min-height: 260px;
}

.visual-panel {
  display: grid;
  gap: 1rem;
}

.card {
  min-height: 100%;
  padding: clamp(1.2rem, 2vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 132, 197, 0.34);
  box-shadow: 0 15px 35px rgba(16, 35, 49, 0.08);
}

.card h3 {
  margin-top: 1rem;
}

.card .inline-photo + h2,
.card .inline-photo + h3 {
  margin-top: 1.1rem;
}

.card p,
.card li {
  color: #4b5b66;
}

.card p {
  margin-top: 0.75rem;
}

.card a {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.industry-band {
  position: relative;
  background: var(--navy);
  color: var(--white);
}

.industry-band h2,
.industry-band h3 {
  color: var(--white);
}

.industry-band p,
.industry-band li {
  color: rgba(255, 255, 255, 0.78);
}

.industry-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.process {
  counter-reset: steps;
}

.process .card {
  position: relative;
  padding-top: 4rem;
}

.process .card::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  color: var(--blue);
  font-weight: 900;
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.panel {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.check-list,
.plain-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 1.7rem;
}

.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--blue);
}

.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3.2rem);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

.cta::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -110px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 24px solid rgba(255, 255, 255, 0.12);
}

.cta h2,
.cta p {
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: var(--white);
}

.cta p {
  max-width: 720px;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
}

.cta .button {
  position: relative;
  z-index: 1;
  margin-top: 1.4rem;
  background: var(--white);
  color: var(--blue-700);
}

.page-hero {
  position: relative;
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  margin-bottom: 1.3rem;
  color: var(--grey);
  font-size: 0.95rem;
}

.breadcrumbs a {
  color: var(--blue-700);
  font-weight: 700;
  text-decoration: none;
}

.service-detail {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-detail + .service-detail {
  margin-top: 1.2rem;
}

.service-detail h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.2rem;
}

.notice {
  margin-top: 1.2rem;
  padding: 1rem;
  border-left: 4px solid var(--blue);
  background: var(--pale);
  color: #35505f;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.contact-list div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  display: block;
  color: var(--navy);
}

form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

label,
legend {
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.78rem 0.85rem;
  border: 1px solid #cbd8df;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 145px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 0.22rem;
  flex: 0 0 auto;
}

.form-status,
.error {
  font-weight: 700;
}

.error {
  color: #9f1d1d;
}

.form-status {
  min-height: 1.5rem;
  color: var(--blue-700);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.legal-content {
  max-width: 850px;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.legal-content p,
.legal-content ul {
  margin-top: 0.9rem;
  color: #4b5b66;
}

.legal-content li {
  margin-top: 0.45rem;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.76);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(150px, 0.65fr));
  gap: 2rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.site-footer p {
  margin-top: 1rem;
  max-width: 36rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-links a:hover,
.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.94rem;
}

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

  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 1rem 20px 1.5rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

  .site-nav a {
    padding: 0.85rem 0;
  }

  .site-nav .button {
    margin-top: 0.5rem;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .grid.three,
  .grid.four,
  .photo-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand span {
    max-width: 9.5rem;
    font-size: 0.88rem;
  }

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

  .hero {
    padding-top: 3.4rem;
  }

  h1 {
    max-width: 11.5ch;
  }

  .grid.three,
  .grid.four,
  .grid.two,
  .photo-grid,
  .trust-grid,
  .service-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

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