:root {
  --zs-navy: #102542;
  --zs-navy-2: #16395f;
  --zs-blue: #2d6cdf;
  --zs-gold: #f2b84b;
  --zs-ink: #1f2933;
  --zs-muted: #5f6c7b;
  --zs-line: #dfe6ee;
  --zs-soft: #f4f8fb;
  --zs-cream: #fffaf1;
  --zs-white: #ffffff;
  --zs-radius: 8px;
  --zs-shadow: 0 18px 50px rgba(16, 37, 66, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--zs-ink);
  background: var(--zs-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

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

a {
  color: var(--zs-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.zs-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(223, 230, 238, 0.85);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.zs-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--zs-navy);
  font-weight: 800;
  white-space: nowrap;
}

.zs-brand:hover {
  text-decoration: none;
}

.zs-brand img {
  width: clamp(168px, 18vw, 236px);
  height: auto;
  max-height: 54px;
  border-radius: 0;
  object-fit: contain;
  display: block;
}

.zs-main-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.zs-main-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--zs-ink);
  font-size: 14px;
  font-weight: 700;
}

.zs-main-menu a:hover {
  background: var(--zs-soft);
  color: var(--zs-navy);
  text-decoration: none;
}

.zs-header-cta,
.zs-menu-toggle,
.zs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.zs-menu-toggle {
  display: none;
  background: var(--zs-soft);
  color: var(--zs-navy);
}

.zs-header-cta,
.zs-btn-primary {
  color: var(--zs-navy);
  background: var(--zs-gold);
  box-shadow: 0 10px 26px rgba(242, 184, 75, 0.24);
}

.zs-btn-secondary {
  color: var(--zs-white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.zs-header-cta:hover,
.zs-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.zs-hero {
  width: 100%;
  background: radial-gradient(circle at 86% 16%, rgba(242, 184, 75, 0.28), transparent 30%), linear-gradient(135deg, var(--zs-navy), var(--zs-navy-2));
  color: var(--zs-white);
}

.zs-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 430px);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 94px) 0 clamp(42px, 7vw, 78px);
}

.zs-eyebrow {
  margin: 0 0 12px;
  color: var(--zs-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.zs-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--zs-white);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: 0;
}

.zs-hero-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

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

.zs-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.zs-hero-points li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.zs-photo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin-top: 28px;
}

.zs-photo-strip img {
  width: 72px;
  height: 72px;
  border: 3px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  object-fit: cover;
  background: var(--zs-soft);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.zs-form-card {
  padding: 26px;
  border-radius: var(--zs-radius);
  color: var(--zs-ink);
  background: var(--zs-white);
  box-shadow: var(--zs-shadow);
}

.zs-form-kicker {
  margin: 0 0 6px;
  color: var(--zs-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.zs-form-card h2 {
  margin: 0;
  color: var(--zs-navy);
  font-size: 26px;
  line-height: 1.15;
}

.zs-form-card p {
  margin: 12px 0 18px;
  color: var(--zs-muted);
}

.zs-form-slot {
  min-height: 88px;
}

.zs-form-fallback {
  width: 100%;
  margin-top: 12px;
}

#formuser {
  width: 100%;
  min-height: 64px;
}

.zs-container,
.container.marketing {
  width: min(1120px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.zs-section {
  padding: clamp(52px, 8vw, 86px) 0;
}

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

.zs-section-navy {
  color: var(--zs-white);
  background: var(--zs-navy);
}

.zs-section-head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.zs-section-head h2,
.zs-copy-grid h2,
.zs-advice h2,
.zs-final-cta h2 {
  margin: 0;
  color: var(--zs-navy);
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
}

.zs-section-navy .zs-section-head h2 {
  color: var(--zs-white);
}

.zs-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 28px;
  align-items: start;
}

.zs-copy-grid p,
.zs-advice p {
  color: var(--zs-muted);
}

.zs-note-card {
  padding: 24px;
  border: 1px solid var(--zs-line);
  border-radius: var(--zs-radius);
  background: var(--zs-cream);
}

.zs-note-card h3 {
  margin: 0 0 10px;
  color: var(--zs-navy);
  font-size: 23px;
}

.zs-note-card a,
.zs-card-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--zs-blue);
  font-weight: 900;
}

.zs-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.zs-stat-grid div {
  padding: 22px;
  border: 1px solid var(--zs-line);
  border-radius: var(--zs-radius);
  background: var(--zs-white);
}

.zs-stat-grid strong {
  display: block;
  color: var(--zs-navy);
  font-size: 30px;
  line-height: 1.1;
}

.zs-stat-grid span {
  display: block;
  margin-top: 8px;
  color: var(--zs-muted);
}

.zs-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.zs-profile-card {
  overflow: hidden;
  border: 1px solid var(--zs-line);
  border-radius: var(--zs-radius);
  background: var(--zs-white);
  box-shadow: 0 12px 28px rgba(16, 37, 66, 0.08);
}

.zs-profile-card > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.zs-profile-body {
  padding: 18px;
}

.zs-profile-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.zs-profile-top h3 {
  margin: 0;
  color: var(--zs-navy);
  font-size: 20px;
  line-height: 1.2;
}

.zs-profile-top span,
.zs-profile-body p {
  color: var(--zs-muted);
}

.zs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.zs-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--zs-navy);
  background: var(--zs-soft);
  font-size: 12px;
  font-weight: 800;
}

.zs-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.zs-hub-card {
  display: block;
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--zs-line);
  border-radius: var(--zs-radius);
  color: var(--zs-ink);
  background: var(--zs-white);
}

.zs-hub-card:hover {
  border-color: rgba(45, 108, 223, 0.42);
  box-shadow: 0 12px 26px rgba(16, 37, 66, 0.08);
  text-decoration: none;
}

.zs-hub-card strong {
  display: block;
  color: var(--zs-navy);
  font-size: 19px;
}

.zs-hub-card span {
  display: block;
  margin-top: 8px;
  color: var(--zs-muted);
  font-size: 15px;
}

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

.zs-steps div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--zs-radius);
  background: rgba(255, 255, 255, 0.08);
}

.zs-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--zs-navy);
  background: var(--zs-gold);
  font-weight: 900;
}

.zs-steps h3 {
  margin: 18px 0 8px;
  color: var(--zs-white);
  font-size: 22px;
}

.zs-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.zs-advice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: center;
}

.zs-advice ul {
  margin: 0;
  padding: 22px 22px 22px 42px;
  border-radius: var(--zs-radius);
  background: var(--zs-soft);
}

.zs-faq {
  max-width: 900px;
}

.zs-faq details {
  border: 1px solid var(--zs-line);
  border-radius: var(--zs-radius);
  background: var(--zs-white);
}

.zs-faq details + details {
  margin-top: 12px;
}

.zs-faq summary {
  padding: 18px 20px;
  color: var(--zs-navy);
  font-weight: 900;
  cursor: pointer;
}

.zs-faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--zs-muted);
}

.zs-final-cta {
  padding: clamp(46px, 7vw, 78px) 0;
  color: var(--zs-white);
  text-align: center;
  background: linear-gradient(135deg, var(--zs-navy), var(--zs-navy-2));
}

.zs-final-cta h2 {
  color: var(--zs-white);
}

.zs-final-cta p {
  max-width: 680px;
  margin: 14px auto 22px;
  color: rgba(255, 255, 255, 0.86);
}

.zs-content {
  max-width: 920px;
  margin: 0 auto;
}

.zs-content h2,
.zs-content h3 {
  color: var(--zs-navy);
  line-height: 1.18;
}

.zs-content p {
  color: var(--zs-muted);
}

.zs-content-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
}

.zs-content-list li {
  padding: 18px;
  border: 1px solid var(--zs-line);
  border-radius: var(--zs-radius);
  background: var(--zs-white);
}

.zs-contact-form {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid var(--zs-line);
  border-radius: var(--zs-radius);
  background: var(--zs-white);
  box-shadow: 0 12px 28px rgba(16, 37, 66, 0.08);
}

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

.zs-field label {
  color: var(--zs-navy);
  font-weight: 900;
}

.zs-field input,
.zs-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--zs-line);
  border-radius: var(--zs-radius);
  color: var(--zs-ink);
  background: var(--zs-white);
  font: inherit;
}

.zs-field textarea {
  min-height: 150px;
  resize: vertical;
}

.zs-captcha {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.zs-captcha table {
  border-collapse: collapse;
}

.zs-alert {
  max-width: 760px;
  margin: 0 auto 18px;
  padding: 16px 18px;
  border-radius: var(--zs-radius);
  font-weight: 800;
}

.zs-alert-ok {
  color: #14532d;
  background: #dcfce7;
}

.zs-alert-error {
  color: #7f1d1d;
  background: #fee2e2;
}

.zs-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #081827;
}

.zs-footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr 1fr;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.zs-footer strong {
  color: var(--zs-white);
  font-size: 20px;
}

.zs-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.zs-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.breadcumbs,
.cats {
  font-family: Arial, Helvetica, sans-serif;
}

.cats {
  display: inline-flex !important;
  float: none !important;
  margin: 6px !important;
  border: 1px solid var(--zs-line) !important;
  border-radius: 999px !important;
  background: var(--zs-white) !important;
  padding: 9px 13px !important;
}

.cats a {
  color: var(--zs-navy) !important;
  font-weight: 800;
}

@media (max-width: 980px) {
  .zs-header {
    flex-wrap: wrap;
  }

  .zs-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .zs-main-menu {
    display: none;
    order: 4;
    width: 100%;
    justify-content: flex-start;
    padding-top: 10px;
  }

  .zs-main-menu.is-open {
    display: flex;
  }

  .zs-header-cta {
    display: none;
  }

  .zs-hero-inner,
  .zs-copy-grid,
  .zs-advice,
  .zs-footer-inner {
    grid-template-columns: 1fr;
  }

  .zs-profile-grid,
  .zs-hub-grid,
  .zs-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .zs-header {
    padding: 10px 16px;
  }

  .zs-brand span {
    font-size: 15px;
  }

  .zs-hero-inner {
    width: min(100% - 24px, 1180px);
    padding-top: 38px;
  }

  .zs-hero h1 {
    font-size: 37px;
  }

  .zs-hero-lead {
    font-size: 18px;
  }

  .zs-form-card {
    padding: 20px;
  }

  .zs-profile-grid,
  .zs-hub-grid,
  .zs-stat-grid,
  .zs-content-list,
  .zs-steps {
    grid-template-columns: 1fr;
  }

  .zs-photo-strip img {
    width: 58px;
    height: 58px;
  }
}

.zs-profile-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.zs-network-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--zs-line);
  background: var(--zs-soft);
}

.zs-network-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid rgba(45, 108, 223, 0.18);
  border-radius: 999px;
  color: var(--zs-navy);
  background: var(--zs-white);
  font-size: 13px;
  font-weight: 800;
}

.zs-network-strip a:hover,
.zs-link-cloud a:hover,
.zs-footer a:hover {
  text-decoration: none;
}

.zs-link-cloud,
.zs-footer-link-cloud {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
}

.zs-link-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--zs-line);
  border-radius: 999px;
  color: var(--zs-navy);
  background: var(--zs-white);
  font-weight: 800;
}

.zs-legacy-content a,
.zs-note-card a {
  font-weight: 900;
}

.zs-steps-light div {
  border-color: var(--zs-line);
  background: var(--zs-white);
  box-shadow: 0 12px 28px rgba(16, 37, 66, 0.07);
}

.zs-steps-light h3 {
  color: var(--zs-navy);
}

.zs-steps-light p {
  color: var(--zs-muted);
}

.zs-steps-light a {
  color: var(--zs-blue);
  font-weight: 900;
}

.zs-footer-wide {
  width: min(1120px, calc(100% - 32px));
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.zs-footer-section span {
  display: block;
  margin-bottom: 10px;
  color: var(--zs-white);
  font-weight: 900;
}

.zs-footer-section nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 13px;
}

.zs-footer-link-cloud {
  justify-content: flex-start;
}

.zs-footer-link-cloud + span,
.zs-footer-section + .zs-footer-section {
  margin-top: 22px;
}

.zs-section-visual {
  padding-top: 0;
}

.zs-visual-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.zs-visual-band img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--zs-radius);
  box-shadow: var(--zs-shadow);
}

.zs-visual-band h2 {
  margin: 0;
  color: var(--zs-navy);
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.12;
}

.zs-visual-band p:not(.zs-eyebrow) {
  color: var(--zs-muted);
}

@media (max-width: 980px) {
  .zs-visual-band {
    grid-template-columns: 1fr;
  }
}

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

.zs-longform h2 + p {
  margin-top: 16px;
}

.zs-longform h2:not(:first-child) {
  margin-top: 38px;
}

.zs-compact-list {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--zs-muted);
}

.zs-compact-list li + li {
  margin-top: 8px;
}

.zs-chat-frame {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

.zs-chat-frame iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

@media (max-width: 640px) {
  .zs-chat-frame iframe {
    height: 720px;
  }
}
