/* Zoho page-specific styles, layered on top of site.css */

/* ---------- Hero (gradient, white text) ---------- */
.zhero {
  background: linear-gradient(135deg, #0F4A99 0%, #1A5FBF 50%, #2BB3B9 100%);
  color: #fff;
  padding: 96px 0 96px;
}
.zhero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
}
.zhero .eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.78);
  margin-bottom: 14px;
}
.zhero h1 {
  font-size: 40px; font-weight: 600; letter-spacing: -0.015em;
  color: #fff; margin: 0; line-height: 1.15;
  text-wrap: balance;
}
.zhero .sub {
  margin-top: 22px; font-size: 17px; line-height: 1.6;
  color: rgba(255,255,255,0.88); max-width: 540px;
}
.zhero .cta-row { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Photograph stand-in — warm-toned illustrated panel */
.zhero-photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15,20,25,0.18);
  background: #fff;
  aspect-ratio: 4 / 3;
  position: relative;
}
.zhero-photo svg { display: block; width: 100%; height: 100%; }

/* ---------- Why grid ---------- */
.why { background: #fff; padding: 96px 0; }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
}
.why-col h3 {
  font-size: 22px; font-weight: 600; color: var(--text-strong);
  margin: 0 0 8px; letter-spacing: -0.005em;
}
.why-col .rule {
  display: block; width: 32px; height: 2px;
  background: var(--brand-red); border: 0; margin: 14px 0 28px;
}
.why-col .para {
  font-size: 15px; color: var(--text-body); line-height: 1.65;
  margin: 0 0 18px; max-width: 520px;
}
.why-col .para strong { color: var(--text-strong); font-weight: 600; }

/* ---------- Product grid ---------- */
.zproducts { background: var(--off-white); padding: 120px 0; }
.zproducts-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.zproduct {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 32px;
  display: flex; flex-direction: column;
  transition: border-color var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-standard);
}
.zproduct:hover { border-color: #C9CED5; transform: translateY(-2px); }
.zproduct .head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.zproduct .swatch {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
}
.zproduct h3 {
  font-size: 18px; font-weight: 600; color: var(--text-strong);
  margin: 0;
}
.zproduct .one-liner {
  font-size: 13px; color: var(--text-muted); margin: 4px 0 0;
}
.zproduct .desc {
  font-size: 14px; color: var(--text-body); margin: 0 0 20px; line-height: 1.6;
}
.zproduct ul {
  list-style: none; padding: 18px 0 0; margin: 0 0 20px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.zproduct li {
  font-size: 13px; color: var(--text-body); line-height: 1.55;
  padding-left: 18px; position: relative;
}
.zproduct li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-blue);
}
.zproduct .learn {
  margin-top: auto; font-size: 13px; font-weight: 500;
  color: var(--brand-blue); text-decoration: none;
}
.zproduct .learn:hover { text-decoration: underline; }

/* ---------- Integration depth (yellow band) ---------- */
.zdepth { background: var(--brand-yellow); padding: 96px 0; }
.zdepth-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
}
.zdepth .eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: #7A5A00;
  margin-bottom: 14px;
}
.zdepth h2 {
  font-size: 36px; font-weight: 600; letter-spacing: -0.015em;
  color: var(--text-strong); margin: 0; line-height: 1.2;
  text-wrap: balance;
}
.zdepth .rule {
  display: block; width: 32px; height: 2px;
  background: var(--brand-red); border: 0; margin: 18px 0 24px;
}
.zdepth .sub {
  font-size: 16px; color: #1A1A1A; line-height: 1.65;
  margin: 0 0 28px; max-width: 480px; opacity: 0.85;
}
.zquote {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(15,20,25,0.08);
  border-radius: 12px;
  padding: 32px;
}
.zquote blockquote {
  margin: 0; font-style: italic;
  font-size: 18px; line-height: 1.55;
  color: var(--text-strong);
  font-weight: 400;
  text-wrap: balance;
}
.zquote .attrib {
  margin-top: 24px;
  display: flex; align-items: center; gap: 12px;
}
.zquote .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: #1A5FBF;
  display: grid; place-items: center;
  color: #fff; font-weight: 600; font-size: 14px;
  flex-shrink: 0;
}
.zquote .who .name {
  font-size: 14px; font-weight: 600; color: var(--text-strong);
}
.zquote .who .role {
  font-size: 12px; color: var(--text-body);
  margin-top: 2px;
}

/* ---------- Engagement models ---------- */
.zeng { background: #fff; padding: 120px 0; }
.zeng-cards {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.zeng-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 6px; padding: 32px;
  display: flex; flex-direction: column;
  transition: border-color var(--dur-base) var(--ease-standard);
}
.zeng-card:hover { border-color: #C9CED5; }
.zeng-card .tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  color: var(--brand-blue); text-transform: uppercase;
  margin-bottom: 12px;
}
.zeng-card h3 {
  font-size: 22px; font-weight: 600; color: var(--text-strong);
  margin: 0 0 12px; letter-spacing: -0.005em;
}
.zeng-card .desc {
  font-size: 14px; color: var(--text-body); line-height: 1.6;
  margin: 0 0 20px;
}
.zeng-card ul {
  list-style: none; padding: 18px 0 0; margin: 0 0 24px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.zeng-card li {
  font-size: 13px; color: var(--text-body); line-height: 1.55;
  padding-left: 16px; position: relative;
}
.zeng-card li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 1px; background: var(--text-muted);
}
.zeng-card .discuss {
  margin-top: auto; font-size: 13px; font-weight: 500;
  color: var(--brand-blue); text-decoration: none;
}
.zeng-card .discuss:hover { text-decoration: underline; }

/* ---------- Cases ---------- */
.zcases { background: var(--brand-blue-light); padding: 96px 0; }
.zcase-cards {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.zcase {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-standard);
}
.zcase:hover { border-color: #C9CED5; transform: translateY(-2px); }
.zcase .thumb {
  aspect-ratio: 16 / 10; width: 100%;
  display: block;
}
.zcase .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.zcase .meta {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  color: var(--text-muted); text-transform: uppercase;
  margin-bottom: 10px;
}
.zcase h3 {
  font-size: 17px; font-weight: 600; color: var(--text-strong);
  margin: 0 0 14px; line-height: 1.35;
}
.zcase .stack {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px;
}
.zcase .chip {
  font-size: 11px; padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand-blue-light); color: var(--brand-blue);
  font-weight: 500;
}
.zcase .outcome {
  font-size: 13px; color: var(--text-body); line-height: 1.55;
  margin: 0 0 16px;
}
.zcase .outcome strong { color: var(--text-strong); font-weight: 600; }
.zcase .read {
  margin-top: auto; font-size: 13px; font-weight: 500;
  color: var(--brand-blue); text-decoration: none;
}
.zcase .read:hover { text-decoration: underline; }

/* ---------- FAQ ---------- */
.zfaq { background: #fff; padding: 96px 0; }
.zfaq-list {
  margin: 56px auto 0;
  max-width: 780px;
  border-top: 1px solid var(--border);
}
.zfaq-item {
  border-bottom: 1px solid var(--border);
}
.zfaq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  background: transparent; border: 0; padding: 24px 4px;
  text-align: left; cursor: pointer;
  font-family: inherit;
}
.zfaq-q .qt {
  font-size: 16px; font-weight: 500; color: var(--text-strong);
  line-height: 1.45;
}
.zfaq-q .ic {
  flex-shrink: 0; margin-left: 24px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  color: var(--brand-blue);
  transition: transform var(--dur-base) var(--ease-standard);
}
.zfaq-item.open .zfaq-q .ic { transform: rotate(45deg); }
.zfaq-a {
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur-base) var(--ease-standard);
}
.zfaq-item.open .zfaq-a { max-height: 400px; }
.zfaq-a-inner {
  font-size: 15px; color: var(--text-body); line-height: 1.65;
  padding: 0 4px 24px;
  max-width: 680px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .zhero { padding: 64px 0; }
  .zhero-grid, .why-grid, .zdepth-grid { grid-template-columns: 1fr; gap: 40px; }
  .why, .zproducts, .zdepth, .zeng, .zcases, .zfaq { padding: 64px 0; }
  .zproducts-grid, .zeng-cards, .zcase-cards { grid-template-columns: 1fr; }
}
