/* ============================================================
   AIKawan — product website (soft UI rewrite)
   Type:    Plus Jakarta Sans (everywhere) + JetBrains Mono (tags)
   Look:    rounded, pastel, soft shadows, friendly
   Palette: warm cream + soft lavender + peach + mint
   ============================================================ */

:root {
  /* surfaces */
  --bg:        #F5F1EA;   /* warm cream */
  --bg-2:      #EFEAE0;
  --surface:   #FFFFFF;
  --surface-2: #FBF8F2;

  /* pastel accent surfaces */
  --lavender:  #ECE6FB;
  --lavender-2:#DDD2F8;
  --peach:     #FFE2D2;
  --peach-2:   #FFD0B5;
  --mint:      #D9F1E3;
  --mint-2:    #B9E5CA;
  --butter:    #FFF1C9;
  --sky:       #E2EBFF;
  --pink:      #FCE0EE;

  /* ink */
  --ink:       #1B1830;   /* soft dark indigo */
  --ink-2:     #3A3550;
  --muted:     #6E6884;
  --muted-2:   #9892AB;

  /* primary brand */
  --brand:     #6B5AE0;   /* warm soft purple */
  --brand-2:   #5949CC;
  --brand-soft:#EFEBFE;
  --coral:     #FF7A5C;   /* secondary warm */

  /* lines & shadow */
  --line:      rgba(27, 24, 48, 0.08);
  --line-2:    rgba(27, 24, 48, 0.14);
  --shadow-sm: 0 2px 8px rgba(27,24,48,.04), 0 1px 2px rgba(27,24,48,.04);
  --shadow:    0 12px 30px -10px rgba(27,24,48,.12), 0 4px 10px -4px rgba(27,24,48,.06);
  --shadow-lg: 0 28px 60px -20px rgba(27,24,48,.18), 0 8px 20px -8px rgba(27,24,48,.08);

  /* channel brand colors (only used as accents) */
  --wa:        #25D366;
  --fb:        #4F8EF7;
  --ig:        #E879A5;

  /* type */
  --sans: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --r-card: 24px;
  --r-lg:   32px;
  --r-pill: 999px;
}

/* ----- reset ----- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
  letter-spacing: -0.005em;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
em { font-style: normal; color: var(--brand); font-weight: 600; }
code {
  font-family: var(--mono); font-size: .85em;
  background: var(--brand-soft); color: var(--brand);
  padding: 2px 8px; border-radius: 6px;
}

/* very subtle background blobs */
body::before {
  content: ""; position: fixed; inset: 0;
  background:
    radial-gradient(600px 600px at 10% 0%, #ece6fb55 0%, transparent 60%),
    radial-gradient(700px 700px at 95% 30%, #ffe2d244 0%, transparent 55%),
    radial-gradient(500px 500px at 70% 90%, #d9f1e344 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ----- grain overlay (very subtle now) ----- */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: .12; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ----- floating language pill ----- */
.lang-pill {
  position: fixed; right: 24px; bottom: 24px; z-index: 200;
  background: var(--surface);
  color: var(--ink);
  padding: 12px 20px; border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.lang-pill::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--wa); margin-right: 4px;
  box-shadow: 0 0 0 4px #25d36622;
}
.lang-pill .dot { width: 3px; height: 3px; background: var(--muted-2); border-radius: 50%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 14px; z-index: 100;
  margin: 14px var(--pad) 0;
  display: flex; align-items: center; gap: 28px;
  padding: 12px 16px 12px 22px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  max-width: var(--max);
  margin-inline: auto;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.brand-mark {
  width: 36px; height: 36px; border-radius: 12px;
  background: linear-gradient(135deg, var(--brand) 0%, #8A7AFA 100%);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px -4px #6b5ae060;
}
.brand-name {
  font-family: var(--sans);
  font-size: 18px; font-weight: 700; letter-spacing: -.02em;
}
.brand-flag { font-size: 14px; opacity: .9; }
.nav-links { display: flex; gap: 6px; margin-left: 18px; }
.nav-links a {
  font-size: 14px; color: var(--ink-2); font-weight: 500;
  padding: 8px 14px; border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}
.nav-links a:hover { background: var(--brand-soft); color: var(--brand); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.link-quiet { font-size: 14px; color: var(--ink-2); font-weight: 500; padding: 8px 12px; }
.link-quiet:hover { color: var(--brand); }

/* ----- buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: var(--r-pill);
  font-family: var(--sans); font-size: 14.5px; font-weight: 600;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border .18s ease, box-shadow .18s ease;
  letter-spacing: -.005em;
}
.btn .arr { transition: transform .18s ease; font-weight: 500; }
.btn:hover .arr { transform: translateX(3px); }
.btn.big { padding: 16px 26px; font-size: 15.5px; }
.btn.full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--ink); color: #fff;
  box-shadow: 0 8px 20px -8px rgba(27,24,48,.4);
}
.btn-primary:hover { background: #000; transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(27,24,48,.5); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--brand-soft); border-color: transparent; color: var(--brand); }
.btn-coral { background: var(--brand); color: #fff; box-shadow: 0 10px 24px -6px #6b5ae066; }
.btn-coral:hover { background: var(--brand-2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline:hover { background: #ffffff14; border-color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--brand-soft); color: var(--brand); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) var(--pad) 48px;
}
.hero-meta {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  margin-bottom: 36px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em;
  color: var(--muted);
}
.kicker {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.kicker-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}
.hero-h {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(44px, 7.5vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 48px;
  color: var(--ink);
}
.hero-h em { color: var(--brand); font-weight: 700; }
.hero-h-thin { font-weight: 300; color: var(--muted); }
.hero-h-italic { color: var(--coral); font-weight: 700; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  margin-bottom: 64px;
}
.hero-copy p {
  font-size: 18px; line-height: 1.55; color: var(--ink-2);
  margin-bottom: 16px; max-width: 52ch;
  font-weight: 400;
}
.hero-copy p em { color: var(--brand); font-weight: 600; }
.hero-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.micro {
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  margin-top: 18px; letter-spacing: .02em;
}

/* ----- chat card ----- */
.chat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: chatBob 7s ease-in-out infinite;
}
@keyframes chatBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.chat-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.chat-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 4px #25d36622;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 #25d36680; }
  70%  { box-shadow: 0 0 0 10px #25d36600; }
  100% { box-shadow: 0 0 0 0 #25d36600; }
}
.chat-title { flex: 1; line-height: 1.2; }
.chat-title strong { font-weight: 600; font-size: 14px; color: var(--ink); }
.chat-title span { display: block; font-size: 11.5px; color: var(--muted); margin-top: 3px; font-weight: 400; }
.chat-title em { color: var(--brand); font-weight: 600; }
.chat-badge {
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
  background: #DFF5E1; color: #1B7B3E;
  padding: 4px 9px; border-radius: 6px; font-weight: 500;
}
.chat-body {
  padding: 22px 20px; display: flex; flex-direction: column; gap: 12px;
  background: var(--surface);
}
.msg p { font-size: 14.5px; line-height: 1.5; font-weight: 400; }
.msg-time {
  font-family: var(--mono); font-size: 10px;
  color: var(--muted-2); margin-top: 4px; display: block;
  letter-spacing: .02em;
}
.msg.in p, .msg.out p {
  padding: 11px 15px; border-radius: 18px; display: inline-block; max-width: 85%;
}
.msg.in   { align-self: flex-start; }
.msg.in p { background: var(--bg-2); color: var(--ink); border-bottom-left-radius: 6px; }
.msg.out  { align-self: flex-end; text-align: right; }
.msg.out p {
  background: linear-gradient(135deg, var(--brand) 0%, #8A7AFA 100%);
  color: #fff; border-bottom-right-radius: 6px; text-align: left;
  box-shadow: 0 6px 14px -6px #6b5ae066;
}
.msg.system {
  align-self: center; font-family: var(--mono); font-size: 11px;
  color: var(--muted); padding: 8px 14px;
  background: var(--surface-2);
  border-radius: 999px;
  font-weight: 400;
}
.msg.system strong { color: var(--brand); font-weight: 600; }

/* ----- stats strip ----- */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 32px;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.stat {
  display: flex; flex-direction: column; gap: 8px;
  padding-right: 20px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1; letter-spacing: -0.04em;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 2px;
}
.stat-num i {
  font-style: normal; color: var(--brand);
  font-size: .55em; font-weight: 600;
}
.stat-label {
  font-size: 13.5px; color: var(--muted);
  line-height: 1.45;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  margin: 60px auto;
  border-radius: var(--r-lg);
  max-width: calc(var(--max) - var(--pad) * 0);
  margin-inline: var(--pad);
  box-shadow: var(--shadow);
}
.marquee-track {
  display: flex; gap: 36px; align-items: center;
  white-space: nowrap; width: max-content;
  animation: scroll 38s linear infinite;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
}
.marquee-track span:nth-child(odd) {
  color: #FFB39C;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION CHROME
   ============================================================ */
.section-tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
  padding: 6px 12px 6px 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-weight: 500;
}
.section-tag span {
  color: var(--brand); font-weight: 600;
  background: var(--brand-soft); padding: 3px 8px; border-radius: 999px;
  font-size: 10px;
}
.h2 {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.02; letter-spacing: -0.035em;
  margin-bottom: 20px;
  color: var(--ink);
}
.h2 em { color: var(--brand); font-weight: 700; }
.lede {
  font-size: 18px; color: var(--muted); max-width: 60ch;
  margin-bottom: 48px; font-weight: 400;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--pad);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.problem-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.problem-card:nth-child(1) { background: var(--lavender); border-color: transparent; }
.problem-card:nth-child(2) { background: var(--peach); border-color: transparent; }
.problem-card:nth-child(3) { background: var(--mint); border-color: transparent; }
.problem-card.highlight {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.problem-card.highlight .big-num { color: #FFB39C; }
.problem-card.highlight p em { color: #FFB39C; }
.big-num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1; letter-spacing: -0.04em;
  color: var(--ink);
}
.problem-card p { font-size: 16.5px; line-height: 1.55; color: var(--ink-2); }
.problem-card.highlight p { color: rgba(255,255,255,.85); }
.problem-card p em { color: var(--brand); font-weight: 600; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--pad);
}
.flow {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 100px minmax(280px, 1.2fr) 100px 1fr;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
}
.flow-col {
  display: flex; flex-direction: column; gap: 10px;
}
.flow-col.right { align-items: flex-end; }
.flow-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 8px; font-weight: 500;
}
.flow-chip {
  padding: 10px 16px; border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-size: 13.5px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  width: max-content;
  transition: transform .2s ease, box-shadow .2s ease;
  color: var(--ink);
}
.flow-chip:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.flow-col.right .flow-chip:hover { transform: translateX(-4px); }
.flow-chip::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: currentColor;
}
.flow-chip.wa  { background: #DFF5E1; color: #1B7B3E; border-color: transparent; }
.flow-chip.fb  { background: var(--sky); color: #2453C7; border-color: transparent; }
.flow-chip.ig  { background: var(--pink); color: #B83577; border-color: transparent; }
.flow-chip.web { background: var(--mint); color: #2B6A4A; border-color: transparent; }
.flow-chip.ads { background: var(--peach); color: #B5582D; border-color: transparent; }
.flow-chip.out { background: var(--lavender); color: var(--brand); border-color: transparent; }

.flow-lines {
  width: 100%; height: 320px;
  stroke: var(--line-2); stroke-width: 1.5; fill: none;
}
.flow-lines path { stroke-dasharray: 4 5; opacity: .6; }

.flow-brain {
  display: flex; justify-content: center;
}
.brain-card {
  background: linear-gradient(160deg, var(--brand) 0%, #8A7AFA 100%);
  color: #fff;
  padding: 26px 26px 22px;
  border-radius: var(--r-card);
  box-shadow: 0 24px 50px -12px #6b5ae066, 0 8px 20px -8px #6b5ae040;
  width: 100%; max-width: 320px;
}
.brain-title {
  font-family: var(--sans); font-size: 19px; font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; gap: 10px;
}
.brain-title::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  margin-left: auto;
  animation: pulse-w 2s infinite;
}
@keyframes pulse-w {
  0%   { box-shadow: 0 0 0 0 #ffffff80; }
  70%  { box-shadow: 0 0 0 10px #ffffff00; }
  100% { box-shadow: 0 0 0 0 #ffffff00; }
}
.brain-card ul { display: flex; flex-direction: column; gap: 10px; }
.brain-card li {
  font-size: 14px; display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.92); font-weight: 500;
}
.brain-card li span { font-size: 16px; }

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--pad);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.feat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: var(--shadow-sm);
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* feature card color rotation */
.feat:nth-child(2) { background: var(--peach); border-color: transparent; }
.feat:nth-child(3) { background: var(--mint); border-color: transparent; }
.feat:nth-child(4) { background: var(--butter); border-color: transparent; }
.feat:nth-child(5) { background: var(--sky); border-color: transparent; }
.feat:nth-child(6) { background: var(--lavender); border-color: transparent; }
.feat:nth-child(7) { background: var(--pink); border-color: transparent; }
.feat:nth-child(8) { background: var(--mint); border-color: transparent; }
.feat:nth-child(9) { background: var(--peach); border-color: transparent; }

.feat-lg {
  grid-column: span 2;
  background: linear-gradient(140deg, var(--brand) 0%, #8A7AFA 60%, #B6A8FF 100%) !important;
  color: #fff !important;
  padding: 40px 36px;
  border-color: transparent !important;
  box-shadow: 0 24px 50px -16px #6b5ae050;
}
.feat-lg:hover { box-shadow: 0 32px 60px -16px #6b5ae060; }
.feat-num {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  color: var(--brand); text-transform: uppercase; font-weight: 600;
}
.feat-lg .feat-num { color: rgba(255,255,255,.85); }
.feat h3 {
  font-family: var(--sans); font-weight: 700;
  font-size: 22px; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--ink);
}
.feat-lg h3 { font-size: clamp(28px, 3.4vw, 42px); color: #fff; }
.feat p { font-size: 15px; color: var(--ink-2); line-height: 1.55; opacity: .85; }
.feat-lg p { color: rgba(255,255,255,.92); font-size: 16.5px; max-width: 56ch; opacity: 1; }
.feat-lg code { background: rgba(255,255,255,.18); color: #fff; }

/* drip timeline */
.drip-timeline {
  display: flex; gap: 0; margin-top: 20px;
  padding-top: 28px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.18);
}
.d-step {
  flex: 1; min-width: 90px;
  display: flex; flex-direction: column; gap: 4px;
  padding: 8px 12px 8px 0;
  position: relative;
}
.d-step::before {
  content: ""; position: absolute; top: -32px; left: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.25);
}
.d-step span {
  font-family: var(--sans); font-size: 18px; color: #fff;
  font-weight: 700; letter-spacing: -.02em;
}
.d-step em {
  font-family: var(--mono); font-size: 10.5px;
  color: rgba(255,255,255,.75); font-weight: 400; letter-spacing: .02em;
}

/* ============================================================
   COMPARE
   ============================================================ */
.compare {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--pad);
}
.compare-wrap {
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%; border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 18px 22px; text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.compare-table th {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
  background: var(--surface-2);
}
.compare-table th.us {
  color: var(--brand);
  background: var(--brand-soft);
}
.compare-table td.us {
  background: #faf8ff;
  font-weight: 600; color: var(--ink);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 500; }
.compare-table s { color: var(--muted-2); opacity: .7; }
.compare-table .price-row td {
  font-family: var(--sans); font-size: 18px; font-weight: 700;
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}
.compare-table .price-row td.us {
  color: var(--brand); background: var(--brand-soft);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--pad);
}
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  align-items: stretch;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan header h3 {
  font-family: var(--sans); font-size: 22px; font-weight: 700;
  letter-spacing: -.02em;
}
.plan header p { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.plan .price {
  display: flex; align-items: baseline; gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.plan .price .rm { font-family: var(--mono); font-size: 13px; color: var(--muted); font-weight: 500; }
.plan .price .amt {
  font-family: var(--sans); font-size: 52px;
  font-weight: 700;
  letter-spacing: -.04em; line-height: 1;
}
.plan .price .per { font-size: 13.5px; color: var(--muted); margin-left: 4px; }
.plan ul { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan li {
  font-size: 14px; padding-left: 26px; position: relative;
  color: var(--ink-2); line-height: 1.45;
}
.plan li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--brand-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%236B5AE0' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 8 7 11 12 5'/></svg>");
  background-repeat: no-repeat; background-position: center;
}
.plan li em { color: var(--muted); font-weight: 500; }

.plan.featured {
  background: linear-gradient(160deg, var(--brand) 0%, #8A7AFA 100%);
  color: #fff;
  border-color: transparent;
  transform: scale(1.03);
  box-shadow: 0 28px 60px -16px #6b5ae055;
}
.plan.featured:hover { transform: scale(1.03) translateY(-4px); }
.plan.featured header p { color: rgba(255,255,255,.85); }
.plan.featured .price { border-color: rgba(255,255,255,.2); }
.plan.featured .price .rm,
.plan.featured .price .per { color: rgba(255,255,255,.85); }
.plan.featured li { color: rgba(255,255,255,.95); }
.plan.featured li::before {
  background: rgba(255,255,255,.22);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 8 7 11 12 5'/></svg>");
  background-repeat: no-repeat; background-position: center;
}
.plan .ribbon {
  position: absolute; top: -12px; left: 26px;
  background: var(--coral); color: #fff;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em;
  padding: 6px 12px; border-radius: 999px;
  text-transform: uppercase; font-weight: 600;
  box-shadow: 0 6px 14px -4px #ff7a5c66;
}

.plan.dark {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.plan.dark header p,
.plan.dark .price .rm,
.plan.dark .price .per { color: rgba(255,255,255,.7); }
.plan.dark li { color: rgba(255,255,255,.88); }
.plan.dark li::before {
  background: rgba(255,255,255,.14);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23FFB39C' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 8 7 11 12 5'/></svg>");
  background-repeat: no-repeat; background-position: center;
}
.plan.dark .price { border-color: rgba(255,255,255,.16); }
.dfy-extra { font-size: 13.5px; color: rgba(255,255,255,.75); margin-top: -8px; }
.dfy-extra strong { color: #FFB39C; font-weight: 600; }

/* ============================================================
   QUOTE
   ============================================================ */
/* ============================================================
   TESTIMONIALS CAROUSEL
   ============================================================ */
.testi {
  max-width: 980px; margin: 0 auto;
  padding: clamp(64px, 9vw, 100px) var(--pad);
  text-align: center;
}
.testi-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--muted);
  margin-bottom: 16px;
}
.testi-label span {
  font-size: 10px; background: var(--line); border-radius: 4px; padding: 2px 6px;
}
.testi h2 { margin-bottom: 48px; }

.testi-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
}

.testi-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testi-slide {
  flex: 0 0 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 5vw, 60px);
  box-shadow: var(--shadow-sm);
  text-align: left;
  margin: 0;
}

.testi-slide p {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.45; letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 32px;
}
.testi-slide p em  { color: var(--brand); font-style: normal; font-weight: 700; }
.testi-slide p strong { color: var(--ink); font-weight: 700; }

.testi-slide footer {
  display: flex; align-items: center; gap: 16px;
}
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  color: #fff; flex-shrink: 0;
}
.testi-slide footer strong {
  display: block; font-size: 14px; font-weight: 700; color: var(--ink);
}
.testi-slide footer span {
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
}

/* Arrows */
.testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface); color: var(--ink);
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, box-shadow .2s;
  z-index: 2; box-shadow: var(--shadow-sm);
}
.testi-arrow:hover { background: var(--brand-soft); box-shadow: var(--shadow-md); }
.testi-prev { left: -20px; }
.testi-next { right: -20px; }

/* Dots */
.testi-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 28px;
}
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line); border: none; cursor: pointer;
  padding: 0; transition: background .2s, transform .2s;
}
.testi-dot.active {
  background: var(--brand); transform: scale(1.3);
}

@media (max-width: 640px) {
  .testi-prev { left: 4px; }
  .testi-next { right: 4px; }
  .testi-slide { padding: 28px 20px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 920px; margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--pad);
}
.qs {
  margin-top: 48px;
  display: flex; flex-direction: column; gap: 12px;
}
details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 24px;
  transition: box-shadow .2s ease;
}
details[open] { box-shadow: var(--shadow-sm); }
details summary {
  font-family: var(--sans); font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600; line-height: 1.4; letter-spacing: -.01em;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  color: var(--ink);
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  font-family: var(--sans); font-size: 22px; font-weight: 400;
  color: var(--brand);
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--brand-soft);
  display: grid; place-items: center;
  transition: transform .25s ease;
  flex-shrink: 0;
}
details[open] summary::after { transform: rotate(45deg); }
details p {
  margin-top: 14px;
  font-size: 15px; color: var(--ink-2); max-width: 70ch;
  line-height: 1.6;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  margin: 60px var(--pad);
  border-radius: var(--r-lg);
  max-width: var(--max);
  margin-inline: auto;
  background: var(--ink);
  color: #fff;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 15% 20%, #6b5ae040 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 85% 80%, #ff7a5c30 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  padding: clamp(64px, 10vw, 120px) clamp(28px, 5vw, 64px);
  position: relative;
}
.kicker.dark {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.85);
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: none;
}
.kicker.dark::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #FFB39C; box-shadow: 0 0 0 4px #ff7a5c30;
}
.cta-h {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 1.02; letter-spacing: -0.035em;
  margin-bottom: 40px;
  max-width: 18ch;
  color: #fff;
}
.cta-h em { color: #FFB39C; font-weight: 700; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.cta-micro {
  font-family: var(--mono); font-size: 12px; letter-spacing: .02em;
  color: rgba(255,255,255,.6);
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  padding: 56px var(--pad) 28px;
  background: transparent;
}
.foot-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-2);
}
.foot-brand p {
  font-size: 14px; color: var(--muted); margin-top: 14px;
  max-width: 32ch;
}
.foot-brand .made { font-size: 13px; }
.foot-brand .made strong { color: var(--ink); font-weight: 600; }
.foot h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
  margin-bottom: 16px;
}
.foot ul { display: flex; flex-direction: column; gap: 10px; }
.foot ul a {
  font-size: 14px; color: var(--ink-2); font-weight: 500;
  transition: color .15s ease;
}
.foot ul a:hover { color: var(--brand); }
.foot-bar {
  max-width: var(--max); margin: 0 auto;
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .06em;
  color: var(--muted);
}
.foot-code i.ok {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--wa); margin: 0 4px;
  box-shadow: 0 0 0 3px #25d36622;
  animation: pulse 2s infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-lg { grid-column: span 2; }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-4px); }
  .flow {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 22px;
  }
  .flow-col, .flow-col.right { align-items: stretch; }
  .flow-lines { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav { gap: 12px; padding: 10px 14px 10px 18px; margin: 10px var(--pad) 0; }
  .nav-cta .link-quiet { display: none; }
  .stat-strip { grid-template-columns: 1fr; padding: 24px; }
  .stat { border-right: none !important; padding-right: 0; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .feat-grid, .plans { grid-template-columns: 1fr; }
  .feat-lg { grid-column: span 1; }
  .foot-grid { grid-template-columns: 1fr; }
  .compare-wrap { overflow-x: auto; }
  .compare-table { min-width: 580px; }
  .lang-pill { right: 12px; bottom: 12px; padding: 10px 16px; }
  .marquee { margin-left: var(--pad); margin-right: var(--pad); border-radius: var(--r-card); }
  .cta { margin-left: var(--pad); margin-right: var(--pad); }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--pad);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-copy .lede { margin-bottom: 28px; }
.contact-meta {
  display: flex; flex-direction: column; gap: 14px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
}
.contact-meta li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: var(--ink-2);
}
.contact-meta span {
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; font-size: 15px;
  flex-shrink: 0;
}
.contact-meta a { color: var(--ink); font-weight: 600; }
.contact-meta a:hover { color: var(--brand); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 16px;
}
.cf-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 15px; color: var(--ink);
  padding: 13px 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  transition: border .15s ease, background .15s ease, box-shadow .15s ease;
  width: 100%;
  letter-spacing: -.005em;
}
.contact-form textarea { resize: vertical; min-height: 100px; line-height: 1.5; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted-2); }
.cf-micro {
  font-family: var(--mono); font-size: 11.5px; color: var(--muted);
  text-align: center; letter-spacing: .02em;
  text-transform: none; font-weight: 400;
}
.cf-micro a { color: var(--brand); font-weight: 600; }
.cf-micro.ok { color: #1B7B3E; }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cf-row { grid-template-columns: 1fr; }
}

/* ============================================================
   ICONS — shared sizing
   ============================================================ */
.ic-sm { width: 14px; height: 14px; vertical-align: -2px; }
.ic-ok { width: 20px; height: 20px; color: #1B7B3E; }
.ic-no { width: 18px; height: 18px; color: #C9C3D6; }

/* ============================================================
   HERO — visual cluster
   ============================================================ */
.hero-left .hero-sub {
  font-size: 19px; line-height: 1.55; color: var(--ink-2);
  margin: 22px 0 28px; max-width: 46ch; font-weight: 400;
}
.hero-left .hero-sub em { color: var(--brand); font-weight: 600; }

.hero-visual {
  position: relative;
  min-height: 540px;
  padding: 10px 0 30px;
}

/* Works with row */
.works-with {
  display: flex; align-items: center; gap: 12px;
  margin-top: 28px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  width: max-content;
  box-shadow: var(--shadow-sm);
}
.ww-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
  margin-right: 4px;
}
.ww-ic { width: 28px; height: 28px; transition: transform .2s ease; }
.ww-ic:hover { transform: translateY(-2px) scale(1.08); }

/* Phone mockup */
.phone {
  position: relative;
  width: 300px;
  aspect-ratio: 9 / 19.5;
  background: #0F0E1A;
  border-radius: 46px;
  padding: 10px;
  box-shadow:
    0 40px 80px -20px rgba(27,24,48,.35),
    0 12px 28px -8px rgba(27,24,48,.18),
    inset 0 0 0 2px rgba(255,255,255,.06);
  margin-left: auto;
  animation: chatBob 7s ease-in-out infinite;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.phone-notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 28px; background: #0F0E1A;
  border-radius: 999px; z-index: 3;
}
.phone-head {
  display: flex; align-items: center; gap: 10px;
  padding: 56px 16px 12px;
  background: linear-gradient(180deg, #fff 0%, #FBF8F2 100%);
  border-radius: 38px 38px 0 0;
  position: relative;
  flex-shrink: 0;
}
.phone-ic { width: 32px; height: 32px; flex-shrink: 0; }
.phone-head strong {
  display: block; font-size: 13px; font-weight: 700; color: var(--ink);
  letter-spacing: -.01em;
}
.phone-head span {
  display: flex; align-items: center; gap: 6px;
  font-size: 10.5px; color: var(--muted); margin-top: 2px;
}
.online {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 3px #25d36622;
  animation: pulse 2s infinite;
  display: inline-block;
}
.phone-body {
  background: #E8E0D2;
  padding: 14px 12px 22px;
  border-radius: 0 0 38px 38px;
  display: flex; flex-direction: column; gap: 7px;
  flex: 1;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.4) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.3) 0, transparent 40%);
}
.phone-body .msg { max-width: 80%; }
.phone-body .msg p {
  padding: 9px 13px; border-radius: 14px;
  font-size: 13.5px; line-height: 1.4;
}
.phone-body .msg.in { align-self: flex-start; }
.phone-body .msg.in p {
  background: #fff; color: var(--ink);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 1px rgba(0,0,0,.06);
}
.phone-body .msg.out { align-self: flex-end; }
.phone-body .msg.out p {
  background: #DCF8C7; color: #14241B;
  border-bottom-right-radius: 4px;
  box-shadow: 0 1px 1px rgba(0,0,0,.06);
}
.typing {
  display: inline-flex; gap: 4px; align-self: flex-start;
  background: #fff; padding: 11px 14px; border-radius: 14px;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 1px rgba(0,0,0,.06);
}
.typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted-2);
  animation: typing 1.3s infinite ease-in-out;
}
.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30%           { transform: translateY(-4px); opacity: 1; }
}

/* Floating cards */
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 4;
}
.score-card {
  top: 30px; left: -10px;
  width: 200px;
  animation: chatBob 8s ease-in-out infinite reverse;
}
.score-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px;
}
.score-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.score-tag.hot {
  font-size: 10.5px; font-weight: 700; color: #B5582D;
  background: var(--peach); padding: 3px 8px; border-radius: 999px;
}
.score-gauge { position: relative; }
.score-gauge svg { width: 100%; height: auto; }
.score-num {
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  font-size: 34px; font-weight: 800; letter-spacing: -.04em;
  color: var(--ink);
}
.score-foot {
  display: flex; flex-wrap: wrap; gap: 8px 10px;
  font-size: 11px; color: var(--muted); align-items: center;
  margin-top: 6px;
}
.sf-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  margin-right: 2px;
}

.appt-card {
  bottom: 30px; left: -30px;
  display: flex; align-items: center; gap: 12px;
  width: 230px;
  animation: chatBob 9s ease-in-out infinite;
}
.appt-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--mint); color: #2B6A4A;
  display: grid; place-items: center; flex-shrink: 0;
}
.appt-icon svg { width: 22px; height: 22px; }
.appt-card strong {
  display: block; font-size: 14px; color: var(--ink); font-weight: 700;
}
.appt-card span {
  display: block; font-size: 12px; color: var(--muted); margin-top: 1px;
}
.appt-check {
  margin-left: auto; width: 28px; height: 28px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700;
}

/* ============================================================
   CHANNELS
   ============================================================ */
.channels {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px, 9vw, 100px) var(--pad);
}
.ch-head { margin-bottom: 40px; }
.ch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.ch-card {
  padding: 26px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: var(--shadow-sm);
}
.ch-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ch-ic { width: 44px; height: 44px; margin-bottom: 4px; }
.ch-card strong {
  font-size: 17px; font-weight: 700; letter-spacing: -.01em; color: var(--ink);
}
.ch-card span {
  font-family: var(--mono); font-size: 11px; letter-spacing: .06em;
  color: var(--muted);
}
.ch-wa  { background: #E9FBEF; border-color: transparent; }
.ch-msg { background: #EFE6FF; border-color: transparent; }
.ch-ig  { background: var(--pink); border-color: transparent; }
.ch-fb  { background: var(--sky); border-color: transparent; }
.ch-web { background: var(--butter); border-color: transparent; }

/* ============================================================
   PRODUCT / DASHBOARD MOCKUP
   ============================================================ */
.product {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px, 9vw, 100px) var(--pad);
}
.dash {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dash-sidebar {
  background: #FBF8F2;
  padding: 22px 16px;
  border-right: 1px solid var(--line);
}
.ds-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; color: var(--ink);
  margin-bottom: 22px; padding: 0 8px;
  letter-spacing: -.01em;
}
.dash-sidebar ul { display: flex; flex-direction: column; gap: 2px; }
.dash-sidebar li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 10px;
  font-size: 13.5px; color: var(--ink-2); font-weight: 500;
  cursor: default;
}
.dash-sidebar li span { font-size: 14px; width: 18px; text-align: center; }
.dash-sidebar li.active {
  background: var(--brand-soft); color: var(--brand); font-weight: 600;
}
.badge {
  margin-left: auto;
  background: var(--coral); color: #fff;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  padding: 2px 7px; border-radius: 999px;
  font-style: normal;
}
.dash-main { padding: 24px 24px 28px; min-width: 0; }
.dash-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.dash-head h4 {
  font-size: 18px; font-weight: 700; letter-spacing: -.01em;
}
.dash-head h4 span { color: var(--muted); font-weight: 500; }
.dash-stats { display: flex; gap: 22px; }
.dash-stats > div { display: flex; flex-direction: column; }
.dash-stats strong {
  font-size: 18px; font-weight: 800; letter-spacing: -.02em; color: var(--ink);
}
.dash-stats span {
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
  color: var(--muted); text-transform: uppercase;
}

.kanban {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.kb-col {
  background: #FBF8F2;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  min-height: 240px;
}
.kb-col header {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 6px 10px;
  font-size: 12px; font-weight: 700; color: var(--ink);
  border-bottom: 1px dashed var(--line);
  margin-bottom: 10px;
}
.kb-col header i {
  margin-left: auto;
  font-style: normal;
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); font-weight: 500;
  background: #fff; padding: 1px 7px; border-radius: 999px;
  border: 1px solid var(--line);
}
.kb-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.kb-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
  transition: transform .15s ease, box-shadow .15s ease;
}
.kb-card:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.kb-card.hot { border-color: #FFB39C; box-shadow: 0 0 0 2px #ffe2d2; }
.kb-card.booked { background: #F0FBF5; border-color: #C2EAD3; }
.kb-card.won { background: #EFE6FF; border-color: #DDD2F8; }
.kb-name {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  margin-bottom: 6px;
}
.kb-name em { color: var(--coral); font-weight: 700; margin-left: auto; }
.kb-meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--muted); font-weight: 500;
}
.kb-meta svg { width: 14px; height: 14px; flex-shrink: 0; }
.kb-bar {
  height: 4px; background: #ECE6FB; border-radius: 999px;
  margin-top: 8px; overflow: hidden;
}
.kb-bar i {
  display: block; height: 100%; background: var(--brand);
  border-radius: 999px;
}

/* Avatars */
.av {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-grid; place-items: center;
  font-style: normal; font-size: 10.5px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.av-1 { background: #6B5AE0; }
.av-2 { background: #FF7A5C; }
.av-3 { background: #1B7B3E; }
.av-4 { background: #C9437A; }
.av-5 { background: #2453C7; }
.av-6 { background: #B5582D; }

/* ============================================================
   FEATURE CARD MINI VISUALS
   ============================================================ */
.feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.7);
  color: var(--brand);
  display: grid; place-items: center;
  margin-bottom: 4px;
  box-shadow: 0 4px 10px -4px rgba(27,24,48,.08);
}
.feat-icon svg { width: 22px; height: 22px; }

.mini-kanban {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  margin-top: auto; padding-top: 14px;
}
.mini-kanban .mk-col {
  background: rgba(255,255,255,.55); border-radius: 8px;
  padding: 6px; display: flex; flex-direction: column; gap: 4px;
  min-height: 60px;
}
.mini-kanban i {
  display: block; height: 12px; border-radius: 4px;
  background: #C9C3D6;
}

.score-bars {
  margin-top: auto; padding-top: 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.score-bars > div {
  display: grid; grid-template-columns: 60px 1fr 28px; align-items: center; gap: 8px;
  font-size: 11.5px; color: var(--ink-2); font-weight: 500;
}
.score-bars .bar {
  height: 6px; background: rgba(255,255,255,.6); border-radius: 999px; overflow: hidden;
}
.score-bars .bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--brand), #8A7AFA);
  border-radius: 999px;
}
.score-bars b {
  font-family: var(--mono); font-size: 11px; color: var(--ink); text-align: right;
}

.kb-pills {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto; padding-top: 14px;
}
.kb-pills span {
  background: rgba(255,255,255,.7);
  padding: 5px 10px; border-radius: 999px;
  font-size: 11.5px; color: var(--ink-2); font-weight: 500;
}

.lang-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto; padding-top: 14px;
}
.lang-chips .lc {
  background: #fff; color: var(--brand);
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  box-shadow: 0 2px 6px rgba(27,24,48,.06);
}

.mini-cal {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  margin-top: auto; padding-top: 14px;
}
.mini-cal .mc-day {
  font-family: var(--mono); font-size: 9.5px;
  color: var(--muted); text-align: center; font-weight: 600;
}
.mini-cal > div:not(.mc-day) {
  aspect-ratio: 1; border-radius: 6px;
  background: rgba(255,255,255,.5);
}
.mini-cal .b { background: rgba(255,255,255,.85); }
.mini-cal .book {
  background: var(--brand); color: #fff;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700;
}

.flow-mini {
  display: flex; align-items: center; gap: 6px;
  margin-top: auto; padding-top: 14px;
  font-size: 11.5px;
}
.flow-mini span {
  background: rgba(255,255,255,.8);
  padding: 5px 10px; border-radius: 999px;
  font-weight: 600; color: var(--ink);
}
.flow-mini .fm-mid {
  background: var(--brand); color: #fff;
}
.fm-arr { width: 14px; height: 14px; color: var(--muted); flex-shrink: 0; }

.handoff-row {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto; padding-top: 14px;
}
.handoff-row .av { width: 36px; height: 36px; font-size: 13px; }
.ho-arrow { width: 18px; height: 18px; color: var(--muted); }

/* ============================================================
   QUOTE — avatar
   ============================================================ */
.q-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, #FF7A5C 100%);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 17px; letter-spacing: -.01em;
  margin: 0 auto 22px;
  box-shadow: 0 10px 24px -8px #6b5ae055;
}
.q-avatar span { display: block; }

/* ============================================================
   RESPONSIVE — new elements
   ============================================================ */
@media (max-width: 1024px) {
  .hero-visual { min-height: auto; margin-top: 30px; }
  .phone { margin: 0 auto; }
  .score-card { top: 10px; left: 10px; }
  .appt-card { bottom: 10px; left: 50%; transform: translateX(-50%); }
  .ch-grid { grid-template-columns: repeat(3, 1fr); }
  .dash { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .kanban { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .phone { width: 100%; max-width: 320px; }
  .score-card, .appt-card { position: relative; top: auto; left: auto; bottom: auto; transform: none; margin: 14px auto; }
  .ch-grid { grid-template-columns: repeat(2, 1fr); }
  .kanban { grid-template-columns: 1fr; }
  .dash-stats { gap: 14px; }
  .works-with { width: auto; flex-wrap: wrap; }
}
