/* ==========================================================================
   Webtree — pure HTML/CSS build
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap");

/* ---------- Tokens ---------- */
:root {
  --cream: #eef1fb;
  --cream-100: #e7ebfa;
  --cream-200: #dde3f6;

  --navy: #0b1020;
  --navy-800: #10152a;

  --ink: #141834;
  --ink-soft: #4b5069;
  --mute: #6d7288;

  --slate: #98a0b8;
  --slate-dark: #767e99;

  --brand: #2c3be1;
  --brand-600: #2431c4;
  --brand-700: #1d28a0;
  --brand-300: #9aa4f2;
  --brand-50: #eef0fb;

  --accent: #f26b21;
  --accent-600: #df5c15;
  --accent-50: #fdeee3;

  --emerald: #16a34a;

  --font-display: "Poppins", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 2px rgba(11, 16, 32, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 16, 32, 0.08);
  --shadow-lg: 0 18px 40px rgba(11, 16, 32, 0.12);
  --shadow-xl: 0 30px 60px rgba(11, 16, 32, 0.18);
  --border: 1px solid rgba(20, 24, 52, 0.08);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
::selection {
  background: rgba(44, 59, 225, 0.18);
}

/* ---------- Helpers ---------- */
.container {
  width: 100%;
  max-width: 78rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.accent {
  color: var(--accent);
}
.blue {
  color: var(--brand);
}
.bg-white {
  background: #fff;
}
.section {
  padding-block: 5rem;
}
@media (min-width: 640px) {
  .section {
    padding-block: 7rem;
  }
}

/* ---------- Eyebrow / pills ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(44, 59, 225, 0.25);
  background: var(--brand-50);
  color: var(--brand-700);
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand);
}
.eyebrow--dark {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-300);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.25s var(--ease);
}
.btn:hover svg.arrow {
  transform: translateX(3px);
}
.btn--lg {
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
}
.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--brand-600);
  transform: translateY(-2px);
}
.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--accent:hover {
  background: var(--accent-600);
  transform: translateY(-2px);
}
.btn--ghost {
  background: #fff;
  color: var(--ink);
  border-color: rgba(20, 24, 52, 0.15);
}
.btn--ghost:hover {
  color: var(--brand);
  border-color: rgba(44, 59, 225, 0.5);
}
.btn--light {
  background: #fff;
  color: var(--brand);
  box-shadow: var(--shadow-md);
}
.btn--light:hover {
  transform: translateY(-2px);
}
.btn--block {
  width: 100%;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(238, 241, 251, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.logo__badge {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: var(--brand);
  box-shadow: 0 6px 16px rgba(44, 59, 225, 0.3);
}
.logo__badge svg {
  width: 1.5rem;
  height: 1.5rem;
}
.logo__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink);
}
.logo__text span {
  color: var(--brand);
}
.nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav a {
  padding: 0.5rem 0.9rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.nav a:hover {
  background: rgba(20, 24, 52, 0.05);
  color: var(--ink);
}
.nav a.active {
  color: var(--brand);
}
.header__cta {
  display: none;
}

/* Mobile menu (CSS only, checkbox hack) */
.menu-toggle {
  display: grid;
}
.menu-checkbox,
.menu-close {
  display: none;
}
.menu-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(20, 24, 52, 0.1);
  background: #fff;
  color: var(--ink);
}
.menu-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  border-top: var(--border);
  background: rgba(238, 241, 251, 0.98);
  backdrop-filter: blur(16px);
  padding: 0.75rem 1.25rem 1.5rem;
}
.mobile-menu a {
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}
.mobile-menu a:hover {
  background: rgba(20, 24, 52, 0.05);
}
.mobile-menu .btn {
  margin-top: 0.75rem;
}
.menu-checkbox:checked ~ .mobile-menu {
  display: flex;
}

/* ---------- Section heading ---------- */
.sec-head {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 42rem;
}
.sec-head--center {
  margin-inline: auto;
  align-items: center;
  text-align: center;
}
.sec-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.08;
}
.sec-head p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.sec-head--dark h2 {
  color: #fff;
}
.sec-head--dark p {
  color: rgba(238, 241, 251, 0.7);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 7.5rem;
  padding-bottom: 4rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(
      to right,
      rgba(20, 24, 52, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(20, 24, 52, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero__glow {
  position: absolute;
  inset: 0 0 auto 0;
  height: 520px;
  z-index: -1;
  background: radial-gradient(
      60% 80% at 70% 0%,
      rgba(44, 59, 225, 0.12),
      transparent 60%
    ),
    radial-gradient(50% 70% at 15% 10%, rgba(79, 91, 237, 0.1), transparent 55%);
}
.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.hero__title {
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.08;
  margin-top: 1.5rem;
}
.hero__lead {
  margin-top: 1.5rem;
  max-width: 34rem;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.hero__lead strong {
  color: var(--ink);
}
.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero__chips {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.hero__chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mute);
}
.hero__chips svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand);
}
.dot-live {
  position: relative;
  display: inline-flex;
  width: 0.5rem;
  height: 0.5rem;
}
.dot-live::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0.6;
  animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.dot-live::after {
  content: "";
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--brand);
}
@keyframes ping {
  75%,
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.hero__visual {
  position: relative;
  max-width: 28rem;
  margin-inline: auto;
}
.hero__visual .float-card {
  position: absolute;
  border-radius: 1rem;
  padding: 0.9rem;
  box-shadow: var(--shadow-lg);
  display: none;
}
.float-card--value {
  bottom: -1.5rem;
  left: -1rem;
  background: rgba(255, 255, 255, 0.92);
  border: var(--border);
  backdrop-filter: blur(6px);
}
.float-card--uptime {
  right: -0.75rem;
  top: 2rem;
  background: var(--navy);
  color: #fff;
}
.float-card small {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mute);
}
.float-card--uptime small {
  color: var(--brand-300);
}
.float-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
}
.float-card--value b {
  color: var(--brand-700);
}
.float-card--uptime b {
  color: #fff;
}
.hero__tree {
  position: absolute;
  right: -6rem;
  top: 2.5rem;
  width: 560px;
  height: 560px;
  z-index: -1;
  opacity: 0.06;
  display: none;
}

/* ---------- Window mockups ---------- */
.win {
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.win__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(231, 235, 250, 0.8);
  border-bottom: var(--border);
}
.win__bar i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: block;
}
.win__bar i:nth-child(1) {
  background: #f87171;
}
.win__bar i:nth-child(2) {
  background: #fbbf24;
}
.win__bar i:nth-child(3) {
  background: var(--brand);
}
.win__title {
  margin-left: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mute);
}
.mock-glow {
  position: relative;
}
.mock-glow::before {
  content: "";
  position: absolute;
  inset: -1.25rem;
  z-index: -1;
  border-radius: 2rem;
  background: linear-gradient(
    135deg,
    rgba(44, 59, 225, 0.12),
    rgba(79, 91, 237, 0.08),
    transparent
  );
  filter: blur(28px);
}

/* Dashboard mock */
.dash {
  padding: 0.9rem;
}
.dash__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.dash__head .t {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}
.dash__head .t svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand);
}
.tag-live {
  background: var(--brand);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}
.dash__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0.75rem;
}
.map {
  position: relative;
  height: 10rem;
  border-radius: 0.75rem;
  background: var(--cream-100);
  overflow: hidden;
  background-image: linear-gradient(
      to right,
      rgba(20, 24, 52, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(20, 24, 52, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}
.map .road {
  position: absolute;
  background: #cfd6dd;
}
.map .pin {
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  transform: translate(-50%, -100%);
  color: #fff;
}
.map .pin svg {
  width: 100%;
  height: 100%;
  fill: var(--brand);
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}
.map .badge {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
  font-size: 0.56rem;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  border-radius: 0.35rem;
}
.card-lite {
  border: var(--border);
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.6rem;
}
.card-lite .lbl {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--mute);
  margin-bottom: 0.5rem;
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  height: 6rem;
}
.bars i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--brand-600), var(--brand-300));
}
.bars i.acc {
  background: linear-gradient(to top, var(--accent-600), var(--accent));
}
.bars-x {
  display: flex;
  justify-content: space-between;
  font-size: 0.5rem;
  color: var(--mute);
  margin-top: 0.25rem;
}
.feed {
  margin-top: 0.75rem;
}
.feed li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
}
.feed .ic {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.5rem;
  background: var(--brand-50);
  color: var(--brand-700);
  flex-shrink: 0;
}
.feed .ic svg {
  width: 0.85rem;
  height: 0.85rem;
}
.feed .tx {
  flex: 1;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink);
}
.feed .tm {
  font-size: 0.62rem;
  color: var(--mute);
}

/* Quotation mock */
.quote {
  position: relative;
  padding: 1rem;
}
.quote__zap {
  position: absolute;
  right: 1.5rem;
  top: 3.5rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--accent);
  color: #fff;
  transform: rotate(8deg);
  box-shadow: 0 10px 20px rgba(242, 107, 33, 0.4);
}
.quote__zap svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #fff;
}
.qtable {
  border: var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
}
.qrow {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.7rem;
}
.qrow.head {
  background: var(--cream-100);
  color: var(--mute);
  font-weight: 600;
  font-size: 0.62rem;
}
.qrow + .qrow {
  border-top: var(--border);
}
.qrow .name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--ink);
}
.swatch {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0.4rem;
}
.qrow .q {
  width: 2rem;
  text-align: center;
  border: var(--border);
  border-radius: 0.35rem;
  padding: 0.1rem 0;
}
.qrow .r {
  color: var(--mute);
  width: 2.5rem;
  text-align: right;
}
.qrow .p {
  color: var(--navy);
  font-weight: 600;
  width: 3rem;
  text-align: right;
}
.qtotals {
  margin-left: auto;
  width: 10rem;
  margin-top: 0.75rem;
  font-size: 0.7rem;
}
.qtotals div {
  display: flex;
  justify-content: space-between;
  color: var(--mute);
  padding: 0.1rem 0;
}
.qtotals div.grand {
  border-top: var(--border);
  padding-top: 0.4rem;
  margin-top: 0.2rem;
  color: var(--navy);
  font-weight: 700;
}

/* WhatsApp mock */
.wa__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #075e54;
  padding: 0.6rem 0.9rem;
  color: #fff;
}
.wa__ava {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #25d366;
}
.wa__ava svg {
  width: 1rem;
  height: 1rem;
  fill: #fff;
}
.wa__head .nm {
  flex: 1;
  font-size: 0.75rem;
  font-weight: 600;
}
.wa__head .on {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
}
.wa__auto {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
}
.wa__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #e5ddd5;
  color: #5b6b62;
  font-size: 0.62rem;
  font-weight: 500;
  padding: 0.5rem;
}
.wa__trigger b {
  color: var(--brand-700);
}
.wa__trigger svg {
  width: 0.75rem;
  height: 0.75rem;
  fill: var(--brand-700);
}
.wa__chat {
  background: #e5ddd5;
  padding: 0.25rem 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 14px 14px;
}
.bubble {
  max-width: 82%;
  border-radius: 0.75rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.7rem;
  line-height: 1.35;
  color: #303030;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}
.bubble.out {
  align-self: flex-end;
  background: #dcf8c6;
  border-top-right-radius: 0.15rem;
}
.bubble.in {
  align-self: flex-start;
  background: #fff;
  border-top-left-radius: 0.15rem;
  max-width: 70%;
}
.bubble .meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  font-size: 0.55rem;
  color: #667781;
  margin-top: 0.25rem;
}
.bubble .meta svg {
  width: 0.7rem;
  height: 0.7rem;
  color: #34b7f1;
}

/* Pipeline mock */
.pipe {
  padding: 1rem;
}
.pipe__rail {
  display: flex;
  align-items: stretch;
  gap: 0.25rem;
}
.pipe__stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.75rem;
  padding: 0.6rem 0.2rem;
}
.pipe__stage svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand-700);
}
.pipe__stage .s {
  font-size: 0.56rem;
  font-weight: 600;
  color: var(--navy);
}
.pipe__stage .c {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--brand-700);
}
.pipe__arrow {
  align-self: center;
  color: var(--brand-300);
  font-size: 0.9rem;
}
.lead {
  border: var(--border);
  border-radius: 0.75rem;
  padding: 0.6rem;
  margin-top: 0.5rem;
}
.lead__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}
.lead__name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink);
}
.lead__ava {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
}
.lead__stage {
  background: var(--cream-100);
  color: var(--mute);
  font-size: 0.55rem;
  font-weight: 600;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
}
.lead__bar {
  height: 0.375rem;
  border-radius: 999px;
  background: var(--cream-200);
  overflow: hidden;
}
.lead__bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--brand);
}

/* Cloud mock */
.cloud {
  background: var(--navy);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cloud__ico {
  position: relative;
}
.cloud__ico > svg {
  width: 6rem;
  height: 6rem;
  fill: rgba(255, 255, 255, 0.95);
  color: rgba(255, 255, 255, 0.95);
}
.cloud__lock {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding-top: 1rem;
}
.cloud__lock span {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: var(--brand);
  color: #fff;
}
.cloud__lock svg {
  width: 1.1rem;
  height: 1.1rem;
}
.cloud__wires {
  position: relative;
  width: 12rem;
  height: 2.5rem;
}
.cloud__wires i {
  position: absolute;
  background: rgba(44, 59, 225, 0.6);
}
.cloud__devices {
  display: flex;
  justify-content: space-between;
  width: 12rem;
}
.cloud__devices span {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.cloud__devices svg {
  width: 1.25rem;
  height: 1.25rem;
}
.cloud__tag {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-300);
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.cloud__tag svg {
  width: 0.85rem;
  height: 0.85rem;
}

/* ---------- Stat band ---------- */
.statband {
  background: var(--navy);
}
.statband__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 0;
  padding-block: 2.5rem;
}
.statband__item {
  text-align: center;
  padding-inline: 1rem;
}
.statband__item b {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  display: block;
}
.statband__item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Solution blocks ---------- */
.solutions {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 4rem;
}
.solution {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.solution__index {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.solution__num {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}
.solution__tag {
  border: 1px solid rgba(44, 59, 225, 0.25);
  background: var(--brand-50);
  color: var(--brand-700);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.solution__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.solution__label.bad {
  color: var(--slate-dark);
}
.solution__label.bad::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--slate-dark);
}
.solution__label.good {
  color: var(--brand-700);
}
.solution__label.good svg {
  width: 0.9rem;
  height: 0.9rem;
}
.solution h3.bad-title {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  color: var(--ink-soft);
}
.solution h3.good-title {
  margin-top: 0.5rem;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--navy);
}
.problem-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--mute);
}
.problem-list .x {
  margin-top: 2px;
  display: grid;
  place-items: center;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: rgba(152, 160, 184, 0.2);
  color: var(--slate-dark);
  flex-shrink: 0;
}
.problem-list .x svg {
  width: 0.7rem;
  height: 0.7rem;
}
.connector {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-block: 1.5rem;
}
.connector .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(44, 59, 225, 0.4),
    rgba(44, 59, 225, 0.5)
  );
}
.connector .chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}
.connector .chip svg {
  width: 0.75rem;
  height: 0.75rem;
}
.solution p.body {
  margin-top: 0.75rem;
  max-width: 34rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Friction chips + callout */
.friction {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  max-width: 48rem;
  margin-inline: auto;
}
.friction span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: var(--border);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.friction span svg {
  width: 1rem;
  height: 1rem;
  color: var(--slate-dark);
}
.callout {
  margin: 1.5rem auto 0;
  max-width: 40rem;
  background: var(--brand);
  color: #fff;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

/* ---------- Advantage table ---------- */
.adv {
  margin: 3rem auto 0;
  max-width: 56rem;
  border: var(--border);
  border-radius: 1.5rem;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.adv__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.adv__head .c {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
}
.adv__head .old {
  background: var(--cream-100);
  color: var(--ink-soft);
  border-bottom: var(--border);
}
.adv__head .new {
  background: var(--navy);
  color: #fff;
}
.adv__ic {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  flex-shrink: 0;
}
.adv__ic svg {
  width: 1rem;
  height: 1rem;
}
.adv__ic.x {
  background: rgba(152, 160, 184, 0.25);
  color: var(--slate-dark);
}
.adv__ic.ok {
  background: var(--brand);
  color: #fff;
}
.adv__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: var(--border);
}
.adv__cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
}
.adv__cell.old .t {
  font-size: 0.9rem;
  color: var(--mute);
  text-decoration: line-through;
  text-decoration-color: rgba(152, 160, 184, 0.5);
}
.adv__cell.new {
  background: rgba(238, 240, 251, 0.4);
  border-left: var(--border);
}
.adv__cell.new .t {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.adv__mini {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  flex-shrink: 0;
}
.adv__mini svg {
  width: 0.85rem;
  height: 0.85rem;
}
.adv__mini.x {
  background: rgba(152, 160, 184, 0.2);
  color: var(--slate-dark);
}
.adv__mini.ok {
  background: var(--brand);
  color: #fff;
}

/* ---------- Perfect Employee ---------- */
.pe {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.pe__glow {
  position: absolute;
  inset: 0 0 auto 0;
  height: 16rem;
  background: radial-gradient(
    50% 100% at 50% 0%,
    rgba(44, 59, 225, 0.2),
    transparent
  );
}
.pe__grid {
  position: relative;
  margin-top: 3.5rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 16rem;
  height: 16rem;
  margin-inline: auto;
}
.ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ring__core {
  display: grid;
  place-items: center;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  text-align: center;
}
.ring__core b {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
}
.ring__core span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-300);
}
.pe__lists {
  display: grid;
  gap: 1.5rem;
}
.pe__card {
  border-radius: 1rem;
  padding: 1.5rem;
}
.pe__card.always {
  border: 1px solid rgba(44, 59, 225, 0.3);
  background: rgba(44, 59, 225, 0.1);
}
.pe__card.never {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
.pe__card h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 1rem;
}
.pe__card.always h4 {
  color: var(--brand-300);
}
.pe__card.never h4 {
  color: rgba(238, 241, 251, 0.6);
}
.pe__card h4 svg {
  width: 1rem;
  height: 1rem;
}
.pe__card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0;
}
.pe__card .ic {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}
.pe__card .ic svg {
  width: 1rem;
  height: 1rem;
}
.pe__card.always .ic {
  background: rgba(44, 59, 225, 0.2);
  color: var(--brand-300);
}
.pe__card.never .ic {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(238, 241, 251, 0.5);
}
.pe__card.never li {
  color: rgba(238, 241, 251, 0.7);
}
.pe__card.never li .t {
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.25);
}

/* ---------- ROI ---------- */
.roi__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.roi__cards {
  display: grid;
  gap: 1rem;
}
.roi__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  padding: 1.25rem;
}
.roi__card.cost {
  border: var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.roi__card.value {
  position: relative;
  overflow: hidden;
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.roi__ic {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
}
.roi__card.cost .roi__ic {
  background: rgba(152, 160, 184, 0.15);
  color: var(--slate-dark);
}
.roi__card.value .roi__ic {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.roi__ic svg {
  width: 1.5rem;
  height: 1.5rem;
}
.roi__card small {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.roi__card.cost small {
  color: var(--mute);
}
.roi__card.value small {
  color: rgba(255, 255, 255, 0.8);
}
.roi__card b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.roi__card b em {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
}
.roi__card.cost b {
  color: var(--ink-soft);
}
.roi__card.cost b em {
  color: var(--mute);
}
.roi__note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--mute);
  margin-top: 0.25rem;
}
.roi__note b {
  color: var(--brand-700);
}

/* ---------- Features (simple & practical) ---------- */
.sp__grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
.feat-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.feat {
  display: flex;
  gap: 1rem;
  border: var(--border);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: all 0.2s;
}
.feat:hover {
  border-color: rgba(44, 59, 225, 0.3);
  background: #fff;
}
.feat__ic {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--brand-50);
  flex-shrink: 0;
}
.feat__ic svg {
  width: 1.75rem;
  height: 1.75rem;
}
.feat h3 {
  font-size: 1.05rem;
  color: var(--navy);
}
.feat p {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Phone mock */
.phone {
  position: relative;
  width: 15.5rem;
  margin-inline: auto;
}
.phone__body {
  border-radius: 2.6rem;
  border: var(--border);
  background: var(--navy);
  padding: 0.65rem;
  box-shadow: var(--shadow-xl);
}
.phone__screen {
  position: relative;
  overflow: hidden;
  border-radius: 2.1rem;
  background: var(--cream);
}
.phone__notch {
  position: absolute;
  left: 50%;
  top: 0.5rem;
  transform: translateX(-50%);
  width: 6rem;
  height: 1.25rem;
  border-radius: 999px;
  background: var(--navy);
  z-index: 3;
}
.phone__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  color: #fff;
  padding: 1.75rem 1rem 0.75rem;
}
.phone__head svg {
  width: 1.1rem;
  height: 1.1rem;
}
.phone__head .t {
  font-size: 0.72rem;
  font-weight: 600;
}
.phone__body-inner {
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pcard {
  background: #fff;
  border-radius: 1rem;
  padding: 0.75rem;
  box-shadow: var(--shadow-sm);
}
.pcard .lbl {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--mute);
}
.pcard .big {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}
.pcard .up {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--brand-700);
  margin-top: 0.15rem;
}
.pcard .up svg {
  width: 0.75rem;
  height: 0.75rem;
}
.pbars {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  height: 3.5rem;
  margin-top: 0.5rem;
}
.pbars i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--brand-600), var(--brand-300));
}
.pprogress {
  height: 0.5rem;
  border-radius: 999px;
  background: var(--cream-200);
  overflow: hidden;
  margin-top: 0.5rem;
}
.pprogress i {
  display: block;
  height: 100%;
  width: 76%;
  border-radius: 999px;
  background: var(--brand);
}
.pcta {
  background: var(--brand);
  color: #fff;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.6rem;
  border-radius: 0.75rem;
}
.phone__tabs {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: var(--border);
  background: #fff;
  padding: 0.6rem 0;
  color: var(--mute);
}
.phone__tabs svg {
  width: 1rem;
  height: 1rem;
}
.phone__tabs svg.on {
  color: var(--brand-700);
}

/* ---------- Final CTA ---------- */
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: var(--navy);
  padding: 3.5rem 1.5rem;
  box-shadow: var(--shadow-xl);
}
.cta-card__glow {
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(44, 59, 225, 0.2);
  filter: blur(48px);
}
.cta-card__inner {
  position: relative;
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}
.cta-card h2 {
  margin-top: 1.5rem;
  color: #fff;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
}
.cta-card__points {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.cta-card__points span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}
.cta-card__points svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand-300);
}
.cta-card__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

/* ---------- Page hero (inner) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 3.5rem;
  text-align: center;
}
.page-hero .container {
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
}
.page-hero p {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 1.12rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.page-hero__actions {
  margin-top: 2rem;
}

/* ---------- Pricing ---------- */
.plans {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  padding: 2rem;
}
.plan.basic {
  border: 1px solid rgba(20, 24, 52, 0.1);
  background: #fff;
}
.plan.featured {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-xl);
}
.plan__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(242, 107, 33, 0.3);
}
.plan h3 {
  font-size: 1.15rem;
}
.plan.featured h3 {
  color: #fff;
}
.plan__tagline {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.plan.featured .plan__tagline {
  color: rgba(255, 255, 255, 0.6);
}
.plan__price {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
}
.plan__price b {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
}
.plan__price span {
  padding-bottom: 0.25rem;
  font-size: 0.9rem;
  color: var(--mute);
}
.plan.featured .plan__price span {
  color: rgba(255, 255, 255, 0.6);
}
.plan .btn {
  margin-top: 1.5rem;
}
.plan__features {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.plan__check {
  margin-top: 2px;
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  flex-shrink: 0;
  background: var(--brand-50);
  color: var(--brand);
}
.plan.featured .plan__check {
  background: var(--brand);
  color: #fff;
}
.plan__check svg {
  width: 0.75rem;
  height: 0.75rem;
}
.plan.basic .plan__features li span:last-child {
  color: var(--ink-soft);
}
.plan.featured .plan__features li span:last-child {
  color: rgba(255, 255, 255, 0.85);
}
.price-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--mute);
  margin-top: 1.5rem;
}
.faq-grid {
  margin: 3rem auto 0;
  max-width: 56rem;
  display: grid;
  gap: 1rem;
}
.faq {
  border: var(--border);
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
}
.faq h3 {
  font-size: 1rem;
}
.faq p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- About ---------- */
.mv-grid {
  display: grid;
  gap: 1.5rem;
}
.mv {
  display: flex;
  flex-direction: column;
  border: var(--border);
  background: rgba(238, 241, 251, 0.6);
  border-radius: 1.5rem;
  padding: 2rem;
}
.mv__ic {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 16px rgba(44, 59, 225, 0.25);
}
.mv__ic svg {
  width: 1.5rem;
  height: 1.5rem;
}
.mv__tag {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
}
.mv h3 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
}
.mv p {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.values {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}
.value {
  display: flex;
  flex-direction: column;
  border: var(--border);
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.value:hover {
  border-color: rgba(44, 59, 225, 0.3);
}
.value__ic {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--brand-50);
}
.value__ic svg {
  width: 1.75rem;
  height: 1.75rem;
}
.value h3 {
  margin-top: 1.25rem;
  font-size: 1rem;
}
.value p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
.form {
  border: var(--border);
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.form__row {
  display: grid;
  gap: 1rem;
}
.form__row + .form__row {
  margin-top: 1rem;
}
.form label {
  display: flex;
  flex-direction: column;
}
/* Keep both fields in a row bottom-aligned even if one label wraps. */
.form .field {
  margin-top: auto;
}
.form label > span {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.field {
  width: 100%;
  border: 1px solid rgba(20, 24, 52, 0.12);
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--ink);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field::placeholder {
  color: rgba(109, 114, 136, 0.7);
}
.field:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(44, 59, 225, 0.15);
}
textarea.field {
  resize: vertical;
  min-height: 7rem;
}
select.field {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236d7288' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
}
.form__submit {
  margin-top: 1.5rem;
}
.form__note {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.72rem;
  color: var(--mute);
}
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.expect {
  background: var(--navy);
  color: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem;
}
.expect h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--brand-300);
}
.expect h4 svg {
  width: 1rem;
  height: 1rem;
}
.expect ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.expect li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}
.expect .ck {
  margin-top: 2px;
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  flex-shrink: 0;
}
.expect .ck svg {
  width: 0.75rem;
  height: 0.75rem;
}
.channels {
  display: grid;
  gap: 0.75rem;
}
.channel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: var(--border);
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  transition: border-color 0.2s;
}
.channel:hover {
  border-color: rgba(44, 59, 225, 0.3);
}
.channel__ic {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--brand-50);
  color: var(--brand);
  flex-shrink: 0;
}
.channel__ic svg {
  width: 1.25rem;
  height: 1.25rem;
}
.channel small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute);
}
.channel b {
  font-size: 0.9rem;
  color: var(--ink);
}
.contact-hint {
  border: var(--border);
  background: rgba(238, 241, 251, 0.6);
  border-radius: 1rem;
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.contact-hint a {
  font-weight: 600;
  color: var(--brand);
}

/* ---------- Footer ---------- */
.footer {
  margin-top: auto;
  border-top: var(--border);
  background: #fff;
}
.footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 3.5rem;
}
.footer__brand {
  max-width: 20rem;
}
.footer__brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--ink);
}
.footer__col ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__col a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.footer__col a:hover {
  color: var(--brand);
}
.footer__bottom {
  margin-top: 3rem;
  border-top: var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  font-size: 0.9rem;
  color: var(--mute);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 640px) {
  .hero__actions,
  .cta-card__actions,
  .cta-card__points {
    flex-direction: row;
  }
  .cta-card__points {
    flex-wrap: wrap;
    justify-content: center;
  }
  .statband__grid {
    grid-template-columns: repeat(4, 1fr);
    padding-block: 3rem;
  }
  .statband__item + .statband__item {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero__visual .float-card {
    display: block;
  }
  .values {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .channels {
    grid-template-columns: repeat(2, 1fr);
  }
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .header__inner {
    height: 4.75rem;
  }
  .nav,
  .header__cta {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .hero {
    padding-bottom: 6rem;
  }
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .hero__tree {
    display: block;
  }
  .solution {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
  .solution.reversed .solution__text {
    order: 2;
  }
  .solution.reversed .solution__media {
    order: 1;
  }
  .pe__grid {
    grid-template-columns: auto 1fr;
    gap: 4rem;
  }
  .pe__lists {
    grid-template-columns: 1fr 1fr;
  }
  .roi__grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 4rem;
  }
  .sp__grid {
    grid-template-columns: 0.85fr 1fr;
  }
  .plans {
    grid-template-columns: repeat(3, 1fr);
  }
  .mv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values {
    grid-template-columns: repeat(4, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 3.5rem;
  }
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  .ring {
    width: 18rem;
    height: 18rem;
  }
}

/* ============================================================
   Content components (v2 pages)
   ============================================================ */

/* Tick / cross lists */
.ticklist {
  display: grid;
  gap: 0.7rem;
}
.ticklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.ticklist .mk {
  margin-top: 1px;
  display: grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  flex-shrink: 0;
}
.ticklist .mk svg {
  width: 0.72rem;
  height: 0.72rem;
}
.ticklist .mk.ok {
  background: var(--brand-50);
  color: var(--brand);
}
.ticklist .mk.no {
  background: rgba(152, 160, 184, 0.2);
  color: var(--slate-dark);
}

/* Journey / equation chip flow */
.flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.flow span {
  background: var(--brand-50);
  color: var(--brand-700);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}
.flow span.hl {
  background: var(--accent);
  color: #fff;
}
.flow .ar {
  display: inline-flex;
  color: var(--brand-300);
}
.flow .ar svg {
  width: 1rem;
  height: 1rem;
}

/* Generic centered band */
.band {
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.band.dark {
  background: var(--navy);
  color: #fff;
}
.band.soft {
  background: var(--brand-50);
  border: 1px solid rgba(44, 59, 225, 0.12);
}
.band h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.band.dark h3 {
  color: #fff;
}
.band p {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  max-width: 44rem;
  margin-inline: auto;
}
.band.dark p {
  color: rgba(255, 255, 255, 0.7);
}

/* Feature cards */
.feature-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
.fcard {
  display: flex;
  flex-direction: column;
  border: var(--border);
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fcard:hover {
  border-color: rgba(44, 59, 225, 0.3);
  box-shadow: var(--shadow-md);
}
.fcard__ic {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: var(--brand-50);
  color: var(--brand);
  margin-bottom: 1.1rem;
}
.fcard__ic svg {
  width: 1.5rem;
  height: 1.5rem;
}
.fcard h3 {
  font-size: 1.2rem;
}
.fcard > p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.fcard .ticklist {
  margin-top: 1.1rem;
}
.fcard__tag {
  margin-top: auto;
  padding-top: 1.1rem;
  font-weight: 600;
  color: var(--brand);
  font-size: 0.9rem;
}

/* WhatsApp automation flow */
.autoflow {
  margin: 3rem auto 0;
  max-width: 34rem;
  background: var(--navy);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.autoflow__step {
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 0.7rem;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
}
.autoflow__step b {
  color: var(--accent);
}
.autoflow__ar {
  color: var(--brand-300);
}
.autoflow__ar svg {
  width: 1.1rem;
  height: 1.1rem;
}

/* Integrations */
.integrations {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}
.integration {
  border: var(--border);
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.integration:hover {
  border-color: rgba(44, 59, 225, 0.3);
  box-shadow: var(--shadow-md);
}
.integration__ic {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--brand-50);
  color: var(--brand);
  margin-bottom: 1rem;
}
.integration__ic svg {
  width: 1.4rem;
  height: 1.4rem;
}
.integration h3 {
  font-size: 1.05rem;
}
.integration p {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Stepper (pipeline) */
.stepper {
  margin: 3rem auto 0;
  max-width: 62rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.6rem;
}
.stepper__step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.stepper__step .n {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.68rem;
}
.stepper__step.win {
  background: var(--brand);
  color: #fff;
  border-color: transparent;
}
.stepper__step.win .n {
  background: #fff;
  color: var(--brand);
}
.stepper__ar {
  color: var(--brand-300);
}
.stepper__ar svg {
  width: 0.9rem;
  height: 0.9rem;
}

/* Industries chips */
.industries {
  margin: 2rem auto 0;
  max-width: 54rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.industries span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}
.industries span svg {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--brand);
}

/* Why grid (reuses .feat) */
.why-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

/* About "what we do" wide cards */
.do + .do {
  margin-top: 1.25rem;
}
.do {
  border: var(--border);
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  display: grid;
  gap: 1.25rem;
}
.do__ic {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: var(--brand-50);
  color: var(--brand);
  margin-bottom: 0.9rem;
}
.do__ic svg {
  width: 1.5rem;
  height: 1.5rem;
}
.do h3 {
  font-size: 1.25rem;
}
.do > div > p {
  margin-top: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Manager questions block (about) */
.questions {
  margin: 1.5rem auto 0;
  max-width: 44rem;
  border-left: 3px solid var(--accent);
  background: var(--brand-50);
  border-radius: 0 1rem 1rem 0;
  padding: 1.25rem 1.5rem;
  display: grid;
  gap: 0.6rem;
}
.questions p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

/* Pricing extras */
.plan__bestfor {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: var(--border);
  font-size: 0.82rem;
  color: var(--mute);
}
.plan__bestfor b {
  color: var(--ink);
}
.plan.featured .plan__bestfor {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
}
.plan.featured .plan__bestfor b {
  color: #fff;
}
.enterprise {
  margin-top: 1.5rem;
  border-radius: 1.5rem;
  background: var(--navy);
  color: #fff;
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
}
.enterprise h3 {
  color: #fff;
  font-size: 1.5rem;
}
.enterprise .tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-300);
}
.enterprise p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}
.enterprise .ticklist li {
  color: rgba(255, 255, 255, 0.85);
}
.enterprise .ticklist .mk.ok {
  background: rgba(44, 59, 225, 0.3);
  color: var(--brand-300);
}
.allplans {
  margin-top: 1.5rem;
  border: var(--border);
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
}
.allplans h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.note-band {
  margin-top: 1.5rem;
  border: 1px solid rgba(44, 59, 225, 0.15);
  background: var(--brand-50);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.note-band b {
  color: var(--ink);
}

@media (min-width: 640px) {
  .ticklist.two {
    grid-template-columns: 1fr 1fr;
  }
  .feature-cards {
    grid-template-columns: 1fr 1fr;
  }
  .integrations {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .enterprise {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .do {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }
  .do__ic {
    margin-bottom: 0;
  }
}
@media (min-width: 900px) {
  .integrations {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
