:root {
  --ink: #17202a;
  --muted: #5c6876;
  --line: #dbe5ec;
  --blue: #155da9;
  --bright-blue: #1b79c7;
  --cyan: #25aac6;
  --green: #6aa84f;
  --amber: #8cc63f;
  --deep: #12395a;
  --deep-2: #eaf6fb;
  --paper: #f7fafc;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(23, 32, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--white);
}

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

a {
  color: inherit;
}

.sr-only,
.hidden {
  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: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 229, 236, 0.82);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 180px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #314355;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid transparent;
}

.nav-cta {
  color: var(--white);
  background: var(--blue);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.btn.primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.btn.secondary {
  color: var(--blue);
  background: var(--white);
  border-color: rgba(21, 93, 169, 0.24);
}

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

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #eaf6fb;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 250, 253, 0.97) 0%, rgba(238, 248, 252, 0.9) 44%, rgba(238, 248, 252, 0.36) 100%),
    url("/assets/images/document-platform.jpg") center right / cover no-repeat;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(21, 93, 169, 0.045) 25%, transparent 25%),
    linear-gradient(225deg, rgba(37, 170, 198, 0.04) 25%, transparent 25%);
  background-size: 72px 72px;
  opacity: 0.35;
}

.hero-pattern span {
  position: absolute;
  width: 72px;
  height: 46px;
  transform: skewX(-22deg);
  background: rgba(37, 170, 198, 0.25);
}

.hero-pattern span:nth-child(1) {
  top: 10%;
  left: 43%;
}

.hero-pattern span:nth-child(2) {
  top: 18%;
  left: 39%;
}

.hero-pattern span:nth-child(3) {
  bottom: 16%;
  left: 4%;
}

.hero-pattern span:nth-child(4) {
  bottom: 7%;
  right: 18%;
}

.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 108px 0 170px;
  color: var(--ink);
}

.eyebrow,
.section-kicker,
.tag {
  margin: 0 0 14px;
  color: var(--bright-blue);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--bright-blue);
  font-size: clamp(2.7rem, 5.2vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 2.9vw, 2.55rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.24;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 570px;
  color: #2f495f;
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  font-weight: 650;
}

.hero-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 880px;
  margin: 72px 0 0;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  width: min(1040px, calc(100% - 36px));
  margin-top: 48px;
}

.hero-proof div {
  flex: 1 1 280px;
  min-width: 0;
  padding: 14px 18px;
  border-left: 3px solid var(--cyan);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(21, 93, 169, 0.12);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.hero-proof span {
  color: var(--muted);
}

.proof-strip div {
  min-height: 116px;
  padding: 18px;
  border-left: 3px solid var(--cyan);
  background: rgba(255, 255, 255, 0.1);
}

.proof-strip dt {
  font-size: 1.35rem;
  font-weight: 850;
}

.proof-strip dd {
  margin: 4px 0 0;
  color: #d9edf5;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.split,
.section-head,
.contact-band,
.intro-panel {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.split,
.intro-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 7vw, 84px);
  align-items: start;
}

.intro-panel {
  padding: clamp(28px, 5vw, 52px);
  border-top: 6px solid var(--cyan);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.copy-stack {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-band,
.insight-band {
  background: #f2f4f7;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 780px;
}

.service-grid,
.insight-grid,
.outcome-grid,
.service-showcase {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

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

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

.service-showcase article {
  min-height: 218px;
  padding: 24px;
  border-radius: 2px;
  border: 1px solid #d7dde4;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.08);
}

.service-showcase .feature-service {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.86)),
    url("/assets/images/enterprise-delivery.jpg") center / cover no-repeat;
}

.service-showcase h3 {
  font-size: 1.22rem;
}

.feature-service p {
  color: var(--muted);
}

.service-card,
.insight-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 32, 42, 0.06);
}

.visual-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
  background: var(--deep-2);
  color: var(--ink);
}

.visual-proof img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.visual-proof > div {
  display: grid;
  align-content: center;
  padding: clamp(42px, 7vw, 86px);
}

.visual-proof p,
.visual-proof li {
  color: var(--muted);
}

.visual-proof h2 {
  color: var(--ink);
}

.visual-proof ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card p,
.insight-grid p,
.outcome-grid p {
  color: var(--muted);
}

.service-card ul {
  padding-left: 18px;
  margin: 18px 0 0;
  color: #33485c;
}

.outcome-band {
  background: #ffffff;
}

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

.outcome-grid div {
  min-height: 188px;
  padding: 24px;
  border-top: 4px solid var(--amber);
  background: #fff9f0;
}

.outcome-grid div:nth-child(2) {
  border-top-color: var(--bright-blue);
  background: #f7faff;
}

.outcome-grid div:nth-child(3) {
  border-top-color: var(--amber);
  background: #fffaf2;
}

.outcome-grid div:nth-child(4) {
  border-top-color: var(--cyan);
  background: #f3fbfd;
}

.outcome-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

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

.insight-grid article {
  min-height: 245px;
  padding: 24px;
}

.insight-grid a,
.text-link {
  color: var(--blue);
  font-weight: 800;
}

.mid-cta {
  text-align: center;
  background: var(--deep-2);
}

.mid-cta-inner {
  width: min(680px, 100%);
  margin: 0 auto;
}

.mid-cta p {
  margin-bottom: 28px;
  color: var(--muted);
}

.testimonial {
  background: var(--blue);
  color: var(--white);
}

.testimonial blockquote {
  width: min(920px, 100%);
  margin: 0 auto;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 1.28;
}

.testimonial cite {
  display: block;
  margin-top: 24px;
  color: #a9c2d5;
  font-size: 1rem;
  font-style: normal;
}

.contact-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 7vw, 80px);
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
}

.social-links a {
  color: var(--blue);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.company-directory {
  padding: clamp(54px, 7vw, 88px) clamp(18px, 4vw, 56px);
  background: #f2f8fb;
  border-top: 1px solid var(--line);
}

.company-directory-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(160px, 0.65fr));
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.company-summary img {
  width: 190px;
  margin-bottom: 24px;
}

.company-summary h2 {
  max-width: 540px;
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  line-height: 1.12;
}

.company-summary p,
.directory-column p {
  color: var(--muted);
}

.directory-column {
  display: grid;
  gap: 10px;
}

.directory-column h3 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.98rem;
  text-transform: uppercase;
}

.directory-column a {
  color: #30475a;
  text-decoration: none;
  font-weight: 500;
}

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

.company-directory .social-links {
  margin-top: 22px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}

.social-icon span {
  transform: translateY(-1px);
}

.social-icon[aria-label*="Facebook"] span {
  font-size: 1.55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.social-icon:hover {
  color: var(--white);
  background: var(--cyan);
  transform: translateY(-2px);
}

.directory-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 8px;
  padding: 0 18px;
  border-radius: 4px;
  color: var(--white) !important;
  background: var(--blue);
  font-weight: 700 !important;
  text-decoration: none;
}

.directory-button:hover {
  background: var(--cyan);
}

.directory-cta {
  padding: 22px;
  border-left: 4px solid var(--cyan);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(21, 93, 169, 0.08);
}

label {
  display: grid;
  gap: 8px;
  color: #34465a;
  font-size: 0.92rem;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c8d5df;
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(37, 170, 198, 0.22);
  border-color: var(--cyan);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 40px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #f8fafb;
}

.site-footer p {
  max-width: 430px;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  font-weight: 750;
}

.copyright {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero {
  padding: 70px clamp(18px, 4vw, 56px) 50px;
  background: linear-gradient(135deg, #eaf6fb 0%, #ffffff 72%);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.page-hero > div,
.content-page {
  width: min(980px, 100%);
  margin: 0 auto;
}

.content-page {
  padding: 56px clamp(18px, 4vw, 56px) 92px;
}

.content-page h2 {
  margin-top: 42px;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  line-height: 1.18;
}

.job-card,
.blog-entry,
.answer-box,
.related-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 18px 0;
  background: var(--white);
}

.page-hero h1 {
  color: var(--blue);
  max-width: 860px;
  font-size: clamp(2.15rem, 3.35vw, 3rem);
  line-height: 1.08;
}

.page-hero .hero-lede {
  max-width: 720px;
  font-size: clamp(1.04rem, 1.45vw, 1.2rem);
  font-weight: 550;
}

.answer-box h2,
.detail-aside h2 {
  margin-top: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.22;
}

.service-page-grid .service-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.22;
}

.service-page-grid,
.detail-grid,
.related-grid {
  display: grid;
  gap: 18px;
}

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

.service-page-grid .service-card {
  padding: 24px;
}

.detail-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: start;
}

.detail-aside {
  padding: 24px;
  border-radius: 8px;
  background: #f2fafc;
  border: 1px solid var(--line);
}

.detail-aside ul,
.content-page ul {
  padding-left: 20px;
}

.answer-box {
  background: #f7fbff;
  border-left: 4px solid var(--cyan);
}

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

.related-card a,
.service-showcase h3 a {
  color: inherit;
  text-decoration: none;
}

.related-card a:hover,
.service-showcase h3 a:hover {
  color: var(--blue);
}

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

  .site-nav {
    position: absolute;
    inset: 100% 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: auto;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(242, 250, 253, 0.96) 0%, rgba(238, 248, 252, 0.88) 100%),
      url("/assets/images/document-platform.jpg") center / cover no-repeat;
  }

  .hero-inner {
    padding-top: 68px;
  }

  .proof-strip,
  .split,
  .intro-panel,
  .service-grid,
  .service-showcase,
  .outcome-grid,
  .insight-grid,
  .company-directory-inner,
  .service-page-grid,
  .detail-grid,
  .related-grid,
  .contact-band,
  .section-head,
  .visual-proof {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-top: 44px;
  }

  .hero-inner {
    padding-bottom: 48px;
  }

  .site-footer nav {
    margin-left: auto;
    text-align: right;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 148px;
  }

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

  .hero-inner {
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .proof-strip,
  .hero-pattern span {
    display: none;
  }

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

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

  .eyebrow,
  .section-kicker,
  .tag {
    font-size: 0.86rem;
  }

  .service-showcase article {
    min-height: auto;
    padding: 22px;
  }

  .visual-proof img {
    min-height: 240px;
  }

  .proof-strip div,
  .service-card div,
  .insight-grid article,
  .outcome-grid div {
    padding: 20px;
  }
}
