/* ====================================================
   CLARITASK — MARKETING SITE
   Brand: primary #00b4e5 · dark #103254 · light #edfafd · accent #ffbe1d
   Fonts: Poppins (headings) · Nunito (body)
   ==================================================== */

:root {
  --ct-primary: #002574;
  --ct-primary-dark: #001a54;
  --ct-blue: #002574;
  --ct-viz: #00b4e5;
  --ct-dark: #1d1d1f;
  --ct-light: #eef2fb;
  --ct-accent: #f5a623;
  --ct-ink: #1d1d1f;
  --ct-muted: #6e6e73;
  --ct-border: #e8e8ed;
  --ct-grey: #f5f5f7;
  --ct-radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--ct-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
  color: var(--ct-dark);
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----------------------------------------------------
   IMAGE PLACEHOLDERS  (replace .ph blocks with <img> later)
   ---------------------------------------------------- */
.ph {
  width: 100%;
  height: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  background: var(--ct-grey);
  border: 1px dashed #cfd4d9;
  border-radius: 5px;
  color: var(--ct-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ph::before {
  content: "🖼 ";
  margin-right: 6px;
}

/* ----------------------------------------------------
   BUTTONS
   ---------------------------------------------------- */
.ct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 5px;
  border: 2px solid transparent;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  transition: all 0.2s ease;
}
.ct-btn--primary {
  background: var(--ct-primary);
  color: #fff;
}
.ct-btn--primary:hover {
  background: var(--ct-primary-dark);
  transform: translateY(-1px);
}
.ct-btn--dark {
  background: var(--ct-blue);
  color: #fff;
}
.ct-btn--dark:hover {
  background: #001a54;
}
.ct-btn--ghost {
  background: transparent;
  color: var(--ct-dark);
  border-color: var(--ct-border);
}
.ct-btn--ghost:hover {
  border-color: var(--ct-primary);
  color: var(--ct-primary);
}
.ct-btn--outline {
  background: #fff;
  color: var(--ct-primary);
  border-color: var(--ct-primary);
}
.ct-btn--outline:hover {
  background: var(--ct-light);
}
.ct-btn__arrow {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ct-btn:hover .ct-btn__arrow {
  transform: translateX(4px);
}

/* ----------------------------------------------------
   HEADER
   ---------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ct-border);
}
.header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.header-logo img {
  height: 32px;
  display: block;
}
.left_list ul {
  display: flex;
  align-items: center;
  gap: 26px;
}
.left_list a,
.dropdown-trigger {
  font-weight: 700;
  font-size: 15px;
  color: var(--ct-dark);
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}
.left_list a:hover,
.dropdown-trigger:hover {
  color: var(--ct-primary);
}
.left_list a,
.left_list .dropdown-trigger {
  position: relative;
  padding: 26px 0;
}
.left_list a.is-current,
.left_list .dropdown-trigger.is-current {
  color: var(--ct-primary);
}
.left_list a.is-current::after,
.left_list .dropdown-trigger.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--ct-primary);
}
.mobile-nav__item > a.is-current,
.mobile-dropdown-link.is-current {
  color: var(--ct-primary);
}
.dropdown-chevron {
  transition: transform 0.2s;
}
.dropdown-trigger.is-open .dropdown-chevron {
  transform: rotate(180deg);
}
.right-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sign_in_btn {
  font-weight: 800;
  color: var(--ct-dark);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sign_in_btn:hover {
  color: var(--ct-primary);
}
.sign_in_btn__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sign_in_btn:hover .sign_in_btn__arrow {
  transform: translateX(4px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger__line {
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ct-blue);
}

/* Mega menu */
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  background: #fff;
  border-bottom: 1px solid var(--ct-border);

  display: none;
}
.mega-menu.is-open {
  display: block;
  animation: mega-in 0.32s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes mega-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mega-menu__desc.is-show {
  animation: mega-desc-in 0.3s ease both;
}
@keyframes mega-desc-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mega-menu__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 40px;
}
.mega-menu__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mega-menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 5px;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: var(--ct-dark);
}
.mega-menu__item:hover,
.mega-menu__item--active {
  background: var(--ct-light);
  color: var(--ct-primary);
}
.mega-menu__arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ct-primary);
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mega-menu__arrow svg {
  width: 14px;
  height: 14px;
}
.mega-menu__item:hover .mega-menu__arrow,
.mega-menu__item--active .mega-menu__arrow {
  opacity: 1;
  transform: translateX(0);
}
.mega-menu__desc-wrap {
  position: relative;
}
.mega-menu__desc {
  display: none;
  margin: 8px 0 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ct-muted);
}
.mega-menu__desc.is-show {
  display: block;
}
.mega-menu__preview {
  display: none;
  height: 210px;
}
.mega-menu__preview.is-show {
  display: block;
}

/* Mobile nav */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 50, 84, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 110;
}
.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav {
  position: fixed;
  top: 0;
  left: -340px;
  width: 320px;
  max-width: 86vw;
  height: 100vh;
  background: #fff;
  border-right: 1px solid var(--ct-border);
  z-index: 120;
  padding: 18px;
  transition: left 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav.is-open {
  left: 0;
}
.mobile-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--ct-border);
}
.mobile-nav__header img {
  height: 26px;
}
.mobile-nav__close {
  width: 34px;
  height: 34px;
  border-radius: 5px;
  background: var(--ct-grey);
  border: none;
  font-size: 17px;
  color: var(--ct-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.mobile-nav__close:hover {
  background: #e8e8ed;
  color: var(--ct-primary);
}
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav__item > a,
.mobile-dropdown-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 5px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: var(--ct-dark);
  background: none;
  border: none;
  font-size: 15px;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}
.mobile-nav__item > a:hover,
.mobile-dropdown-trigger:hover {
  background: var(--ct-grey);
  color: var(--ct-primary);
}
.mobile-nav__item > a.is-current {
  color: var(--ct-primary);
}
.mobile-dropdown-chevron {
  transition: transform 0.25s ease;
}
.mobile-has-dropdown:has(.mobile-dropdown-panel.is-open)
  .mobile-dropdown-chevron {
  transform: rotate(180deg);
}
.mobile-dropdown-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  margin: 2px 0 2px 14px;
  border-left: 2px solid var(--ct-border);
  transition: grid-template-rows 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.mobile-dropdown-panel.is-open {
  grid-template-rows: 1fr;
}
.mobile-dropdown-panel > div {
  overflow: hidden;
}
.mobile-dropdown-link {
  display: block;
  padding: 9px 14px;
  font-weight: 700;
  color: var(--ct-muted);
  font-size: 14px;
  border-radius: 5px;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}
.mobile-dropdown-link:hover {
  color: var(--ct-primary);
  background: var(--ct-grey);
}
.mobile-dropdown-link.is-current {
  color: var(--ct-primary);
}
.mobile-nav__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

/* ----------------------------------------------------
   HERO
   ---------------------------------------------------- */
.clx-hero {
  background: var(--ct-grey);
  border-bottom: 1px solid var(--ct-border);
  padding: 56px 0 64px;
  overflow: hidden;
}
.clx-hero__inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}
.clx-eyebrow {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--ct-border);
  color: var(--ct-primary);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 5px;
  margin-bottom: 18px;
}
.clx-hero__title {
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.clx-hero__title em {
  font-style: normal;
  color: var(--ct-primary);
}
.clx-hero__sub {
  font-size: 18.5px;
  line-height: 1.65;
  color: var(--ct-muted);
  margin: 0 auto 28px;
  max-width: 640px;
}
.clx-hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.clx-hero__note {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--ct-muted);
  font-weight: 700;
}

/* Hero device stage */
.clx-herostage {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
.clx-fxbg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.clx-fxchip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--ct-border);

  border-radius: 5px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ct-dark);
  animation: clx-float 5.5s ease-in-out infinite;
  white-space: nowrap;
}
.clx-fxchip .ic {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: color-mix(in srgb, var(--c, var(--ct-viz)) 14%, #fff);
  color: var(--c, var(--ct-viz));
}
.clx-fxchip .ic svg {
  width: 13px;
  height: 13px;
}
.clx-fxchip .stars {
  color: var(--ct-accent);
  letter-spacing: 1px;
}
@keyframes clx-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.clx-devices {
  position: relative;
  display: flex;
  justify-content: center;
}
.clx-ipad {
  width: min(760px, 92%);
  background: #0c1c2c;
  border-radius: 5px;
  padding: 16px;
}
.clx-ipad__screen {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 4 / 2.8;
}
.clx-ipad__screen .ph,
.clx-ipad__screen img {
  height: 100%;
  border-radius: 0;
}
.clx-iphone {
  position: absolute;
  right: 2%;
  bottom: -34px;
  width: 168px;
  background: #0c1c2c;
  border-radius: 5px;
  padding: 9px;

  z-index: 4;
}
.clx-iphone__island {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 14px;
  background: #0c1c2c;
  border-radius: 5px;
  z-index: 2;
}
.clx-iphone__screen {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 9 / 19;
}
.clx-iphone__screen .ph,
.clx-iphone__screen img {
  height: 100%;
  border-radius: 0;
  font-size: 11px;
}

/* ----------------------------------------------------
   MOCK APP BOARD  (animated Scrum board in the hero iPad)
   One task card "travels" To Do → In Progress → Done in a 12s loop.
   ---------------------------------------------------- */
.mockapp {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fbfdfe;
  font-size: 11px;
  overflow: hidden;
}
.mockapp__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border-bottom: 1px solid var(--ct-border);
  flex: 0 0 auto;
}
.mockapp__logo {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--ct-viz);
  flex: 0 0 auto;
}
.mockapp__title {
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  color: var(--ct-dark);
}
.mockapp__title i {
  font-style: normal;
  color: var(--ct-muted);
  font-weight: 600;
}
.mockapp__pill {
  background: var(--ct-viz);
  color: #fff;
  font-weight: 800;
  font-size: 9.5px;
  padding: 4px 10px;
  border-radius: 5px;
}
.mockapp__meta {
  margin-left: auto;
  color: var(--ct-muted);
  font-weight: 800;
  font-size: 10px;
}

.mockapp__board {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
  min-height: 0;
}
.mockcol {
  background: var(--ct-grey);
  border-radius: 5px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  overflow: hidden;
}
.mockcol__head {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--ct-dark);
  padding: 2px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mockcol__head em {
  font-style: normal;
  background: #fff;
  color: var(--ct-muted);
  border-radius: 5px;
  padding: 1px 7px;
  font-size: 9.5px;
  font-weight: 800;
}
.mockcol__add {
  margin-top: auto;
  background: #fff;
  border: 1.5px dashed var(--ct-border);
  border-radius: 5px;
  padding: 6px 8px;
  color: var(--ct-muted);
  font-weight: 800;
  font-size: 10px;
}
.mockcard {
  position: relative;
  background: #fff;
  border-radius: 5px;
  padding: 8px 9px;
}
.mockcard p {
  margin: 6px 0 7px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--ct-dark);
  line-height: 1.3;
}
.mocktag {
  display: inline-block;
  background: color-mix(in srgb, var(--t, var(--ct-viz)) 18%, #fff);
  color: color-mix(in srgb, var(--t, var(--ct-viz)) 80%, #000);
  font-weight: 800;
  font-size: 9px;
  padding: 2.5px 8px;
  border-radius: 5px;
}
.mockcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.mockavs {
  display: inline-flex;
}
.mockavs i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--a, var(--ct-viz));
  color: #fff;
  font-style: normal;
  font-weight: 800;
  font-size: 8.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #fff;
}
.mockavs i + i {
  margin-left: -5px;
}
.mockest {
  color: var(--ct-muted);
  font-weight: 800;
  font-size: 9px;
  white-space: nowrap;
}
.mockbar {
  display: block;
  height: 4px;
  background: var(--ct-light);
  border-radius: 5px;
  margin: 0 0 7px;
  overflow: hidden;
}
.mockbar__fill {
  display: block;
  height: 100%;
  border-radius: 5px;
  background: var(--ct-viz);
}
.mockcard--done {
  background: #f4fcf7;
}
.mockcard--done p {
  text-decoration: line-through;
  text-decoration-color: rgba(16, 50, 84, 0.35);
}
.mockcheck {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Entrance: static cards cascade in once --- */
.mk-in {
  opacity: 0;
  animation: mk-enter 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.mk-in-1 {
  animation-delay: 0.5s;
}
.mk-in-2 {
  animation-delay: 0.75s;
}
.mk-in-3 {
  animation-delay: 1s;
}
.mk-in-4 {
  animation-delay: 1.25s;
}
.mk-in-5 {
  animation-delay: 1.5s;
}
.mk-in-6 {
  animation-delay: 1.75s;
}
.mk-in-7 {
  animation-delay: 2s;
}
.mk-in-8 {
  animation-delay: 2.25s;
}
.mk-in-9 {
  animation-delay: 2.5s;
}
@keyframes mk-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- The travelling task: one 12s loop across the three columns --- */
.mk-travel-todo {
  animation: mk-travel-todo 12s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}
@keyframes mk-travel-todo {
  0%,
  2% {
    opacity: 0;
    transform: translateY(16px);
  }
  8%,
  26% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
  32%,
  100% {
    opacity: 0;
    transform: translateX(36px);
  }
}
.mk-travel-prog {
  animation: mk-travel-prog 12s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}
@keyframes mk-travel-prog {
  0%,
  30% {
    opacity: 0;
    transform: translateX(-36px);
  }
  36%,
  62% {
    opacity: 1;
    transform: translateX(0);
  }
  68%,
  100% {
    opacity: 0;
    transform: translateX(36px);
  }
}
.mk-bar-fill {
  width: 10%;
  animation: mk-bar-fill 12s ease-in-out infinite;
}
@keyframes mk-bar-fill {
  0%,
  36% {
    width: 10%;
  }
  62%,
  100% {
    width: 88%;
  }
}
.mk-travel-done {
  animation: mk-travel-done 12s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}
@keyframes mk-travel-done {
  0%,
  66% {
    opacity: 0;
    transform: translateX(-36px);
  }
  72%,
  94% {
    opacity: 1;
    transform: translateX(0);
  }
  99%,
  100% {
    opacity: 0;
    transform: translateX(0);
  }
}
.mk-check-pop {
  animation: mk-check-pop 12s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}
@keyframes mk-check-pop {
  0%,
  73% {
    transform: scale(0);
  }
  79% {
    transform: scale(1.35);
  }
  83%,
  100% {
    transform: scale(1);
  }
}

/* --- Mobile "My Tasks" mock (inside the iPhone) --- */
.mockphone {
  height: 100%;
  background: #fbfdfe;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 36px 9px 10px;
  position: relative;
  overflow: hidden;
}
.mockphone__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 2px;
}
.mockphone__bar b {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  color: var(--ct-dark);
}
.mockphone__bar .mockapp__logo {
  width: 14px;
  height: 14px;
  border-radius: 4px;
}
.mockphone__count {
  margin-left: auto;
  background: var(--ct-viz);
  color: #fff;
  font-weight: 800;
  font-size: 8.5px;
  border-radius: 5px;
  padding: 1px 7px;
}
.mockphone__day {
  font-weight: 800;
  font-size: 8.5px;
  color: var(--ct-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.mockrow {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border-radius: 5px;
  padding: 7px 8px;
}
.mockrow__circle {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.8px solid #c7dbe7;
  color: transparent;
  font-size: 8px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockrow__body {
  min-width: 0;
  position: relative;
}
.mockrow__body b {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 9.5px;
  color: var(--ct-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockrow__body i {
  font-style: normal;
  font-weight: 700;
  font-size: 8px;
  color: var(--ct-muted);
  white-space: nowrap;
}
.mockrow__due {
  margin-left: auto;
  font-weight: 800;
  font-size: 8px;
  color: var(--ct-muted);
  background: var(--ct-light);
  border-radius: 5px;
  padding: 2px 6px;
  white-space: nowrap;
}
.mockrow__due--hot {
  background: #fdecec;
  color: #dc2626;
}
.mockphone__fab {
  position: absolute;
  right: 10px;
  bottom: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ct-viz);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The first mobile task "checks itself off" on a loop */
.mk-mcheck {
  animation: mk-mcheck 9s ease infinite;
}
@keyframes mk-mcheck {
  0%,
  32% {
    background: transparent;
    border-color: #c7dbe7;
    color: transparent;
    transform: scale(1);
  }
  37% {
    transform: scale(1.3);
  }
  40%,
  88% {
    background: #16a34a;
    border-color: #16a34a;
    color: #fff;
    transform: scale(1);
  }
  94%,
  100% {
    background: transparent;
    border-color: #c7dbe7;
    color: transparent;
  }
}
.mk-mstrike::after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 1.5px;
  width: 100%;
  background: rgba(16, 50, 84, 0.45);
  transform: scaleX(0);
  transform-origin: left center;
  animation: mk-mstrike 9s ease infinite;
}
@keyframes mk-mstrike {
  0%,
  36% {
    transform: scaleX(0);
  }
  46%,
  88% {
    transform: scaleX(1);
  }
  94%,
  100% {
    transform: scaleX(0);
  }
}
.mockrow--checking {
  animation: mk-mrow 9s ease infinite;
}
@keyframes mk-mrow {
  0%,
  36% {
    opacity: 1;
  }
  46%,
  88% {
    opacity: 0.62;
  }
  96%,
  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mk-in,
  .mk-travel-todo,
  .mk-travel-prog,
  .mk-travel-done,
  .mk-bar-fill,
  .mk-check-pop,
  .mk-mcheck,
  .mk-mstrike::after,
  .mockrow--checking {
    animation: none;
    opacity: 1;
  }
  .mk-travel-todo {
    display: none;
  }
  .mk-bar-fill {
    width: 60%;
  }
  .mk-check-pop {
    transform: scale(1);
  }
  .mk-mstrike::after {
    transform: scaleX(0);
  }
}

/* ----------------------------------------------------
   STAT BAND
   ---------------------------------------------------- */
.clx-band {
  background: var(--ct-blue);
  padding: 26px 0;
}
.clx-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: center;
}
.clx-band__num {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px);
  color: #fff;
}
.clx-band__label {
  color: #bcd3e6;
  font-weight: 700;
  font-size: 14.5px;
}

/* ----------------------------------------------------
   GENERIC SECTION + HEADINGS
   ---------------------------------------------------- */
.clx-section {
  padding: 64px 0;
}
.clx-section--tint {
  background: var(--ct-grey);
  border-top: 1px solid var(--ct-border);
  border-bottom: 1px solid var(--ct-border);
}
.clx-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 38px;
}
.clx-head__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 14px 0 14px;
}
.clx-head__sub {
  color: var(--ct-muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

/* ----------------------------------------------------
   JOURNEY (numbered how-it-works steps)
   ---------------------------------------------------- */
.clx-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.clx-step {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  padding: 12px;

  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.clx-step:hover {
  transform: translateY(-4px);
}
.clx-step__media {
  margin: 0 0 14px;
  height: 200px;
  display: flex;
}
.clx-step__media .clx-dev {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.clx-step__media .clx-dev__screen {
  flex: 1;
  aspect-ratio: auto;
  min-height: 0;
  display: flex;
}
.clx-step__num {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--ct-primary);
  background: var(--ct-light);
  border-radius: 5px;
  padding: 5px 10px;
  margin-bottom: 10px;
}
.clx-step__title {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 8px;
}
.clx-step__desc {
  color: var(--ct-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* Device frames inside steps */
.clx-dev {
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--ct-border);
  background: #fff;
}
.clx-dev--desktop .clx-dev__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f2f7fa;
  padding: 8px 12px;
  border-bottom: 1px solid var(--ct-border);
}
.clx-dev__dots {
  display: inline-flex;
  gap: 5px;
}
.clx-dev__dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d4e2ea;
}
.clx-dev__addr {
  font-size: 12px;
  color: var(--ct-muted);
  font-weight: 700;
}
.clx-dev__screen {
  aspect-ratio: 16 / 10;
}
.clx-dev__screen .ph,
.clx-dev__screen img {
  height: 100%;
  border-radius: 0;
  border: none;
}

/* ----------------------------------------------------
   SOURCES / 4-CARD GRID
   ---------------------------------------------------- */
.clx-sources__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.clx-source {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  padding: 26px 22px;
  text-align: left;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.clx-source:hover {
  transform: translateY(-4px);
}
.clx-source__icon {
  width: 52px;
  height: 52px;
  border-radius: 5px;
  background: var(--ct-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ct-primary);
  margin-bottom: 16px;
}
.clx-source__icon svg {
  width: 26px;
  height: 26px;
}
.clx-source__title {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.clx-source__badge {
  font-size: 10.5px;
  background: var(--ct-accent);
  color: var(--ct-dark);
  font-weight: 800;
  border-radius: 5px;
  padding: 3px 9px;
  letter-spacing: 0.03em;
}
.clx-source__desc {
  color: var(--ct-muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}
.clx-source--link:hover .clx-source__title {
  color: var(--ct-primary);
}

/* ----------------------------------------------------
   STATUS / COLOR-DOT LIST
   ---------------------------------------------------- */
.clx-status__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 48px;
}
.clx-status__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: 5px;
  padding: 9px 18px;
  font-weight: 800;
  font-size: 14px;
  color: var(--ct-dark);
}
.clx-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--c, var(--ct-primary));
}

/* ----------------------------------------------------
   FEATURE TABS
   ---------------------------------------------------- */
.clx-tabs {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: 5px;

  overflow: hidden;
}
.clx-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--ct-border);
  background: #fbfdfe;
}
.clx-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--ct-border);
  background: #fff;
  border-radius: 5px;
  padding: 9px 16px;
  font-weight: 800;
  font-size: 13.5px;
  color: var(--ct-dark);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}
.clx-tab:hover {
  border-color: var(--ct-primary);
  color: var(--ct-primary);
  transform: translateY(-2px);
}
.clx-tab:active {
  transform: translateY(0) scale(0.96);
}
.clx-tab.is-active {
  background: var(--ct-blue);
  border-color: var(--ct-blue);
  color: #fff;
  transform: translateY(-1px);
}
.clx-tab__icon {
  display: inline-flex;
}
.clx-tab__icon svg {
  width: 16px;
  height: 16px;
}

.clx-panel {
  display: none;
  padding: 28px;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}
.clx-panel.is-active {
  display: grid;
}

/* Panel switch — staggered entrance */
.clx-panel.is-active .clx-panel__text {
  animation: clx-panel-text 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.clx-panel.is-active .clx-panel__media {
  animation: clx-panel-media 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s both;
}
.clx-panel.is-active .clx-panel__list li {
  opacity: 0;
  animation: clx-panel-item 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.clx-panel.is-active .clx-panel__list li:nth-child(1) {
  animation-delay: 0.18s;
}
.clx-panel.is-active .clx-panel__list li:nth-child(2) {
  animation-delay: 0.24s;
}
.clx-panel.is-active .clx-panel__list li:nth-child(3) {
  animation-delay: 0.3s;
}
.clx-panel.is-active .clx-panel__list li:nth-child(4) {
  animation-delay: 0.36s;
}
.clx-panel.is-active .clx-panel__list li:nth-child(5) {
  animation-delay: 0.42s;
}
.clx-panel.is-active .clx-panel__list li:nth-child(6) {
  animation-delay: 0.48s;
}
.clx-panel.is-active .clx-panel__list li:nth-child(7) {
  animation-delay: 0.54s;
}

@keyframes clx-panel-text {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes clx-panel-media {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes clx-panel-item {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .clx-panel.is-active .clx-panel__text,
  .clx-panel.is-active .clx-panel__media,
  .clx-panel.is-active .clx-panel__list li {
    animation: none;
    opacity: 1;
  }
}
.clx-panel__eyebrow {
  color: var(--ct-primary);
  font-weight: 800;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.clx-panel__title {
  font-size: 26px;
  font-weight: 800;
  margin: 10px 0 12px;
}
.clx-panel__desc {
  color: var(--ct-muted);
  line-height: 1.7;
  font-size: 15.5px;
  margin: 0 0 18px;
}
.clx-panel__list {
  display: grid;
  gap: 10px;
}
.clx-panel__list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ct-dark);
  line-height: 1.5;
}
.clx-panel__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--ct-light);
  color: var(--ct-primary);
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clx-panel__media {
  margin: 0;
  min-height: 260px;
  display: flex;
}
.clx-panel__media .ph {
  min-height: 260px;
}

/* ----------------------------------------------------
   SPLIT / COMPARE SECTION
   ---------------------------------------------------- */
.clx-compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.clx-compare__card {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  padding: 28px;
}
.clx-compare__card h3 {
  font-size: 21px;
  font-weight: 800;
  margin: 0 0 8px;
}
.clx-compare__card > p {
  color: var(--ct-muted);
  font-size: 15px;
  line-height: 1.65;
}
.clx-stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0c1c2c;
  color: #fff;
  border-radius: 8px;
  padding: 9px 16px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.store-badge:hover {
  background: #16314a;
  transform: translateY(-1px);
}
.store-badge__logo {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}
.store-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.store-badge__text small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.store-badge__text strong {
  font-size: 16px;
  font-weight: 700;
}
.clx-compare__media {
  min-height: 252px;
  margin: 18px 0 0;
  display: flex;
}

/* ----------------------------------------------------
   PRICING
   ---------------------------------------------------- */
.pricing-section {
  padding: 64px 0;
  background: var(--ct-blue);
}
.pricing-section .clx-head__title,
.pricing-section .rp-title {
  color: #fff;
}
.pricing-section .clx-head__sub {
  color: #bcd3e6;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border-radius: 5px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.price-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--ct-border);
}
.price-card--featured .price-card__accent {
  background: var(--ct-primary);
}
.price-card--gold .price-card__accent {
  background: var(--ct-accent);
}
.price-card__name {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
}
.price-card__tier {
  color: var(--ct-muted);
  font-weight: 700;
  font-size: 13.5px;
  margin: 4px 0 18px;
}
.price-card__price {
  font-family: "Poppins", sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--ct-dark);
  line-height: 1;
}
.price-card__price small {
  font-size: 15px;
  font-weight: 700;
  color: var(--ct-muted);
}
.price-card__period {
  color: var(--ct-muted);
  font-weight: 700;
  font-size: 13.5px;
  margin: 6px 0 20px;
}
.price-card__features-title {
  font-size: 14.5px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--ct-dark);
}
.ct-check-list {
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
  align-content: start;
  flex: 1 1 auto;
}
.ct-check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ct-dark);
  line-height: 1.5;
}
.ct-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--ct-light);
  color: var(--ct-primary);
  font-size: 10px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-check-list li.no_checkmark {
  padding-left: 0;
  color: var(--ct-muted);
}
.ct-check-list li.no_checkmark::before {
  display: none;
}
.price-card__btn {
  margin-top: auto;
  text-align: center;
}
.price-card__quote {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--ct-muted);
  font-style: italic;
  line-height: 1.55;
  min-height: 40px;
}
.price-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--ct-accent);
  color: var(--ct-dark);
  font-weight: 800;
  font-size: 11px;
  padding: 5px 11px;
  border-radius: 5px;
}
.pricing-footnote {
  text-align: center;
  color: #bcd3e6;
  font-weight: 700;
  font-size: 14px;
  margin-top: 28px;
}
.pricing-footnote a {
  color: #9ec1ff;
}

/* ----------------------------------------------------
   TESTIMONIALS
   ---------------------------------------------------- */
.testimonials-section {
  padding: 64px 0;
  background: var(--ct-grey);
  border-top: 1px solid var(--ct-border);
}
.testimonials-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  margin: 0 0 40px;
}
.testimonials-title span {
  color: var(--ct-muted);
  font-weight: 700;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  padding: 20px;

  display: flex;
  flex-direction: column;
}
.testimonial-quote-icon {
  font-family: "Poppins", sans-serif;
  font-size: 46px;
  color: var(--ct-primary);
  line-height: 1;
  font-weight: 800;
}
.testimonial-content p {
  color: var(--ct-dark);
  font-size: 15px;
  line-height: 1.7;
}
.testimonial-author {
  margin-top: auto;
  padding-top: 14px;
}
.tst-stars {
  color: var(--ct-accent);
  letter-spacing: 2.5px;
  font-size: 15px;
  margin-bottom: 8px;
}
.tst-featured {
  max-width: 860px;
  margin: 0 auto 44px;
  background: var(--ct-blue);
  color: #fff;
  border-radius: 5px;
  padding: 44px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tst-featured::before {
  content: "“";
  position: absolute;
  top: -28px;
  left: 22px;
  font-family: "Poppins", sans-serif;
  font-size: 180px;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}
.tst-featured p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 600;
  line-height: 1.55;
  margin: 10px 0 18px;
}
.tst-featured p em {
  font-style: normal;
  color: #9ec1ff;
}
.tst-featured .tst-author {
  color: #bcd3e6;
  font-weight: 700;
  font-size: 14px;
}
.tst-featured .tst-author b {
  color: #fff;
}
.testimonial-author h4 {
  margin: 0;
  font-size: 15.5px;
  font-weight: 800;
}
.testimonial-author p {
  margin: 3px 0 0;
  color: var(--ct-muted);
  font-size: 13.5px;
  font-weight: 700;
}

/* ----------------------------------------------------
   CONTACT
   ---------------------------------------------------- */
.contact-section {
  padding: 64px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-heading {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  margin: 0 0 8px;
}
.contact-sub {
  color: var(--ct-primary);
  font-weight: 800;
  font-size: 17px;
  margin: 0 0 24px;
}
.contact-list {
  display: grid;
  gap: 13px;
  margin-bottom: 28px;
}
.contact-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ct-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}
.contact-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--ct-primary);
  font-weight: 900;
}
.contact-list a {
  color: var(--ct-primary);
}
.contact_details_wrapper {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.contact-details p {
  margin: 0 0 4px;
  font-size: 13.5px;
  color: var(--ct-dark);
}
.contact-details a {
  color: var(--ct-primary);
  font-weight: 800;
  font-size: 16px;
}

.contact-form-box {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: 5px;
  padding: 34px;
}
.contact-form-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 4px;
}
.contact-form-sub {
  color: var(--ct-muted);
  font-weight: 700;
  margin: 0 0 22px;
}
.contact-field {
  margin-bottom: 14px;
}
.contact-field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1.5px solid var(--ct-border);
  border-radius: 5px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ct-dark);
  outline: none;
  transition: border-color 0.15s;
  resize: vertical;
}
.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--ct-primary);
}
.contact-error {
  display: block;
  color: #dc2626;
  font-size: 12.5px;
  font-weight: 700;
  margin-top: 4px;
}
.contact-submit-btn {
  width: 100%;
  background: var(--ct-primary);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 14px;
  font-weight: 800;
  font-size: 15.5px;
  transition: background 0.15s;
}
.contact-submit-btn:hover {
  background: var(--ct-primary-dark);
}
.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Success state — animated checkmark, form returns after 5s */
.contact-success {
  display: none;
}
.contact-form-box.is-sent .contact-form,
.contact-form-box.is-sent .contact-form-title,
.contact-form-box.is-sent .contact-form-sub {
  display: none;
}
.contact-form-box.is-sent .contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 44px 10px;
  animation: cs-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.contact-success h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 14px 0 2px;
}
.contact-success p {
  color: var(--ct-muted);
  font-weight: 700;
  font-size: 14.5px;
  margin: 0;
  max-width: 320px;
}
.contact-success__mark {
  width: 76px;
  height: 76px;
}
.cs-circle {
  fill: none;
  stroke: #16a34a;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  transform: rotate(-90deg);
  transform-origin: center;
  animation: cs-draw-circle 0.7s ease-out forwards;
}
.cs-check {
  fill: none;
  stroke: #16a34a;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: cs-draw-check 0.4s 0.6s ease-out forwards;
}
@keyframes cs-pop {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes cs-draw-circle {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes cs-draw-check {
  to {
    stroke-dashoffset: 0;
  }
}

/* ----------------------------------------------------
   FAQ
   ---------------------------------------------------- */
.faq-section {
  padding: 64px 0;
  background: var(--ct-grey);
  border-top: 1px solid var(--ct-border);
}
.faq-border {
  max-width: 860px;
  margin: 0 auto;
}
.faq-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  margin: 0;
  text-align: center;
}
.faq-subtitle {
  text-align: center;
  color: var(--ct-primary);
  font-weight: 800;
  margin: 6px 0 36px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: 5px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 14px 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ct-dark);
}
.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--ct-dark);
  color: var(--ct-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}
.faq-question:hover .faq-icon {
  border-color: var(--ct-primary);
  color: var(--ct-primary);
}
.faq-icon svg {
  position: absolute;
  width: 14px;
  height: 14px;
  transition:
    opacity 0.25s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-icon-plus {
  opacity: 1;
  transform: rotate(0deg);
}
.faq-icon-minus {
  opacity: 0;
  transform: rotate(-90deg);
}
.faq-item.is-open .faq-icon {
  background: var(--ct-primary);
  border-color: var(--ct-primary);
  color: #fff;
}
.faq-item.is-open .faq-icon-plus {
  opacity: 0;
  transform: rotate(90deg);
}
.faq-item.is-open .faq-icon-minus {
  opacity: 1;
  transform: rotate(0deg);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  padding: 0 22px;
  transition:
    grid-template-rows 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.35s ease,
    padding 0.4s ease;
}
.faq-answer > p {
  overflow: hidden;
}
.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  padding: 0 22px 20px;
}
.faq-answer p {
  margin: 0;
  color: var(--ct-muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

/* ----------------------------------------------------
   CTA BANNER
   ---------------------------------------------------- */
.clx-cta {
  background: var(--ct-blue);
  border-radius: 5px;
  padding: 56px 40px;
  text-align: center;
  color: #fff;
}
.clx-cta h2 {
  color: #fff;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  margin: 0 0 10px;
}
.clx-cta p {
  color: #e3f7fd;
  font-size: 16.5px;
  font-weight: 700;
  margin: 0 0 26px;
}
.clx-cta .ct-btn--primary {
  background: #fff;
  color: var(--ct-dark);
}
.clx-cta .ct-btn--primary:hover {
  background: var(--ct-light);
}
.clx-cta .ct-btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.clx-cta .ct-btn--ghost:hover {
  border-color: #fff;
  color: #fff;
}

/* ----------------------------------------------------
   CLIENTS SLIDER (marquee strip before the footer)
   ---------------------------------------------------- */
.clients-slider-section {
  background: #fff;
  border-top: 1px solid var(--ct-border);
  padding: 38px 0 42px;
  overflow: hidden;
}
.clients-slider__label {
  text-align: center;
  margin: 0 0 24px;
  color: var(--ct-muted);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.clients-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}
.clients-marquee__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  padding-right: 64px;
  animation: clients-scroll 32s linear infinite;
}
.clients-marquee:hover .clients-marquee__track {
  animation-play-state: paused;
}
.clients-marquee__track span {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #aebfcc;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.clients-marquee__track span:hover {
  color: var(--ct-dark);
}
@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .clients-marquee__track {
    animation: none;
  }
}

/* ----------------------------------------------------
   RESOURCE CARDS (top of footer)
   ---------------------------------------------------- */
.resource-cards {
  padding: 38px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.resource-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.resource-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  padding: 38px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease;
}
.resource-card:hover {
  transform: translateY(-4px);
}
.resource-card__title {
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  margin: 0;
}
.resource-card__btn {
  background: #fff;
  color: var(--ct-dark);
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: 800;
  font-size: 13.5px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.resource-card__btn:hover {
  background: var(--ct-light);
  transform: translateY(-1px);
}

/* ----------------------------------------------------
   FOOTER
   ---------------------------------------------------- */
.footer {
  background: var(--ct-blue);
  color: #bcd3e6;
}
.stay-connected {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
}
.stay-connected .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.stay-connected__title {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  margin: 0;
}
.stay-connected__form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 440px;
}
.subscribe-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 5px;
  padding: 6px 6px 6px 20px;
  width: 100%;
  min-width: 0;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.subscribe-pill input {
  min-width: 0;
}
.subscribe-pill:focus-within {
  border-color: var(--ct-primary);
}
.subscribe-pill__icon {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--ct-muted);
  transition: color 0.25s;
}
.subscribe-pill:focus-within .subscribe-pill__icon {
  color: var(--ct-primary);
}
.subscribe-pill input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ct-dark);
  padding: 9px 0;
}
.subscribe-pill input::placeholder {
  color: #9db8c9;
}
.subscribe-pill.is-error {
  border-color: #ef4444;
  animation: subscribe-shake 0.4s ease;
}
@keyframes subscribe-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-7px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(3px);
  }
}
.subscribe-btn {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--ct-primary);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 12px 24px;
  font-weight: 800;
  font-size: 14.5px;
  line-height: 1;
  transition:
    background 0.3s ease,
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s;
}
.subscribe-btn:hover {
  background: var(--ct-primary-dark);
  transform: translateY(-1px);
}
.subscribe-btn:active {
  transform: translateY(0) scale(0.97);
}
.subscribe-btn__label,
.subscribe-btn__done {
  display: block;
  white-space: nowrap;
  transition:
    opacity 0.3s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.subscribe-btn__done {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(110%);
}
.subscribe-pill.is-success .subscribe-btn {
  background: #16a34a;
}
.subscribe-pill.is-success .subscribe-btn__label {
  opacity: 0;
  transform: translateY(-110%);
}
.subscribe-pill.is-success .subscribe-btn__done {
  opacity: 1;
  transform: translateY(0);
}
.subscribe-pill.is-success {
  border-color: #16a34a;
}
.stay-connected__error {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  padding-left: 22px;
  color: var(--ct-accent);
}

.footer-links {
  padding: 40px 0;
}
.footer-links__grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
}
.footer-links__logo {
  height: 38px;
  margin-bottom: 14px;
}
.footer-links__tagline {
  font-weight: 700;
  font-size: 14.5px;
  margin: 0 0 18px;
}
.footer-links__socials {
  display: flex;
  gap: 10px;
}
.footer-links__socials a {
  width: 42px;
  height: 42px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bcd3e6;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.footer-links__socials a svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-links__socials a:hover {
  background: var(--hb, var(--ct-primary));
  border-color: transparent;
  color: var(--hc, #fff);
  transform: translateY(-4px);
}
.footer-links__socials a:hover svg {
  transform: scale(1.12);
}
.footer-links__socials a:active {
  transform: translateY(-1px) scale(0.96);
}
.footer_right_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.footer-links__heading {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 14px;
}
.footer-links__list {
  display: grid;
  gap: 9px;
}
.footer-links__list a,
.footer-links__list span {
  color: #bcd3e6;
  font-size: 14px;
  font-weight: 700;
}
.footer-links__list a:hover {
  color: #fff;
}

.terms_conditions {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
}
.terms_conditions a:hover {
  color: #fff;
}

/* ----------------------------------------------------
   MOCK UI LIBRARY — animated stand-ins until real screenshots
   ---------------------------------------------------- */
.mui {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 0;
  background: #fbfdfe;
  border: 1px solid var(--ct-border);
  border-radius: 5px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  overflow: hidden;
}
.clx-dev__screen .mui {
  border: none;
  border-radius: 0;
  height: 100%;
}
.clx-panel__media .mui {
  min-height: 260px;
}
.mui--center {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mui--pad0 {
  padding: 8px;
}
.mui-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--ct-dark);
}
.mui-sub {
  color: var(--ct-muted);
  font-weight: 700;
  font-size: 10px;
  line-height: 1.5;
}
.mui-btn {
  background: var(--ct-primary);
  color: #fff;
  border-radius: 5px;
  padding: 7px 16px;
  font-weight: 800;
  font-size: 10.5px;
}
.mui-pulse {
  animation: mui-pulse 2.4s ease infinite;
}
@keyframes mui-pulse {
  0%,
  100% {
  }
  50% {
  }
}
.mockrow .mocktag {
  margin-left: auto;
  flex: 0 0 auto;
}

/* Typewriter input */
.mui-input {
  width: 84%;
  max-width: 250px;
  background: #fff;
  border: 1.5px solid var(--ct-border);
  border-radius: 5px;
  padding: 8px 10px;
  font-weight: 700;
  font-size: 10.5px;
  color: var(--ct-dark);
}
.mui-type {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: bottom;
  border-right: 2px solid var(--ct-primary);
  width: 0ch;
  animation: mui-type 7s steps(14, end) infinite;
}
@keyframes mui-type {
  0% {
    width: 0ch;
  }
  30%,
  86% {
    width: 14ch;
  }
  96%,
  100% {
    width: 0ch;
  }
}

/* Success pill that pops in on a loop */
.mui-toastpill {
  align-self: center;
  margin-top: auto;
  background: #eafaf0;
  color: #16a34a;
  font-weight: 800;
  font-size: 9.5px;
  border-radius: 5px;
  padding: 4px 12px;
  animation: mui-poploop 7s ease infinite;
}
@keyframes mui-poploop {
  0%,
  38% {
    opacity: 0;
    transform: translateY(8px) scale(0.9);
  }
  46%,
  90% {
    opacity: 1;
    transform: none;
  }
  97%,
  100% {
    opacity: 0;
  }
}

/* Project-style picker, highlight cycles between options */
.mui-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex: 1;
}
.mui-opt {
  background: #fff;
  border: 1.5px solid var(--ct-border);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 800;
  font-size: 10.5px;
  color: var(--ct-dark);
  padding: 10px 4px;
}
.mui-opt svg {
  width: 20px;
  height: 20px;
  color: var(--ct-primary);
}
.mui-opt-1 {
  animation: mui-opt1 9s ease infinite;
}
.mui-opt-2 {
  animation: mui-opt2 9s ease infinite;
}
.mui-opt-3 {
  animation: mui-opt3 9s ease infinite;
}
@keyframes mui-opt1 {
  0%,
  30%,
  100% {
    border-color: var(--ct-primary);
    background: var(--ct-light);
    transform: translateY(-2px);
  }
  34%,
  96% {
    border-color: var(--ct-border);
    background: #fff;
    transform: none;
  }
}
@keyframes mui-opt2 {
  0%,
  30%,
  67%,
  100% {
    border-color: var(--ct-border);
    background: #fff;
    transform: none;
  }
  34%,
  63% {
    border-color: var(--ct-primary);
    background: var(--ct-light);
    transform: translateY(-2px);
  }
}
@keyframes mui-opt3 {
  0%,
  63%,
  100% {
    border-color: var(--ct-border);
    background: #fff;
    transform: none;
  }
  67%,
  96% {
    border-color: var(--ct-primary);
    background: var(--ct-light);
    transform: translateY(-2px);
  }
}

/* Comment bubbles + typing dots */
.mui-taskhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mui-taskhead b {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: var(--ct-dark);
}
.mui-bubble {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: 5px;
  padding: 7px 9px;
  font-size: 10px;
  color: var(--ct-dark);
  font-weight: 600;
  max-width: 92%;
  line-height: 1.45;
}
.mui-bubble b {
  font-weight: 800;
}
.mui-bubble--me {
  align-self: flex-end;
  background: var(--ct-light);
  border-color: #d4f0fa;
}
.mui-bavatar {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--a, var(--ct-viz));
  color: #fff;
  font-style: normal;
  font-weight: 800;
  font-size: 8.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mui-mention {
  font-style: normal;
  color: var(--ct-viz);
  font-weight: 800;
  background: rgba(0, 180, 229, 0.12);
  border-radius: 5px;
  padding: 0 4px;
}
.mui-typing {
  display: inline-flex;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: 5px;
  padding: 9px 11px;
  width: max-content;
}
.mui-typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9db8c9;
  animation: mui-tdot 1.2s ease infinite;
}
.mui-typing i:nth-child(2) {
  animation-delay: 0.15s;
}
.mui-typing i:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes mui-tdot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}
/* typing → reply → counter-reply loop (two people messaging) */
.mui-typing--cycle {
  animation: mui-typingcycle 7s ease infinite;
}
@keyframes mui-typingcycle {
  0%,
  26% {
    opacity: 1;
  }
  32%,
  100% {
    opacity: 0;
  }
}
.mui-reply {
  opacity: 0;
  animation: mui-replyin 7s ease infinite;
  margin-top: -33px;
}
@keyframes mui-replyin {
  0%,
  28% {
    opacity: 0;
    transform: translateY(8px);
  }
  35%,
  93% {
    opacity: 1;
    transform: none;
  }
  99%,
  100% {
    opacity: 0;
  }
}
.mui-reply2 {
  opacity: 0;
  align-self: flex-end;
  animation: mui-reply2in 7s ease infinite;
}
@keyframes mui-reply2in {
  0%,
  52% {
    opacity: 0;
    transform: translateY(8px);
  }
  59%,
  93% {
    opacity: 1;
    transform: none;
  }
  99%,
  100% {
    opacity: 0;
  }
}

/* Week bar chart */
.mui-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  padding-top: 6px;
  min-height: 70px;
}
.mui-bars span {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.mui-bars span i {
  width: 100%;
  max-width: 26px;
  height: var(--h, 50%);
  background: var(--ct-viz);
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  animation: mui-bar 7s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}
.mui-bars span:nth-child(2) i {
  animation-delay: 0.12s;
}
.mui-bars span:nth-child(3) i {
  animation-delay: 0.24s;
}
.mui-bars span:nth-child(4) i {
  animation-delay: 0.36s;
}
.mui-bars span:nth-child(5) i {
  animation-delay: 0.48s;
}
.mui-bars span:nth-child(6) i {
  animation-delay: 0.6s;
}
.mui-bars span:nth-child(7) i {
  animation-delay: 0.72s;
}
.mui-bars span b {
  font-size: 8.5px;
  color: var(--ct-muted);
  font-weight: 800;
}
@keyframes mui-bar {
  0%,
  4% {
    transform: scaleY(0);
  }
  22%,
  90% {
    transform: scaleY(1);
  }
  98%,
  100% {
    transform: scaleY(0);
  }
}

/* Donut gauge */
.mui-donutwrap {
  position: relative;
  width: 96px;
  height: 96px;
}
.mui-donut {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.mui-donut .t {
  fill: none;
  stroke: var(--ct-light);
  stroke-width: 10;
}
.mui-donut .f {
  fill: none;
  stroke: var(--ct-viz);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 201;
  stroke-dashoffset: 201;
  animation: mui-donut 7s ease infinite;
}
@keyframes mui-donut {
  0%,
  6% {
    stroke-dashoffset: 201;
  }
  38%,
  90% {
    stroke-dashoffset: 56;
  }
  100% {
    stroke-dashoffset: 201;
  }
}
.mui-donutwrap b {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: var(--ct-dark);
}
.mui-statrow {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ct-muted);
  font-weight: 700;
  font-size: 10px;
  flex-wrap: wrap;
}
.mui-statrow b {
  color: var(--ct-dark);
}

/* Sequenced list items (appear one by one, loop) */
.mui-seq {
  opacity: 0;
  animation: mui-seq 8s ease infinite;
}
.mui-seq-2 {
  animation-delay: 0.9s;
}
.mui-seq-3 {
  animation-delay: 1.8s;
}
.mui-seq-4 {
  animation-delay: 2.7s;
}
@keyframes mui-seq {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  8%,
  76% {
    opacity: 1;
    transform: none;
  }
  85%,
  100% {
    opacity: 0;
  }
}

/* Mini calendar */
.mui-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.mui-cal i {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: 5px;
  min-height: 17px;
  position: relative;
  font-style: normal;
  font-size: 7.5px;
  color: var(--ct-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.mui-cal i.h {
  border: none;
  background: transparent;
  font-weight: 800;
}
.mui-cal i u {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--e, var(--ct-primary));
}
.mui-cal i.today {
  background: var(--ct-primary);
  color: #fff;
  border-color: var(--ct-primary);
  animation: mui-pulse 2.4s ease infinite;
}
.mui-event {
  display: flex;
  gap: 7px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--ct-border);
  border-left: 3px solid var(--ct-primary);
  border-radius: 5px;
  padding: 6px 9px;
  font-weight: 800;
  font-size: 9.5px;
  color: var(--ct-dark);
}
.mui-event .mockest {
  margin-left: auto;
}

/* Notification toasts */
.mui-toast {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  max-width: 260px;
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: 5px;
  padding: 8px 10px;
  opacity: 0;
  animation: mui-toastin 9s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}
.mui-toast-2 {
  animation-delay: 1s;
}
.mui-toast-3 {
  animation-delay: 2s;
}
.mui-toast b {
  display: block;
  font-size: 10px;
  color: var(--ct-dark);
}
.mui-toast i {
  font-style: normal;
  font-size: 9px;
  color: var(--ct-muted);
}
.mui-ticon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: color-mix(in srgb, var(--c, var(--ct-primary)) 15%, #fff);
  color: var(--c, var(--ct-primary));
  display: flex;
  align-items: center;
  justify-content: center;
}
.mui-ticon svg {
  width: 13px;
  height: 13px;
}
@keyframes mui-toastin {
  0% {
    opacity: 0;
    transform: translateX(28px);
  }
  8%,
  74% {
    opacity: 1;
    transform: none;
  }
  82%,
  100% {
    opacity: 0;
    transform: translateX(-12px);
  }
}

/* Self-toggling switch */
.mui-switchrow {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 10px;
  color: var(--ct-muted);
}
.mui-switch {
  flex: 0 0 auto;
  width: 28px;
  height: 16px;
  border-radius: 5px;
  background: #cfe2ec;
  position: relative;
}
.mui-switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}
.mui-switch--anim {
  animation: mui-swbg 6s ease infinite;
}
.mui-switch--anim::after {
  animation: mui-swknob 6s ease infinite;
}
@keyframes mui-swbg {
  0%,
  38% {
    background: #cfe2ec;
  }
  46%,
  90% {
    background: var(--ct-primary);
  }
  98%,
  100% {
    background: #cfe2ec;
  }
}
@keyframes mui-swknob {
  0%,
  38% {
    transform: translateX(0);
  }
  46%,
  90% {
    transform: translateX(12px);
  }
  98%,
  100% {
    transform: translateX(0);
  }
}

/* Download rows */
.mui-ftype {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  border-radius: 5px;
  font-size: 7.5px;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c, #dc2626);
}
.mui-dl {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 78px;
}
.mui-dlbar {
  flex: 1;
  height: 4px;
  border-radius: 5px;
  background: var(--ct-light);
  overflow: hidden;
}
.mui-dlbar i {
  display: block;
  height: 100%;
  background: var(--ct-primary);
  width: 0;
  animation: mui-dl 7s ease infinite;
}
@keyframes mui-dl {
  0%,
  10% {
    width: 0;
  }
  46%,
  92% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
.mui-dlcheck {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  animation: mui-dlcheck 7s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}
@keyframes mui-dlcheck {
  0%,
  46% {
    transform: scale(0);
  }
  53% {
    transform: scale(1.3);
  }
  57%,
  93% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

/* Restore button cross-fade (Trash panel) */
.mui-rbwrap {
  margin-left: auto;
  position: relative;
}
.mui-restorebtn {
  display: inline-block;
  border: 1.5px solid var(--ct-border);
  border-radius: 5px;
  padding: 3px 10px;
  font-weight: 800;
  font-size: 9px;
  color: var(--ct-dark);
  white-space: nowrap;
}
.mui-restorebtn--ok {
  position: absolute;
  right: 0;
  top: 0;
  background: #eafaf0;
  border-color: #bfe8cd;
  color: #16a34a;
}
.mui-rb-a {
  animation: mui-rba 7s ease infinite;
}
.mui-rb-b {
  opacity: 0;
  animation: mui-rbb 7s ease infinite;
}
@keyframes mui-rba {
  0%,
  40% {
    opacity: 1;
  }
  46%,
  92% {
    opacity: 0;
  }
  98%,
  100% {
    opacity: 1;
  }
}
@keyframes mui-rbb {
  0%,
  40% {
    opacity: 0;
    transform: scale(0.92);
  }
  46%,
  92% {
    opacity: 1;
    transform: scale(1);
  }
  98%,
  100% {
    opacity: 0;
  }
}

/* App layout with sidebar (web-app compare card) */
.mui--app {
  flex-direction: row;
  padding: 0;
  gap: 0;
}
.mui-side {
  flex: 0 0 36px;
  background: var(--ct-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-radius: 5px 0 0 5px;
}
.clx-compare__media .mui {
  overflow: hidden;
  max-width: 100%;
}
.clx-compare__media .mockrow__body b {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mui-side i {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.16);
}
.mui-side i.on {
  background: var(--ct-viz);
}
.mui-main {
  flex: 1;
  min-width: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Mini phone frame (mobile compare card) */
.mui-phoneframe {
  width: 124px;
  background: #0c1c2c;
  border-radius: 5px;
  padding: 6px;
  position: relative;
}
.mui-phoneframe::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 9px;
  background: #0c1c2c;
  border-radius: 5px;
  z-index: 3;
}
.mui-phonescr {
  background: #fbfdfe;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 9 / 16.2;
  position: relative;
}
.mui-phonescr .mockphone {
  padding: 24px 7px 8px;
}
.mui-push {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  z-index: 4;
  display: flex;
  gap: 6px;
  align-items: center;
  background: #fff;
  border-radius: 5px;
  padding: 5px 7px;
  animation: mui-push 8s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}
.mui-push b {
  display: block;
  font-size: 8px;
  color: var(--ct-dark);
  line-height: 1.25;
}
.mui-push i {
  font-style: normal;
  font-size: 7.5px;
  color: var(--ct-muted);
}
.mui-push .mui-ticon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  font-size: 9px;
}
@keyframes mui-push {
  0%,
  12% {
    transform: translateY(-140%);
  }
  20%,
  70% {
    transform: translateY(0);
  }
  78%,
  100% {
    transform: translateY(-140%);
  }
}

/* Mock animations stay paused until scrolled into view (JS adds .in-view) */
.js-anim .mui *,
.js-anim .mui::after {
  animation-play-state: paused !important;
}
.js-anim .mui.in-view *,
.js-anim .mui.in-view::after {
  animation-play-state: running !important;
}

/* ----------------------------------------------------
   SCROLL REVEAL  (cards fade up as they enter the viewport)
   ---------------------------------------------------- */
.js-anim .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.6s ease,
    transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.js-anim .reveal.reveal-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js-anim .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .js-anim .mui * {
    animation: none !important;
  }
}

/* ----------------------------------------------------
   SCROLL TO TOP  (circular progress ring)
   ---------------------------------------------------- */
.scroll-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--ct-dark);

  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.8);
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0.35s,
    background 0.2s,
    color 0.2s;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-top:hover {
  background: var(--ct-primary);
  color: #fff;
}
.scroll-top:hover .scroll-top__icon {
  animation: scroll-top-nudge 0.6s ease infinite alternate;
}
.scroll-top__ring {
  position: absolute;
  inset: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  transform: rotate(-90deg);
  pointer-events: none;
}
.scroll-top__track,
.scroll-top__progress {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
}
.scroll-top__track {
  stroke: var(--ct-border);
}
.scroll-top__progress {
  stroke: var(--ct-primary);
  transition: stroke-dashoffset 0.15s linear;
}
.scroll-top__icon {
  width: 20px;
  height: 20px;
  position: relative;
}
@keyframes scroll-top-nudge {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-3px);
  }
}

/* ----------------------------------------------------
   SLIM PAGE HERO (pricing / features / contact / faq)
   ---------------------------------------------------- */
.clx-hero--slim {
  padding: 46px 0 42px;
}
.clx-hero--slim .clx-hero__inner {
  margin-bottom: 0;
}

/* ----------------------------------------------------
   PRICING CALCULATOR
   ---------------------------------------------------- */
.calc {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: 5px;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
}
.calc__left {
  padding: 38px;
}
.calc__left label {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--ct-dark);
  display: block;
  margin-bottom: 26px;
}
.calc__range {
  width: 100%;
  accent-color: var(--ct-primary);
  height: 6px;
  cursor: pointer;
}
.calc__marks {
  display: flex;
  justify-content: space-between;
  color: var(--ct-muted);
  font-size: 11px;
  font-weight: 800;
  margin-top: 6px;
}
.calc__users {
  margin-top: 18px;
  font-weight: 800;
  color: var(--ct-muted);
  font-size: 15px;
}
.calc__users b {
  font-family: "Poppins", sans-serif;
  font-size: 34px;
  color: var(--ct-dark);
  margin-right: 8px;
}
.calc__right {
  background: var(--ct-blue);
  color: #bcd3e6;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.calc__right > span {
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.calc__price {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: #fff;
  line-height: 1;
  transition: transform 0.18s ease;
}
.calc__price small {
  font-size: 17px;
  color: #bcd3e6;
  font-weight: 700;
}
.calc__price.is-bump {
  transform: scale(1.07);
}
.calc__break {
  font-weight: 700;
  font-size: 13.5px;
  margin: 6px 0 0;
  line-height: 1.55;
}
.calc__free {
  color: var(--ct-accent);
  font-weight: 800;
}

/* ----------------------------------------------------
   PLAN COMPARISON TABLE
   ---------------------------------------------------- */
.cmp-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: 5px;
  overflow: hidden;
  overflow-x: auto;
}
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 560px;
}
.cmp-table th,
.cmp-table td {
  padding: 13px 20px;
  text-align: center;
  border-bottom: 1px solid var(--ct-border);
}
.cmp-table th {
  font-family: "Poppins", sans-serif;
  color: var(--ct-dark);
  font-size: 14px;
  background: #fbfdfe;
}
.cmp-table th small {
  display: block;
  color: var(--ct-muted);
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 12px;
}
.cmp-table td:first-child,
.cmp-table th:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--ct-dark);
}
.cmp-table tr:last-child td {
  border-bottom: none;
}
.cmp-yes {
  color: #16a34a;
  font-weight: 900;
  font-size: 16px;
}
.cmp-no {
  color: #c9d8e2;
  font-weight: 900;
  font-size: 16px;
}
.cmp-note {
  color: var(--ct-muted);
  font-weight: 700;
  font-size: 12.5px;
}

/* ----------------------------------------------------
   FAQ PAGE (search + category filter)
   ---------------------------------------------------- */
.faqp-search {
  max-width: 620px;
  margin: 28px auto 0;
  position: relative;
}
.faqp-search input {
  width: 100%;
  border: 2px solid var(--ct-border);
  border-radius: 5px;
  padding: 15px 24px 15px 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ct-dark);
  outline: none;
  background: #fff;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.faqp-search input:focus {
  border-color: var(--ct-primary);
}
.faqp-search svg {
  position: absolute;
  left: 19px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--ct-muted);
  pointer-events: none;
}
.faqp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 0 36px;
}
.faqp-pill {
  border: 1px solid var(--ct-border);
  background: #fff;
  border-radius: 5px;
  padding: 8px 17px;
  font-weight: 800;
  font-size: 13px;
  color: var(--ct-dark);
  transition: all 0.25s ease;
}
.faqp-pill:hover {
  border-color: var(--ct-primary);
  color: var(--ct-primary);
  transform: translateY(-1px);
}
.faqp-pill.is-active {
  background: var(--ct-blue);
  border-color: var(--ct-blue);
  color: #fff;
}
.faqp-cat {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ct-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 30px 0 12px;
}
.faqp-empty {
  display: none;
  text-align: center;
  color: var(--ct-muted);
  font-weight: 700;
  padding: 36px 0;
}
.faq-item.is-hidden,
.faqp-cat.is-hidden {
  display: none;
}

/* ----------------------------------------------------
   FEATURES PAGE (blocks + searchable wall)
   ---------------------------------------------------- */
.feat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 38px 0;
}
.feat-block--rev > :first-child {
  order: 2;
}
.feat-block__media {
  min-height: 260px;
  display: flex;
  margin: 0;
}
.feat-search {
  max-width: 520px;
  margin: 0 auto 34px;
  position: relative;
}
.feat-search input {
  width: 100%;
  border: 2px solid var(--ct-border);
  border-radius: 5px;
  padding: 13px 22px 13px 48px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  color: var(--ct-dark);
  outline: none;
  background: #fff;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.feat-search input:focus {
  border-color: var(--ct-primary);
}
.feat-search svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: var(--ct-muted);
  pointer-events: none;
}
.feat-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feat-chip {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: 5px;
  padding: 16px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.feat-chip:hover {
  transform: translateY(-3px);
}
.feat-chip__icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  background: var(--ct-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.feat-chip b {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 14.5px;
  color: var(--ct-dark);
  margin-bottom: 2px;
}
.feat-chip span {
  color: var(--ct-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
.feat-chip.is-hidden {
  display: none;
}
.feat-empty {
  display: none;
  text-align: center;
  color: var(--ct-muted);
  font-weight: 700;
  padding: 30px 0;
}

/* ----------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------- */
@media (max-width: 1080px) {
  .clx-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .clx-sources__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mega-menu__inner {
    grid-template-columns: 1fr 1fr;
  }
  .mega-menu__preview {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .calc {
    grid-template-columns: 1fr;
  }
  .feat-block {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .feat-block--rev > :first-child {
    order: 0;
  }
  .feat-wall {
    grid-template-columns: 1fr;
  }
  .left_list,
  .right-buttons .ct-btn--outline {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mega-menu {
    display: none !important;
  }
  .clx-panel {
    grid-template-columns: 1fr;
    padding: 26px;
    gap: 26px;
  }
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .resource-cards__grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .clx-compare__grid {
    grid-template-columns: 1fr;
  }
  .footer-links__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .clx-steps {
    grid-template-columns: 1fr;
  }
  .clx-sources__grid {
    grid-template-columns: 1fr;
  }
  .clx-band__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .clx-section,
  .pricing-section,
  .testimonials-section,
  .contact-section,
  .faq-section {
    padding: 64px 0;
  }
  .clx-hero {
    padding: 52px 0 64px;
  }
  .clx-iphone {
    display: none;
  }
  .clx-fxchip {
    display: none;
  }
  .footer_right_grid {
    grid-template-columns: 1fr;
  }
}

/* Hero + CTA buttons: stack full-width and equal once they'd wrap */
@media (max-width: 768px) {
  .clx-hero__cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .clx-hero__cta .ct-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ----------------------------------------------------
   FLAT UI OVERRIDES — Apple-style: light grey borders,
   no shadows, max 5px radius
   ---------------------------------------------------- */
.mockcard,
.mockrow,
.mui-toast {
  border: 1px solid var(--ct-border);
}
.mockcol {
  border: 1px solid var(--ct-border);
}
.faq-icon {
  border-radius: 5px;
}
.faq-icon,
.faq-item.is-open .faq-icon {
  border-width: 1.5px;
}
.scroll-top {
  border-radius: 5px;
  border: 1px solid var(--ct-border);
}
.scroll-top__ring {
  display: none;
}
.clx-step:hover,
.clx-source:hover,
.feat-chip:hover,
.resource-card:hover {
  box-shadow: none;
}
.clx-tab.is-active {
  box-shadow: none;
}
.subscribe-pill,
.subscribe-pill:focus-within,
.subscribe-pill.is-success {
  box-shadow: none;
}
.subscribe-pill {
  border-color: var(--ct-border);
}
.subscribe-btn:hover {
  box-shadow: none;
}
.faqp-search input:focus,
.feat-search input:focus {
  box-shadow: none;
}
.footer-links__socials a:hover {
  box-shadow: none;
}
.mockphone__fab {
  box-shadow: none;
}
.mui-pulse {
  animation: none;
}
.clx-ipad {
  padding: 10px;
}
.clx-iphone {
  padding: 6px;
}

/* Explanation captions under mocks */
.fig-note {
  margin: 10px 0 0;
  font-size: 12.5px;
  color: var(--ct-muted);
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}
.clx-panel__media,
.feat-block__media {
  flex-direction: column;
}

/* ====================================================
   INTERACTIVE TASK-JOURNEY STEPPER  (Kore order-demo style)
   ==================================================== */
.taskdemo {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.taskdemo__card {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: 5px;
  padding: 24px;
}
.taskdemo__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.taskdemo__status {
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 5px;
  transition: background-color 0.35s ease;
}
.taskdemo__card h3 {
  font-size: 21px;
  font-weight: 800;
  margin: 0 0 6px;
}
.taskdemo__sub {
  color: var(--ct-muted);
  font-size: 13.5px;
  font-weight: 700;
  margin: 0 0 18px;
}
.taskdemo__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.taskdemo__avs {
  display: inline-flex;
}
.taskdemo__avs i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--a, var(--ct-viz));
  color: #fff;
  font-style: normal;
  font-weight: 800;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.taskdemo__avs i + i {
  margin-left: -8px;
}
.taskdemo__timer {
  margin-left: auto;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ct-viz);
  background: var(--ct-light);
  border-radius: 5px;
  padding: 4px 12px;
  font-variant-numeric: tabular-nums;
  visibility: hidden;
}
.taskdemo__track {
  display: flex;
  align-items: center;
}
.taskdemo__tnode {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ct-border);
  position: relative;
  z-index: 2;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}
.taskdemo__tnode.is-on {
  background: var(--ct-viz);
  border-color: var(--ct-viz);
}
.taskdemo__tline {
  flex: 1;
  height: 2px;
  background: var(--ct-border);
  position: relative;
  overflow: hidden;
}
.taskdemo__tline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ct-viz);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.taskdemo__tnode.is-on + .taskdemo__tline::after {
  transform: scaleX(1);
}

.taskdemo__steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.taskdemo__step {
  text-align: left;
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: 5px;
  padding: 13px 16px 13px 46px;
  position: relative;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.2s ease;
}
.taskdemo__step::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--ct-border);
  transition: all 0.25s ease;
}
.taskdemo__step.is-done::before {
  background: #16a34a;
  border-color: #16a34a;
}
.taskdemo__step.is-done::after {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}
.taskdemo__step.is-active {
  border-color: var(--ct-viz);
  background: var(--ct-light);
  transform: translateX(3px);
}
.taskdemo__step.is-active::before {
  border-color: var(--ct-viz);
  box-shadow: inset 0 0 0 4px var(--ct-viz);
}
.taskdemo__step b {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--ct-ink);
}
.taskdemo__step span {
  font-size: 12.5px;
  color: var(--ct-muted);
  font-weight: 600;
}
.taskdemo__hint {
  text-align: center;
  color: var(--ct-muted);
  font-weight: 700;
  font-size: 12.5px;
  margin: 20px 0 0;
}

/* ====================================================
   BENTO "MAKE IT YOURS" GRID  (Kore preferences style)
   ==================================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}
.bento-tile {
  background: #fff;
  border: 1px solid var(--ct-border);
  border-radius: 5px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.bento-tile:hover {
  border-color: #c9ccd2;
  transform: translateY(-3px);
}
.bento-tile--wide {
  grid-column: span 2;
}
.bento-tile__label {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ct-ink);
  margin: 0;
}
.bento-tile__hint {
  color: var(--ct-muted);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}
.bento-tile__body {
  margin-top: auto;
}

/* self/click toggle switch */
.bento-switch {
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: #d4d4dc;
  position: relative;
  flex: 0 0 auto;
  cursor: pointer;
  transition: background 0.3s ease;
}
.bento-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento-switch.is-on {
  background: var(--ct-viz);
}
.bento-switch.is-on::after {
  transform: translateX(20px);
}
.bento-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bento-preview {
  font-weight: 800;
  font-size: 13px;
  color: var(--ct-ink);
}
.bento-preview.is-off {
  color: var(--ct-muted);
}

/* segment control */
.bento-seg {
  display: flex;
  background: var(--ct-grey);
  border: 1px solid var(--ct-border);
  border-radius: 5px;
  padding: 3px;
  gap: 3px;
}
.bento-seg__opt {
  flex: 1;
  border: none;
  background: transparent;
  border-radius: 4px;
  padding: 7px 4px;
  font-weight: 800;
  font-size: 12px;
  color: var(--ct-muted);
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.bento-seg__opt.is-on {
  background: var(--ct-viz);
  color: #fff;
}
.bento-segprev {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--ct-muted);
  font-weight: 700;
  line-height: 1.5;
}
.bento-segprev b {
  color: var(--ct-ink);
}

/* color swatches */
.bento-colors {
  display: flex;
  gap: 8px;
  align-items: center;
}
.bento-swatch {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  border: 2px solid transparent;
  background: var(--c);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.bento-swatch:hover {
  transform: scale(1.12);
}
.bento-swatch.is-on {
  border-color: var(--ct-ink);
}
.bento-tagprev {
  display: inline-block;
  font-weight: 800;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 5px;
  background: color-mix(in srgb, var(--t, var(--ct-viz)) 16%, #fff);
  color: color-mix(in srgb, var(--t, var(--ct-viz)) 78%, #000);
}

/* live notification stack */
.bento-notifs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 132px;
}
.bento-notif {
  display: flex;
  gap: 9px;
  align-items: center;
  background: var(--ct-grey);
  border: 1px solid var(--ct-border);
  border-radius: 5px;
  padding: 9px 11px;
  opacity: 0;
  transform: translateX(18px);
  transition:
    opacity 0.4s ease,
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.bento-notif.is-in {
  opacity: 1;
  transform: none;
}
.bento-notif b {
  display: block;
  font-size: 11.5px;
  color: var(--ct-ink);
}
.bento-notif i {
  font-style: normal;
  font-size: 10.5px;
  color: var(--ct-muted);
}

@media (max-width: 900px) {
  .taskdemo {
    grid-template-columns: 1fr;
  }
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-tile--wide {
    grid-column: span 2;
  }
}
@media (max-width: 560px) {
  .bento {
    grid-template-columns: 1fr;
  }
  .bento-tile--wide {
    grid-column: span 1;
  }
}

/* ====================================================
   JOURNEY DEVICE FRAMES (Kore-style tablet scenes per step)
   ==================================================== */
.clx-journey .clx-step__media {
  height: 232px;
}
.jdev {
  width: 100%;
  height: 100%;
  background: #002574;
  border-radius: 5px;
  padding: 4px;
  display: flex;
}
.jdev__scr {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
}
.jdev__scr .mui {
  border: none;
  border-radius: 0;
  padding: 12px;
  font-size: 10.5px;
}
.jdev__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.jdev .mui-btn {
  background: var(--ct-viz);
}

/* assignee check that pops in on the staggered rows */
.jd-check {
  margin-left: auto;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* image thumbnail that fades in after upload */
.jd-thumb {
  height: 46px;
  border-radius: 4px;
  background: repeating-linear-gradient(45deg, #eef2fb 0 7px, #e3e9f6 7px 14px);
  border: 1px solid var(--ct-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ct-muted);
  font-size: 16px;
}

/* Homepage journey ("From signup to shipped") — boxes blend into the tinted section, no white card */
.clx-section--tint.clx-journey .clx-step {
  background: transparent;
  border-color: transparent;
}
.clx-section--tint.clx-journey .clx-step:hover {
  transform: none;
}

/* ====================================================
   PRICING CARDS v2 (Claritask model: Free / Paid / Calculator)
   ==================================================== */
.price-card {
  padding-top: 28px;
}
.price-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.price-card__head .price-card__name {
  margin: 0;
}
.price-card__head .price-card__price {
  font-size: 38px;
}
.price-card__head .price-card__price small {
  font-size: 14px;
}
.price-card__calclabel {
  font-weight: 800;
  font-size: 14px;
  margin: 0 0 12px;
}
.calc-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 16px;
}
.calc-stepper button {
  width: 42px;
  height: 42px;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.calc-stepper button:hover {
  background: rgba(255, 255, 255, 0.28);
}
.calc-stepper span {
  padding: 0 20px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
.calc-stepper b {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
}
.price-card__calcbreak {
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 20px;
  opacity: 0.85;
}
.price-card .price-card__price.is-bump {
  animation: calc-bump 0.25s ease;
}
@keyframes calc-bump {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.price-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ct-primary);
}
.price-link__circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ct-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.price-link__circle svg {
  width: 16px;
  height: 16px;
}
.price-link:hover .price-link__circle {
  transform: translateX(4px);
}

/* Calculator card — filled with brand blue */
.price-card--calc {
  background: var(--ct-primary);
  border-color: var(--ct-primary);
  color: #fff;
}
.price-card--calc .price-card__name,
.price-card--calc .price-card__price,
.price-card--calc .price-card__price small {
  color: #fff;
}
.price-card--calc .price-link {
  color: #fff;
}
.price-card--calc .price-link__circle {
  background: #fff;
  color: var(--ct-primary);
}

/* Pricing fixes: badge no longer overlaps price; stepper hugs its content */
.price-card {
  overflow: visible;
}
.price-card__badge {
  top: -11px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  white-space: nowrap;
}
.price-card--featured {
  border-color: var(--ct-primary);
}
.calc-stepper {
  align-self: flex-start;
}

/* Pricing with two cards (Standard + Calculator) — centered */
.pricing-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .pricing-grid--two {
    grid-template-columns: 1fr;
  }
}

/* Contact channel cards: 3 across, single column on mobile */
.clx-sources__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 820px) {
  .clx-sources__grid--3 {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .faq-question {
    font-size: 13px;
  }

  .store-badge {
    min-width: 156px;
  }
}

@media (max-width: 330px) {
  .ct-btn {
    padding-left: 19px;
    padding-right: 19px;
  }
}
