/* =========================================================
   ConvoZync — Design Tokens
   ========================================================= */
:root {
  --ink: #0f0f23;
  --white: #ffffff;
  --tint: #f5f5ff;
  --cream: #fef5e6;
  --amber: #f59e0b;
  --indigo: #6366f1;
  --emerald: #10b981;

  --indigo-600: #4f46e5;
  --indigo-100: #e6e6fd;
  --amber-100: #fdecc8;
  --ink-70: rgba(15, 15, 35, .7);
  --ink-50: rgba(15, 15, 35, .5);
  --ink-12: rgba(15, 15, 35, .12);
  --ink-08: rgba(15, 15, 35, .08);

  --bg: var(--white);
  --bg-alt: var(--tint);
  --surface: var(--white);
  --text: var(--ink);
  --text-soft: var(--ink-70);
  --text-faint: var(--ink-50);
  --border: var(--ink-12);
  --border-soft: var(--ink-08);

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(15, 15, 35, .06);
  --shadow-md: 0 12px 32px rgba(15, 15, 35, .10);
  --shadow-lg: 0 24px 60px rgba(15, 15, 35, .16);
}

[data-theme="dark"] {
  --bg: var(--ink);
  --bg-alt: #16162e;
  --surface: #1a1a35;
  --text: var(--white);
  --text-soft: rgba(255, 255, 255, .72);
  --text-faint: rgba(255, 255, 255, .5);
  --border: rgba(255, 255, 255, .12);
  --border-soft: rgba(255, 255, 255, .07);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .3);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, .35);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  transition: background-color .35s ease, color .35s ease;
  -webkit-font-smoothing: antialiased;
}

#top {
  scroll-margin-top: 100px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1.25rem;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

::selection {
  background: var(--indigo);
  color: #fff;
}

/* =========================================================
   Buttons
   ========================================================= */
.cz-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-600) 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: .75rem 1.5rem;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 0 10px 24px rgba(99, 102, 241, .35);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.cz-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(99, 102, 241, .45);
  color: #fff;
  filter: brightness(1.04);
}

.cz-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: .75rem 1.5rem;
  font-weight: 600;
  font-size: .95rem;
  transition: border-color .25s ease, background-color .25s ease, transform .25s ease;
}

.cz-btn-ghost:hover {
  border-color: var(--indigo);
  background: var(--bg-alt);
  color: var(--text);
  transform: translateY(-2px);
}

.cz-btn-lg {
  padding: .95rem 1.9rem;
  font-size: 1rem;
}

.cz-btn-sm {
  padding: .5rem 1.1rem;
  font-size: .85rem;
  margin-top: .9rem;
}

/* =========================================================
   Header / Nav
   ========================================================= */
.cz-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background-color .3s ease;
}

.cz-header.is-scrolled {
  border-bottom-color: var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.cz-navbar {
  /* padding: .9rem 0; */
}

.cz-brand {
  display: flex;
  align-items: center;
  padding-bottom:0;
}

.cz-logo {
  height: 70px;
  width: auto;
}

.cz-logo-dark {
  display: none;
}

[data-theme="dark"] .cz-logo-light {
  display: none;
}

[data-theme="dark"] .cz-logo-dark {
  display: block;
}

.cz-nav-links {
  gap: .25rem;
}

.cz-nav-links .nav-link {
  font-weight: 500;
  font-size: .95rem;
  color: var(--text-soft);
  padding: .5rem .9rem !important;
  border-radius: 999px;
  transition: color .2s ease, background-color .2s ease;
}

.cz-nav-links .nav-link:hover {
  color: var(--text);
  background: var(--bg-alt);
}

.cz-nav-actions {
  margin-left: 1rem;
}

.cz-theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, background-color .25s ease;
  flex-shrink: 0;
}

.cz-theme-toggle:hover {
  transform: rotate(-14deg);
}

.cz-theme-icon-light {
  display: none;
}

[data-theme="dark"] .cz-theme-icon-dark {
  display: none;
}

[data-theme="dark"] .cz-theme-icon-light {
  display: block;
  color: var(--amber);
}

.navbar-toggler {
  /* border: 1px solid var(--border); */
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.cz-toggler-icon {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.cz-toggler-icon::before,
.cz-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.cz-toggler-icon::before {
  top: -6px;
}

.cz-toggler-icon::after {
  top: 6px;
}


.cz-toggler-icon,
.cz-toggler-icon::before,
.cz-toggler-icon::after {
  transition: transform .3s ease, top .3s ease, opacity .3s ease, background-color .3s ease;
}

.navbar-toggler[aria-expanded="true"] .cz-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .cz-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .cz-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* =========================================================
   Eyebrow / Section heads
   ========================================================= */
.cz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--indigo-600);
  background: var(--indigo-100);
  border-radius: 999px;
  padding: .4rem .85rem;
}

[data-theme="dark"] .cz-eyebrow {
  color: #c7c8fd;
  background: rgba(99, 102, 241, .18);
}

.cz-eyebrow-alt {
  color: #92620b;
  background: var(--amber-100);
}

[data-theme="dark"] .cz-eyebrow-alt {
  color: #ffcf85;
  background: rgba(245, 158, 11, .16);
}

.cz-eyebrow-on-dark {
  color: #ffcf85;
  background: rgba(245, 158, 11, .14);
}

.cz-section-head {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.cz-h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  margin-top: .9rem;
}

.cz-h2-on-dark {
  color: #fff;
}

.cz-section-sub {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-top: .9rem;
}

.cz-sub-on-dark {
  color: rgba(255, 255, 255, .72);
}

.cz-section {
  padding: 6.5rem 0;
}

.cz-section-tint {
  background: var(--bg-alt);
}

.cz-section-dark {
  background: var(--ink);
  color: #fff;
  padding: 6rem 0;
}

[data-theme="dark"] .cz-section-dark {
  background: #050512;
}

.cz-text-gradient {
  background: linear-gradient(100deg, var(--indigo) 10%, var(--emerald) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   Hero
   ========================================================= */
.cz-hero {
  position: relative;
  padding: 5.5rem 0 6rem;
  overflow: hidden;
}

.cz-hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 620px;
  background:
    radial-gradient(45% 55% at 18% 25%, rgba(99, 102, 241, .20), transparent 70%),
    radial-gradient(35% 45% at 85% 15%, rgba(16, 185, 129, .16), transparent 70%),
    radial-gradient(30% 35% at 60% 60%, rgba(245, 158, 11, .10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cz-hero .container {
  position: relative;
  z-index: 1;
}

.cz-hero-headline {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  margin-top: 1.1rem;
}

.cz-hero-sub {
  font-size: 1.12rem;
  color: var(--text-soft);
  max-width: 520px;
  margin-top: 1.3rem;
}

.cz-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.cz-hero-note {
  margin-top: 1.6rem;
  font-size: .9rem;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.cz-hero-note i {
  color: var(--emerald);
}

/* --- Hero demo widget (signature element) --- */
.cz-demo {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.cz-demo-chat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.cz-demo-chat-head {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .9rem 1.1rem;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-alt);
}

.cz-demo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
}

.cz-demo-chat-title {
  margin-left: .6rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--text-faint);
  letter-spacing: .02em;
}

.cz-demo-chat-body {
  padding: 1.4rem 1.1rem 1.7rem;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.cz-bubble {
  max-width: 84%;
  padding: .7rem 1rem;
  border-radius: 16px;
  font-size: .92rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  animation: cz-bubble-in .5s ease forwards;
  animation-delay: var(--d, 0s);
}

.cz-bubble-visitor {
  align-self: flex-end;
  background: var(--indigo);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.cz-bubble-bot {
  align-self: flex-start;
  background: var(--bg-alt);
  color: var(--text);
  border-bottom-left-radius: 4px;
  border: 1px solid var(--border-soft);
}

.cz-bubble-typing {
  align-self: flex-start;
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  display: flex;
  gap: 4px;
  padding: .85rem 1rem;
  border-bottom-left-radius: 4px;
  animation: cz-bubble-in .4s ease forwards, cz-bubble-out .4s ease forwards;
  animation-delay: var(--d, 0s), calc(var(--d, 0s) + 1.1s);
}

.cz-bubble-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-faint);
  animation: cz-typing-dot 1s ease-in-out infinite;
}

.cz-bubble-typing span:nth-child(2) {
  animation-delay: .15s;
}

.cz-bubble-typing span:nth-child(3) {
  animation-delay: .3s;
}

@keyframes cz-bubble-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cz-bubble-out {
  to {
    opacity: 0;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }
}

@keyframes cz-typing-dot {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: .5;
  }

  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.cz-demo-lead {
  position: relative;
  margin: -1.6rem 1.1rem 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  opacity: 0;
  transform: translateY(16px) scale(.97);
  animation: cz-bubble-in .55s cubic-bezier(.2, .8, .2, 1) forwards;
  animation-delay: var(--d, 0s);
}

.cz-demo-lead-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(16, 185, 129, .14);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.cz-demo-lead-name {
  font-weight: 700;
  font-size: .92rem;
  margin: 0;
}

.cz-demo-lead-detail {
  font-size: .8rem;
  color: var(--text-faint);
  margin: 0;
}

.cz-demo-lead-badge {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  background: rgba(16, 185, 129, .14);
  color: var(--emerald);
  padding: .3rem .6rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* =========================================================
   Feature cards
   ========================================================= */
.cz-feature-card {
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.cz-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.cz-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--indigo-100);
  color: var(--indigo-600);
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}

[data-theme="dark"] .cz-feature-icon {
  background: rgba(99, 102, 241, .16);
  color: #a5a6fb;
}

.cz-feature-title {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: .55rem;
}

.cz-feature-text {
  color: var(--text-soft);
  font-size: .94rem;
  line-height: 1.55;
  margin: 0;
}

/* =========================================================
   Steps
   ========================================================= */
.cz-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.cz-step {
  position: relative;
  padding-top: .5rem;
}

.cz-step-num {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border);
  display: block;
  margin-bottom: .8rem;
}

.cz-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.cz-step-text {
  color: var(--text-soft);
  font-size: .94rem;
  line-height: 1.55;
}

/* =========================================================
   Dashboard tour
   ========================================================= */
.cz-dash {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-height: 360px;
}

.cz-dash-tabs {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border-soft);
  background: var(--bg-alt);
  max-height: 480px;
  overflow-y: auto;
}

.cz-dash-tab {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-align: left;
  background: transparent;
  border: none;
  padding: .95rem 1.3rem;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease;
}

.cz-dash-tab:hover {
  background: var(--border-soft);
}

.cz-dash-tab.active {
  background: var(--surface);
  border-left-color: var(--indigo);
}

.cz-dash-tab-num {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--text-faint);
  width: 22px;
  flex-shrink: 0;
}

.cz-dash-tab.active .cz-dash-tab-num {
  color: var(--indigo);
}

.cz-dash-tab-title {
  font-weight: 600;
  font-size: .92rem;
}

.cz-dash-panels {
  position: relative;
  padding: 2.4rem;
}

.cz-dash-panel {
  display: none;
  gap: 1.5rem;
  align-items: flex-start;
}

.cz-dash-panel.active {
  display: flex;
  animation: cz-panel-in .4s ease;
}

@keyframes cz-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cz-dash-panel-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, .15), rgba(16, 185, 129, .15));
  color: var(--indigo-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

[data-theme="dark"] .cz-dash-panel-icon {
  color: #a5a6fb;
}

.cz-dash-panel-num {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--text-faint);
}

.cz-dash-panel-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: .35rem 0 .7rem;
}

.cz-dash-panel-text {
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0;
  max-width: 560px;
}

/* =========================================================
   Why section
   ========================================================= */
.cz-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cz-why-list li {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  font-weight: 500;
  color: #fff;
  opacity: 1;
  /* transform: translateX(14px); */
}

.cz-why-list li i {
  color: var(--emerald);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.y-custom-para{
  width: 80%;
}
.cz-section-dark.in-view .cz-why-list li {
  animation: cz-slide-in .6s ease forwards;
  animation-delay: var(--d, 0s);
}

@keyframes cz-slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =========================================================
   Final CTA
   ========================================================= */
.cz-final-cta {
  padding: 6rem 0 7rem;
  text-align: center;
}

.cz-final-cta .cz-section-sub {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cz-final-cta .btn {
  margin-top: 2rem;
}

/* =========================================================
   Footer
   ========================================================= */
.cz-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .82);
  padding: 5rem 0 0;
}

[data-theme="dark"] .cz-footer {
  background: #050512;
}

.cz-footer-brand {
  display: inline-flex;
  margin-bottom: 1.2rem;
}

.cz-footer-brand .cz-logo {
  height: 75px;
}

.cz-footer-about {
  color: rgba(255, 255, 255, .6);
  font-size: .92rem;
  line-height: 1.6;
  max-width: 320px;
}

.cz-footer-contact {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: .9rem;
}

.cz-footer-contact i {
  width: 18px;
  color: var(--emerald);
  margin-right: .4rem;
}

.cz-footer-contact a {
  color: rgba(255, 255, 255, .75);
}

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

.cz-footer-heading {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 1.1rem;
  font-family: var(--font-mono);
}

.cz-footer-links {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.cz-footer-links a {
  color: rgba(255, 255, 255, .75);
  font-size: .92rem;
}

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

.cz-social {
  display: flex;
  gap: .7rem;
  margin-top: 1.3rem;
  display: none;
}

.cz-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background-color .2s ease, transform .2s ease;
}

.cz-social a:hover {
  background: var(--indigo);
  transform: translateY(-3px);
}

.cz-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 3.5rem;
  padding: 1.6rem 0;
  text-align: center;
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
}

.cz-back-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--indigo);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
  z-index: 900;
}

.cz-back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================================================
   Scroll reveal animations
   ========================================================= */
[data-animate] {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.2, .65, .2, 1), transform .7s cubic-bezier(.2, .65, .2, 1), filter .7s cubic-bezier(.2, .65, .2, 1);
  will-change: opacity, transform, filter;
}

[data-animate="fade-up"] {
  transform: translateY(28px);
}

[data-animate="fade-right"] {
  transform: translateX(-28px);
}

[data-animate="fade-left"] {
  transform: translateX(28px);
}

[data-animate].in-view {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    transition: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .cz-bubble,
  .cz-demo-lead,
  .cz-why-list li {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .cz-blob,
  .cz-float-card,
  .cz-marquee-track,
  .cz-flow-pulse,
  .cz-cursor-glow {
    animation: none !important;
  }

  .cz-cursor-glow {
    display: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* =========================================================
   Scroll progress bar
   ========================================================= */
.cz-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1100;
  background: transparent;
}

.cz-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--indigo), var(--emerald), var(--amber));
  transition: width .08s linear;
}

/* =========================================================
   Custom cursor glow (desktop only)
   ========================================================= */
.cz-cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, .16) 0%, rgba(16, 185, 129, .08) 45%, transparent 70%);
  pointer-events: none;
  z-index: 5;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .4s ease;
  will-change: transform;
}

.cz-cursor-glow.is-active {
  opacity: 1;
}

@media (hover: none),
(pointer: coarse) {
  .cz-cursor-glow {
    display: none;
  }
}

/* =========================================================
   Ambient blobs + grain
   ========================================================= */
.cz-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  opacity: .55;
  animation: cz-blob-float 14s ease-in-out infinite;
}

.cz-blob-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -100px;
  background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, .55), transparent 70%);
  animation-duration: 16s;
}

.cz-blob-2 {
  width: 360px;
  height: 360px;
  bottom: -140px;
  right: -80px;
  background: radial-gradient(circle at 60% 60%, rgba(16, 185, 129, .42), transparent 70%);
  animation-duration: 20s;
  animation-delay: -6s;
}

.cz-blob-dark-1 {
  width: 380px;
  height: 380px;
  top: -100px;
  right: -60px;
  background: radial-gradient(circle, rgba(99, 102, 241, .35), transparent 70%);
  animation-duration: 18s;
}

.cz-blob-dark-2 {
  width: 320px;
  height: 320px;
  bottom: -120px;
  left: -60px;
  background: radial-gradient(circle, rgba(245, 158, 11, .22), transparent 70%);
  animation-duration: 22s;
  animation-delay: -4s;
}

@keyframes cz-blob-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -24px) scale(1.08);
  }

  66% {
    transform: translate(-20px, 18px) scale(.95);
  }
}

.cz-section-dark {
  position: relative;
  overflow: hidden;
}

.cz-section-dark .container {
  position: relative;
  z-index: 1;
}

.cz-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .5;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

/* =========================================================
   Hero — floating ambient cards + tilt
   ========================================================= */
.cz-demo {
  transform-style: preserve-3d;
  transition: transform .15s ease-out;
}

.cz-float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: .65rem .9rem;
  max-width: 210px;
  animation: cz-float-bob 5s ease-in-out infinite;
  animation-delay: var(--fd, 0s);
  transform: translateZ(40px);
}

.cz-float-card-1 {
  top: -8%;
  left: -14%;
}

.cz-float-card-2 {
  top: 38%;
  right: -16%;
}

.cz-float-card-3 {
  bottom: -6%;
  left: -8%;
}

@keyframes cz-float-bob {

  0%,
  100% {
    transform: translateY(0) translateZ(40px);
  }

  50% {
    transform: translateY(-10px) translateZ(40px);
  }
}

.cz-float-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
}

.cz-accent-emerald .cz-float-icon {
  background: rgba(16, 185, 129, .16);
  color: var(--emerald);
}

.cz-accent-amber .cz-float-icon {
  background: rgba(245, 158, 11, .18);
  color: var(--amber);
}

.cz-accent-indigo .cz-float-icon {
  background: rgba(99, 102, 241, .16);
  color: var(--indigo-600);
}

.cz-float-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.cz-float-text strong {
  font-size: .78rem;
  font-weight: 700;
}

.cz-float-text em {
  font-style: normal;
  font-size: .68rem;
  color: var(--text-faint);
}

@media (max-width: 1199.98px) {
  .cz-float-card {
    display: none;
  }
}

/* =========================================================
   Marquee strip
   ========================================================= */
.cz-marquee {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-alt);
  overflow: hidden;
  padding: 1.1rem 0;
}

.cz-marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: cz-marquee-scroll 34s linear infinite;
}

.cz-marquee:hover .cz-marquee-track {
  animation-play-state: paused;
}

.cz-marquee-item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-family: var(--font-mono);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--text-faint);
  white-space: nowrap;
}

.cz-marquee-item i {
  font-size: .55rem;
  color: var(--indigo);
  opacity: .7;
}

@keyframes cz-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
   Flow diagram
   ========================================================= */
.cz-flow {
  position: relative;
  margin-top: 1rem;
}

.cz-flow-line {
  position: absolute;
  top: 34px;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 0;
  display: none;
}

.cz-flow-line-track {
  fill: none;
  stroke: var(--border);
  stroke-width: 2;
  stroke-dasharray: 6 8;
}

.cz-flow-line-draw {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.8s cubic-bezier(.2, .65, .2, 1);
}

.cz-flow.in-view .cz-flow-line-draw {
  stroke-dashoffset: 0;
}

.cz-flow-nodes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.cz-flow-node {
  text-align: center;
}

.cz-flow-node-icon {
  position: relative;
  width: 68px;
  height: 68px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--indigo-600);
}

[data-theme="dark"] .cz-flow-node-icon {
  color: #a5a6fb;
}

.cz-flow-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--indigo);
  opacity: 0;
  animation: cz-pulse-ring 2.6s ease-out infinite;
}

.cz-flow-node:nth-child(2) .cz-flow-pulse {
  animation-delay: .5s;
}

.cz-flow-node:nth-child(3) .cz-flow-pulse {
  animation-delay: 1s;
}

.cz-flow-node:nth-child(4) .cz-flow-pulse {
  animation-delay: 1.5s;
}

@keyframes cz-pulse-ring {
  0% {
    transform: scale(.9);
    opacity: .55;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

.cz-flow-node-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.cz-flow-node-text {
  font-size: .86rem;
  color: var(--text-soft);
  margin: 0;
}


@media (min-width: 992px) {
  .cz-flow-line {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .cz-flow-nodes {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .cz-stats-card {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .cz-section,
  .cz-final-cta {
    padding: 3.5rem 0;
  }

  .row.gy-5.cz-footer-top {
    flex-direction: column;
  }

  .y-custom-margin {
    margin-top: 2rem;
  }
 
}

@media (max-width: 500px) {
  .container{
    width: 95%;
  }
  .cz-stats-card {
    grid-template-columns: repeat(1, 1fr) !important;
  }
   .y-custom-para{
  width: 100%;
}
.cz-logo {
  height: 65px !important;
  width: auto;
}
}

/* @media (max-width: 320px) {
  .cz-logo{
height: 55px;  }
} */
/* =========================================================
   Stats strip
   ========================================================= */
.cz-stats-strip {
  padding: 6.5rem 0;
  padding-top: 0;
  background: var(--bg);
}

.cz-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 3rem 0;
}

.cz-stat {
  text-align: center;
}

.cz-stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  background: linear-gradient(100deg, var(--indigo) 10%, var(--emerald) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cz-stat-label {
  display: block;
  font-size: .88rem;
  color: var(--text-faint);
  margin-top: .4rem;
}

@media (max-width: 767.98px) {
  .cz-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
}

/* =========================================================
   3D tilt for feature cards
   ========================================================= */
[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}

/* =========================================================
   Magnetic buttons
   ========================================================= */
[data-magnetic] {
  will-change: transform;
}

/* =========================================================
   Richer scroll reveal (blur-to-focus)
   ========================================================= */
[data-animate] {
  filter: blur(6px);
}

[data-animate].in-view {
  filter: blur(0);
}

/* Orchestrated hero load-in */
.cz-hero [data-animate="fade-right"] {
  transition-delay: .15s;
}

.cz-hero [data-animate="fade-left"] {
  transition-delay: .35s;
}

/* =========================================================
   Page load transition
   ========================================================= */
body.cz-loading {
  opacity: 0;
}

body {
  opacity: 1;
  transition: opacity .5s ease;
}

/* =========================================================
   Custom scrollbar
   ========================================================= */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--indigo), var(--emerald));
  border-radius: 10px;
  border: 2px solid var(--bg-alt);
}

html {
  scrollbar-color: var(--indigo) var(--bg-alt);
  scrollbar-width: thin;
}

/* =========================================================
   Nav active state
   ========================================================= */
.cz-nav-links .nav-link.active {
  color: var(--indigo-600);
  background: var(--indigo-100);
  width: fit-content;
}

[data-theme="dark"] .cz-nav-links .nav-link.active {
  color: #c7c8fd;
  background: rgba(99, 102, 241, .18);
}

/* =========================================================
   Dot-grid decorative background
   ========================================================= */
.cz-dotgrid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(var(--ink-12) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 40%, transparent 100%);
}

[data-theme="dark"] .cz-dotgrid {
  background-image: radial-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px);
}

/* =========================================================
   Section background variants — kills flat white space
   ========================================================= */
.cz-section-wash {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.cz-section-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .4;
  z-index: 0;
  pointer-events: none;
}

.cz-section-blob-r {
  width: 460px;
  height: 460px;
  top: 10%;
  right: -160px;
  background: radial-gradient(circle, rgba(16, 185, 129, .35), transparent 70%);
}

.cz-section-wash .container {
  position: relative;
  z-index: 1;
}

/* =========================================================
   Inline link (teaser CTA)
   ========================================================= */
.cz-inline-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  color: var(--indigo-600);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .25s ease, gap .25s ease;
}

.cz-inline-link:hover {
  border-color: var(--indigo-600);
  gap: .75rem;
  color: var(--indigo-600);
}

[data-theme="dark"] .cz-inline-link {
  color: #a5a6fb;
}

/* =========================================================
   Feature icon accent variants (used on cards + rows)
   ========================================================= */
.cz-feature-card-accent-1 .cz-feature-icon {
  background: rgba(16, 185, 129, .14);
  color: var(--emerald);
}

.cz-feature-card-accent-2 .cz-feature-icon {
  background: rgba(245, 158, 11, .16);
  color: var(--amber);
}

[data-theme="dark"] .cz-feature-card-accent-1 .cz-feature-icon {
  background: rgba(16, 185, 129, .18);
}

[data-theme="dark"] .cz-feature-card-accent-2 .cz-feature-icon {
  background: rgba(245, 158, 11, .18);
}

.cz-feature-card {
  position: relative;
  overflow: hidden;
}

.cz-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--indigo), var(--emerald));
  transition: transform .35s ease;
}

.cz-feature-card:hover::before {
  transform: scaleX(1);
}

.cz-feature-icon-lg {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  font-size: 1.7rem;
  margin-bottom: 1.4rem;
}

.cz-accent-indigo {
  background: rgba(99, 102, 241, .14);
  color: var(--indigo-600);
}

.cz-accent-emerald {
  background: rgba(16, 185, 129, .14);
  color: var(--emerald);
}

.cz-accent-amber {
  background: rgba(245, 158, 11, .16);
  color: #b3690b;
}

[data-theme="dark"] .cz-accent-amber {
  color: var(--amber);
}

/* =========================================================
   Page hero (secondary pages)
   ========================================================= */
.cz-page-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.cz-page-hero-sm {
  padding: 5rem 0 3.5rem;
}

.cz-page-hero .container {
  position: relative;
  z-index: 1;
}

.cz-page-h1 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 1.1rem 0;
}

.cz-page-sub {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto;
}

/* =========================================================
   Browser-chrome mockup — reused across pages
   ========================================================= */
.cz-browser-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.cz-browser-bar {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .9rem 1.1rem;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-alt);
}

.cz-browser-url {
  margin-left: .8rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--text-faint);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: .25rem .8rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}

.cz-mock-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.cz-mock-window-sm {
  box-shadow: var(--shadow-md);
}

.cz-mock-body {
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 300px;
}

.cz-mock-body-single {
  grid-template-columns: 1fr;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: flex-start;
}

.cz-mock-sidebar {
  background: var(--bg-alt);
  border-right: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 1.3rem 0;
}

.cz-mock-nav-item {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: .95rem;
}

.cz-mock-nav-item.active {
  background: var(--indigo);
  color: #fff;
}

.cz-mock-main {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cz-mock-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cz-mock-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.cz-mock-bar {
  height: 8px;
  border-radius: 6px;
  width: var(--w, 50%);
  background: linear-gradient(90deg, var(--indigo), var(--emerald));
  opacity: .8;
}

.cz-mock-bar:nth-child(2) {
  opacity: .4;
  background: var(--amber);
}

.cz-mock-table {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.cz-mock-table-lg {
  margin-top: 1.5rem;
  width: 100%;
}

.cz-mock-row {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.cz-mock-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--indigo-100);
  flex-shrink: 0;
}

[data-theme="dark"] .cz-mock-avatar {
  background: rgba(99, 102, 241, .22);
}

.cz-mock-line {
  height: 9px;
  border-radius: 5px;
  background: var(--border);
  width: var(--w, 50%);
}

.cz-mock-pill {
  width: 56px;
  height: 16px;
  border-radius: 999px;
  background: var(--indigo-100);
  margin-left: auto;
  flex-shrink: 0;
}

[data-theme="dark"] .cz-mock-pill {
  background: rgba(99, 102, 241, .2);
}

.cz-mock-pill-amber {
  background: var(--amber-100);
}

.cz-mock-pill-emerald {
  background: rgba(16, 185, 129, .16);
}

[data-theme="dark"] .cz-mock-pill-amber {
  background: rgba(245, 158, 11, .2);
}

[data-theme="dark"] .cz-mock-pill-emerald {
  background: rgba(16, 185, 129, .22);
}

.cz-mock-hero-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Mini module list on dashboard teaser */
.cz-mini-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.cz-mini-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-soft);
}

.cz-mini-list li i {
  color: var(--indigo-600);
  width: 18px;
  text-align: center;
}

[data-theme="dark"] .cz-mini-list li i {
  color: #a5a6fb;
}

.cz-mini-list-more {
  color: var(--text-faint) !important;
  font-weight: 500 !important;
  font-style: italic;
}

.cz-mini-list-more i {
  display: none;
}

/* =========================================================
   Stats card (elevated, not flat strip)
   ========================================================= */
.cz-stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 3rem 2rem;
  background-image: radial-gradient(ellipse 60% 100% at 0% 0%, rgba(99, 102, 241, .06), transparent 60%),
    radial-gradient(ellipse 60% 100% at 100% 100%, rgba(16, 185, 129, .06), transparent 60%);
}

/* =========================================================
   Final CTA glow
   ========================================================= */
.cz-final-cta {
  position: relative;
  overflow: hidden;
}

.cz-final-cta-glow {
  position: absolute;
  left: 50%;
  top: 0;
  width: 700px;
  height: 400px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(99, 102, 241, .16), transparent 70%);
  pointer-events: none;
}

/* =========================================================
   Alternating feature rows (features.php)
   ========================================================= */
.cz-feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border-soft);
}

.cz-feat-row:last-child {
  border-bottom: none;
}

.cz-feat-row-reverse {
  direction: rtl;
}

.cz-feat-row-reverse>* {
  direction: ltr;
}

.cz-feat-row-num {
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: .08em;
  display: block;
  margin-bottom: 1rem;
}

/* =========================================================
   Vertical steps timeline (how-it-works.php)
   ========================================================= */
.cz-steps-vertical {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.cz-steps-vertical::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--indigo), var(--emerald), var(--amber));
  opacity: .3;
}

.cz-step-v {
  display: flex;
  gap: 1.8rem;
  padding-bottom: 3rem;
  position: relative;
}

.cz-step-v:last-child {
  padding-bottom: 0;
}

.cz-step-v-marker {
  flex-shrink: 0;
}

.cz-step-v-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--indigo-600);
  position: relative;
  z-index: 1;
}

[data-theme="dark"] .cz-step-v-num {
  color: #a5a6fb;
}

.cz-step-v-body {
  padding-top: .6rem;
}

.cz-step-v-body .cz-step-title {
  font-size: 1.3rem;
}

.cz-step-v-body .cz-step-text {
  font-size: 1rem;
  max-width: 520px;
}

/* =========================================================
   FAQ accordion
   ========================================================= */
.cz-faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.cz-faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .25s ease;
}

.cz-faq-item.active {
  border-color: var(--indigo);
}

.cz-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
}

.cz-faq-q i {
  flex-shrink: 0;
  transition: transform .3s ease;
  color: var(--indigo-600);
}

.cz-faq-item.active .cz-faq-q i {
  transform: rotate(135deg);
}

.cz-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.cz-faq-item.active .cz-faq-a {
  max-height: 220px;
}

.cz-faq-a p {
  padding: 0 1.5rem 1.4rem;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

/* =========================================================
   Dashboard tour frame (dashboard.php)
   ========================================================= */
.cz-dash-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.cz-dash-frame .cz-dash {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.cz-dash-tabs::-webkit-scrollbar {
  height: 6px;
}

.cz-dash-tab i {
  font-size: .95rem;
  color: var(--text-faint);
}

.cz-dash-tab.active i {
  color: var(--indigo);
}

.cz-dash-panel-content {
  flex: 1;
}

.cz-dash-panel-mock {
  width: 220px;
  flex-shrink: 0;
  display: none;
}

@media (min-width: 992px) {
  .cz-dash-panel-mock {
    display: block;
  }
}

/* =========================================================
   Contact page
   ========================================================= */
.cz-contact-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.cz-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cz-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--indigo-100);
  color: var(--indigo-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

[data-theme="dark"] .cz-contact-icon {
  background: rgba(99, 102, 241, .18);
  color: #a5a6fb;
}

.cz-contact-list strong {
  font-size: .9rem;
}

.cz-contact-list a {
  color: var(--text-soft);
}

.cz-contact-list a:hover {
  color: var(--indigo-600);
}

.cz-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.2rem;
}

.cz-label {
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .4rem;
  display: block;
}

.cz-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .7rem .9rem;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.cz-input:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, .15);
}

textarea.cz-input {
  resize: vertical;
}

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

.cz-form-errors {
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .3);
  color: #b91c1c;
  border-radius: 10px;
  padding: .9rem 1.2rem;
  margin-bottom: 1.3rem;
  font-size: .9rem;
}

[data-theme="dark"] .cz-form-errors {
  color: #fca5a5;
}

.cz-form-errors ul {
  margin: 0;
  padding-left: 1.2rem;
}

.cz-form-success {
  text-align: center;
  padding: 2rem 1rem;
}

.cz-form-success i {
  font-size: 2.4rem;
  color: var(--emerald);
  margin-bottom: 1rem;
  display: block;
}

.cz-form-success h3 {
  font-size: 1.3rem;
  margin-bottom: .5rem;
}

.cz-form-success p {
  color: var(--text-soft);
  margin: 0;
}


/* PRICING PAGE CSS  */

/* =========================================================
   Pricing page
   ========================================================= */
.cz-billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .55rem 1.1rem;
  box-shadow: var(--shadow-sm);
}

.cz-billing-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color .25s ease;
}

.cz-billing-label.active {
  color: var(--text);
}

.cz-billing-badge {
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  color: var(--emerald);
  background: rgba(16, 185, 129, .14);
  padding: .15rem .5rem;
  border-radius: 999px;
}

.cz-toggle-switch {
  width: 46px;
  height: 26px;
  border-radius: 999px;
  border: none;
  background: var(--border);
  position: relative;
  cursor: pointer;
  transition: background-color .25s ease;
  flex-shrink: 0;
}

.cz-toggle-switch[aria-checked="true"] {
  background: var(--indigo);
}

.cz-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
  transition: transform .25s ease;
}

.cz-toggle-switch[aria-checked="true"] .cz-toggle-knob {
  transform: translateX(20px);
}

.cz-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.cz-price-card {
  position: relative;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.cz-price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.cz-price-card-highlight {
  border-color: var(--indigo);
  box-shadow: 0 20px 46px rgba(99, 102, 241, .22);
  background: linear-gradient(180deg, var(--surface) 0%, var(--indigo-100) 220%);
}

[data-theme="dark"] .cz-price-card-highlight {
  background: linear-gradient(180deg, var(--surface) 0%, rgba(99, 102, 241, .14) 220%);
}

.cz-price-card-highlight:hover {
  transform: translateY(-10px);
}

.cz-price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--indigo), var(--indigo-600));
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .4rem 1rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(99, 102, 241, .35);
  white-space: nowrap;
}

.cz-price-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.cz-price-tagline {
  font-size: .86rem;
  color: var(--text-faint);
  margin-bottom: 1.6rem;
  min-height: 2.2em;
}

.cz-price-amount {
  display: flex;
  align-items: flex-end;
  gap: .2rem;
  margin-bottom: .2rem;
}

.cz-price-currency {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--text-soft);
}

.cz-price-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  transition: opacity .15s ease;
}

.cz-price-period {
  font-size: .9rem;
  color: var(--text-faint);
  margin-bottom: .5rem;
}

.cz-price-billed-note {
  font-size: .8rem;
  color: var(--text-faint);
  margin-bottom: 1.6rem;
}

.cz-btn-block {
  width: 100%;
  margin-bottom: 1.8rem;
}

.cz-price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.cz-price-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.4;
}

.cz-price-features li i {
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: .15rem;
  font-size: .9rem;
}

.cz-pricing-footnote {
  text-align: center;
  margin: 3rem 0 0;
  font-size: .92rem;
  color: var(--text-faint);
}

.cz-pricing-footnote i {
  color: var(--indigo);
  margin-right: .3rem;
}

@media (max-width: 991.98px) {
  .cz-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .cz-price-card-highlight {
    order: -1;
  }
}




@media (max-width: 767.98px) {
  .cz-feat-row {
    grid-template-columns: 1fr;
  }

  .cz-feat-row-reverse {
    direction: ltr;
  }

  .cz-mock-body {
    grid-template-columns: 1fr;
  }

  .cz-mock-sidebar {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
  }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 991.98px) {
  .cz-nav-links {
    padding: 1rem 0;
    gap: .4rem;
  }

  .cz-nav-actions {
    margin-left: 0;
    /* padding-top: .8rem; */
    padding: 2rem 0;    
    border-top: 1px solid var(--border-soft);
    margin-top: .5rem;
  }

  .cz-dash {
    grid-template-columns: 1fr;
  }

  .cz-dash-tabs {
    flex-direction: row;
    overflow-x: auto;
    max-height: none;
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
  }

  .cz-dash-tab {
    border-left: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
  }

  .cz-dash-tab.active {
    border-bottom-color: var(--indigo);
  }

  .cz-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .cz-section {
    padding: 4.5rem 0;
  }

  .cz-hero {
    padding: 3.5rem 0 3.5rem;
    text-align: center;
  }

  .cz-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .cz-hero-actions {
    justify-content: center;
  }

  .cz-hero-note {
    justify-content: center;
  }

  .cz-dash-panel {
    flex-direction: column;
  }

  .cz-demo {
    max-width: 380px;
  }
}