.zw27-page {
  --ink: #111827;
  --muted: #44546a;
  --line: #d4deea;
  --soft: #f6f9fd;
  --soft-2: #f1faf6;
  --brand: #005fd6;
  --brand-dark: #064b9b;
  --green: #0aa66a;
  --accent: #e31b23;
  --paper: #ffffff;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: clip;
}

body {
  overflow-x: hidden;
}

.zw27-page *,
.zw27-page *::before,
.zw27-page *::after {
  box-sizing: border-box;
}

.zw27-page a {
  color: inherit;
}

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

.zw27-page p,
.zw27-page li {
  font-size: 17px;
  line-height: 1.66;
}

.zw27-page p {
  margin: 0;
}

.zw27-page h1,
.zw27-page h2,
.zw27-page h3,
.zw27-page h4 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.zw27-shell {
  width: min(1200px, calc(100% - 44px));
  max-width: calc(100vw - 44px);
  margin: 0 auto;
}

.zw27-hubnav {
  position: sticky;
  top: var(--header-h, 120px);
  z-index: 60;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(13, 32, 55, 0.08);
  backdrop-filter: blur(14px);
}

.zw27-hubnav .zw27-shell {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.zw27-hubbrand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.zw27-hubbrand img {
  width: 106px;
}

.zw27-hubbrand span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: #142033;
  font-size: 15px;
}

.zw27-hublinks {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.zw27-hublinks::-webkit-scrollbar {
  display: none;
}

.zw27-hublinks a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 8px;
  color: #17243a;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.zw27-hublinks a:hover,
.zw27-hublinks a[aria-current="page"] {
  color: var(--brand);
  background: #edf6ff;
}

.zw27-hublinks .zw27-nav-cta,
.zw27-hublinks .zw27-nav-cta:hover,
.zw27-hublinks .zw27-nav-cta[aria-current="page"] {
  background: var(--brand);
  color: #fff;
}

.zw27-hero {
  min-height: 590px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 44%, rgba(255, 255, 255, 0) 69%),
    linear-gradient(135deg, #f7fbff 0%, #edf6ff 53%, #f3fbf7 100%);
  color: var(--ink);
}

.zw27-hero::after {
  content: "";
  position: absolute;
  right: max(22px, calc((100vw - 1200px) / 2));
  bottom: 70px;
  width: min(46vw, 610px);
  height: 306px;
  border: 1px solid rgba(129, 157, 190, 0.26);
  border-radius: 8px;
  background-image: var(--hero-image);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f1f8ff;
  box-shadow: 0 28px 70px rgba(27, 60, 103, 0.18);
}

.zw27-hero .zw27-shell {
  position: relative;
  z-index: 1;
}

.zw27-hero-copy {
  width: min(610px, 54%);
  padding: 82px 0 92px;
}

.zw27-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.zw27-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--green);
}

.zw27-hero h1 {
  max-width: 680px;
  font-size: 58px;
  font-weight: 900;
  color: #101827;
  overflow-wrap: break-word;
}

.zw27-hero p {
  max-width: 600px;
  margin-top: 22px;
  color: #334155;
  font-size: 20px;
}

.zw27-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.zw27-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.zw27-btn:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.zw27-btn-accent {
  background: var(--brand);
  border-color: var(--brand);
}

.zw27-btn-accent:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.zw27-btn-ghost {
  background: #fff;
  color: var(--brand);
}

.zw27-btn-ghost:hover {
  background: #edf6ff;
  color: var(--brand-dark);
}

.zw27-btn-dark {
  background: #15263a;
  border-color: #15263a;
}

.zw27-section {
  padding: 82px 0;
  background: var(--paper);
}

.zw27-section-soft,
.zw27-section-dark {
  background: var(--soft);
  color: var(--ink);
}

.zw27-section-green {
  background: var(--soft-2);
}

.zw27-section-kicker {
  margin-bottom: 13px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.zw27-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 40px;
}

.zw27-section-head h2,
.zw27-lead-copy h2 {
  font-size: 42px;
  font-weight: 900;
  color: #111827;
}

.zw27-section-head p,
.zw27-lead-copy p {
  color: var(--muted);
  font-weight: 500;
}

.zw27-proof {
  margin-top: -38px;
  position: relative;
  z-index: 2;
}

.zw27-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 39, 68, 0.1);
  overflow: hidden;
}

.zw27-proof-item {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.zw27-proof-item:last-child {
  border-right: 0;
}

.zw27-proof-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--brand);
  font-size: 26px;
}

.zw27-proof-item span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

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

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

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

.zw27-card,
.zw27-card-dark {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 38, 66, 0.04);
}

.zw27-card h3 {
  margin-bottom: 12px;
  color: #142033;
  font-size: 23px;
}

.zw27-card p,
.zw27-card-dark p {
  color: var(--muted);
  font-weight: 500;
}

.zw27-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #edf6ff;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.zw27-tag-new {
  background: #e9f8f1;
  color: #087c55;
}

.zw27-tag-caution {
  background: #fff2f2;
  color: var(--accent);
}

.zw27-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}

.zw27-link:hover {
  color: var(--brand-dark);
}

.zw27-media-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.zw27-media-split img {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(18, 39, 68, 0.12);
}

.zw27-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.zw27-list li {
  position: relative;
  padding-left: 28px;
}

.zw27-list li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.zw27-timeline {
  display: grid;
  gap: 16px;
  counter-reset: zwstep;
}

.zw27-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 38, 66, 0.04);
}

.zw27-step::before {
  counter-increment: zwstep;
  content: counter(zwstep, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: #edf6ff;
  color: var(--brand);
  font-weight: 900;
}

.zw27-step h3 {
  margin-bottom: 8px;
  color: #142033;
  font-size: 24px;
}

.zw27-feature-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  display: table;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(17, 38, 66, 0.04);
}

.zw27-feature-table th,
.zw27-feature-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.45;
}

.zw27-feature-table th {
  background: #f0f6ff;
  color: #10243a;
  font-weight: 900;
}

.zw27-feature-table tr:last-child td {
  border-bottom: 0;
}

.zw27-feature-table .yes {
  color: #087c55;
  font-weight: 900;
}

.zw27-feature-table .no {
  color: var(--accent);
  font-weight: 900;
}

.zw27-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.zw27-lead-band {
  padding: 78px 0;
  background:
    linear-gradient(90deg, rgba(0, 95, 214, 0.08), rgba(10, 166, 106, 0.08)),
    #f7fbff;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.zw27-lead-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.58fr);
  gap: 44px;
  align-items: start;
}

.zw27-lead-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(18, 39, 68, 0.1);
}

.zw27-lead-form h3 {
  color: #101827;
}

.zw27-lead-form p {
  color: #334155;
}

.zw27-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.zw27-field {
  display: grid;
  gap: 7px;
}

.zw27-field-full {
  grid-column: 1 / -1;
}

.zw27-field label {
  color: #273547;
  font-size: 13px;
  font-weight: 800;
}

.zw27-field input,
.zw27-field select,
.zw27-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cfd9e5;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

.zw27-field input::placeholder,
.zw27-field textarea::placeholder {
  color: #64748b;
  opacity: 1;
}

.zw27-field select:invalid {
  color: #526175;
}

.zw27-field option {
  color: #111827;
  background: #fff;
}

.zw27-field input:focus,
.zw27-field select:focus,
.zw27-field textarea:focus {
  outline: 2px solid rgba(0, 95, 214, 0.18);
  border-color: var(--brand);
}

.zw27-field textarea {
  min-height: 96px;
  resize: vertical;
}

.zw27-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 16px 0 18px;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.zw27-consent a {
  color: var(--brand-dark);
  font-weight: 900;
}

.zw27-consent input {
  margin-top: 3px;
}

.zw27-form-status {
  min-height: 22px;
  margin-top: 12px;
  color: #087c55;
  background: #e9f8f1;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 800;
}

.zw27-form-status:empty {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.zw27-sticky-cta {
  display: none;
}

.zw27-page footer {
  background: #171717;
  color: #f8fafc;
  padding: 48px 0 28px;
}

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

.zw27-page footer .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.zw27-page footer h3,
.zw27-page footer h4 {
  margin: 0 0 12px;
}

.zw27-page footer p,
.zw27-page footer a,
.zw27-page footer li {
  color: #cdd5df;
  font-size: 15px;
  line-height: 1.6;
}

.zw27-page footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.zw27-page footer a {
  display: inline-flex;
  padding: 4px 0;
  text-decoration: none;
}

.zw27-page footer a:hover {
  color: #fff;
}

.zw27-page footer .footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 1080px) {
  .zw27-hero::after {
    opacity: 0.2;
    right: 20px;
    width: 56vw;
  }

  .zw27-hero-copy {
    width: min(690px, 72%);
  }

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

  .zw27-proof-item {
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 860px) {
  .zw27-hubnav .zw27-shell {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .zw27-hublinks {
    width: 100%;
  }

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

  .zw27-hero::after {
    display: none;
  }

  .zw27-hero-copy {
    width: 100%;
    padding: 64px 0 72px;
  }

  .zw27-hero h1 {
    font-size: 42px;
  }

  .zw27-hero p {
    font-size: 18px;
  }

  .zw27-section {
    padding: 64px 0;
  }

  .zw27-section-head,
  .zw27-media-split,
  .zw27-lead-wrap {
    grid-template-columns: 1fr;
  }

  .zw27-feature-table {
    display: block;
    overflow-x: auto;
  }

  .zw27-page footer .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .zw27-shell,
  .zw27-page footer .container {
    width: min(100% - 28px, 1180px);
    max-width: calc(100vw - 28px);
  }

  .zw27-hubbrand {
    width: auto;
    justify-content: flex-start;
  }

  .zw27-hubbrand img {
    width: 94px;
  }

  .zw27-hubbrand span {
    font-size: 14px;
  }

  .zw27-hero-copy {
    padding: 52px 0 64px;
  }

  .zw27-hero h1 {
    font-size: 34px;
  }

  .zw27-hero p,
  .zw27-page p,
  .zw27-page li {
    font-size: 16px;
  }

  .zw27-section-head h2,
  .zw27-lead-copy h2 {
    font-size: 31px;
  }

  .zw27-proof-grid,
  .zw27-grid,
  .zw27-grid-2,
  .zw27-grid-4,
  .zw27-form-grid,
  .zw27-page footer .footer-content {
    grid-template-columns: 1fr;
  }

  .zw27-proof-item {
    border-right: 0;
  }

  .zw27-step {
    grid-template-columns: 1fr;
  }

  .zw27-sticky-cta {
    display: none;
  }
}
