:root {
  --navy: #071e4a;
  --navy-soft: #102d62;
  --green: #0b6a3a;
  --green-dark: #064b2a;
  --ink: #24313d;
  --muted: #65717c;
  --line: #dfe5e8;
  --surface: #ffffff;
  --surface-soft: #f5f8f8;
  --surface-green: #eef6f1;
  --shadow: 0 18px 45px rgba(7, 30, 74, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

p {
  color: var(--muted);
}

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

.narrow {
  width: min(820px, calc(100% - 40px));
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--navy);
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 229, 232, 0.8);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  max-width: 270px;
}

.brand-logo {
  width: 255px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

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

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
}

.section-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 106, 58, 0.08) 0%, rgba(11, 106, 58, 0) 34%),
    linear-gradient(160deg, #ffffff 0%, #f6f8f8 100%);
}

.section-band::before,
.section-band::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.section-band::before {
  top: 56px;
  right: -120px;
  width: 340px;
  height: 34px;
  background: rgba(7, 30, 74, 0.08);
  transform: rotate(38deg);
}

.section-band::after {
  right: 80px;
  bottom: 46px;
  width: 220px;
  height: 24px;
  background: rgba(11, 106, 58, 0.11);
  transform: rotate(38deg);
}

.hero {
  padding: 92px 0 86px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 56px;
}

.hero-logo {
  width: min(360px, 100%);
  margin-bottom: 42px;
}

.hero h1,
.page-hero h1,
.article-hero h1 {
  max-width: 900px;
  color: var(--navy);
  font-size: 3.25rem;
  line-height: 1.08;
  margin-bottom: 22px;
}

.lead {
  max-width: 650px;
  color: #44505c;
  font-size: 1.22rem;
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(7, 30, 74, 0.16);
}

.button-primary {
  color: #ffffff;
  background: var(--navy);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--navy-soft);
}

.button-secondary {
  color: var(--navy);
  background: #ffffff;
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--green);
}

.hero-panel {
  position: relative;
  min-height: 390px;
}

.delivery-line,
.delivery-node {
  position: absolute;
}

.delivery-line {
  width: 280px;
  height: 28px;
  border-radius: 3px;
  transform: rotate(42deg);
  box-shadow: var(--shadow);
}

.line-one {
  top: 60px;
  right: 40px;
  background: var(--navy);
}

.line-two {
  top: 170px;
  right: 130px;
  background: var(--green);
}

.line-three {
  top: 285px;
  right: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.delivery-node {
  width: 78px;
  height: 78px;
  border: 16px solid var(--surface);
  border-radius: 8px;
  background: var(--green);
  box-shadow: var(--shadow);
  transform: rotate(42deg);
}

.node-one {
  top: 18px;
  right: 226px;
  background: var(--navy);
}

.node-two {
  top: 144px;
  right: 32px;
}

.node-three {
  top: 250px;
  right: 198px;
  background: var(--navy-soft);
}

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

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

.trust-grid span {
  padding: 20px 18px;
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  background: #ffffff;
}

.section {
  padding: 88px 0;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

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

.section-heading.with-action {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.eyebrow,
.article-meta {
  color: var(--green);
  font-size: 0.83rem;
  font-weight: 800;
}

.section-heading h2,
.contact-section h2 {
  color: var(--navy);
  font-size: 2.25rem;
  line-height: 1.18;
  margin-bottom: 14px;
}

.section-heading p:last-child {
  max-width: 660px;
  margin-bottom: 0;
}

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

.service-card,
.article-card {
  position: relative;
  min-height: 245px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 30, 74, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 106, 58, 0.32);
  box-shadow: var(--shadow);
}

.card-accent {
  display: block;
  width: 54px;
  height: 6px;
  margin-bottom: 28px;
  background: var(--green);
  border-radius: 4px;
}

.service-card h3,
.article-card h3,
.article-card h2,
.approach-list h3 {
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.service-card p,
.article-card p {
  margin-bottom: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}

.rich-copy {
  max-width: 720px;
  padding-left: 28px;
  border-left: 4px solid var(--green);
}

.rich-copy p {
  color: #34404c;
  font-size: 1.08rem;
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: approach;
}

.approach-list li {
  min-height: 220px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(11, 106, 58, 0.08) 0%, rgba(11, 106, 58, 0) 44%),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.approach-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: #ffffff;
  background: var(--navy);
  border-radius: 6px;
  font-weight: 800;
}

.article-card {
  display: flex;
  flex-direction: column;
}

.article-card a,
.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.article-card a:hover,
.article-card a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--green-dark);
}

.article-card-large {
  min-height: 300px;
}

.page-hero,
.article-hero {
  padding: 82px 0 74px;
}

.page-hero h1,
.article-hero h1 {
  font-size: 2.9rem;
}

.back-link {
  margin-bottom: 28px;
}

.article-content {
  width: min(780px, calc(100% - 40px));
  padding: 72px 0 88px;
}

.article-content p {
  color: #34404c;
  font-size: 1.08rem;
}

.article-content h2 {
  color: var(--navy);
  margin-top: 42px;
  margin-bottom: 12px;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(7, 30, 74, 0.04) 0%, rgba(7, 30, 74, 0) 48%),
    #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  padding: 34px 0;
  background: var(--navy);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  width: 190px;
  padding: 6px 10px;
  background: #ffffff;
  border-radius: 6px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 260px;
  }

  .hero h1,
  .page-hero h1,
  .article-hero h1 {
    font-size: 2.55rem;
  }

  .section-heading h2,
  .contact-section h2 {
    font-size: 2rem;
  }

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

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

@media (max-width: 760px) {
  .container,
  .narrow,
  .article-content {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-logo {
    width: 205px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .hero,
  .page-hero,
  .article-hero {
    padding: 58px 0 56px;
  }

  .hero-logo {
    margin-bottom: 30px;
  }

  .hero h1,
  .page-hero h1,
  .article-hero h1 {
    font-size: 2.08rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    min-height: 210px;
  }

  .delivery-line {
    width: 210px;
    height: 22px;
  }

  .line-one {
    top: 32px;
    right: 34px;
  }

  .line-two {
    top: 112px;
    right: 106px;
  }

  .line-three {
    top: 182px;
    right: 22px;
  }

  .delivery-node {
    width: 58px;
    height: 58px;
    border-width: 12px;
  }

  .node-one {
    top: 6px;
    right: 184px;
  }

  .node-two {
    top: 98px;
    right: 18px;
  }

  .node-three {
    top: 164px;
    right: 154px;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading.with-action {
    display: block;
  }

  .section-heading.with-action .text-link {
    margin-top: 18px;
  }

  .card-grid,
  .approach-list,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .article-card,
  .approach-list li {
    min-height: auto;
    padding: 24px;
  }

  .rich-copy {
    padding-left: 20px;
  }

  .contact-layout {
    padding: 28px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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