/* =========================================================================
   ZEN Z — city partnership landing page (/city-franchise/).

   Only what this page needs on top of zenz-order.css. Everything structural
   — buttons, cards, fields, sections, the nav and the footer — is reused from
   there so the page is the same site, not a lookalike built beside it.

   There is a hard reason this file exists at all rather than a `style`
   attribute: zenzindia.com is served with `Content-Security-Policy:
   style-src 'self'`, so every inline style on the page is silently dropped by
   the browser. A landing page styled inline would deploy looking like an
   unstyled document. Nothing here may move into the HTML.
   ========================================================================= */

/* ------------------------------------------------------------------- hero */

.zc-hero {
  background:
    radial-gradient(900px 420px at 82% -8%, rgba(245, 165, 36, .20), transparent 60%),
    radial-gradient(700px 380px at 5% 110%, rgba(255, 107, 44, .12), transparent 62%),
    var(--z-cream);
  padding: 64px 0 72px;
  border-bottom: 1px solid var(--z-line);
}

.zc-hero-visual {
  position: relative;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid rgba(191, 139, 42, .28);
  border-radius: 20px;
  background: #111;
  box-shadow: 0 20px 48px rgba(37, 26, 17, .16);
}
.zc-hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.zc-hero-visual figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 20px 17px;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  line-height: 1.45;
  background: linear-gradient(transparent, rgba(12, 10, 8, .92));
}
.zc-hero-visual figcaption b { color: #fff; }

/* The investment figure. Stated plainly and early: it is the single most
   effective qualifier on the page, and hiding it buys enquiries from people
   who were never in this range. */
.zc-ticket {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0 6px;
  padding: 12px 20px;
  border-radius: 100px;
  background: var(--z-ink);
  color: #fff;
}
.zc-ticket b { font-size: 21px; font-weight: 800; letter-spacing: -.02em; }
.zc-ticket span { font-size: 13px; color: rgba(255, 255, 255, .72); }
.zc-ticket-note { font-size: 13px; color: var(--z-muted); margin-top: 8px; }

/* The five things in one line, under the headline. */
.zc-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}
.zc-stack li {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--z-ink-2);
  background: #fff;
  border: 1px solid var(--z-line-2);
  border-radius: 100px;
  padding: 7px 14px;
}

/* Breathing room where a sub-heading follows a card grid. */
.zc-mt { margin-top: 54px; }

/* --------------------------------------------------------- trolley strip */

.zc-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.zc-strip figure {
  overflow: hidden;
  border: 1px solid var(--z-line);
  border-radius: var(--z-r-sm);
  background: #fff;
  box-shadow: 0 10px 28px rgba(35, 24, 15, .07);
}
.zc-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  aspect-ratio: 1 / 1;
  background: var(--z-cream-2);
}
.zc-strip figure { margin: 0; }
.zc-strip figcaption {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 13px 12px;
  font-size: 12px;
  color: var(--z-muted);
  text-align: left;
}
.zc-strip figcaption b { color: var(--z-ink); font-size: 13px; }

/* ------------------------------------------------------------ what you get */

.zc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.zc-cards .z-card { padding: 22px; }
.zc-cards h3 { font-size: 16.5px; margin-bottom: 6px; }
.zc-cards p { font-size: 14.5px; color: var(--z-body); }

/* ------------------------------------------------------------- flow diagram */

.zc-flow { background: var(--z-cream-2); }
.zc-flow-svg {
  width: 100%;
  height: auto;
  max-width: 980px;
  margin: 0 auto;
}
.zc-flow-box { fill: #fff; stroke: var(--z-line-2); }
.zc-flow-box-hot { fill: var(--z-ink); stroke: var(--z-ink); }
.zc-flow-t { fill: var(--z-ink); font-size: 14px; font-weight: 700; font-family: 'Sora', 'Inter', sans-serif; }
.zc-flow-t-inv { fill: #fff; }
.zc-flow-s { fill: var(--z-muted); font-size: 11.5px; font-family: 'Inter', sans-serif; }
.zc-flow-s-inv { fill: rgba(255, 255, 255, .7); }
.zc-flow-arrow { stroke: var(--z-saffron-2); stroke-width: 2; fill: none; }

/* ------------------------------------------------------------------- form */

.zc-form-card { padding: 26px; }
.zc-form-card h3 { font-size: 19px; margin-bottom: 4px; }
.zc-form-intro { font-size: 14px; color: var(--z-muted); margin-bottom: 18px; }
.zc-form-card .z-field { margin-bottom: 14px; }
.zc-optional { color: var(--z-muted); font-weight: 400; }
.zc-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--z-body);
  margin: 6px 0 16px;
  line-height: 1.5;
}
.zc-consent input { margin-top: 3px; flex: none; }
.zc-consent a { text-decoration: underline; }
.zc-fine { font-size: 12.5px; color: var(--z-muted); margin-top: 12px; }

/* The honeypot. Off-screen rather than display:none, because some bots skip
   what is not rendered and this one is meant to be filled. */
.zc-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* -------------------------------------------------------------- trust / faq */

.zc-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.zc-proof .z-card { padding: 20px; }
.zc-proof b { display: block; font-size: 15px; color: var(--z-ink); margin-bottom: 4px; }
.zc-proof span { font-size: 13.5px; color: var(--z-body); }

.zc-faq { display: grid; gap: 10px; max-width: 860px; margin: 0 auto; }
.zc-faq details {
  background: #fff;
  border: 1px solid var(--z-line);
  border-radius: var(--z-r-sm);
  padding: 16px 18px;
}
.zc-faq summary { font-weight: 700; color: var(--z-ink); cursor: pointer; font-size: 15.5px; }
.zc-faq p { margin-top: 10px; font-size: 14.5px; }

/* ------------------------------------------------------------------- final */

.zc-final { background: var(--z-ink); color: #fff; text-align: center; }
.zc-final h2 { color: #fff; }
.zc-final p { color: rgba(255, 255, 255, .74); max-width: 620px; margin: 12px auto 24px; }

/* -------------------------------------------------------------- thank you */

.zc-thanks { min-height: 62vh; display: grid; place-items: center; padding: 70px 0; }
.zc-thanks-card { max-width: 620px; text-align: center; padding: 38px 30px; }
.zc-thanks-card h1 { font-size: 30px; margin-bottom: 12px; }
.zc-thanks-card p { margin-bottom: 16px; }
.zc-thanks-next { text-align: left; margin: 22px 0 26px; }

/* ----------------------------------------------------------------- mobile */

@media (max-width: 860px) {
  .zc-hero { padding: 44px 0 52px; }
  .zc-ticket b { font-size: 18px; }
  .zc-strip { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .zc-strip figcaption { display: block; padding: 9px 10px; font-size: 10.5px; }
  .zc-strip figcaption span { display: block; margin-top: 2px; }
}
