/*
Theme Name: Zenify CX
Theme URI: https://zenify.cx
Author: Zenify
Description: WordPress marketing theme for Zenify CX.
Version: 1.1.8
Text Domain: zenify-cx
*/

:root {
  --ink: #0d1b2a;
  --body: #314155;
  --muted: #697789;
  --line: #dbe5ef;
  --soft: #f4f8fb;
  --soft-2: #edf8f3;
  --green: #18b36b;
  --green-dark: #09824a;
  --cyan: #22bfd2;
  --blue: #1d5ed8;
  --yellow: #ffce3d;
  --orange: #ff8a3d;
  --white: #fff;
  --shadow: 0 22px 70px rgba(13, 27, 42, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(219, 229, 239, .88);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 16px 36px rgba(24, 179, 107, .25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--body);
  font-size: 14px;
  font-weight: 800;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: none;
  place-items: center;
  gap: 5px;
  padding: 10px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  display: block;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 17px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(24, 179, 107, .45);
  box-shadow: 0 14px 34px rgba(13, 27, 42, .1);
}

.button-primary {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 38px rgba(24, 179, 107, .24);
}

.button-dark {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(34, 191, 210, .14), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(24, 179, 107, .12), transparent 25%),
    linear-gradient(180deg, #fbfefd 0%, #f6faf8 54%, #fff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: 660px;
  margin: 0 auto;
  padding: 96px 0 88px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.hero-inner > div {
  min-width: 0;
}

.hero-copy {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy .eyebrow {
  margin: 0 auto;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(24, 179, 107, .22);
  border-radius: 999px;
  color: var(--green-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(13, 27, 42, .05);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(24, 179, 107, .42);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(24, 179, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(24, 179, 107, 0); }
}

h1 {
  max-width: 1120px;
  margin: 20px 0 18px;
  font-size: clamp(54px, 7vw, 104px);
  line-height: .96;
  letter-spacing: 0;
}

.accent { color: var(--green); }

.lead {
  max-width: 880px;
  margin: 0 auto 28px;
  color: var(--body);
  font-size: clamp(18px, 1.7vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.proof-pill {
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--body);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-kicker {
  margin: 0 0 9px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.06;
}

.section-heading p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.logo-strip {
  padding: 30px 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.logo-row {
  width: max-content;
  display: flex;
  gap: 10px;
  animation: logo-marquee 32s linear infinite;
  will-change: transform;
}

.logo-row:hover {
  animation-play-state: paused;
}

.logo-pill {
  width: 152px;
  min-height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--body);
  background: var(--soft);
  font-size: 13px;
  font-weight: 900;
}

@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 5px)); }
}

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

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

.tile {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(13, 27, 42, .06);
}

.tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: #e7faef;
  font-weight: 900;
}

.tile h3 { margin: 18px 0 9px; font-size: 21px; line-height: 1.22; }
.tile p { margin: 0; color: var(--muted); }

.product-card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
}

.product-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(24, 179, 107, .09);
}

.product-card small {
  color: var(--green-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.feature-list span {
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--body);
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.band {
  background:
    radial-gradient(circle at 10% 15%, rgba(34,191,210,.08), transparent 22%),
    var(--soft);
  border-block: 1px solid var(--line);
}

.ai-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.ai-panel {
  padding: 24px;
  border-radius: 26px;
  color: #fff;
  background: #0d1b2a;
  box-shadow: var(--shadow);
}

.ai-panel-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}

.ai-panel-row + .ai-panel-row { margin-top: 12px; }
.ai-panel-row strong { display: block; }
.ai-panel-row span { color: rgba(255,255,255,.66); font-size: 13px; }

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

.solution {
  min-height: 150px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.solution strong { display: block; margin-bottom: 8px; }
.solution span { color: var(--muted); font-size: 14px; }

.cta {
  margin: 84px auto;
  width: min(1180px, calc(100% - 32px));
  padding: 46px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(34,191,210,.28), transparent 34%),
    linear-gradient(135deg, #0d1b2a, #0f4d37);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow);
}

.cta h2 { margin: 0 0 8px; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; }
.cta p { margin: 0; color: rgba(255, 255, 255, .78); }
.cta .button { color: var(--ink); background: #fff; border-color: #fff; }

.pricing-page {
  background:
    radial-gradient(circle at 4% 4%, rgba(34, 191, 210, .1), transparent 26%),
    linear-gradient(180deg, #fbfefd 0, #fff 520px);
}

.pricing-hero {
  border-bottom: 1px solid var(--line);
}

.pricing-hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 70px;
}

.pricing-hero h1 {
  max-width: 960px;
  margin: 20px 0 18px;
  font-size: clamp(46px, 6vw, 82px);
  line-height: .98;
}

.pricing-hero p {
  max-width: 790px;
  margin: 0;
  color: var(--body);
  font-size: 20px;
}

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

.pricing-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.pricing-comparison-section {
  width: calc(100% - 32px);
  max-width: none;
}

.pricing-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.pricing-section-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

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

.pricing-card {
  position: relative;
  min-height: 560px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 50px rgba(13, 27, 42, .06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card.is-featured {
  border-color: rgba(24, 179, 107, .5);
  box-shadow: 0 26px 72px rgba(24, 179, 107, .16);
}

.plan-badge {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #dcfaeb;
  font-size: 12px;
  font-weight: 900;
}

.plan-top h3 {
  margin: 0 0 6px;
  font-size: 25px;
  line-height: 1.05;
}

.plan-top p,
.plan-description {
  margin: 0;
  color: var(--muted);
}

.plan-price {
  padding: 16px 0;
  border-block: 1px solid var(--line);
}

.plan-price strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.plan-price span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.plan-features {
  display: grid;
  gap: 9px;
  margin: 0 0 6px;
  padding: 0;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 22px;
  color: var(--body);
  font-size: 14px;
  font-weight: 700;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .56em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-usage {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 18%, rgba(34, 191, 210, .18), transparent 32%),
    #0d1b2a;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 36px;
  box-shadow: var(--shadow);
}

.pricing-usage h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
}

.pricing-usage p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.usage-grid article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
}

.usage-grid strong,
.usage-grid span {
  display: block;
}

.usage-grid span {
  margin-top: 6px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

.feature-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(13, 27, 42, .05);
}

.feature-table {
  width: 100%;
  min-width: 1180px;
  table-layout: fixed;
  border-collapse: collapse;
}

.feature-table th,
.feature-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.feature-table th:first-child,
.feature-table td:first-child {
  text-align: left;
  width: 28%;
}

.feature-table th {
  background: var(--soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-table td:first-child span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.check {
  color: var(--green-dark);
  font-weight: 900;
}

.dash {
  color: #a8b3c1;
  font-weight: 900;
}

.enterprise-contact {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 86px;
  padding: 52px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 12%, rgba(24, 179, 107, .12), transparent 28%),
    var(--soft);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr);
  gap: 36px;
  align-items: start;
}

.enterprise-contact h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}

.enterprise-contact p {
  max-width: 680px;
  color: var(--body);
}

.contact-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.contact-card label {
  display: grid;
  gap: 7px;
  color: var(--body);
  font-size: 13px;
  font-weight: 900;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--soft);
  font: inherit;
}

.contact-page {
  background:
    radial-gradient(circle at 8% 6%, rgba(34, 191, 210, .12), transparent 28%),
    linear-gradient(180deg, #fbfefd 0, #fff 520px);
}

.contact-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 52px;
}

.contact-hero h1 {
  max-width: 920px;
  margin: 20px 0 18px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .98;
}

.contact-hero p {
  max-width: 760px;
  color: var(--body);
  font-size: 20px;
}

.contact-page-form {
  margin-bottom: 86px;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-notice {
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
}

.form-notice.success {
  color: var(--green-dark);
  background: #dcfaeb;
  border: 1px solid rgba(24, 179, 107, .24);
}

.form-notice.error {
  color: #9b1c1c;
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

.site-footer {
  padding: 46px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 1060px) {
  .hero-inner, .ai-section { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-usage,
  .enterprise-contact { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav { min-height: 64px; flex-wrap: wrap; padding: 10px 0; gap: 10px; }
  .nav-toggle { display: grid; margin-left: auto; }
  .nav-links,
  .nav-actions {
    width: 100%;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 46px rgba(13, 27, 42, .1);
  }
  .nav.is-open .nav-links,
  .nav.is-open .nav-actions { display: grid; }
  .nav-links { order: 3; gap: 4px; }
  .nav-links a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 12px;
  }
  .nav-links a:hover { background: var(--soft); }
  .nav-actions { order: 4; grid-template-columns: 1fr; gap: 10px; margin-top: 0; }
  .nav-actions .button { width: 100%; }
  h1 { font-size: 42px; }
  .hero-inner { min-height: auto; padding: 48px 0; }
  .section { padding: 60px 0; }
  .section-heading, .cta, .footer-inner { align-items: start; grid-template-columns: 1fr; flex-direction: column; }
  .grid, .grid-2 { grid-template-columns: 1fr; }
  .cta { padding: 30px; margin: 60px auto; }
  .pricing-hero-inner { padding: 58px 0 48px; }
  .pricing-grid,
  .usage-grid { grid-template-columns: 1fr; }
  .pricing-card { min-height: auto; }
  .pricing-usage,
  .enterprise-contact { padding: 28px; }
}
