/* ============ CLEO LANDING ============ */
:root {
  --ink: #0E0F1A;
  --ink-2: #1B1D2E;
  --ink-soft: #4A4D63;
  --mute: #6B6E85;
  --line: #E8E7F0;
  --bg: #FAFAFB;
  --card: #FFFFFF;
  --violet: #6B4EFF;
  --violet-2: #8B6BFF;
  --blue: #2C7BFF;
  --pink: #FF5FA8;
  --orange: #FF7A3D;
  --yellow: #FFD23F;
  --mint: #2BD4A4;
  --grad-primary: linear-gradient(135deg, #6B4EFF 0%, #2C7BFF 100%);
  --grad-warm: linear-gradient(135deg, #FF5FA8 0%, #FF7A3D 100%);
  --grad-soft: linear-gradient(180deg, #F4F1FF 0%, #EAF1FF 100%);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(20,20,40,0.06);
  --shadow-md: 0 14px 40px -12px rgba(40,30,90,0.18);
  --shadow-lg: 0 30px 80px -20px rgba(50,40,120,0.28);
  --font: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(250,250,251,0.78);
  border-bottom: 1px solid rgba(232,231,240,0.6);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 22px; letter-spacing: -0.02em;
}
.logo-icon {
  width: 34px; height: 34px; border-radius: 11px;
  background: var(--grad-primary);
  display: grid; place-items: center;
  position: relative;
  box-shadow: 0 6px 18px -4px rgba(107,78,255,0.5);
}
.logo-icon svg { width: 18px; height: 18px; }
.logo-word { color: #0E0F1A; font-size: 22px; font-weight: 800; letter-spacing: -0.03em; }
.logo-dot { color: var(--violet); }
.nav-links { display: flex; gap: 36px; font-weight: 500; color: var(--ink-soft); font-size: 15px; }
.nav-links a:hover { color: var(--ink); }
.nav-demo-link { color: var(--violet) !important; font-weight: 700 !important; }
.btn-outline-white { background: white; color: var(--ink); border: 1.5px solid var(--line); border-radius: 100px; padding: 10px 20px; font-size: 14px; font-weight: 700; transition: all 0.2s; }
.btn-outline-white:hover { border-color: var(--violet); color: var(--violet); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-primary); color: white;
  box-shadow: 0 10px 28px -8px rgba(107,78,255,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(107,78,255,0.65); }
.btn-ghost { color: var(--ink); }
.btn-ghost:hover { color: var(--violet); }
.btn-outline {
  background: white; color: var(--ink); border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--ink); }
.btn-lg { padding: 18px 30px; font-size: 16px; }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  padding: 90px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.6;
}
.blob-1 { width: 520px; height: 520px; background: #B6A6FF; top: -120px; left: -120px; animation: float 18s ease-in-out infinite; }
.blob-2 { width: 460px; height: 460px; background: #FFB1D1; top: 80px; right: -100px; animation: float 22s ease-in-out infinite reverse; }
.blob-3 { width: 380px; height: 380px; background: #A8D0FF; bottom: -160px; left: 30%; animation: float 26s ease-in-out infinite; }

@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-30px) scale(1.08); }
}

.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--radius-pill);
  background: white; border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(43,212,164,0.2); }
.eyebrow strong { color: var(--ink); font-weight: 700; }

.hero h1 {
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 1.02; letter-spacing: -0.035em;
  font-weight: 800;
  margin: 22px 0 22px;
  word-break: break-word;
}
.hero h1 .grad {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 .scribble { position: relative; display: inline-block; }
.hero h1 .scribble::after {
  content: ''; position: absolute; left: -4%; right: -4%; bottom: -2px; height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 8 Q 50 2 100 7 T 198 6' stroke='%23FFD23F' stroke-width='5' fill='none' stroke-linecap='round'/></svg>") no-repeat center/100% 100%;
  z-index: -1;
}

.hero .lede { font-size: 19px; color: var(--ink-soft); max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 24px; margin-top: 28px; color: var(--mute); font-size: 14px; font-weight: 500; }
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta svg { color: var(--mint); }

/* ===== HERO CHAT MOCK ===== */
.hero-mock {
  position: relative;
  transform: rotate(1.2deg);
}
.chat-card {
  background: white;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.8);
}
.chat-head {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 22px;
  background: var(--grad-primary);
  color: white;
}
.chat-avatar {
  width: 38px; height: 38px; border-radius: 12px;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(8px);
  display: grid; place-items: center; font-weight: 700;
  position: relative;
}
.chat-avatar::after {
  content: ''; position: absolute; right: -2px; bottom: -2px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--mint); border: 2px solid white;
}
.chat-name { font-weight: 700; font-size: 15px; }
.chat-status { font-size: 12px; opacity: 0.85; }
.chat-head-actions { margin-left: auto; display: flex; gap: 8px; opacity: 0.7; }

.chat-body {
  padding: 24px 22px;
  background: linear-gradient(180deg, #FBFAFF 0%, #FFFFFF 100%);
  min-height: 360px;
  display: flex; flex-direction: column; gap: 12px;
}
.bubble {
  max-width: 78%; padding: 12px 16px; border-radius: 18px;
  font-size: 14.5px; line-height: 1.45;
  animation: pop .4s ease backwards;
}
@keyframes pop { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: translateY(0); } }
.bubble.user {
  align-self: flex-end;
  background: var(--ink); color: white;
  border-bottom-right-radius: 6px;
}
.bubble.bot {
  align-self: flex-start;
  background: #F1EFFF;
  color: var(--ink);
  border-bottom-left-radius: 6px;
}
.bubble.bot.rich { padding: 14px; }
.bubble-card {
  background: white; border: 1px solid var(--line); border-radius: 12px;
  padding: 12px; margin-top: 8px; display: flex; align-items: center; gap: 12px;
}
.bubble-card .pkg-icon {
  width: 36px; height: 36px; border-radius: 10px; background: var(--grad-warm);
  display: grid; place-items: center; color: white; flex-shrink: 0;
}
.bubble-card .pkg-info { font-size: 13px; line-height: 1.35; }
.bubble-card .pkg-info b { display: block; }
.bubble-card .pkg-info span { color: var(--mute); }

.typing { display: inline-flex; gap: 4px; padding: 14px 16px; background: #F1EFFF; border-radius: 18px; border-bottom-left-radius: 6px; align-self: flex-start; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--violet); opacity: 0.5; animation: bounce 1.2s infinite ease-in-out; }
.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes bounce { 0%,100% { transform: translateY(0); opacity:.4; } 50% { transform: translateY(-5px); opacity:1; } }

.chat-input {
  display: flex; gap: 10px; align-items: center;
  padding: 14px 18px; border-top: 1px solid var(--line);
  background: white;
}
.chat-input input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: inherit; font-size: 14px; color: var(--ink);
}
.chat-input input::placeholder { color: var(--mute); }
.chat-send {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad-primary); color: white;
  display: grid; place-items: center;
  transition: transform .15s;
}
.chat-send:hover { transform: scale(1.06); }

.sticker {
  position: absolute;
  background: var(--yellow);
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 13px; font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  transform: rotate(-8deg);
  z-index: 2;
}
.sticker-1 { top: -18px; left: -22px; }
.sticker-2 { bottom: 38px; right: -28px; background: var(--mint); color: white; transform: rotate(6deg); display: flex; align-items: center; gap: 8px; }
.sticker-2 svg { width: 16px; height: 16px; }

/* ===== BADGES ===== */
.badges { padding: 30px 0 70px; }
.badges-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.badge {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 22px; background: white; border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s, box-shadow .2s;
}
.badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.badge-icon { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex-shrink: 0; }
.badge:nth-child(1) .badge-icon { background: linear-gradient(135deg,#FFE9DA,#FFD0A8); color: #C24800; }
.badge:nth-child(2) .badge-icon { background: linear-gradient(135deg,#E0F4E8,#B7E6C8); color: #0A6B3B; }
.badge:nth-child(3) .badge-icon { background: linear-gradient(135deg,#E6E0FF,#C7B8FF); color: #4A2DC9; }
.badge:nth-child(4) .badge-icon { background: linear-gradient(135deg,#DEEAFF,#B6CFFF); color: #1652C7; }
.badge-text { font-size: 14px; }
.badge-text b { display: block; font-weight: 700; font-size: 14.5px; }
.badge-text span { color: var(--mute); font-size: 12.5px; }

/* ===== SECTIONS ===== */
section { padding: 100px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block;
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: #EFEBFF; color: var(--violet);
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase;
  margin-bottom: 18px;
}
.section-head h2 { font-size: clamp(34px, 4.2vw, 52px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 800; word-break: break-word; }
.section-head h2 .grad { background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-head p { margin-top: 18px; font-size: 18px; color: var(--ink-soft); }

/* ===== PROBLEMS ===== */
.problems { background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card { padding: 32px 28px; background: var(--bg); border-radius: var(--radius-lg); border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.problem-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--grad-warm); color: white; display: grid; place-items: center; margin-bottom: 20px; box-shadow: 0 8px 20px -6px rgba(255,95,168,0.5); }
.problem-card:nth-child(2) .problem-icon { background: var(--grad-primary); box-shadow: 0 8px 20px -6px rgba(107,78,255,0.5); }
.problem-card:nth-child(3) .problem-icon { background: linear-gradient(135deg,#2BD4A4,#2C7BFF); box-shadow: 0 8px 20px -6px rgba(44,123,255,0.5); }
.problem-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.problem-card p { color: var(--ink-soft); font-size: 15.5px; }
.problem-card .arrow { margin-top: 18px; display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--violet); }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-card { background: white; border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--line); position: relative; }
.step-num { position: absolute; top: -22px; left: 28px; width: 56px; height: 56px; border-radius: 18px; background: var(--ink); color: white; display: grid; place-items: center; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; box-shadow: var(--shadow-md); }
.step-card:nth-child(1) .step-num { background: var(--grad-primary); }
.step-card:nth-child(2) .step-num { background: var(--grad-warm); }
.step-card:nth-child(3) .step-num { background: linear-gradient(135deg,#2BD4A4,#2C7BFF); }
.step-card h3 { font-size: 22px; font-weight: 700; margin: 18px 0 10px; letter-spacing: -0.02em; }
.step-card p { color: var(--ink-soft); font-size: 15.5px; }
.step-visual { margin-top: 22px; padding: 16px; border-radius: 14px; background: var(--bg); border: 1px solid var(--line); font-size: 13px; color: var(--ink-soft); }
.step-visual .connector-list { display: flex; flex-direction: column; gap: 8px; }
.step-visual .connector-row { display: flex; align-items: center; gap: 10px; padding: 8px 10px; background: white; border-radius: 9px; border: 1px solid var(--line); }
.step-visual .dot-ok { width: 18px; height: 18px; border-radius: 50%; background: var(--mint); display: grid; place-items: center; color: white; flex-shrink: 0; }
.kb { font-size: 11px; padding: 3px 7px; background: white; border: 1px solid var(--line); border-radius: 6px; color: var(--mute); font-family: 'SF Mono', monospace; }

/* ===== FEATURES ===== */
.features { background: white; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { padding: 30px; border-radius: var(--radius-lg); background: var(--bg); border: 1px solid var(--line); transition: transform .2s, box-shadow .2s, border-color .2s; }
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-ico { width: 48px; height: 48px; border-radius: 14px; background: white; border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 18px; color: var(--violet); }
.feature:nth-child(2) .feature-ico { color: var(--orange); }
.feature:nth-child(3) .feature-ico { color: var(--pink); }
.feature:nth-child(4) .feature-ico { color: var(--blue); }
.feature:nth-child(5) .feature-ico { color: var(--mint); }
.feature:nth-child(6) .feature-ico { color: #C24800; }
.feature h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: 15px; }

/* ===== DEMO ===== */
.demo { background: linear-gradient(180deg, #FAFAFB 0%, #F2EEFF 100%); }
.demo-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.demo-copy h2 { font-size: clamp(34px, 3.8vw, 48px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 800; }
.demo-copy p { font-size: 18px; color: var(--ink-soft); margin: 20px 0 28px; }
.demo-bullets { display: flex; flex-direction: column; gap: 14px; }
.demo-bullet { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.demo-bullet .check { width: 24px; height: 24px; border-radius: 50%; background: var(--grad-primary); color: white; display: grid; place-items: center; flex-shrink: 0; }
.demo-chat { background: white; border-radius: 26px; box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid white; display: flex; flex-direction: column; min-height: 540px; }
.demo-chat .chat-body { flex: 1; min-height: 380px; max-height: 440px; overflow-y: auto; }
.suggested-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 18px 12px; }
.chip { font-size: 12.5px; padding: 8px 12px; border-radius: var(--radius-pill); background: white; border: 1px solid var(--line); color: var(--ink-soft); font-weight: 500; cursor: pointer; transition: all .15s; }
.chip:hover { border-color: var(--violet); color: var(--violet); transform: translateY(-1px); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: white; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.t-card { padding: 32px; border-radius: var(--radius-lg); background: var(--bg); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 20px; }
.t-card:nth-child(2) { background: linear-gradient(160deg,#F1EBFF 0%,#E2EAFF 100%); border: none; }
.t-stars { display: flex; gap: 2px; color: #FFB400; }
.t-quote { font-size: 17px; line-height: 1.5; font-weight: 500; letter-spacing: -0.01em; }
.t-stat { align-self: flex-start; padding: 6px 12px; border-radius: var(--radius-pill); background: white; border: 1px solid var(--line); font-size: 13px; font-weight: 700; color: var(--violet); }
.t-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.t-card:nth-child(2) .t-author { border-top-color: rgba(255,255,255,0.5); }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-primary); color: white; display: grid; place-items: center; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.t-card:nth-child(2) .t-avatar { background: var(--grad-warm); }
.t-card:nth-child(3) .t-avatar { background: linear-gradient(135deg,#2BD4A4,#2C7BFF); }
.t-author b { display: block; font-size: 15px; }
.t-author span { font-size: 13px; color: var(--mute); }

/* ===== PRICING ===== */
.pricing { background: linear-gradient(180deg,#FAFAFB 0%,#FFFFFF 100%); }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.price-card { background: white; border-radius: var(--radius-lg); border: 1px solid var(--line); padding: 36px 32px; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; position: relative; }
.price-card.featured { background: linear-gradient(160deg,#1B1D2E 0%,#2D2154 100%); color: white; border: none; transform: scale(1.03); box-shadow: var(--shadow-lg), 0 0 0 2px #6B4EFF; }
.price-card:hover { transform: translateY(-3px); }
.price-card.featured:hover { transform: scale(1.03) translateY(-3px); }
.price-badge { position: absolute; top: -12px; left: 32px; padding: 6px 12px; border-radius: var(--radius-pill); background: var(--yellow); color: var(--ink); font-size: 12px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.plan-name { font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mute); }
.price-card.featured .plan-name { color: #B6A6FF; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 6px; }
.plan-price .amount { font-size: 52px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.plan-price .per { font-size: 15px; color: var(--mute); font-weight: 500; }
.price-card.featured .plan-price .per { color: #B6A6FF; }
.plan-desc { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 24px; }
.price-card.featured .plan-desc { color: #B6A6FF; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 24px; font-size: 14.5px; }
.plan-features li { display: flex; gap: 10px; align-items: flex-start; }
.plan-features li svg { flex-shrink: 0; color: var(--mint); margin-top: 3px; }
.price-card.featured .plan-features li svg { color: #B6A6FF; }
.plan-cta { display: flex; justify-content: center; padding: 14px; border-radius: var(--radius-pill); font-weight: 700; font-size: 15px; background: var(--bg); border: 1px solid var(--line); color: var(--ink); transition: all .2s; }
.plan-cta:hover { background: var(--ink); color: white; border-color: var(--ink); }
.price-card.featured .plan-cta { background: white; color: var(--ink); border-color: white; }
.price-card.featured .plan-cta:hover { background: var(--yellow); }

/* ===== FAQ ===== */
.faq { background: white; }
.faq-grid { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s, background .2s; }
.faq-item.open { background: white; border-color: var(--violet); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em; }
.faq-toggle { width: 32px; height: 32px; border-radius: 50%; background: white; border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; transition: transform .3s, background .2s; }
.faq-item.open .faq-toggle { background: var(--grad-primary); color: white; border-color: transparent; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; padding: 0 26px; color: var(--ink-soft); font-size: 15.5px; transition: max-height .35s ease, padding .25s; }
.faq-item.open .faq-a { max-height: 240px; padding: 0 26px 22px; }

/* ===== FINAL CTA ===== */
.final-cta { padding: 90px 0; }
.final-cta-inner { background: linear-gradient(135deg,#6B4EFF 0%,#B14EFF 50%,#FF5FA8 100%); border-radius: 36px; padding: 90px 60px; text-align: center; position: relative; overflow: hidden; color: white; }
.final-cta-inner::before, .final-cta-inner::after { content: ''; position: absolute; border-radius: 50%; filter: blur(60px); }
.final-cta-inner::before { width: 380px; height: 380px; background: rgba(255,210,63,0.4); top: -80px; left: -80px; }
.final-cta-inner::after { width: 320px; height: 320px; background: rgba(44,123,255,0.4); bottom: -120px; right: -80px; }
.final-cta h2 { font-size: clamp(36px,4.6vw,60px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.02; position: relative; z-index: 1; word-break: break-word; }
.final-cta p { font-size: 19px; opacity: 0.92; margin: 22px auto 36px; max-width: 580px; position: relative; z-index: 1; }
.final-cta .btn { position: relative; z-index: 1; }
.final-cta .btn-light { background: white; color: var(--ink); }
.final-cta .btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(0,0,0,0.4); }
.final-cta-meta { display: flex; gap: 24px; justify-content: center; margin-top: 26px; font-size: 14px; opacity: 0.9; position: relative; z-index: 1; flex-wrap: wrap; }
.final-cta-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ===== FOOTER ===== */
footer { background: var(--ink); color: white; padding: 70px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { color: white; }
.footer-brand p { margin-top: 16px; color: rgba(255,255,255,0.6); font-size: 14.5px; max-width: 320px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.footer-col a { display: block; color: rgba(255,255,255,0.8); font-size: 15px; padding: 7px 0; transition: color .15s; }
.footer-col a:hover { color: white; }
.footer-bot { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 13.5px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 12px; }
.powered { display: inline-flex; align-items: center; gap: 8px; }
.powered .a-logo { width: 18px; height: 18px; border-radius: 5px; background: #D97757; display: grid; place-items: center; color: white; font-weight: 800; font-size: 11px; }

/* ===== RESPONSIVE ===== */
/* ============ DASHBOARD SECTION ============ */
.dashboard-section { background: var(--surface); }

.db-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 56px;
}

/* Mockup */
.db-mock {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(107,78,255,0.12);
  background: white;
}

.db-sidebar {
  width: 140px;
  background: #0E0F1A;
  padding: 18px 12px;
  flex-shrink: 0;
}

.db-logo {
  font-size: 16px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.db-logo span { color: #6B4EFF; }

.db-shop-name {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.db-nav-items { display: flex; flex-direction: column; gap: 3px; }

.db-nav {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  padding: 7px 8px;
  border-radius: 7px;
  font-weight: 500;
}

.db-nav.active {
  background: linear-gradient(135deg, #6B4EFF, #2C7BFF);
  color: white;
  font-weight: 600;
}

.db-content { flex: 1; padding: 16px; background: #F4F3FA; }

.db-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 10px; }

.db-stat {
  background: white;
  border: 1px solid #E8E7F0;
  border-radius: 10px;
  padding: 10px;
}
.db-stat.violet .db-stat-val { color: #6B4EFF; }
.db-stat-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; color: #8E8BA8; margin-bottom: 4px; }
.db-stat-val { font-size: 20px; font-weight: 800; color: #0E0F1A; letter-spacing: -0.5px; line-height: 1; }
.db-stat-sub { font-size: 9px; color: #8E8BA8; margin-top: 3px; }

.db-quota-bar-bg { height: 6px; background: #E8E7F0; border-radius: 100px; overflow: hidden; margin-bottom: 12px; }
.db-quota-bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, #6B4EFF, #2C7BFF); }

.db-faq-preview { background: white; border-radius: 10px; border: 1px solid #E8E7F0; padding: 12px; }
.db-faq-title { font-size: 10px; font-weight: 700; color: #0E0F1A; margin-bottom: 8px; }
.db-faq-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #4A4D63;
  padding: 6px 0;
  border-bottom: 1px solid #F4F3FA;
}
.db-faq-row:last-child { border-bottom: none; }
.db-faq-tag {
  font-size: 9px;
  font-weight: 700;
  color: #6B4EFF;
  background: #F0EDFF;
  padding: 2px 7px;
  border-radius: 100px;
  flex-shrink: 0;
}

/* Benefits */
.db-benefits { display: flex; flex-direction: column; gap: 24px; }

.db-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.db-benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--violet-bg, #F0EDFF);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.db-benefit h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.db-benefit p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

@media (max-width: 980px) {
  section { padding: 70px 0; }
  .hero { padding: 60px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .demo-inner { grid-template-columns: 1fr; gap: 40px; }
  .badges-inner { grid-template-columns: repeat(2,1fr); }
  .problem-grid, .steps-grid, .feature-grid, .t-grid, .price-grid { grid-template-columns: 1fr; }
  .db-layout { grid-template-columns: 1fr; gap: 36px; }
  .db-mock { display: none; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-3px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .final-cta-inner { padding: 60px 30px; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .badges-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .sticker-1, .sticker-2 { display: none; }
}
