*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* HERO TITLE */
.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2.5px;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}

/* HERO CHANNEL PILLS */
.hero-channels {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-ch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 100px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.1px;
}
.hero-ch svg { width: 14px; height: 14px; flex-shrink: 0; }
.hero-ch-ig  { background: rgba(225,48,108,0.08); color: #c2185b; border: 1px solid rgba(225,48,108,0.18); }
.hero-ch-wa  { background: rgba(37,211,102,0.08); color: #15803d; border: 1px solid rgba(37,211,102,0.2); }
.hero-ch-ai  { background: rgba(124,58,237,0.08); color: #6d28d9; border: 1px solid rgba(124,58,237,0.18); }
.hero-ch-sep { display: none; }

:root {
  --ink: #0a0a0f;
  --ink-2: #3a3a4a;
  --ink-3: #7a7a9a;
  --bg: #fafaf8;
  --bg-2: #f2f1ee;
  --surface: #ffffff;
  --accent: #2563EB;
  --accent-soft: #EFF4FF;
  --accent-2: #0ea5e9;
  --insta: #E1306C;
  --wa: #25D366;
  --ai: #7c3aed;
  --border: rgba(0,0,0,0.07);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.06);
  --r: 14px;
  --r-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.15; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,250,248,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: inline-flex; align-items: center; line-height: 0; text-decoration: none; }
.nav-logo img { height: 28px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--ink-2); text-decoration: none; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: #fff; font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: 14px; padding: 10px 22px; border-radius: 100px; border: none; cursor: pointer;
  text-decoration: none; transition: all .2s; letter-spacing: -0.2px;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }
.nav-mobile { display: none; }

/* HERO */
.hero {
  min-height: 100vh; padding: 120px 5% 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -300px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left { flex: 1; max-width: 560px; animation: fadeUp .8s ease both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft); border: 1px solid rgba(37,99,235,0.15);
  border-radius: 100px; padding: 6px 14px; margin-bottom: 28px;
  font-size: 13px; font-weight: 500; color: var(--accent); letter-spacing: 0.1px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s ease infinite; }
.hero h1 {
  font-size: clamp(40px, 5vw, 64px); font-weight: 800; color: var(--ink);
  letter-spacing: -2px; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p {
  font-size: 18px; color: var(--ink-2); line-height: 1.7; margin-bottom: 36px;
  font-weight: 400; max-width: 460px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--ink); color: #fff; font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: 15px; padding: 14px 28px; border-radius: 100px; border: none; cursor: pointer;
  text-decoration: none; transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: -0.3px;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.25); }
.btn-secondary {
  background: transparent; color: var(--ink); font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: 15px; padding: 14px 28px; border-radius: 100px;
  border: 1.5px solid var(--border); cursor: pointer;
  text-decoration: none; transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-1px); }
.hero-trust { margin-top: 44px; display: flex; align-items: center; gap: 16px; }
.hero-trust-avatars { display: flex; }
.hero-trust-avatars span {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--bg);
  background: var(--bg-2); margin-left: -8px; font-size: 14px; display: flex; align-items: center; justify-content: center;
}
.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-trust p { font-size: 13px; color: var(--ink-3); }
.hero-trust p strong { color: var(--ink-2); font-weight: 600; }

/* HERO MOCKUP */
.hero-right { flex: 1; max-width: 560px; animation: fadeUp .8s .2s ease both; position: relative; }
.mockup-wrap {
  background: var(--surface); border-radius: 20px;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  overflow: hidden; position: relative;
}
.mockup-top {
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px;
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }
.mockup-title { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-left: 8px; }
.mockup-body { display: flex; height: 380px; }
.sidebar {
  width: 200px; border-right: 1px solid var(--border); padding: 12px 0;
  background: var(--surface); overflow: hidden; flex-shrink: 0;
}
.sidebar-head { padding: 0 14px 10px; font-size: 11px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.8px; }
.chat-item {
  padding: 10px 14px; cursor: pointer; transition: background .15s;
  display: flex; align-items: center; gap: 10px;
}
.chat-item:hover, .chat-item.active { background: var(--accent-soft); }
.chat-item.active .chat-item-name { color: var(--accent); }
.chat-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.chat-meta { flex: 1; min-width: 0; }
.chat-item-name { font-size: 12px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-item-msg { font-size: 11px; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chan-badge {
  padding: 2px 6px; border-radius: 4px; flex-shrink: 0;
  font-size: 9px; font-weight: 700; letter-spacing: 0.3px;
  border: 1px solid var(--border); color: var(--ink-3); background: var(--bg-2);
}
.chat-area { flex: 1; display: flex; flex-direction: column; background: var(--bg); }
.chat-header {
  padding: 12px 16px; background: var(--surface); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.chat-header-avatar { width: 32px; height: 32px; border-radius: 50%; background: #fde68a; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.chat-header-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.chat-header-source { font-size: 11px; color: var(--insta); font-weight: 500; }
.chat-messages { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.msg { max-width: 75%; padding: 8px 12px; border-radius: 12px; font-size: 12px; line-height: 1.5; }
.msg-in { background: var(--surface); color: var(--ink); border-radius: 4px 12px 12px 12px; align-self: flex-start; box-shadow: var(--shadow-sm); }
.msg-out { background: var(--accent); color: #fff; border-radius: 12px 4px 12px 12px; align-self: flex-end; }
.msg-ai { background: linear-gradient(135deg, #7c3aed, #4f46e5); color: #fff; border-radius: 12px 4px 12px 12px; align-self: flex-end; display: flex; gap: 6px; align-items: flex-start; }
.ai-label { font-size: 10px; font-weight: 600; opacity: 0.8; margin-bottom: 2px; }
.chat-input-bar {
  padding: 10px 14px; background: var(--surface); border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.chat-input-fake {
  flex: 1; background: var(--bg); border: 1px solid var(--border); border-radius: 100px;
  padding: 7px 14px; font-size: 12px; color: var(--ink-3); font-family: 'Inter', sans-serif;
}
.chat-send { width: 30px; height: 30px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; }
.chat-send svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 2; }

/* FLOATING CARDS */
.float-card {
  position: absolute; background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 10px 14px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px; font-size: 13px;
}
.float-card-1 { top: -20px; right: -30px; animation: float1 4s ease-in-out infinite; }
.float-card-2 { bottom: 30px; right: -40px; animation: float2 4.5s ease-in-out infinite; }
.float-card-3 { bottom: -20px; left: -20px; animation: float1 5s ease-in-out infinite .5s; }
.float-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--bg-2); border: 1px solid var(--border); }
.float-icon svg { width: 15px; height: 15px; stroke: var(--ink); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.float-name { font-weight: 600; font-family: 'Sora', sans-serif; font-size: 12px; color: var(--ink); }
.float-sub { font-size: 11px; color: var(--ink-3); }

/* SECTION */
section { padding: 100px 5%; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.section-title { font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -1.5px; color: var(--ink); margin-bottom: 16px; }
.section-sub { font-size: 18px; color: var(--ink-2); max-width: 560px; line-height: 1.7; margin-bottom: 56px; }
.center { text-align: center; margin-inline: auto; }
.center .section-sub { margin-inline: auto; }

/* WHAT SECTION */
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; max-width: 1200px; margin: 0 auto; }
.what-visual { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 30px; box-shadow: var(--shadow-md); }
.channel-cards { display: flex; flex-direction: column; gap: 12px; }
.channel-card {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px; transition: all .2s;
}
.channel-card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.ch-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--bg-2); border: 1px solid var(--border); }
.ch-icon svg { width: 18px; height: 18px; stroke: var(--ink); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ch-name { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px; color: var(--ink); }
.ch-desc { font-size: 12px; color: var(--ink-3); }
.ch-count { margin-left: auto; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: var(--ink-2); }
.what-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.stat-card { background: var(--accent-soft); border: 1px solid rgba(37,99,235,0.1); border-radius: 12px; padding: 16px; text-align: center; }
.stat-card .num { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: var(--accent); letter-spacing: -1px; }
.stat-card .lbl { font-size: 12px; color: var(--ink-2); margin-top: 4px; }

/* FEATURES */
.features-bg { background: var(--bg-2); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }
.feat-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 28px; transition: all .25s; cursor: default;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(37,99,235,0.15); }
.feat-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; background: var(--bg-2); border: 1px solid var(--border); }
.feat-icon svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feat-name { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.3px; }
.feat-desc { font-size: 14px; color: var(--ink-2); line-height: 1.6; }

/* WHO */
.who-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 10px; max-width: 1100px; margin: 0 auto; }
.who-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 16px; display: flex; align-items: center; gap: 14px;
  transition: all .2s; cursor: default;
}
.who-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: rgba(0,0,0,0.13); }
.who-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--bg-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.who-icon svg { width: 18px; height: 18px; stroke: var(--ink); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.who-text { min-width: 0; }
.who-name { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.who-sub { font-size: 11px; color: #8c8c8c; line-height: 1.4; }

/* HOW */
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1000px; margin: 0 auto; position: relative; }
.how-steps::before {
  content: ''; position: absolute; top: 28px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 1px; background: linear-gradient(to right, var(--accent), var(--ai));
  opacity: 0.3;
}
.how-step { text-align: center; position: relative; }
.how-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--surface);
  border: 2px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--accent);
  margin: 0 auto 20px; position: relative; z-index: 1; box-shadow: var(--shadow-sm);
}
.how-step:first-child .how-num { border-color: var(--accent); background: var(--accent-soft); }
.how-title { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.how-desc { font-size: 14px; color: var(--ink-2); line-height: 1.6; }

/* AI SECTION */
.ai-bg {
  background: var(--ink); border-radius: 24px; margin: 0 5%; padding: 80px 60px;
  display: flex; gap: 60px; align-items: center; position: relative; overflow: hidden;
}
.ai-bg::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.ai-left { flex: 1; }
.ai-bg .section-label { color: #a78bfa; }
.ai-bg .section-title { color: #fff; max-width: 420px; }
.ai-bg .section-sub { color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.ai-features { display: flex; flex-direction: column; gap: 14px; }
.ai-feat-row { display: flex; align-items: center; gap: 12px; }
.ai-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(124,58,237,0.3); border: 1px solid rgba(124,58,237,0.5); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ai-check svg { width: 12px; height: 12px; stroke: #a78bfa; fill: none; stroke-width: 2.5; }
.ai-feat-text { font-size: 15px; color: rgba(255,255,255,0.8); }
.ai-right { flex: 1; }
.ai-bubble-wrap { display: flex; flex-direction: column; gap: 12px; }
.ai-bubble {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 14px 18px; font-size: 14px; color: rgba(255,255,255,0.9);
  line-height: 1.6; position: relative;
}
.ai-bubble.user { background: rgba(37,99,235,0.25); border-color: rgba(37,99,235,0.3); align-self: flex-end; max-width: 80%; }
.ai-bubble.bot { background: rgba(124,58,237,0.25); border-color: rgba(124,58,237,0.3); max-width: 85%; }
.ai-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 4px; opacity: 0.6; text-transform: uppercase; }
.ai-cta-btn {
  margin-top: 28px; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.8); color: #fff; font-family: 'Sora', sans-serif;
  font-size: 14px; font-weight: 600; padding: 12px 24px; border-radius: 100px;
  border: none; cursor: pointer; transition: all .2s; text-decoration: none;
}
.ai-cta-btn:hover { background: #7c3aed; transform: translateY(-1px); }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }
.price-card {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: 20px;
  padding: 36px; transition: all .25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--accent); background: linear-gradient(145deg, var(--accent-soft), var(--surface)); position: relative; }
.price-card.featured::after { content: 'Популярный'; position: absolute; top: -12px; right: 24px; background: var(--accent); color: #fff; font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; letter-spacing: 0.3px; }
.price-name { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.price-desc { font-size: 14px; color: var(--ink-3); margin-bottom: 24px; }
.price-amount { font-family: 'Sora', sans-serif; font-size: 40px; font-weight: 800; color: var(--ink); letter-spacing: -2px; margin-bottom: 4px; }
.price-amount span { font-size: 18px; letter-spacing: 0; }
.price-period { font-size: 13px; color: var(--ink-3); margin-bottom: 28px; }
.price-feats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.price-feat-row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); }
.price-feat-row .dot { width: 18px; height: 18px; border-radius: 50%; background: var(--accent-soft); border: 1px solid rgba(37,99,235,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.price-feat-row .dot svg { width: 10px; height: 10px; stroke: var(--accent); fill: none; stroke-width: 2.5; }
.price-btn {
  width: 100%; padding: 13px; border-radius: 100px; font-family: 'Sora', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer; transition: all .2s; text-align: center;
  text-decoration: none; display: block;
}
.price-btn-outline { border: 1.5px solid var(--border); background: transparent; color: var(--ink); }
.price-btn-outline:hover { border-color: var(--ink); }
.price-btn-fill { background: var(--accent); color: #fff; border: none; }
.price-btn-fill:hover { background: #1d4ed8; box-shadow: 0 6px 20px rgba(37,99,235,0.3); }

/* CTA */
.cta-section {
  margin: 0 5% 80px; background: linear-gradient(145deg, var(--ink) 0%, #1a1a2e 100%);
  border-radius: 24px; padding: 80px 60px; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.25) 0%, transparent 70%);
}
.cta-section h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: #fff; letter-spacing: -2px; margin-bottom: 16px; position: relative; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto 36px; position: relative; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }
.cta-btn-main {
  background: #fff; color: var(--ink); font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 15px; padding: 14px 32px; border-radius: 100px; border: none; cursor: pointer;
  text-decoration: none; transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
}
.cta-btn-main:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,255,255,0.2); }
.cta-btn-ghost {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: 15px; padding: 14px 28px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer; text-decoration: none; transition: all .2s;
}
.cta-btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* FOOTER */
footer { padding: 40px 5%; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.foot-logo { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: var(--ink); }
.foot-logo span { color: var(--accent); }
.foot-links { display: flex; gap: 24px; }
.foot-links a { font-size: 13px; color: var(--ink-3); text-decoration: none; transition: color .2s; }
.foot-links a:hover { color: var(--ink); }
.foot-copy { font-size: 13px; color: var(--ink-3); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.8); } }
@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.revealed { opacity: 1; transform: translateY(0); }

/* PROBLEM BLOCK */
.prob-scene { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; max-width: 1100px; margin: 0 auto; }

.prob-chaos-label, .prob-solution-label {
  font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
}
.prob-chaos-label { color: #ef4444; }
.prob-solution-label { color: var(--accent); }

/* Two phone mockups side by side */
.prob-phones { display: flex; gap: 12px; position: relative; margin-bottom: 24px; }
.prob-phone {
  flex: 1; background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.prob-phone-1 { border-color: rgba(239,68,68,0.2); }
.prob-phone-2 { border-color: rgba(239,68,68,0.2); }
.pphone-top {
  padding: 10px 12px 8px; border-bottom: 1px solid var(--border);
  background: var(--bg); display: flex; align-items: center; justify-content: space-between;
}
.pphone-src { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; font-family: 'Sora', sans-serif; }
.wa-src { color: #16a34a; }
.ig-src { color: #db2777; }
.ai-src { background: var(--ink); color: #fff; font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 4px; font-family: 'Sora', sans-serif; }
.pphone-badge {
  background: #ef4444; color: #fff; font-size: 10px; font-weight: 800;
  width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; animation: badgepulse 2s ease infinite;
}
.pphone-badge-ig { background: #db2777; }
@keyframes badgepulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }
.pphone-msgs { padding: 10px 12px; display: flex; flex-direction: column; gap: 6px; }
.pm { font-size: 10px; line-height: 1.45; font-family: 'Inter', sans-serif; }
.pm-in { background: var(--bg-2); color: var(--ink-2); padding: 5px 9px; border-radius: 3px 8px 8px 8px; align-self: flex-start; }
.pm-unread { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.15); color: var(--ink); font-weight: 500; }
.pm-time { font-size: 9px; color: #ef4444; font-weight: 600; text-align: right; margin-top: 2px; }

/* Chaos overlay badges */
.prob-chaos-overlay { position: absolute; inset: 0; pointer-events: none; }
.prob-lost-msg {
  position: absolute; background: #fff; border: 1px solid var(--border);
  border-radius: 100px; padding: 4px 10px; font-size: 10px; font-weight: 600;
  display: flex; align-items: center; gap: 4px; box-shadow: var(--shadow-sm);
  color: var(--ink-2); font-family: 'Inter', sans-serif;
}
.prob-lost-1 { top: -10px; right: 10px; color: #ef4444; }
.prob-lost-2 { top: 50%; right: -12px; transform: translateY(-50%); color: #f97316; }
.prob-lost-3 { bottom: 28px; right: 8px; color: #ef4444; }

/* Pain & win items */
.prob-pains, .prob-wins { display: flex; flex-direction: column; gap: 10px; }
.pain-item, .win-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--ink-2); font-family: 'Inter', sans-serif; line-height: 1.5; }
.pain-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.pain-red { background: #ef4444; }
.win-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 5px; }

/* Arrow divider */
.prob-arrow { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.prob-arrow-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--border), var(--accent)); }
.prob-arrow-label { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 0.3px; writing-mode: vertical-rl; text-orientation: mixed; }

/* Unified inbox mockup */
.prob-unified {
  background: var(--surface); border: 1px solid rgba(37,99,235,0.2);
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 24px;
}
.punified-head {
  padding: 12px 16px; background: var(--ink); display: flex; align-items: center; justify-content: space-between;
}
.punified-title { font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700; color: #fff; }
.punified-online { display: flex; align-items: center; gap: 6px; font-size: 10px; color: rgba(255,255,255,0.6); font-family: 'Inter', sans-serif; }
.punified-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.punified-list { padding: 8px 0; }
.punified-row {
  display: flex; align-items: center; gap: 8px; padding: 7px 14px;
  font-family: 'Inter', sans-serif; font-size: 11px;
}
.punified-row-ai { background: var(--accent-soft); }
.punified-src { font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 4px; flex-shrink: 0; font-family: 'Sora', sans-serif; }
.punified-name { font-weight: 600; color: var(--ink); width: 52px; flex-shrink: 0; font-size: 11px; }
.punified-msg { flex: 1; color: var(--ink-3); font-size: 10px; }
.solved { font-size: 10px; font-weight: 600; color: var(--accent); flex-shrink: 0; }
.punified-stat {
  padding: 10px 14px; border-top: 1px solid var(--border);
  background: var(--bg); display: flex; align-items: center; gap: 0;
}
.pstat { flex: 1; text-align: center; }
.pstat-n { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 800; color: var(--accent); letter-spacing: -0.5px; }
.pstat-l { font-size: 9px; color: var(--ink-3); margin-top: 1px; }
.pstat-div { width: 1px; height: 28px; background: var(--border); }

@media (max-width: 900px) {
  .prob-scene { grid-template-columns: 1fr; }
  .prob-arrow { flex-direction: row; }
  .prob-arrow-line { width: 60px; height: 1px; }
  .prob-arrow-label { writing-mode: horizontal-tb; }
}

/* DEMO CHAT BLOCK */
.demo-outer { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.demo-sphere-bar-outer { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.demo-pill {
  display: flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 100px;
  border: 1.5px solid var(--border); background: var(--surface);
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--ink-2); cursor: pointer; transition: all .2s;
}
.demo-pill svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.demo-pill:hover { border-color: var(--ink); color: var(--ink); }
.demo-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
@media (max-width: 700px) {
  .demo-sphere-bar-outer {
    flex-wrap: nowrap; justify-content: flex-start;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; -ms-overflow-style: none;
    padding: 2px 16px 6px; margin: 0 -16px;
  }
  .demo-sphere-bar-outer::-webkit-scrollbar { display: none; }
  .demo-pill { flex-shrink: 0; }
}
.demo-phone-frame { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); width: 100%; }
.demo-chat-head { padding: 16px 24px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--border); background: var(--bg); }
.demo-ava { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; overflow: hidden; }
.demo-head-name { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--ink); }
.demo-head-sub { font-size: 11px; color: var(--ink-3); margin-top: 1px; }
.demo-green-dot { width: 8px; height: 8px; border-radius: 50%; background: #34c759; margin-left: auto; box-shadow: 0 0 0 2px rgba(52,199,89,0.2); }
.demo-msgs { padding: 24px 20px; display: flex; flex-direction: column; gap: 12px; min-height: 280px; max-height: 380px; overflow-y: auto; scroll-behavior: smooth; background: var(--bg); }
.demo-row { display: flex; align-items: flex-end; gap: 8px; animation: drow .22s ease both; }
.demo-row.user { flex-direction: row-reverse; }
@keyframes drow { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:translateY(0)} }
.dbubble { max-width: 70%; padding: 11px 16px; font-size: 14px; line-height: 1.6; border-radius: 18px; }
.dbubble.bot { background: var(--surface); color: var(--ink); border-radius: 4px 18px 18px 18px; box-shadow: var(--shadow-sm); }
.dbubble.user { background: linear-gradient(135deg, #667eea, #764ba2); color: #fff; border-radius: 18px 4px 18px 18px; }
.dtyping { background: var(--surface); border-radius: 4px 18px 18px 18px; padding: 12px 16px; display: flex; gap: 5px; align-items: center; box-shadow: var(--shadow-sm); }
.ddot { width: 6px; height: 6px; border-radius: 50%; background: #bbb; animation: ddb .9s ease-in-out infinite; }
.ddot:nth-child(2){animation-delay:.15s} .ddot:nth-child(3){animation-delay:.3s}
@keyframes ddb{0%,60%,100%{transform:translateY(0)}30%{transform:translateY(-5px)}}
.demo-bottom { background: var(--surface); border-top: 1px solid var(--border); padding: 14px 20px 16px; }
.demo-input-row { display: flex; align-items: flex-end; gap: 10px; }
.demo-inp { flex: 1; background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 11px 16px; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--ink); resize: none; outline: none; max-height: 80px; line-height: 1.5; transition: border-color .2s; }
.demo-inp::placeholder { color: var(--ink-3); }
.demo-inp:focus { border-color: rgba(0,0,0,0.25); }
.demo-send-btn { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, #667eea, #764ba2); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .15s; box-shadow: 0 2px 10px rgba(102,126,234,0.35); }
.demo-send-btn:hover { transform: scale(1.06); box-shadow: 0 4px 16px rgba(102,126,234,0.5); }
.demo-send-btn:active { transform: scale(0.94); }
.demo-send-btn:disabled { opacity: 0.35; cursor: default; transform: none; box-shadow: none; }
.demo-key-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.demo-key-input { flex: 1; min-width: 260px; padding: 11px 16px; border-radius: 12px; border: 1.5px solid var(--border); background: var(--surface); font-family: 'Inter', sans-serif; font-size: 13px; color: var(--ink); outline: none; transition: border-color .2s; }
.demo-key-input:focus { border-color: var(--accent); }
.demo-key-hint { font-size: 11px; color: var(--ink-3); white-space: nowrap; }
.demo-hint { text-align: center; font-size: 11px; color: var(--ink-3); margin-top: 10px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding: 100px 5% 60px; }
  .hero-left { max-width: 100%; }
  .hero-trust { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero p { margin-inline: auto; }
  .hero-right { max-width: 100%; width: 100%; }
  .what-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .ai-bg { flex-direction: column; padding: 48px 32px; margin: 0 4%; }
  .cta-section { padding: 60px 32px; margin: 0 4% 60px; }
  .nav-links { display: none; }
  .float-card-1, .float-card-2, .float-card-3 { display: none; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
  .foot-links { justify-content: center; }
}

/* ===== CRM ===== */
#crm .section-title em { color: var(--accent); font-style: normal; }

.crm-showcase {
  position: relative;
  max-width: 1080px;
  margin: 0 auto 72px;
}
.crm-board {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.14);
  padding: 20px;
  position: relative;
  z-index: 1;
}
.crm-board-head {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding-bottom: 14px; margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
/* Tabs bar above board */
.crm-tabs-bar {
  display: flex; justify-content: center; margin-bottom: 20px;
}
.crm-board-tabs {
  display: flex; gap: 4px;
  background: var(--bg-2);
  padding: 5px;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.crm-tab {
  font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--ink-2);
  padding: 11px 24px; border-radius: 11px;
  cursor: pointer; transition: color .15s, background .15s;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.crm-tab svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.crm-tab:hover { color: var(--ink); background: rgba(0,0,0,0.04); }
.crm-tab.active { background: var(--ink); color: #fff; box-shadow: 0 4px 12px rgba(15,23,42,0.18); }
.crm-board-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.crm-chip {
  font-size: 11px; color: var(--ink-2); background: var(--bg);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 5px 10px; white-space: nowrap;
}

.crm-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.crm-col { background: #f7f7f5; border-radius: 12px; padding: 12px; }
.crm-col-head {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--ink); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.6px;
}
.crm-col-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.crm-col-n { margin-left: auto; font-size: 11px; color: var(--ink-3); font-weight: 600; letter-spacing: 0; }

.crm-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px -2px rgba(15,23,42,0.06);
  transition: transform .2s, box-shadow .2s;
}
.crm-card:last-child { margin-bottom: 0; }
.crm-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(15,23,42,0.18); }
.crm-card-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-bottom: 6px; }
.crm-card-name { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 13px; color: var(--ink); }
.crm-card-src {
  font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 5px; letter-spacing: 0.3px;
}
.crm-card-src.ig { background: rgba(225, 48, 108, 0.1); color: #E1306C; }
.crm-card-src.wa { background: rgba(37, 211, 102, 0.12); color: #128c46; }
.crm-card-want { font-size: 12.5px; color: var(--ink-2); margin-bottom: 10px; line-height: 1.4; }
.crm-card-bot { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.crm-card-step {
  font-size: 10px; font-weight: 600; padding: 4px 8px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent); white-space: nowrap;
}
.crm-card-step.new { background: #f1f5f9; color: var(--ink-2); }
.crm-card-step.late { background: rgba(239, 68, 68, 0.1); color: #dc2626; }
.crm-card-step.done { background: rgba(34, 197, 94, 0.14); color: #15803d; }
.crm-card-sum { font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.crm-card-drag {
  border: 1.5px dashed var(--accent);
  box-shadow: 0 14px 28px -8px rgba(37,99,235,0.35);
  transform: rotate(-1.5deg);
  background: #fff;
}
.crm-card-won { background: linear-gradient(180deg, #ecfdf5, #fff); border-color: rgba(34,197,94,0.3); }

/* floating callouts */
.crm-callout {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex; gap: 10px; align-items: center;
  box-shadow: 0 18px 40px -12px rgba(15,23,42,0.2);
  z-index: 2;
  max-width: 260px;
}
.crm-callout-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.crm-callout-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.crm-callout-t { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.25; }
.crm-callout-s { font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.crm-callout-1 { top: -22px; left: -26px; }
.crm-callout-2 { top: 42%; right: -44px; }
.crm-callout-3 { bottom: -24px; left: 28%; }

/* MODES */
.crm-modes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 1080px; margin: 0 auto 72px;
}
.crm-mode-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 26px; transition: transform .2s, box-shadow .2s;
}
.crm-mode-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(15,23,42,0.18); }
.crm-mode-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.crm-mode-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.crm-mode-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: var(--ink); margin-bottom: 8px; }
.crm-mode-desc { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* CAPABILITIES GRID */
.crm-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 1080px; margin: 0 auto 72px;
}
.crm-group {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, var(--gs, rgba(99,102,241,0.07)) 0%, #fff 55%);
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 22px;
  padding: 28px 28px 26px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.crm-group:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px -16px rgba(0,0,0,0.13);
}
.crm-group-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 18px;
}
.crm-group-icon {
  width: 54px; height: 54px; border-radius: 15px;
  background: var(--gc, var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
  box-shadow: 0 8px 24px -6px var(--gc, var(--accent));
}
.crm-group-icon svg { width: 24px; height: 24px; }
.crm-group-num {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 56px; line-height: 1; letter-spacing: -3px;
  color: var(--gc, var(--accent));
  opacity: 0.07; user-select: none;
}
.crm-group-name {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 19px;
  color: var(--ink); margin-bottom: 6px; line-height: 1.2;
}
.crm-group-desc {
  font-size: 13.5px; color: var(--ink-3); line-height: 1.55; margin-bottom: 20px;
}
.crm-feats { display: flex; flex-wrap: wrap; gap: 7px; }
.crm-feat {
  background: var(--gs, rgba(99,102,241,0.08));
  color: var(--gc, var(--accent));
  border-radius: 8px; padding: 5px 12px;
  font-size: 12.5px; font-weight: 500; font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

/* REPORTS */
.crm-reports {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 20px; padding: 40px;
  color: #fff; max-width: 1080px; margin: 0 auto 40px;
  box-shadow: 0 30px 60px -20px rgba(15,23,42,0.3);
}
.crm-reports-head { margin-bottom: 24px; }
.crm-reports-label {
  display: inline-block;
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.75); letter-spacing: 0.8px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
}
.crm-reports-title {
  font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 700;
  color: #fff; margin-top: 14px;
}
.crm-reports-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.crm-rep {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 16px;
  transition: background .2s, border-color .2s;
}
.crm-rep:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); }
.crm-rep-n { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; color: #fff; margin-bottom: 4px; }
.crm-rep-s { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.4; }

/* NICHE */
.crm-niche {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 8px;
}
.crm-niche-label {
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.8px;
}
.crm-niche-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.crm-niche-pill {
  font-size: 13px; font-weight: 500;
  background: #fff; border: 1px solid var(--border);
  border-radius: 999px; padding: 7px 14px;
  color: var(--ink); transition: border-color .2s, color .2s;
}
.crm-niche-pill:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 900px) {
  .crm-columns { grid-template-columns: 1fr; }
  .crm-modes { grid-template-columns: 1fr; }
  .crm-grid { grid-template-columns: 1fr; }
  .crm-reports-grid { grid-template-columns: repeat(2, 1fr); }
  .crm-callout { position: static; max-width: none; margin-top: 12px; }
  .crm-callout-1, .crm-callout-2, .crm-callout-3 { top: auto; left: auto; right: auto; bottom: auto; }
  .crm-showcase { display: flex; flex-direction: column; }
}
@media (max-width: 560px) {
  .crm-reports { padding: 28px 22px; }
  .crm-reports-title { font-size: 22px; }
  .crm-board { padding: 16px; }
  .crm-group, .crm-mode-card { padding: 22px; }
}
@media (max-width: 600px) {
  .crm-tabs-bar { padding: 0; }
  .crm-board-tabs { width: 100%; max-width: 100%; }
  .crm-tab { flex: 1; justify-content: center; padding: 10px 6px; font-size: 12.5px; gap: 5px; }
  .crm-tab svg { width: 14px; height: 14px; }
}

/* ===== CRM SCHEDULE VIEW ===== */
.crm-view-hidden { display: none !important; }
.crm-schedule { overflow-x: auto; }

.crm-sched-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0 14px; gap: 12px; flex-wrap: wrap;
}
.crm-sched-nav-left, .crm-sched-nav-right { display: flex; align-items: center; gap: 6px; }
.crm-sched-btn {
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--ink-2); background: transparent; border: 1px solid var(--border);
  border-radius: 7px; padding: 5px 10px; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.crm-sched-btn:hover { background: var(--bg); color: var(--ink); }
.crm-sched-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.crm-sched-today { border-color: var(--accent); color: var(--accent); }
.crm-sched-today:hover { background: var(--accent-soft); }
.crm-sched-title {
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--ink); margin-left: 4px; white-space: nowrap;
}

.crm-sched-heads {
  display: grid; grid-template-columns: 52px repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  min-width: 500px;
}
.crm-sched-time-gap { border-right: 1px solid var(--border); background: #fafaf8; }
.crm-sched-col-head {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border-right: 1px solid var(--border);
  border-bottom: 3px solid var(--col-color, var(--border));
}
.crm-sched-ava {
  width: 32px; height: 32px; border-radius: 8px;
  font-family: 'Sora', sans-serif; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  letter-spacing: 0.3px;
}
.crm-sched-name { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.crm-sched-count { font-size: 11px; color: var(--ink-3); }

.crm-sched-body {
  display: grid; grid-template-columns: 52px repeat(4, 1fr);
  overflow-y: auto; max-height: 400px;
  min-width: 500px;
  border-top: 1px solid var(--border);
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.crm-sched-body::-webkit-scrollbar { width: 6px; }
.crm-sched-body::-webkit-scrollbar-track { background: transparent; }
.crm-sched-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.crm-sched-times { border-right: 1px solid var(--border); background: #fafaf8; }
.crm-sched-hour {
  height: 56px; display: flex; align-items: flex-start;
  padding: 4px 8px 0 4px; box-sizing: border-box;
  font-size: 11px; color: var(--ink-3);
  justify-content: flex-end;
  border-top: 1px solid var(--border);
}

.crm-sched-col {
  position: relative;
  height: 560px;
  border-right: 1px solid var(--border);
  background: #fff;
}
.crm-sched-col::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 55px,
    var(--border) 55px, var(--border) 56px
  );
}

.crm-event {
  position: absolute; left: 4px; right: 4px;
  border-radius: 7px; padding: 5px 8px;
  cursor: pointer; overflow: hidden;
  transition: filter .15s; z-index: 1;
}
.crm-event:hover { filter: brightness(0.94); }
.crm-event-name {
  font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 600;
  color: var(--ink); line-height: 1.3; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.crm-event-time { font-size: 10px; color: var(--ink-3); margin-top: 2px; }

.crm-now-line {
  position: absolute; left: 0; right: 0; height: 2px;
  background: #ef4444; z-index: 2; pointer-events: none;
}
.crm-now-line::before {
  content: ''; position: absolute; left: -4px; top: -4px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #ef4444;
}

/* ===== CRM LIST VIEW ===== */
.crm-list-view { display: flex; flex-direction: column; gap: 14px; }

.crm-list-toolbar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.crm-list-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 9px 14px;
  flex: 1; min-width: 200px;
}
.crm-list-search svg { width: 15px; height: 15px; stroke: var(--ink-3); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.crm-list-search span { font-size: 13px; color: var(--ink-3); }
.crm-list-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.crm-lf-chip {
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 500;
  padding: 7px 13px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--ink-2); background: #fff;
  cursor: pointer; transition: all .15s;
}
.crm-lf-chip:hover { border-color: var(--ink); color: var(--ink); }
.crm-lf-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.crm-list-table {
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}
.crm-list-head {
  display: grid; grid-template-columns: 1.4fr 1.6fr 1fr 1.6fr 0.8fr 1fr;
  background: var(--bg); padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.5px; gap: 8px;
}
.crm-list-row {
  display: grid; grid-template-columns: 1.4fr 1.6fr 1fr 1.6fr 0.8fr 1fr;
  padding: 13px 16px; gap: 8px; align-items: center;
  border-bottom: 1px solid var(--border);
  transition: background .15s; background: #fff;
}
.crm-list-row:last-child { border-bottom: none; }
.crm-list-row:hover { background: #fafaf8; }
.crm-list-row-late { background: rgba(239,68,68,0.02); }
.crm-list-client { display: flex; align-items: center; gap: 8px; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 13px; color: var(--ink); }
.crm-list-want { font-size: 13px; color: var(--ink-2); }
.crm-list-sum { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 13px; color: var(--ink); }
.crm-list-sum-big { color: #15803d; }
.crm-list-resp { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--ink-2); }
.crm-resp-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

.crm-lbadge {
  font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 600;
  padding: 4px 9px; border-radius: 999px; white-space: nowrap;
}
.crm-lbadge.new { background: #f1f5f9; color: var(--ink-2); }
.crm-lbadge.work { background: var(--accent-soft); color: var(--accent); }
.crm-lbadge.done { background: rgba(34,197,94,0.12); color: #15803d; }

@media (max-width: 760px) {
  .crm-list-head { display: none; }
  .crm-list-row { grid-template-columns: 1fr 1fr; gap: 6px 12px; }
}
