:root {
  --ink: #16202a;
  --muted: #5b6673;
  --line: #d9e1e8;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --blue: #164f85;
  --blue-strong: #0f3f72;
  --green: #1c7c54;
  --maroon: #8b2e46;
  --gold: #c99022;
  --shadow: 0 18px 45px rgba(22, 32, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 12px 6vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 225, 232, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand-logo {
  display: inline-flex;
  flex: 0 0 auto;
  width: 78px;
  height: 52px;
  overflow: visible;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.primary-cta,
.link-cta,
button.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.primary-cta {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(28, 124, 84, 0.2);
}

.primary-cta:hover {
  background: #166945;
  transform: translateY(-1px);
}

.link-cta {
  color: var(--blue-strong);
  background: #fff;
  border-color: var(--line);
}

.link-cta:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}

.large {
  min-height: 52px;
  padding: 0 22px;
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 64px 6vw 74px;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0.22) 66%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 28%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--maroon);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.2rem;
  line-height: 1.16;
  font-weight: 850;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 800;
}

.hero-lede {
  max-width: 590px;
  color: #273544;
  font-size: 1.25rem;
  line-height: 1.55;
}

.placeholder-note {
  margin: 14px 0 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  display: grid;
  place-items: center;
  min-height: 62px;
  padding: 12px;
  color: var(--blue-strong);
  background: #fff;
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 84px 6vw;
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: start;
  background: var(--soft);
}

.intro-grid,
.sector-grid,
.process-grid {
  display: grid;
  gap: 16px;
}

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

.intro-grid div,
.sector-card,
.process-step,
.lead-form,
.contact-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(22, 32, 42, 0.06);
}

.intro-grid div {
  padding: 22px;
}

.intro-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-strong);
}

.intro-grid p,
.sector-card p,
.process-step p,
.moq-copy p,
.contact-lede,
.faq-list p,
.policy p {
  color: var(--muted);
  line-height: 1.65;
}

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

.sector-card {
  padding: 24px;
  min-height: 210px;
}

.sector-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 32px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.sector-card:nth-child(2) .sector-icon,
.sector-card:nth-child(5) .sector-icon {
  background: var(--maroon);
}

.sector-card:nth-child(3) .sector-icon,
.sector-card:nth-child(6) .sector-icon {
  background: var(--green);
}

.sector-card:nth-child(4) .sector-icon,
.sector-card:nth-child(7) .sector-icon {
  background: var(--gold);
}

.value-section {
  background: #f7fbfa;
}

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

.process-step {
  padding: 24px;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--green);
  background: #e7f5ef;
  border-radius: 8px;
  font-weight: 900;
}

.moq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 480px);
  gap: 48px;
  align-items: start;
}

.lead-form {
  padding: 24px;
}

.lead-form label {
  display: block;
  margin-bottom: 16px;
  color: #253241;
  font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

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

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(22, 32, 42, 0.05);
}

.faq-list summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 540px);
  gap: 48px;
  align-items: start;
}

.contact-panel {
  display: grid;
  overflow: hidden;
}

.contact-panel a,
.contact-panel div {
  display: grid;
  gap: 6px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.contact-panel a:last-child,
.contact-panel div:last-child {
  border-bottom: 0;
}

.contact-panel span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.contact-panel strong {
  color: var(--blue-strong);
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 6vw 34px;
  color: var(--muted);
  background: #0f1c28;
}

.site-footer span,
.site-footer a {
  color: #fff;
}

.mobile-cta-bar {
  display: none;
}

.plain-page {
  background: var(--soft);
}

.policy {
  max-width: 820px;
  margin: 0 auto;
  padding: 84px 6vw;
}

.policy h1 {
  font-size: 2.6rem;
}

.policy h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

@media (max-width: 1060px) {
  .nav-links {
    display: none;
  }

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

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

  .intro,
  .moq-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 68px;
  }

  .site-header {
    min-height: 64px;
    padding: 10px 18px;
  }

  .header-actions {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 66px;
    height: 44px;
  }

  .hero {
    min-height: 82svh;
    padding: 42px 18px 54px;
    align-items: end;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 46%, rgba(255, 255, 255, 0.24) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.04) 100%);
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions a {
    width: 100%;
  }

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

  .section {
    padding: 58px 18px;
  }

  .sector-grid,
  .process-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .sector-card,
  .process-step {
    min-height: auto;
  }

  .moq-section,
  .contact-section {
    gap: 28px;
  }

  .mobile-cta-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 28px rgba(22, 32, 42, 0.14);
  }

  .mobile-cta-bar a {
    display: grid;
    place-items: center;
    min-height: 46px;
    color: #fff;
    background: var(--green);
    border-radius: 8px;
    font-weight: 850;
  }

  .mobile-cta-bar a:first-child {
    color: var(--blue-strong);
    background: #eef5fb;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 60px;
    height: 40px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 2.55rem;
  }

  .primary-cta,
  .link-cta,
  button.primary-cta {
    min-height: 48px;
    padding-right: 14px;
    padding-left: 14px;
  }
}

/* Editorial refinement */
:root {
  --ink: #1b2830;
  --muted: #5e696a;
  --line: #d9e3df;
  --paper: #fffdfa;
  --soft: #f2f7f5;
  --sky: #eaf3f6;
  --blue: #17577c;
  --blue-strong: #123f5b;
  --green: #18714f;
  --maroon: #8f3450;
  --gold: #d2a23c;
  --warm: #f8f1e8;
  --shadow: 0 18px 46px rgba(27, 40, 48, 0.1);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --page-pad: max(6vw, calc((100vw - 1280px) / 2));
}

body {
  background: var(--paper);
  font-family: var(--sans);
}

.site-header {
  min-height: 74px;
  padding: 12px var(--page-pad);
  background: rgba(255, 253, 250, 0.94);
  border-bottom: 0;
  box-shadow: 0 5px 22px rgba(27, 40, 48, 0.06);
}

.brand-mark {
  background: var(--blue);
  border-radius: 6px 6px 8px 5px;
  box-shadow: 4px 4px 0 rgba(210, 162, 60, 0.34);
  transform: rotate(-1deg);
}

.brand-logo {
  filter: drop-shadow(0 4px 10px rgba(143, 96, 10, 0.14));
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.nav-links {
  gap: 30px;
}

.nav-links a {
  transition: color 160ms ease;
}

.primary-cta,
.link-cta,
button.primary-cta {
  border-radius: 7px;
  letter-spacing: 0;
}

.primary-cta {
  box-shadow: 0 10px 26px rgba(24, 113, 79, 0.2);
}

.hero {
  min-height: 76svh;
  padding: 68px var(--page-pad) 78px;
}

.hero-media img {
  object-position: 56% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.98) 0%, rgba(255, 253, 250, 0.91) 37%, rgba(255, 253, 250, 0.18) 68%, rgba(255, 253, 250, 0.04) 100%),
    linear-gradient(0deg, rgba(255, 253, 250, 0.78) 0%, rgba(255, 253, 250, 0) 25%);
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
  text-transform: none;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 4.35rem;
  line-height: 1.02;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 700;
}

h3 {
  font-weight: 700;
}

.hero-lede {
  max-width: 620px;
  color: #2d3d43;
  font-size: 1.18rem;
  line-height: 1.65;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 34px;
  padding: 18px var(--page-pad);
  background: var(--sky);
  border: 0;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 0;
  padding: 0;
  color: var(--blue-strong);
  background: transparent;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
}

.trust-strip span:not(:first-child)::before {
  content: "•";
  color: var(--gold);
  font-family: var(--sans);
}

.section {
  padding: 96px var(--page-pad);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-copy {
  max-width: 650px;
}

.intro {
  gap: 50px;
  background: var(--soft);
}

.intro-grid {
  gap: 30px;
}

.intro-grid div,
.sector-card,
.process-step {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.intro-grid div {
  padding: 20px 6px 0;
  border-top: 1px dashed rgba(23, 87, 124, 0.4);
}

.intro-grid div:nth-child(2) {
  border-top-color: rgba(143, 52, 80, 0.42);
}

.intro-grid div:nth-child(3) {
  border-top-color: rgba(24, 113, 79, 0.46);
}

.intro-grid strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.sector-grid {
  gap: 0 38px;
}

.sector-card {
  position: relative;
  min-height: 225px;
  padding: 28px 0 34px;
  border-bottom: 1px dashed rgba(23, 87, 124, 0.28);
  transition: transform 180ms ease;
}

.sector-card:hover {
  transform: translateY(-4px);
}

.sector-icon {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 14px;
  color: var(--blue);
  background: transparent;
  border-radius: 0;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-style: italic;
  font-weight: 700;
}

.sector-card:nth-child(2) .sector-icon,
.sector-card:nth-child(5) .sector-icon {
  color: var(--maroon);
  background: transparent;
}

.sector-card:nth-child(3) .sector-icon,
.sector-card:nth-child(6) .sector-icon {
  color: var(--green);
  background: transparent;
}

.sector-card:nth-child(4) .sector-icon,
.sector-card:nth-child(7) .sector-icon {
  color: #a87516;
  background: transparent;
}

.sector-card h3 {
  font-size: 1.45rem;
}

.value-section {
  background: #f7faf6;
}

.process-grid {
  gap: 30px;
}

.process-step {
  position: relative;
  padding: 0 24px 0 0;
}

.process-step span {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 16px;
  color: var(--green);
  background: transparent;
  border-radius: 0;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 700;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 0;
  left: 54px;
  border-top: 1px dashed rgba(24, 113, 79, 0.34);
}

.moq-section {
  gap: 64px;
}

.moq-copy {
  max-width: 650px;
}

.lead-form {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-form label {
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  background: var(--paper);
  border-radius: 7px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 87, 124, 0.12);
}

.faq-section {
  background: var(--sky);
}

.faq-list {
  gap: 0;
  max-width: 980px;
}

.faq-list details {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(18, 63, 91, 0.22);
  border-radius: 0;
  box-shadow: none;
}

.faq-list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 4px;
  color: var(--green);
  font-family: var(--sans);
  font-size: 1.55rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 760px;
  padding: 0 48px 22px 0;
}

.contact-section {
  gap: 64px;
}

.contact-panel {
  background: transparent;
  border: 0;
  border-left: 1px dashed rgba(23, 87, 124, 0.34);
  border-radius: 0;
  box-shadow: none;
}

.contact-panel a,
.contact-panel div {
  padding: 17px 24px;
  border-bottom: 1px solid rgba(217, 227, 223, 0.86);
}

.site-footer {
  padding: 30px var(--page-pad) 36px;
  background: #13242b;
}

.plain-page {
  background: var(--soft);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-ready {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 520ms ease, transform 520ms ease;
  }

  .reveal-ready.in-view {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .sector-card {
    min-height: 190px;
  }
}

@media (max-width: 720px) {
  :root {
    --page-pad: 18px;
  }

  .site-header {
    min-height: 64px;
    padding: 10px var(--page-pad);
  }

  .hero {
    min-height: 82svh;
    padding: 42px var(--page-pad) 54px;
  }

  .hero-media img {
    object-position: 59% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(255, 253, 250, 0.99) 0%, rgba(255, 253, 250, 0.92) 47%, rgba(255, 253, 250, 0.2) 100%),
      linear-gradient(90deg, rgba(255, 253, 250, 0.52) 0%, rgba(255, 253, 250, 0.02) 100%);
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lede {
    font-size: 1.04rem;
    line-height: 1.55;
  }

  .trust-strip {
    gap: 8px 20px;
    padding: 15px var(--page-pad);
  }

  .trust-strip span {
    font-size: 0.92rem;
  }

  .trust-strip span:not(:first-child)::before {
    margin-right: 2px;
  }

  .section {
    padding: 66px var(--page-pad);
  }

  .intro {
    gap: 34px;
  }

  .intro-grid {
    gap: 22px;
  }

  .sector-grid {
    gap: 0;
  }

  .sector-card {
    min-height: 0;
    padding: 24px 0 28px;
  }

  .sector-card:hover {
    transform: none;
  }

  .process-grid {
    gap: 34px;
  }

  .process-step {
    padding-right: 0;
  }

  .process-step::before {
    right: 0;
  }

  .moq-section,
  .contact-section {
    gap: 34px;
  }

  .lead-form {
    padding: 22px;
  }

  .contact-panel {
    border-top: 1px dashed rgba(23, 87, 124, 0.34);
    border-left: 0;
  }

  .contact-panel a,
  .contact-panel div {
    padding-right: 0;
    padding-left: 0;
  }

  .mobile-cta-bar {
    background: rgba(255, 253, 250, 0.97);
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.82rem;
  }

}
