.zcs-landing {
  --zcs-ink: var(--junction-ink, #0a0f1f);
  --zcs-night: var(--junction-night, #07111f);
  --zcs-navy: var(--junction-navy, #0b2e67);
  --zcs-blue: var(--junction-navy-hover, #164a9a);
  --zcs-sky: var(--junction-sky, #38bdf8);
  --zcs-slate: var(--junction-slate, #475569);
  --zcs-soft: var(--junction-soft, #f8fafc);
  --zcs-line: rgba(11, 46, 103, 0.14);
  --zcs-radius: 8px;
  --zcs-hero-background: url("../img/zcs-junction-hero-bg.jpg");
  color: var(--zcs-slate);
  background: #ffffff;
  overflow-x: hidden;
}

.zcs-landing * {
  box-sizing: border-box;
}

.zcs-landing a {
  text-decoration: none;
}

.zcs-landing h1,
.zcs-landing h2,
.zcs-landing h3,
.zcs-landing p {
  white-space: normal !important;
}

.zcs-mobile-break {
  display: none;
}

.zcs-shell {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.zcs-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.zcs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.zcs-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--zcs-ink);
}

.zcs-brand:hover,
.zcs-brand:focus {
  color: var(--zcs-ink);
}

.zcs-brand__mark {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--zcs-navy), var(--zcs-sky));
  font-family: var(--junction-heading-font-family, "Manrope", sans-serif);
  font-weight: 800;
}

.zcs-brand__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.zcs-brand__name {
  color: var(--zcs-ink);
  font-family: var(--junction-heading-font-family, "Manrope", sans-serif);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.1;
}

.zcs-brand__relationship {
  color: var(--zcs-slate);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.zcs-main {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.zcs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border: 1px solid var(--zcs-navy);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--zcs-navy), var(--zcs-blue));
  box-shadow: 0 14px 30px rgba(11, 46, 103, 0.18);
  font-family: var(--junction-button-font-family, "Manrope", sans-serif);
  font-size: var(--junction-button-font-size, 15px);
  font-weight: var(--junction-button-font-weight, 600);
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.zcs-button:hover,
.zcs-button:focus {
  color: #ffffff;
  border-color: var(--zcs-blue);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11, 46, 103, 0.24);
}

.zcs-button--small {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 14px;
}

.zcs-button--secondary {
  color: var(--zcs-navy);
  background: #ffffff;
  box-shadow: none;
}

.zcs-button--secondary:hover,
.zcs-button--secondary:focus {
  color: var(--zcs-blue);
  background: #ffffff;
}

.zcs-button--light {
  color: var(--zcs-night);
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: none;
}

.zcs-button--light:hover,
.zcs-button--light:focus {
  color: var(--zcs-navy);
  background: #ffffff;
}

.zcs-hero {
  position: relative;
  min-height: 710px;
  padding: 118px 0 92px;
  overflow: hidden;
  background-color: #07111f;
  background-image: var(--zcs-hero-background);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.zcs-hero::before {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 220px;
  content: "";
  background-color: #ffffff;
  -webkit-clip-path: polygon(0 calc(100% - 14px), 100% calc(100% - 5.2vw - 14px), 100% 100%, 0 100%);
          clip-path: polygon(0 calc(100% - 14px), 100% calc(100% - 5.2vw - 14px), 100% 100%, 0 100%);
}

.zcs-hero__grid,
.zcs-split,
.zcs-contact__grid,
.zcs-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
}

.zcs-hero__grid {
  position: relative;
  z-index: 2;
}

.zcs-hero__content {
  max-width: 720px;
}

.zcs-eyebrow {
  position: relative;
  display: inline-block;
  margin: 0 0 16px;
  padding-left: 25px;
  color: var(--zcs-navy);
  font-family: var(--junction-eyebrow-font-family, "Manrope", sans-serif);
  font-size: var(--junction-eyebrow-font-size, 16px);
  font-weight: var(--junction-eyebrow-font-weight, 700);
  line-height: 1.25;
  text-transform: uppercase;
}

.zcs-eyebrow::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 13px;
  height: 13px;
  border: 3px solid currentColor;
  border-radius: 50%;
  transform: translateY(3px);
}

.zcs-hero h1,
.zcs-section h2,
.zcs-footer h2 {
  margin: 0;
  color: var(--zcs-ink);
  font-family: var(--junction-heading-font-family, "Manrope", sans-serif);
  letter-spacing: 0;
}

.zcs-hero h1 {
  max-width: 760px;
  color: #f8fafc;
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 800;
  line-height: 0.98;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.zcs-hero__lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: #dbeafe;
  font-size: 20px;
  line-height: 1.6;
}

.zcs-hero .zcs-eyebrow {
  color: #7dd3fc;
  -webkit-text-fill-color: #7dd3fc;
}

.zcs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.zcs-hero__media {
  position: relative;
  min-height: 530px;
}

.zcs-hero__photo {
  position: absolute;
  display: block;
  width: min(47%, 260px);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

.zcs-hero__photo--one {
  top: 26px;
  left: 18px;
}

.zcs-hero__photo--two {
  right: 16px;
  bottom: 8px;
}

.zcs-hero__badge {
  position: absolute;
  top: 42%;
  left: 50%;
  display: grid;
  gap: 8px;
  width: min(330px, 86%);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(18px);
}

.zcs-hero__badge img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.zcs-hero__badge span {
  color: var(--zcs-navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.zcs-hero__badge strong {
  color: var(--zcs-ink);
  font-family: var(--junction-heading-font-family, "Manrope", sans-serif);
  font-size: 25px;
  line-height: 1.18;
}

.zcs-section {
  padding: 112px 0;
}

.zcs-narrow {
  max-width: 850px;
}

.zcs-section h2 {
  max-width: 820px;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.06;
}

.zcs-section p {
  color: var(--zcs-slate);
  font-size: 18px;
  line-height: 1.72;
}

.zcs-intro p {
  max-width: 780px;
  margin: 24px 0 0;
}

.zcs-services,
.zcs-help,
.zcs-contact {
  background: var(--zcs-soft);
}

.zcs-section__head {
  display: grid;
  gap: 0;
  margin-bottom: 42px;
}

.zcs-card-grid {
  display: grid;
  gap: 22px;
}

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

.zcs-card {
  min-height: 210px;
  padding: 30px;
  border: 1px solid var(--zcs-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.zcs-card h3 {
  margin: 0;
  color: var(--zcs-ink);
  font-family: var(--junction-card-title-font-family, "Manrope", sans-serif);
  font-size: var(--junction-card-title-font-size, 20px);
  font-weight: var(--junction-card-title-font-weight, 700);
  line-height: 1.25;
}

.zcs-card p {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.64;
}

.zcs-experience {
  background: #ffffff;
}

.zcs-copy p:first-child {
  margin-top: 0;
}

.zcs-copy p:last-child {
  margin-bottom: 0;
}

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

.zcs-pill-card {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border: 1px solid var(--zcs-line);
  border-radius: 8px;
  color: var(--zcs-ink);
  background: #ffffff;
  font-family: var(--junction-heading-font-family, "Manrope", sans-serif);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.zcs-junction {
  color: #dbeafe;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(11, 46, 103, 0.94)),
    url("../../../../uploads/2023/08/contact-bg.jpg") center / cover no-repeat;
}

.zcs-junction .zcs-eyebrow,
.zcs-junction h2,
.zcs-junction p {
  color: #ffffff;
}

.zcs-junction .zcs-eyebrow {
  opacity: 0.92;
}

.zcs-junction p a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.zcs-junction p a:hover,
.zcs-junction p a:focus {
  color: #bfdbfe;
}

.zcs-note {
  padding: 34px 0;
  color: var(--zcs-ink);
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.zcs-note p {
  margin: 0;
  color: var(--zcs-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.zcs-contact__grid {
  align-items: start;
}

.zcs-contact__form {
  padding: 34px;
  border: 1px solid var(--zcs-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
}

.zcs-contact .wpcf7-form {
  display: grid;
  gap: 18px;
}

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

.zcs-contact .col-md-6,
.zcs-contact .col-md-12 {
  width: auto;
  max-width: none;
  padding: 0;
}

.zcs-contact .col-md-12 {
  grid-column: 1 / -1;
}

.zcs-contact label {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--zcs-ink);
  font-size: 14px;
  font-weight: 700;
}

.zcs-contact input,
.zcs-contact textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 8px;
  color: var(--zcs-ink);
  background: #ffffff;
  font-size: 15px;
  line-height: 1.45;
}

.zcs-contact textarea {
  min-height: 148px;
  resize: vertical;
}

.zcs-contact .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--zcs-slate);
  font-weight: 600;
  line-height: 1.5;
}

.zcs-contact .wpcf7-acceptance input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.zcs-contact .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.zcs-contact .zcs-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--zcs-slate);
  font-weight: 600;
  line-height: 1.5;
}

.zcs-contact .zcs-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.zcs-contact button,
.zcs-contact input[type="submit"] {
  min-height: 54px;
  padding: 15px 24px;
  border: 1px solid var(--zcs-navy);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--zcs-navy), var(--zcs-blue));
  font-weight: 700;
  cursor: pointer;
}

.zcs-contact .wpcf7-not-valid-tip {
  margin-top: 7px;
  color: #b42318;
  font-size: 13px;
  font-weight: 700;
}

.zcs-contact .wpcf7-response-output {
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 700;
}

.zcs-footer {
  padding: 54px 0 32px;
  color: #cbd5e1;
  background: var(--zcs-night);
}

.zcs-footer__grid {
  align-items: start;
}

.zcs-footer h2 {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.15;
}

.zcs-footer p {
  margin: 12px 0 0;
  color: #cbd5e1;
}

.zcs-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}

.zcs-footer a {
  color: #ffffff;
  font-weight: 700;
}

.zcs-footer a:hover,
.zcs-footer a:focus {
  color: var(--zcs-sky);
}

.zcs-footer__legal {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.zcs-footer__legal p {
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .zcs-button {
    transition: none;
  }

  .zcs-button:hover,
  .zcs-button:focus {
    transform: none;
  }
}

@media screen and (min-width: 2560px) {
  .zcs-hero::before {
    -webkit-clip-path: polygon(0 100%, 100% calc(100% - 5.2vw), 100% 100%, 0 100%);
            clip-path: polygon(0 100%, 100% calc(100% - 5.2vw), 100% 100%, 0 100%);
  }
}

@media (max-width: 1024px) {
  .zcs-hero__grid,
  .zcs-split,
  .zcs-contact__grid,
  .zcs-footer__grid {
    grid-template-columns: 1fr;
  }

  .zcs-hero {
    padding-top: 92px;
  }

  .zcs-hero__media {
    min-height: 500px;
  }

  .zcs-card-grid--services,
  .zcs-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zcs-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .zcs-mobile-break {
    display: block;
  }

  .zcs-shell {
    width: min(330px, calc(100vw - 28px));
    max-width: min(330px, calc(100vw - 28px));
    margin-right: 0;
    margin-left: 14px;
  }

  .zcs-hero__content,
  .zcs-copy,
  .zcs-section__head,
  .zcs-narrow {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .zcs-header__inner {
    min-height: 76px;
  }

  .zcs-header .zcs-button {
    display: none;
  }

  .zcs-brand__mark {
    width: 42px;
    height: 42px;
  }

  .zcs-brand__name {
    font-size: 18px;
  }

  .zcs-brand__relationship {
    font-size: 12px;
  }

  .zcs-eyebrow {
    font-size: 14.5px;
    line-height: 1.3;
  }

  .zcs-hero {
    min-height: auto;
    padding: 68px 0 56px;
  }

  .zcs-hero h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.1;
  }

  .zcs-hero__lead {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.62;
  }

  .zcs-actions {
    display: grid;
  }

  .zcs-actions .zcs-button {
    width: 100%;
  }

  .zcs-hero__media {
    min-height: 410px;
  }

  .zcs-hero__photo {
    width: 48%;
  }

  .zcs-hero__photo--one {
    left: 0;
  }

  .zcs-hero__photo--two {
    right: 0;
  }

  .zcs-hero__badge {
    width: 82%;
    padding: 22px;
  }

  .zcs-hero__badge strong {
    font-size: 21px;
  }

  .zcs-section {
    padding: 76px 0;
  }

  .zcs-section h2 {
    max-width: 100%;
    font-size: 24px;
  }

  .zcs-section p {
    max-width: 100%;
    font-size: 16.5px;
  }

  .zcs-contact label {
    font-size: 15px;
  }

  .zcs-contact input,
  .zcs-contact textarea {
    font-size: 16px;
  }

  .zcs-card-grid--services,
  .zcs-pill-grid,
  .zcs-contact .row {
    grid-template-columns: 1fr;
  }

  .zcs-card {
    min-height: auto;
    padding: 24px;
  }

  .zcs-contact__form {
    padding: 22px;
  }

  .zcs-footer__legal p {
    font-size: 15px;
    line-height: 1.58;
  }
}
