@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --zs-font-sans: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --zs-text: #1f2937;
  --zs-heading: #0f2b53;
  --zs-muted: #5f6c82;
  --zs-label: #1d355b;
  --zs-surface: #ffffff;
  --zs-border: #dfe5ef;
  --zs-radius-lg: 18px;
  --zs-radius-md: 14px;
  --zs-shadow-soft: 0 14px 30px rgba(15, 35, 67, 0.1);
  --zs-copy-size: 1rem;
  --zs-copy-line: 1.7;
  --zs-label-size: 0.95rem;
  --zs-section-gap: clamp(1.25rem, 2vw, 2rem);
}

/* About Us company presentation */
.landing-shell .about-company-story {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 61, 1, .12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f6faf7 52%, #edf7ef 100%);
}

.landing-shell .about-company-story::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, #003d01, #0f766e);
}

.landing-shell .about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, .8fr);
  gap: 2rem;
  align-items: stretch;
}

.landing-shell .about-story-copy {
  padding-left: .35rem;
}

.landing-shell .about-story-copy h2 {
  margin: .35rem 0 1rem;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  color: #0f172a;
}

.landing-shell .about-story-copy p {
  color: #42536a;
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.landing-shell .about-story-copy strong {
  color: #003d01;
}

.landing-shell .about-story-panel {
  border: 1px solid rgba(0, 61, 1, .18);
  border-radius: 22px;
  padding: 1rem;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 20px 45px rgba(16, 39, 64, .08);
  display: grid;
  gap: .85rem;
}

.landing-shell .about-metric {
  border-radius: 18px;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(0, 61, 1, .08), rgba(15, 118, 110, .08));
}

.landing-shell .about-metric strong,
.landing-shell .about-metric span {
  display: block;
}

.landing-shell .about-metric strong {
  color: #003d01;
  font-size: 1.05rem;
  margin-bottom: .35rem;
}

.landing-shell .about-metric span {
  color: #536579;
  line-height: 1.55;
}

.landing-shell .about-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.landing-shell .about-capability-card {
  border: 1px solid rgba(21, 48, 71, .1);
  border-radius: 24px;
  padding: 1.2rem;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 39, 64, .07);
}

.landing-shell .about-capability-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #003d01;
  color: #fff;
  font-weight: 800;
  margin-bottom: .9rem;
}

.landing-shell .about-capability-card h3 {
  color: #0f172a;
  font-size: 1.12rem;
  margin-bottom: .55rem;
}

.landing-shell .about-capability-card p {
  color: #5f7085;
  line-height: 1.65;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .landing-shell .about-story-grid,
  .landing-shell .about-capability-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact page: simple modern enquiry layout */
.landing-shell .contact-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.landing-shell .contact-overview-card {
  border: 1px solid rgba(21, 48, 71, .1);
  border-radius: 24px;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(15, 118, 110, .12), transparent 30%),
    #ffffff;
  box-shadow: 0 18px 42px rgba(16, 39, 64, .07);
}

.landing-shell .contact-card-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #003d01;
  color: #fff;
  margin-bottom: .9rem;
}

.landing-shell .contact-overview-card h3 {
  color: #0f172a;
  font-size: 1.12rem;
  margin-bottom: .55rem;
}

.landing-shell .contact-overview-card p {
  color: #5f7085;
  line-height: 1.65;
  margin-bottom: 0;
}

.landing-shell .contact-form-panel {
  background:
    linear-gradient(90deg, rgba(0, 61, 1, .06), rgba(255,255,255,0) 34%),
    #fff;
}

.landing-shell .contact-form-panel h2 {
  color: #0f172a;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.landing-shell .contact-form-panel .public-contact-box {
  border-radius: 22px;
  border-color: rgba(0, 61, 1, .16);
  background: linear-gradient(135deg, rgba(0, 61, 1, .06), rgba(15, 118, 110, .06));
}

.landing-shell .contact-form-panel .public-contact-box p {
  display: grid;
  gap: .2rem;
  color: #536579;
}

.landing-shell .contact-form-panel .public-contact-box strong {
  color: #003d01;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.landing-shell .contact-form-panel .public-contact-box span {
  color: #203047;
  line-height: 1.55;
}

.landing-shell .contact-form-panel .public-help-form {
  padding: 1rem;
  border: 2px solid rgba(0, 61, 1, .42);
  border-radius: 24px;
  background:
    linear-gradient(#f8fbff, #f8fbff) padding-box,
    linear-gradient(135deg, #003d01, #0f766e, #38bdf8) border-box;
  box-shadow: 0 22px 52px rgba(0, 61, 1, .14);
}

.landing-shell .contact-form-panel .public-help-form:focus-within {
  border-color: rgba(0, 61, 1, .72);
  box-shadow: 0 24px 58px rgba(0, 61, 1, .2);
}

@media (max-width: 991.98px) {
  .landing-shell .contact-overview-grid {
    grid-template-columns: 1fr;
  }
}

.landing-shell,
.auth-wrapper,
.customer-shell {
  font-family: var(--zs-font-sans);
  color: var(--zs-text);
  padding-top: 68px;
}

/* Index-compatible shared header/footer chrome */
nav.navbar.index-navbar {
  background: linear-gradient(135deg, #24394f 0%, #16324b 55%, #1e5f78 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 0.58rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1050;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #17344c !important;
  background-image: linear-gradient(135deg, #24394f 0%, #16324b 55%, #1e5f78 100%) !important;
}

nav.navbar.index-navbar .navbar-brand {
  font-size: 1.34rem;
  font-weight: 700;
  color: #fff !important;
}

nav.navbar.index-navbar .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0 0.28rem;
  transition: all 0.3s ease;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

nav.navbar.index-navbar .nav-link:hover {
  color: #fff !important;
  transform: translateY(-2px);
}

nav.navbar.index-navbar .index-login-btn {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0.4rem 0.86rem !important;
}

nav.navbar.index-navbar .container {
  display: flex;
  align-items: center;
}

nav.navbar.index-navbar .navbar-brand {
  margin-right: auto;
}

nav.navbar.index-navbar .navbar-collapse {
  justify-content: flex-end;
}

nav.navbar.index-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

nav.navbar.index-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(255, 255, 255, 0.18);
}

footer.index-footer {
  background: #111827;
  color: #9ca3af;
  padding: 2rem 0 0.75rem;
}

footer.index-footer h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

footer.index-footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

footer.index-footer .footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 1.15rem;
  padding-top: 1rem;
  text-align: center;
}

footer.index-footer .brand-footer-col p {
  max-width: 320px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1080;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.34);
}

.landing-shell,
.auth-wrapper,
.customer-shell,
.landing-shell input,
.landing-shell select,
.landing-shell textarea,
.landing-shell button,
.auth-wrapper input,
.auth-wrapper select,
.auth-wrapper textarea,
.auth-wrapper button,
.customer-shell input,
.customer-shell select,
.customer-shell textarea,
.customer-shell button {
  font-family: var(--zs-font-sans);
}

.landing-shell p,
.auth-wrapper p,
.customer-shell p,
.landing-shell li,
.auth-wrapper li,
.customer-shell li {
  font-size: var(--zs-copy-size);
  line-height: var(--zs-copy-line);
}

.landing-shell h1,
.auth-wrapper h1,
.customer-shell h1,
.landing-shell h2,
.auth-wrapper h2,
.customer-shell h2,
.landing-shell h3,
.auth-wrapper h3,
.customer-shell h3,
.landing-shell h4,
.auth-wrapper h4,
.customer-shell h4 {
  color: var(--zs-heading);
  letter-spacing: -0.02em;
}

.landing-shell h1,
.auth-wrapper h1,
.customer-shell h1 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.1;
  font-weight: 800;
}

.landing-shell h2,
.auth-wrapper h2,
.customer-shell h2 {
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
  line-height: 1.18;
  font-weight: 800;
}

.landing-shell h3,
.auth-wrapper h3,
.customer-shell h3 {
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.25;
  font-weight: 700;
}

.landing-shell .text-muted,
.auth-wrapper .text-muted,
.customer-shell .text-muted,
.landing-shell .auth-muted,
.auth-wrapper .auth-muted,
.customer-shell .auth-muted {
  color: var(--zs-muted) !important;
}

.landing-shell .hero,
.landing-shell .hero h1,
.landing-shell .hero p,
.landing-shell .cta-section h2,
.landing-shell .cta-section p,
.landing-shell .register-hero,
.landing-shell .register-hero h1,
.landing-shell .register-hero p {
  color: #ffffff !important;
}

.auth-wrapper .auth-panel,
.auth-wrapper .auth-panel h1,
.auth-wrapper .auth-panel h2,
.auth-wrapper .auth-panel h3,
.auth-wrapper .auth-panel p,
.auth-wrapper .auth-panel li,
.auth-wrapper .auth-panel .auth-kicker,
.auth-wrapper .auth-panel .auth-summary-box h2 {
  color: #fff !important;
}

.auth-wrapper .auth-panel .auth-summary-box {
  color: rgba(255, 255, 255, 0.95) !important;
}

.auth-wrapper .auth-submit-row {
  margin-top: 0.45rem;
}

.auth-wrapper .auth-form-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}

.auth-wrapper .auth-form-field {
  width: 100%;
  min-width: 0;
}

.auth-wrapper .btn-auth-submit {
  border-radius: 6px !important;
  min-width: 112px;
  padding: 0.44rem 0.92rem;
}

.auth-wrapper .password-field-wrap .form-control {
  padding-right: 2.7rem !important;
}

/* Keep the branded password toggle as the only reveal control on Edge/IE. */
.auth-wrapper .password-field-wrap input[type="password"]::-ms-reveal,
.auth-wrapper .password-field-wrap input[type="password"]::-ms-clear {
  display: none;
}

.auth-wrapper .password-toggle-btn {
  position: absolute;
  top: 50%;
  right: 0.65rem;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #60758a;
  padding: 0;
  line-height: 1;
}

.landing-shell .form-label,
.auth-wrapper .form-label,
.customer-shell .form-label {
  font-size: var(--zs-label-size);
  font-weight: 700;
  line-height: 1.35;
  color: var(--zs-label);
  margin-bottom: 0.45rem;
}

.landing-shell .form-text,
.auth-wrapper .form-text,
.customer-shell .form-text,
.landing-shell small.text-muted,
.auth-wrapper small.text-muted,
.customer-shell small.text-muted {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--zs-muted) !important;
}

.landing-shell .form-control,
.landing-shell .form-select,
.auth-wrapper .form-control,
.auth-wrapper .form-select,
.customer-shell .form-control,
.customer-shell .form-select {
  font-size: 0.98rem;
  line-height: 1.45;
  border-radius: var(--zs-radius-md);
}

.landing-shell .btn,
.auth-wrapper .btn,
.customer-shell .btn {
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 700;
  border-radius: 8px;
}

.landing-shell .section-panel,
.landing-shell .feature-block,
.landing-shell .lp-sitelinks,
.auth-wrapper .auth-card,
.auth-wrapper .auth-panel,
.customer-shell .register-section,
.customer-shell .summary-rail,
.customer-shell .review-card,
.customer-shell .payment-panel,
.customer-shell .register-help-card {
  border-radius: var(--zs-radius-lg);
}

.landing-shell main.container,
.auth-wrapper main.container,
.customer-shell main.container {
  padding-top: var(--zs-section-gap);
  padding-bottom: var(--zs-section-gap);
}

.landing-shell .section-panel,
.landing-shell .public-page-card,
.landing-shell .public-section-card,
.landing-shell .public-help-shell,
.landing-shell .public-cta-shell {
  padding: clamp(1rem, 1.4vw, 1.5rem);
}

.landing-shell .public-page-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.landing-shell .public-page-hero p,
.landing-shell .public-section-card p,
.landing-shell .public-help-shell p,
.landing-shell .public-cta-shell p {
  font-size: 1rem;
}

.landing-shell .lp-content-kicker,
.landing-shell .hero-kicker,
.auth-wrapper .auth-kicker,
.customer-shell .card-eyebrow,
.customer-shell .section-heading,
.customer-shell .summary-title {
  letter-spacing: 0.08em;
}

.auth-wrapper .auth-heading,
.customer-shell .card-title-large {
  font-size: clamp(1.75rem, 2.25vw, 2.4rem);
  line-height: 1.12;
  font-weight: 800;
  color: var(--zs-heading);
}

.auth-wrapper .auth-brandline,
.customer-shell .card-eyebrow {
  font-size: 0.78rem;
}

.auth-wrapper .auth-panel p,
.auth-wrapper .auth-summary-list li,
.auth-wrapper .auth-point-list li {
  font-size: 0.98rem;
}

.customer-shell .section-heading {
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.2;
}

.customer-shell .progress-pill,
.customer-shell .summary-label,
.customer-shell .review-item strong {
  font-size: 0.95rem;
}

.landing-shell footer p,
.landing-shell footer li,
.landing-shell footer a,
.customer-shell footer p,
.customer-shell footer li,
.customer-shell footer a {
  font-size: 0.98rem;
}

@media (max-width: 991.98px) {
  .landing-shell,
  .auth-wrapper,
  .customer-shell {
    padding-top: 62px;
  }

  nav.navbar.index-navbar .navbar-collapse {
    width: 100%;
    margin-top: 0.7rem;
    padding: 0.8rem;
    border-radius: 16px;
    background: rgba(10, 28, 46, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(3, 10, 20, 0.28);
  }

  nav.navbar.index-navbar .navbar-nav {
    width: 100%;
    gap: 0.3rem;
  }

  nav.navbar.index-navbar .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin: 0;
    border-radius: 12px;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
    text-align: center;
  }

  nav.navbar.index-navbar .index-login-btn {
    width: 100%;
    justify-content: center;
  }

  .landing-shell main.container,
  .auth-wrapper main.container,
  .customer-shell main.container {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  .landing-shell,
  .auth-wrapper,
  .customer-shell {
    padding-top: 58px;
    overflow-x: hidden;
  }

  .auth-wrapper .auth-shell {
    display: block;
    width: 100%;
  }

  .auth-wrapper .auth-card,
  .auth-wrapper .auth-focus-card,
  .auth-wrapper .auth-card .card-body,
  .auth-wrapper .auth-form-stack {
    width: 100%;
    max-width: 100%;
  }

  .landing-shell p,
  .auth-wrapper p,
  .customer-shell p,
  .landing-shell li,
  .auth-wrapper li,
  .customer-shell li {
    font-size: 0.95rem;
  }

  .landing-shell .form-control,
  .landing-shell .form-select,
  .auth-wrapper .form-control,
  .auth-wrapper .form-select,
  .customer-shell .form-control,
  .customer-shell .form-select {
    font-size: 0.95rem;
  }

  nav.navbar.index-navbar {
    padding: 0.46rem 0;
  }

  nav.navbar.index-navbar .navbar-brand {
    font-size: 1.12rem;
  }

  nav.navbar.index-navbar .container {
    gap: 0.6rem;
  }

  footer.index-footer {
    padding-top: 1.55rem;
  }

  footer.index-footer .row > [class*="col-"] {
    margin-bottom: 0.25rem;
  }

  footer.index-footer h5 {
    margin-bottom: 0.45rem;
  }

  footer.index-footer .brand-footer-col p {
    max-width: none;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding: 0.85rem 0.95rem;
  }

  .auth-wrapper .auth-submit-row {
    gap: 0.65rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .auth-wrapper main.container {
    padding-top: 1.45rem;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .auth-wrapper .auth-brandline {
    margin-top: 0.15rem;
  }

  .auth-wrapper .auth-heading {
    font-size: clamp(1.1rem, 7.6vw, 1.95rem);
    line-height: 1.06;
  }

  .auth-wrapper .auth-submit-row > .auth-forgot-link {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
  }

  .auth-wrapper .auth-submit-row > .btn-auth-submit {
    width: auto;
    flex: 0 0 auto;
    min-width: 132px;
    max-width: 156px;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .auth-wrapper .auth-links-box {
    overflow-wrap: anywhere;
  }
}

/* Public support/manual readability overrides */
.landing-shell .public-page-copy h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  line-height: 1.12;
}

.landing-shell .public-page-copy p {
  font-size: 1.02rem;
  line-height: 1.7;
}

.landing-shell .public-page-card h3,
.landing-shell .public-contact-box h3 {
  font-size: 1.18rem;
  line-height: 1.28;
}

.landing-shell .public-page-card p,
.landing-shell .public-section-card p,
.landing-shell .public-section-card li,
.landing-shell .public-help-shell p,
.landing-shell .public-cta-shell p {
  font-size: 1rem;
  line-height: 1.65;
}

.landing-shell .public-section-card h2,
.landing-shell .public-cta-shell h2 {
  font-size: 1.34rem;
  line-height: 1.22;
}

.landing-shell .lp-sitelinks-header h2 {
  font-size: 1.5rem;
  line-height: 1.2;
}

.landing-shell .lp-sitelinks-header p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.landing-shell .lp-sitelink-card span {
  font-size: 0.99rem;
  line-height: 1.35;
}

.landing-shell .lp-sitelink-card small {
  font-size: 0.86rem;
  line-height: 1.45;
}

.landing-shell .public-help-form .form-label {
  font-size: 0.93rem;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0.01em;
}

.landing-shell .public-help-form .form-control,
.landing-shell .public-help-form textarea {
  font-size: 0.98rem;
  line-height: 1.45;
}

@media (max-width: 575.98px) {
  .landing-shell .public-page-copy h1 {
    font-size: 1.72rem;
  }

  .landing-shell .public-page-copy p,
  .landing-shell .public-page-card p,
  .landing-shell .public-section-card p,
  .landing-shell .public-section-card li,
  .landing-shell .public-help-shell p,
  .landing-shell .public-cta-shell p {
    font-size: 0.97rem;
    line-height: 1.62;
  }

  .landing-shell .public-page-card h3,
  .landing-shell .public-contact-box h3 {
    font-size: 1.08rem;
  }

  .landing-shell .public-section-card h2,
  .landing-shell .public-cta-shell h2 {
    font-size: 1.12rem;
  }

  .landing-shell .lp-sitelinks-header h2 {
    font-size: 1.25rem;
  }

  .landing-shell .lp-sitelink-card span {
    font-size: 0.95rem;
  }

  .landing-shell .lp-sitelink-card small {
    font-size: 0.83rem;
  }
}

/* Typography parity pass: support-manual, legal, need-help, why-zerolink-rms */
.landing-shell .public-page-shell--support-manual .public-page-copy h1,
.landing-shell .public-page-shell--legal .public-page-copy h1,
.landing-shell .public-page-shell--need-help .public-page-copy h1,
.landing-shell .public-page-shell--why-zerolink-rms .public-page-copy h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  line-height: 1.12;
  font-weight: 800;
}

.landing-shell .public-page-shell--support-manual .public-page-copy p,
.landing-shell .public-page-shell--legal .public-page-copy p,
.landing-shell .public-page-shell--need-help .public-page-copy p,
.landing-shell .public-page-shell--why-zerolink-rms .public-page-copy p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--zs-muted) !important;
}

.landing-shell .public-page-shell--support-manual .public-page-card h3,
.landing-shell .public-page-shell--support-manual .public-section-card h2,
.landing-shell .public-page-shell--support-manual .public-cta-shell h2,
.landing-shell .public-page-shell--legal .public-page-card h3,
.landing-shell .public-page-shell--legal .public-section-card h2,
.landing-shell .public-page-shell--legal .public-cta-shell h2,
.landing-shell .public-page-shell--need-help .public-page-card h3,
.landing-shell .public-page-shell--need-help .public-section-card h2,
.landing-shell .public-page-shell--need-help .public-cta-shell h2,
.landing-shell .public-page-shell--why-zerolink-rms .public-page-card h3,
.landing-shell .public-page-shell--why-zerolink-rms .public-section-card h2,
.landing-shell .public-page-shell--why-zerolink-rms .public-cta-shell h2 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.landing-shell .public-page-shell--support-manual .public-page-card p,
.landing-shell .public-page-shell--support-manual .public-section-card p,
.landing-shell .public-page-shell--support-manual .public-section-card li,
.landing-shell .public-page-shell--support-manual .public-help-shell p,
.landing-shell .public-page-shell--support-manual .public-cta-shell p,
.landing-shell .public-page-shell--legal .public-page-card p,
.landing-shell .public-page-shell--legal .public-section-card p,
.landing-shell .public-page-shell--legal .public-section-card li,
.landing-shell .public-page-shell--legal .public-help-shell p,
.landing-shell .public-page-shell--legal .public-cta-shell p,
.landing-shell .public-page-shell--need-help .public-page-card p,
.landing-shell .public-page-shell--need-help .public-section-card p,
.landing-shell .public-page-shell--need-help .public-section-card li,
.landing-shell .public-page-shell--need-help .public-help-shell p,
.landing-shell .public-page-shell--need-help .public-cta-shell p,
.landing-shell .public-page-shell--why-zerolink-rms .public-page-card p,
.landing-shell .public-page-shell--why-zerolink-rms .public-section-card p,
.landing-shell .public-page-shell--why-zerolink-rms .public-section-card li,
.landing-shell .public-page-shell--why-zerolink-rms .public-help-shell p,
.landing-shell .public-page-shell--why-zerolink-rms .public-cta-shell p {
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 575.98px) {
  .landing-shell .public-page-shell--support-manual .public-page-copy h1,
  .landing-shell .public-page-shell--legal .public-page-copy h1,
  .landing-shell .public-page-shell--need-help .public-page-copy h1,
  .landing-shell .public-page-shell--why-zerolink-rms .public-page-copy h1 {
    font-size: 1.72rem;
    line-height: 1.14;
  }

  .landing-shell .public-page-shell--support-manual .public-page-copy p,
  .landing-shell .public-page-shell--support-manual .public-page-card p,
  .landing-shell .public-page-shell--support-manual .public-section-card p,
  .landing-shell .public-page-shell--support-manual .public-section-card li,
  .landing-shell .public-page-shell--support-manual .public-help-shell p,
  .landing-shell .public-page-shell--support-manual .public-cta-shell p,
  .landing-shell .public-page-shell--legal .public-page-copy p,
  .landing-shell .public-page-shell--legal .public-page-card p,
  .landing-shell .public-page-shell--legal .public-section-card p,
  .landing-shell .public-page-shell--legal .public-section-card li,
  .landing-shell .public-page-shell--legal .public-help-shell p,
  .landing-shell .public-page-shell--legal .public-cta-shell p,
  .landing-shell .public-page-shell--need-help .public-page-copy p,
  .landing-shell .public-page-shell--need-help .public-page-card p,
  .landing-shell .public-page-shell--need-help .public-section-card p,
  .landing-shell .public-page-shell--need-help .public-section-card li,
  .landing-shell .public-page-shell--need-help .public-help-shell p,
  .landing-shell .public-page-shell--need-help .public-cta-shell p,
  .landing-shell .public-page-shell--why-zerolink-rms .public-page-copy p,
  .landing-shell .public-page-shell--why-zerolink-rms .public-page-card p,
  .landing-shell .public-page-shell--why-zerolink-rms .public-section-card p,
  .landing-shell .public-page-shell--why-zerolink-rms .public-section-card li,
  .landing-shell .public-page-shell--why-zerolink-rms .public-help-shell p,
  .landing-shell .public-page-shell--why-zerolink-rms .public-cta-shell p {
    font-size: 0.97rem;
    line-height: 1.62;
  }
}
