:root {
  --zc-bg: #f7faf9;
  --zc-bg-strong: #eef6f3;
  --zc-surface: #ffffff;
  --zc-ink: #13201f;
  --zc-muted: #5f716f;
  --zc-line: rgba(19, 32, 31, 0.13);
  --zc-primary: #11796f;
  --zc-primary-strong: #0c5f58;
  --zc-accent: #e86f50;
  --zc-blue: #2e6fb5;
  --zc-shadow: 0 24px 80px rgba(19, 32, 31, 0.13);
  --zc-radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--zc-bg);
  color: var(--zc-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.screen-reader-text,
.zc-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.zc-skip-link:focus {
  z-index: 10000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--zc-ink);
  color: #fff;
  border-radius: var(--zc-radius);
}

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

.zc-header {
  position: sticky;
  top: var(--zc-admin-bar-offset, 0);
  z-index: 100;
  background: rgba(247, 250, 249, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.zc-header.is-scrolled {
  border-color: var(--zc-line);
  box-shadow: 0 10px 35px rgba(19, 32, 31, 0.08);
}

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

.zc-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--zc-ink);
  text-decoration: none;
  font-weight: 780;
  letter-spacing: 0;
}

.zc-brand__mark,
.zc-brand__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.zc-brand__mark {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--zc-primary), var(--zc-blue));
  color: #fff;
}

.zc-brand__icon {
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(46, 111, 181, 0.22);
}

.zc-brand__text {
  font-size: 1.04rem;
}

.zc-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 640;
  color: rgba(19, 32, 31, 0.78);
}

.zc-nav a {
  text-decoration: none;
}

.zc-nav a:hover,
.zc-nav a:focus {
  color: var(--zc-primary-strong);
}

.zc-nav__cta {
  padding: 10px 16px;
  border-radius: var(--zc-radius);
  background: var(--zc-ink);
  color: #fff !important;
}

.zc-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--zc-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.zc-lang-switch a {
  min-width: 32px;
  padding: 5px 7px;
  border-radius: 6px;
  text-align: center;
  font-size: 0.78rem;
}

.zc-lang-switch a.is-active {
  background: var(--zc-ink);
  color: #fff;
}

.zc-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--zc-line);
  border-radius: var(--zc-radius);
  background: var(--zc-surface);
}

.zc-nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--zc-ink);
}

.zc-hero {
  min-height: calc(100svh - 76px - var(--zc-admin-bar-offset, 0px));
  display: flex;
  align-items: center;
  padding: 68px 0 40px;
  overflow: hidden;
}

.zc-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 42px;
}

.zc-eyebrow {
  margin: 0 0 12px;
  color: var(--zc-primary-strong);
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zc-hero h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(2.45rem, 4.55vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.zc-hero h1 span {
  display: block;
}

.zc-hero__lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--zc-muted);
  font-size: 1.18rem;
}

.zc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.zc-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--zc-radius);
  text-decoration: none;
  font-weight: 760;
  line-height: 1.1;
}

.zc-button--primary {
  background: var(--zc-primary);
  color: #fff;
  box-shadow: 0 16px 35px rgba(17, 121, 111, 0.2);
}

.zc-button--primary:hover {
  background: var(--zc-primary-strong);
}

.zc-button--secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--zc-line);
  color: var(--zc-ink);
}

.zc-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 36px 0 0;
}

.zc-metrics div {
  padding-top: 14px;
  border-top: 1px solid var(--zc-line);
}

.zc-metrics dt {
  font-size: 1.2rem;
  font-weight: 820;
}

.zc-metrics dd {
  margin: 2px 0 0;
  color: var(--zc-muted);
  font-size: 0.9rem;
  line-height: 1.38;
}

.zc-hero__visual {
  position: relative;
  margin-right: min(-11vw, -70px);
}

.zc-hero__visual::before {
  content: "";
  position: absolute;
  inset: 11% 12% 7% 7%;
  background: radial-gradient(circle at 55% 50%, rgba(17, 121, 111, 0.24), transparent 65%);
  filter: blur(40px);
}

.zc-hero__visual img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7.6;
  object-fit: contain;
  background: #eef5f7;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow: var(--zc-shadow);
}

.zc-logo-strip {
  padding: 18px 0;
  background: var(--zc-ink);
  color: rgba(255, 255, 255, 0.78);
}

.zc-logo-strip__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 720;
  font-size: 0.94rem;
}

.zc-section {
  padding: 92px 0;
}

.zc-section--intro {
  background: var(--zc-surface);
}

.zc-section__heading {
  max-width: 780px;
  text-align: center;
}

.zc-section__heading--left {
  margin: 0;
  text-align: left;
}

.zc-section__heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

.zc-section__heading p:not(.zc-eyebrow) {
  margin: 20px 0 0;
  color: var(--zc-muted);
  font-size: 1.08rem;
}

.zc-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.zc-feature {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--zc-line);
  border-radius: var(--zc-radius);
  background: #fff;
}

.zc-feature__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--zc-bg-strong);
  color: var(--zc-primary-strong);
  font-weight: 820;
}

.zc-feature h3,
.zc-timeline h3 {
  margin: 22px 0 8px;
  font-size: 1.24rem;
  line-height: 1.15;
}

.zc-feature p,
.zc-timeline p {
  margin: 0;
  color: var(--zc-muted);
}

.zc-workflow {
  background: var(--zc-bg-strong);
}

.zc-workflow__grid,
.zc-product-band__grid,
.zc-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 62px;
}

.zc-timeline {
  display: grid;
  gap: 14px;
}

.zc-timeline__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--zc-line);
  border-radius: var(--zc-radius);
  background: rgba(255, 255, 255, 0.72);
}

.zc-timeline__item > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--zc-primary);
  color: #fff;
  font-weight: 820;
}

.zc-timeline__item h3 {
  margin-top: 0;
}

.zc-product-band {
  background: var(--zc-ink);
  color: #fff;
}

.zc-product-band .zc-eyebrow {
  color: #7ee0d1;
}

.zc-product-band .zc-section__heading p,
.zc-product-band .zc-checklist {
  color: rgba(255, 255, 255, 0.74);
}

.zc-ui-card {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
}

.zc-ui-card__top {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 8px;
}

.zc-ui-card__top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
}

.zc-calendar-mock {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: #fbfffe;
  color: var(--zc-ink);
}

.zc-calendar-mock__sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  background: #eaf5f3;
  color: var(--zc-muted);
}

.zc-calendar-mock__sidebar strong {
  color: var(--zc-ink);
}

.zc-calendar-mock__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 62px;
  gap: 1px;
  padding: 20px;
  background: #dceae8;
}

.zc-calendar-mock__head,
.zc-slot {
  padding: 10px;
  background: #fff;
  font-size: 0.82rem;
}

.zc-calendar-mock__head {
  color: var(--zc-muted);
  font-weight: 780;
}

.zc-slot {
  border-left: 4px solid var(--zc-primary);
  color: var(--zc-ink);
  font-weight: 720;
  grid-row: span 2;
}

.zc-slot--wide {
  grid-column: span 2;
}

.zc-slot--accent {
  border-color: var(--zc-accent);
}

.zc-checklist {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.zc-checklist li {
  position: relative;
  padding-left: 28px;
}

.zc-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--zc-accent);
}

.zc-proof {
  background: #fff;
}

.zc-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.zc-proof blockquote {
  margin: 0;
}

.zc-proof blockquote p {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 3.1rem);
  line-height: 1.12;
  font-weight: 760;
}

.zc-proof cite {
  display: block;
  margin-top: 22px;
  color: var(--zc-muted);
  font-style: normal;
  font-weight: 720;
}

.zc-proof__stats {
  display: grid;
  gap: 14px;
}

.zc-proof__stats div {
  padding: 22px;
  border: 1px solid var(--zc-line);
  border-radius: var(--zc-radius);
  background: var(--zc-bg);
}

.zc-proof__stats strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.zc-proof__stats span {
  display: block;
  margin-top: 8px;
  color: var(--zc-muted);
}

.zc-faq {
  background: var(--zc-bg-strong);
}

.zc-faq__list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin-top: 38px;
}

.zc-faq details {
  border: 1px solid var(--zc-line);
  border-radius: var(--zc-radius);
  background: rgba(255, 255, 255, 0.74);
}

.zc-faq summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 780;
}

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

.zc-contact {
  background: #fff;
}

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

.zc-contact__note {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 20px;
  border-radius: var(--zc-radius);
  background: var(--zc-bg-strong);
  color: var(--zc-muted);
}

.zc-contact__note strong {
  color: var(--zc-ink);
}

.zc-form-card,
.zc-store-card {
  min-height: 260px;
  padding: 18px;
  border: 1px solid var(--zc-line);
  border-radius: var(--zc-radius);
  background: var(--zc-bg);
  box-shadow: var(--zc-shadow);
}

.zc-store-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  padding: 34px;
}

.zc-store-card__label {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--zc-ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.zc-store-card h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.zc-store-card p {
  max-width: 430px;
  margin: 0;
  color: var(--zc-muted);
}

.zc-footer {
  padding: 54px 0 30px;
  background: var(--zc-ink);
  color: rgba(255, 255, 255, 0.76);
}

.zc-brand--footer {
  color: #fff;
}

.zc-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: start;
}

.zc-footer p {
  max-width: 420px;
  margin: 16px 0 0;
}

.zc-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px 28px;
}

.zc-footer__links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.zc-footer__bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.9rem;
}

.zc-prose {
  max-width: 820px;
}

.zc-prose h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

@media (max-width: 980px) {
  .zc-hero {
    min-height: auto;
    padding-top: 48px;
  }

  .zc-hero__grid,
  .zc-workflow__grid,
  .zc-product-band__grid,
  .zc-contact__grid,
  .zc-proof__grid {
    grid-template-columns: 1fr;
  }

  .zc-hero__visual {
    margin-right: 0;
  }

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

@media (max-width: 760px) {
  .zc-shell {
    width: calc(100% - 28px);
  }

  .zc-hero__copy {
    max-width: 360px;
  }

  .zc-header__inner {
    min-height: 68px;
  }

  .zc-nav-toggle {
    display: block;
  }

  .zc-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(76px + var(--zc-admin-bar-offset, 0px));
    display: none;
    padding: 18px;
    border: 1px solid var(--zc-line);
    border-radius: var(--zc-radius);
    background: #fff;
    box-shadow: var(--zc-shadow);
  }

  .zc-nav.is-open {
    display: grid;
    gap: 14px;
  }

  .zc-lang-switch {
    width: max-content;
  }

  .zc-nav__cta {
    text-align: center;
  }

  .zc-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.6vw, 2.48rem);
    line-height: 1.06;
    hyphens: auto;
  }

  .zc-eyebrow {
    max-width: 100%;
    font-size: 0.72rem;
    overflow-wrap: anywhere;
  }

  .zc-hero__lead,
  .zc-section__heading p:not(.zc-eyebrow) {
    font-size: 1rem;
  }

  .zc-metrics,
  .zc-feature-grid,
  .zc-footer__grid {
    grid-template-columns: 1fr;
  }

  .zc-section {
    padding: 68px 0;
  }

  .zc-feature {
    min-height: auto;
  }

  .zc-calendar-mock {
    grid-template-columns: 1fr;
  }

  .zc-calendar-mock__sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .zc-footer__links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .zc-hero__actions {
    display: grid;
  }

  .zc-button {
    width: 100%;
  }
}
