/* =============================================================
   InMarket Engage — Landing styles
   Brand: #3094EF (blue) · #47D692 (green)
   ============================================================= */

:root {
  --blue: #3094EF;
  --blue-600: #1F7BD1;
  --blue-50: #E8F2FE;
  --green: #47D692;
  --green-600: #2EB87A;
  --green-50: #E6FAF0;

  --ink-900: #0B1726;
  --ink-800: #11233A;
  --ink-700: #1E3450;
  --ink-500: #4B6075;
  --ink-400: #6E8198;
  --ink-300: #97A6B9;
  --ink-200: #D4DCE6;
  --ink-100: #EEF2F7;
  --ink-50:  #F7F9FC;
  --white:   #FFFFFF;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(11,23,38,.06), 0 1px 1px rgba(11,23,38,.04);
  --shadow:    0 8px 24px rgba(11,23,38,.08), 0 2px 6px rgba(11,23,38,.04);
  --shadow-lg: 0 30px 60px -20px rgba(11,23,38,.25), 0 12px 24px -12px rgba(11,23,38,.15);

  --container: 1180px;

  --grad-brand: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  --grad-soft:  linear-gradient(180deg, #F4F9FF 0%, #FFFFFF 60%);
  --icon-sparcles: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9.94 15.5A2 2 0 0 0 8.5 14.06l-6.14-1.58a.5.5 0 0 1 0-.96L8.5 9.94A2 2 0 0 0 9.94 8.5l1.58-6.14a.5.5 0 0 1 .96 0l1.58 6.14a2 2 0 0 0 1.44 1.44l6.14 1.58a.5.5 0 0 1 0 .96l-6.14 1.58a2 2 0 0 0-1.44 1.44l-1.58 6.14a.5.5 0 0 1-.96 0z'/><path d='M20 3v4'/><path d='M22 5h-4'/><path d='M4 17v2'/><path d='M5 18H3'/></svg>");
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue); }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink-900); color: #fff; padding: .5rem 1rem;
  border-radius: 0 0 8px 0; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ========== Header ========== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--ink-100);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: .85rem 0;
}
.brand { min-width: 160px; }
.brand img { height: 35px; width: 160px; }
.primary-nav {
  display: flex; gap: 1.5rem;
  flex: 1; justify-content: center;
}
.primary-nav a {
  color: var(--ink-700); font-weight: 500; font-size: .94rem;
  padding: .35rem .25rem; position: relative;
}
.primary-nav a:hover { color: var(--blue); }
.header-cta { display: flex; gap: .5rem; align-items: center; }

.nav-toggle {
  display: none;
  background: transparent; border: 0; padding: .5rem;
  cursor: pointer; flex-direction: column; gap: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink-800); border-radius: 2px; }

.mobile-nav {
  display: none;
  padding: .5rem 1rem 1rem;
  background: #fff;
  border-top: 1px solid var(--ink-100);
  flex-direction: column;
  gap: .25rem;
}
.mobile-nav a {
  display: block;
  padding: .85rem .25rem;
  color: var(--ink-800); font-weight: 500;
  border-bottom: 1px solid var(--ink-100);
}
.mobile-nav a.btn { border-bottom: 0; margin-top: .5rem; text-align: center; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .65rem 1.1rem;
  border-radius: 999px; font-weight: 600; font-size: .94rem;
  border: 1px solid transparent; cursor: pointer; transition: all .15s ease;
  white-space: nowrap;
}
.btn-lg { padding: .85rem 1.4rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 6px 16px -4px rgba(48,148,239,.45);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 22px -6px rgba(48,148,239,.5); color: #fff; }

.btn-secondary {
  background: #fff; color: var(--ink-800); border-color: var(--ink-200);
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }

.btn-ghost {
  background: transparent; color: var(--ink-700);
}
.btn-ghost:hover { background: var(--ink-100); color: var(--ink-900); }

/* ========== Hero ========== */
.hero {
  background: var(--grad-soft);
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 380px at 85% -10%, rgba(71,214,146,.18), transparent 60%),
    radial-gradient(900px 460px at -10% 0%, rgba(48,148,239,.18), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 600; color: var(--blue-600);
  background: var(--blue-50); padding: .35rem .75rem; border-radius: 999px;
  letter-spacing: .01em;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad-brand);
  box-shadow: 0 0 0 4px rgba(48,148,239,.15);
}
.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.08; letter-spacing: -0.02em;
  margin: 1rem 0 1rem;
  color: var(--ink-900); font-weight: 800;
}
.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.lede {
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  color: var(--ink-500); max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.75rem 0 1.25rem; }
.hero-checks {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
  color: var(--ink-700); font-size: .94rem;
}
.hero-checks li { display: inline-flex; align-items: center; gap: .5rem; }
.check {
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-50); color: var(--green-600);
  font-weight: 700; font-size: .75rem;
}

/* Hero visual / mock */
.hero-visual {
  position: relative; min-height: 460px;
}
.mock-window {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  transform: rotate(-1deg);
}
.mock-titlebar {
  display: flex; align-items: center; gap: .4rem;
  background: var(--ink-50); padding: .65rem .9rem;
  border-bottom: 1px solid var(--ink-100);
}
.mock-titlebar span {
  width: 11px; height: 11px; border-radius: 50%;
  background: #FF5F57;
}
.mock-titlebar span:nth-child(2) { background: #FEBC2E; }
.mock-titlebar span:nth-child(3) { background: #28C840; }
.mock-titlebar em {
  margin-left: auto; font-style: normal; font-size: .8rem; color: var(--ink-400);
}
.mock-body {
  display: grid; grid-template-columns: 230px 1fr;
  min-height: 380px;
}
.mock-list {
  background: var(--ink-50); border-right: 1px solid var(--ink-100);
  padding: .5rem;
}
.mock-item {
  display: grid; grid-template-columns: 32px 1fr auto;
  align-items: center; gap: .6rem;
  padding: .65rem .55rem; border-radius: 10px;
  font-size: .82rem;
}
.mock-item.active { background: #fff; box-shadow: var(--shadow-sm); }
.mock-item .meta { min-width: 0; }
.mock-item strong { display: block; color: var(--ink-900); font-weight: 600; }
.mock-item span:not(.badge) {
  display: block; color: var(--ink-400); font-size: .76rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; color: #fff;
}
.avatar.wa { background: #25D366; }
.avatar.ig { background: linear-gradient(135deg,#f09433,#dc2743,#bc1888); }
.avatar.em { background: var(--ink-500); }
.avatar.wb { background: var(--blue); }
.badge {
  font-size: .65rem; color: var(--green-600); background: var(--green-50);
  padding: .2rem .5rem; border-radius: 999px; font-weight: 700;
}
.mock-chat {
  padding: 1.2rem 1rem; display: flex; flex-direction: column; gap: .65rem;
  background:
    linear-gradient(180deg,#fff 0%,#fbfdff 100%);
}
.bubble {
  max-width: 82%; padding: .65rem .85rem; border-radius: 14px;
  font-size: .85rem; line-height: 1.45;
  box-shadow: var(--shadow-sm);
}
.bubble.in {
  align-self: flex-start; background: #fff; border: 1px solid var(--ink-100);
  border-bottom-left-radius: 4px;
}
.bubble.out {
  align-self: flex-end; color: #fff;
  background: var(--grad-brand);
  border-bottom-right-radius: 4px;
}
.bubble.out.ai .ai-tag {
  display: inline-block; font-size: .65rem; font-weight: 700;
  background: rgba(255,255,255,.22); padding: .1rem .4rem; border-radius: 6px;
  margin-right: .35rem; vertical-align: middle;
}
.action-chip {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .76rem; color: var(--green-600);
  background: var(--green-50); padding: .35rem .65rem; border-radius: 999px;
  font-weight: 600;
}
.chip-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(71,214,146,.2);
}

/* Floating cards */
.floating-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  padding: .75rem 1rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: .15rem;
  font-size: .85rem;
}
.floating-card strong { color: var(--ink-900); font-weight: 700; font-size: .95rem; }
.floating-card span { color: var(--ink-400); font-size: .78rem; }
.card-ai { top: -10px; left: -18px; }
.card-cv { bottom: -10px; right: -10px; }
.card-cv strong { color: var(--green-600); font-size: 1.1rem; }

/* ========== Trust ========== */
.trust { padding: 2.25rem 0; border-bottom: 1px solid var(--ink-100); background: #fff; }
.trust-label {
  text-align: center; color: var(--ink-400);
  font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  margin: 0 0 1rem;
}
.trust-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem 2.5rem;
  color: var(--ink-500); font-weight: 500;
  text-align: center;
}
.trust-list li {
  display: inline-flex; align-items: baseline; gap: .45rem;
  font-size: .95rem;
}
.trust-list strong {
  font-size: 1.35rem; font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  letter-spacing: -.01em;
}

/* ========== Sections ========== */
.section { padding: clamp(3.5rem, 6vw, 6rem) 0; }
.section-alt { background: var(--ink-50); }

.section-head {
  text-align: center; max-width: 720px; margin: 0 auto 3rem;
}
.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  letter-spacing: -.015em; line-height: 1.15;
  color: var(--ink-900); font-weight: 800; margin: .8rem 0 .75rem;
}
.section-head p { color: var(--ink-500); margin: 0; font-size: 1.05rem; }

/* ========== Features ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature {
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: var(--radius); padding: 1.5rem;
  transition: all .2s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.feature h3 {
  margin: 1rem 0 .5rem; font-size: 1.1rem; color: var(--ink-900); font-weight: 700;
}
.feature p { margin: 0; color: var(--ink-500); font-size: .94rem; }
.icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-50); position: relative;
}
.icon::before, .icon::after {
  content: ""; position: absolute; inset: 0;
  background-repeat: no-repeat; background-position: center;
  background-size: 22px 22px;
}
.icon-inbox::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233094EF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 12h-6l-2 3h-4l-2-3H2'/><path d='M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11Z'/></svg>"); }
.icon-ai { background: var(--green-50); }
.icon-ai::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2347D692' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 8V4H8'/><rect width='16' height='12' x='4' y='8' rx='2'/><path d='M2 14h2M20 14h2M15 13v2M9 13v2'/></svg>"); }
.icon-lead::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233094EF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2 4 6v6c0 5 3.5 9.74 8 11 4.5-1.26 8-6 8-11V6l-8-4Z'/><path d='m9 12 2 2 4-4'/></svg>"); }
.icon-actions { background: var(--green-50); }
.icon-actions::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2347D692' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m13 2-3 7h7l-9 13 3-9H4l9-11Z'/></svg>"); }
.icon-kb::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233094EF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H20v20H6.5a2.5 2.5 0 0 1 0-5H20'/></svg>"); }
.icon-team { background: var(--green-50); }
.icon-team::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2347D692' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/><circle cx='9' cy='7' r='4'/><path d='M22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/></svg>"); }
.icon-widget::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233094EF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2Z'/></svg>"); }
.icon-realtime { background: var(--green-50); }
.icon-realtime::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2347D692' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9'/><path d='M10.3 21a1.94 1.94 0 0 0 3.4 0'/></svg>"); }
.icon-secure::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233094EF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect width='18' height='11' x='3' y='11' rx='2'/><path d='M7 11V7a5 5 0 0 1 10 0v4'/></svg>"); }

/* ========== Channels ========== */
.channels-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.channel {
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: all .2s ease;
}
.channel:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.channel h3 { margin: 0; color: var(--ink-900); font-size: 1.1rem; font-weight: 700; }
.channel p { margin: 0; color: var(--ink-500); font-size: .94rem; }
.ch-logo {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem; color: #fff;
}
.ch-wa { background: #25D366; }
.ch-ig { background: linear-gradient(135deg,#f09433,#dc2743,#bc1888); }
.ch-em { background: var(--ink-700); }
.ch-fr { background: var(--ink-900); }
.ch-wb { background: var(--grad-brand); }
.ch-soon { background: var(--ink-200); color: var(--ink-700); }

/* ========== How it works (steps) ========== */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  counter-reset: step;
}
.step {
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: var(--radius); padding: 1.5rem;
  position: relative;
}
.step-num {
  display: inline-block;
  font-size: .85rem; font-weight: 800; color: var(--blue);
  background: var(--blue-50); padding: .25rem .55rem; border-radius: 999px;
  margin-bottom: .9rem;
}
.step h3 { margin: 0 0 .35rem; font-size: 1.05rem; color: var(--ink-900); font-weight: 700; }
.step p { margin: 0; color: var(--ink-500); font-size: .92rem; }

/* ========== Integrations ========== */
.integrations-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.integrations-grid h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--ink-900); margin: .8rem 0 .75rem;
  letter-spacing: -.015em; font-weight: 800;
}
.integrations-grid > div > p {
  color: var(--ink-500); margin: 0 0 1.25rem;
}
.integration-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .65rem; }
.integration-list li {
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: 10px; padding: .85rem 1rem; color: var(--ink-700); font-size: .94rem;
}
.integration-list strong { color: var(--ink-900); }

.integration-visual { display: flex; align-items: center; justify-content: center; }
.orb-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
  width: min(420px, 100%);
}
.orb {
  aspect-ratio: 1;
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--ink-700);
  box-shadow: var(--shadow-sm);
}
.orb.center {
  background: var(--grad-brand);
  border: 0;
  padding: 1.25rem;
}
.orb.center img { width: 100%; filter: brightness(0) invert(1); object-fit: contain; }

/* ========== Pricing ========== */
.billing-toggle {
  display: inline-flex; gap: .25rem;
  background: var(--ink-100); padding: .3rem;
  border-radius: 999px; margin-top: 1.5rem;
}
.billing-btn {
  border: 0; background: transparent;
  padding: .55rem 1.25rem; border-radius: 999px;
  font-weight: 600; color: var(--ink-500); cursor: pointer;
  font-size: .92rem; transition: all .15s ease;
  display: inline-flex; align-items: center; gap: .5rem;
}
.billing-btn.is-active {
  background: #fff; color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}
.save-tag {
  font-size: .7rem; font-weight: 800;
  background: var(--green-50); color: var(--green-600);
  padding: .15rem .45rem; border-radius: 999px;
}

.pricing-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 1.5rem; max-width: 980px; margin: 2.5rem auto 0;
}
.price-card {
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    var(--grad-brand) border-box;
  border: 2px solid transparent;
  box-shadow: var(--shadow-lg);
}
.price-card h3 {
  margin: 0; font-size: 1.05rem; color: var(--ink-500);
  font-weight: 600; letter-spacing: .02em; text-transform: uppercase;
}
.price-tag {
  display: flex; align-items: baseline; gap: .35rem;
  margin: .5rem 0 .25rem; flex-wrap: wrap;
}
.price-tag .currency { font-size: 1.2rem; color: var(--ink-500); font-weight: 600; }
.price-tag .amount {
  font-size: clamp(2.5rem, 4vw, 3.2rem); font-weight: 800; color: var(--ink-900);
  letter-spacing: -.02em; line-height: 1;
}
.price-tag .amount.custom { font-size: clamp(1.6rem, 2.6vw, 2rem); }
.price-tag .per { color: var(--ink-500); font-size: .95rem; }
.billing-note { color: var(--ink-500); font-size: .9rem; margin: 0 0 1.25rem; }

.features-list { list-style: none; padding: 0; margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: .55rem; }
.features-list li {
  position: relative; padding-left: 1.6rem; color: var(--ink-700); font-size: .94rem;
}
.features-list li::before {
  content: ""; position: absolute; left: 0; top: .3rem;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-50);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232EB87A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px 12px; background-position: center; background-repeat: no-repeat;
}
.price-foot { color: var(--ink-400); font-size: .82rem; text-align: center; margin: .9rem 0 0; }

/* ========== FAQ ========== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .65rem; }
details {
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  transition: all .15s ease;
}
details[open] { box-shadow: var(--shadow-sm); border-color: var(--ink-200); }
summary {
  cursor: pointer; font-weight: 600; color: var(--ink-900);
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; font-size: 1.4rem; color: var(--blue); font-weight: 400;
  transition: transform .2s ease;
}
details[open] summary::after { content: "−"; transform: rotate(0); }
details p { margin: .75rem 0 0; color: var(--ink-500); font-size: .95rem; }

/* ========== Final CTA ========== */
.cta-final {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--grad-brand); color: #fff;
}
.cta-inner { text-align: center; max-width: 720px; }
.cta-final h2 {
  color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0 0 .75rem; letter-spacing: -.015em; font-weight: 800;
}
.cta-final p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin: 0 0 1.5rem; }
.cta-final .btn-primary {
  background: #fff; color: var(--blue-600);
  box-shadow: 0 8px 22px -6px rgba(0,0,0,.25);
}
.cta-final .btn-primary:hover { color: var(--blue-600); transform: translateY(-1px); }
.cta-final .btn-ghost { color: #fff; }
.cta-final .btn-ghost:hover { background: rgba(255,255,255,.15); color: #fff; }
.cta-final .hero-actions { justify-content: center; margin: 0; }

/* ========== Footer ========== */
.site-footer {
  background: var(--ink-900); color: var(--ink-300);
  padding: 3.5rem 0 1.5rem; margin-top: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 2rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { color: var(--ink-300); font-size: .92rem; max-width: 320px; margin: 0; }
.footer-col h4 {
  color: #fff; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  margin: 0 0 .9rem; font-weight: 600;
}
.footer-col a {
  display: block; color: var(--ink-300); padding: .25rem 0;
  font-size: .94rem;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
  padding-top: 1.5rem; font-size: .82rem; color: var(--ink-400);
}

/* =============================================================
   Shared icon styles
   ============================================================= */
.icon-sparcles {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: none;
  vertical-align: -.125em;
  background: currentColor;
  -webkit-mask: var(--icon-sparcles) center / contain no-repeat;
  mask: var(--icon-sparcles) center / contain no-repeat;
}

.feature-ico, .flow-ico {
  width: 48px; height: 48px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff; flex: none;
}
.ico-brand { background: var(--grad-brand); }
.ico-green { background: linear-gradient(135deg, var(--green), var(--green-600)); }
.ico-wa { background: #25D366; }
.ico-ig { background: linear-gradient(135deg,#f09433,#dc2743,#bc1888); }

.check-ico { color: var(--green-600); font-size: 1rem; }

.section-cta { display: flex; justify-content: center; margin-top: 2.75rem; }
.section-foot {
  text-align: center; margin: 2.5rem auto 0; max-width: 660px;
  color: var(--ink-500); font-size: 1.02rem;
}
.section-foot a { font-weight: 600; white-space: nowrap; }
.section-foot a i, .segment-link i, .demo-alt i { font-size: .82em; }

/* ========== Problems ========== */
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.problem-card {
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; flex-direction: column; gap: .55rem;
  transition: all .2s ease;
}
.problem-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.problem-ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #FFF1F0; color: #E5484D; font-size: 1.15rem;
}
.problem-card h3 { margin: .35rem 0 0; font-size: 1.05rem; color: var(--ink-900); font-weight: 700; }
.problem-card p { margin: 0; color: var(--ink-500); font-size: .94rem; }

/* ========== How it works (flow) ========== */
.flow {
  display: flex; align-items: stretch; justify-content: center;
  gap: .5rem; flex-wrap: wrap;
}
.flow-step {
  flex: 1 1 0; min-width: 168px; max-width: 220px;
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius);
  padding: 1.5rem 1.1rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
}
.flow-ico { width: 52px; height: 52px; border-radius: 14px; font-size: 1.4rem; margin-bottom: .35rem; }
.flow-step h3 { margin: 0; font-size: 1rem; color: var(--ink-900); font-weight: 700; }
.flow-step p { margin: 0; font-size: .88rem; color: var(--ink-500); }
.flow-arrow { display: flex; align-items: center; color: var(--ink-300); font-size: 1.1rem; }

/* ========== Segments ========== */
.segments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.segment-card {
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: var(--radius); padding: 1.6rem;
  display: flex; flex-direction: column; gap: .6rem;
  color: inherit; transition: all .2s ease;
}
.segment-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; color: inherit; }
.segment-ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--blue); font-size: 1.4rem;
}
.segment-card h3 { margin: .3rem 0 0; font-size: 1.15rem; color: var(--ink-900); font-weight: 700; }
.segment-card p { margin: 0; color: var(--ink-500); font-size: .94rem; flex: 1; }
.segment-link { color: var(--blue-600); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: .4rem; }
.segment-card:hover .segment-link { gap: .6rem; color: var(--blue); }
.segment-card--cta {
  background: linear-gradient(135deg, var(--blue-50), var(--green-50));
  border-style: dashed; border-color: var(--ink-200);
}
.segment-card--cta .segment-ico { background: var(--grad-brand); color: #fff; }

/* ========== Services (complementary) ========== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: var(--radius); padding: 1.25rem;
  transition: all .2s ease;
}
.service-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.service-ico {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink-50); color: var(--blue); font-size: 1.15rem;
  border: 1px solid var(--ink-100);
}
.service-card h3 { margin: 0 0 .25rem; font-size: 1rem; color: var(--ink-900); font-weight: 700; }
.service-card p { margin: 0; color: var(--ink-500); font-size: .9rem; }

/* ========== Clients & testimonials ========== */
.logos-row {
  list-style: none; margin: 0 0 2.75rem; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(1.75rem, 5vw, 2.5rem);
}
.logos-row li { display: inline-flex; }
.logos-row img {
  height: 75px; width: auto; max-width: 150px; object-fit: contain;
  filter: grayscale(1); opacity: .6;
  transition: filter .2s ease, opacity .2s ease;
}
.logos-row img:hover { filter: grayscale(0); opacity: 1; }

.testimonials { max-width: 760px; margin: 0 auto; }
.testimonial {
  margin: 0; text-align: center;
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
.testimonial-quote > i {
  color: var(--blue); font-size: 1.6rem; opacity: .35;
  margin-bottom: .65rem; display: inline-block;
}
.testimonial blockquote {
  margin: 0; padding: 0; border: 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.5;
  color: var(--ink-800); font-weight: 500;
}
.testimonial-author {
  display: inline-flex; align-items: center; gap: .85rem;
  margin-top: 1.5rem; text-align: left;
}
.testimonial-author img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none;
  border: 2px solid #fff; box-shadow: var(--shadow-sm);
}
.testimonial-author strong { display: block; color: var(--ink-900); font-weight: 700; }
.testimonial-author span { display: block; color: var(--ink-500); font-size: .9rem; }

.testimonial-dots {
  display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem;
}
.testimonial-dots[hidden] { display: none; }
.testimonial-dot {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
  background: var(--ink-200); cursor: pointer; transition: all .2s ease;
}
.testimonial-dot:hover { background: var(--ink-300); }
.testimonial-dot[aria-selected="true"] { background: var(--blue); width: 26px; border-radius: 6px; }

.inline-cta, .faq-cta {
  margin: 2.5rem auto 0;
  max-width: 760px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.inline-cta h3, .faq-cta h3 {
  margin: 0 0 1rem;
  color: var(--ink-900);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.25;
}
.faq-cta .hero-actions { justify-content: center; margin: 0; }

/* ========== Integration list icons & orbs ========== */
.integration-list li { display: flex; align-items: flex-start; gap: .65rem; }
.integration-list li i { color: var(--green-600); margin-top: .2rem; flex: none; }
.orb i {
  font-size: 1.7rem;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ========== Demo / Contact ========== */
.demo { padding: clamp(3.5rem, 6vw, 6rem) 0; background: var(--grad-brand); color: #fff; }
.demo-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.eyebrow-light { background: rgba(255,255,255,.16); color: #fff; }
.eyebrow-light .dot { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.22); }
.demo-copy h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 1rem 0 .75rem; font-weight: 800; letter-spacing: -.015em; line-height: 1.15; }
.demo-copy > p { color: rgba(255,255,255,.9); font-size: 1.05rem; margin: 0 0 1.4rem; max-width: 520px; }
.demo-points { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: .55rem; }
.demo-points li { display: flex; align-items: center; gap: .6rem; color: #fff; font-weight: 500; }
.demo-points li i { color: #fff; }
.demo-alt a { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-weight: 600; }
.demo-alt a:hover { color: #fff; text-decoration: underline; }
.demo-card { background: #fff; border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-lg); }
.field { margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink-700); margin-bottom: .35rem; }
.field label .opt { color: var(--ink-400); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink-900);
  padding: .7rem .85rem; border: 1px solid var(--ink-200); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-300); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(48,148,239,.15);
}
.field textarea { resize: vertical; }
.demo-card .btn-primary { margin-top: .25rem; }
.demo-formfoot { color: var(--ink-400); font-size: .8rem; text-align: center; margin: .9rem 0 0; }
.demo-status {
  margin: .9rem 0 0; padding: .75rem .9rem; border-radius: var(--radius-sm);
  background: var(--blue-50); color: var(--blue-700); font-size: .9rem; font-weight: 600;
}
.demo-status.is-success {
  background: var(--green-50); color: var(--green-600);
}
.demo-status.is-error {
  background: #fff1f2; color: #be123c;
}

/* ========== Responsive ========== */
@media (max-width: 980px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav.is-open { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { min-height: 420px; }
  .card-ai { top: 0; left: 0; }
  .card-cv { bottom: -8px; right: 4px; }

  .features-grid, .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .integrations-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .features-grid, .channels-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-list { display: none; }
  .floating-card { display: none; }
  .mock-window { transform: none; }
  .hero h1 { font-size: 2rem; }
  .footer-bottom { justify-content: flex-start; }
}

@media (max-width: 980px) {
  .problems-grid, .segments-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .problems-grid, .segments-grid, .services-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .flow { flex-direction: column; align-items: center; }
  .flow-step { max-width: 380px; width: 100%; }
  .flow-arrow { transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ========== Segment landing pages ========== */
.lp-hero {
  background: var(--grad-soft);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative; overflow: hidden;
}
.lp-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 380px at 85% -10%, rgba(71,214,146,.18), transparent 60%),
    radial-gradient(900px 460px at -10% 0%, rgba(48,148,239,.18), transparent 60%);
  pointer-events: none;
}
.lp-hero-inner { position: relative; max-width: 820px; margin-inline: auto; text-align: center; }
.lp-badge {
  width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 1.25rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-brand); color: #fff; font-size: 1.7rem;
  box-shadow: 0 10px 24px -8px rgba(48,148,239,.5);
}
.lp-hero h1 {
  font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.1; letter-spacing: -.02em;
  color: var(--ink-900); font-weight: 800; margin: .5rem 0 1rem;
}
.lp-hero .lede { max-width: 640px; margin-inline: auto; }
.lp-hero .hero-actions { justify-content: center; }
.lp-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-top: 1.75rem; }
.lp-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--ink-100); border-radius: 999px;
  padding: .5rem .9rem; font-size: .9rem; font-weight: 500; color: var(--ink-700);
  box-shadow: var(--shadow-sm);
}
.lp-chip i { color: var(--blue); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
