/* ==========================================================================
   iblesschatbot — Modern / Tech theme
   ========================================================================== */

:root {
  --bg: #06070d;
  --bg-soft: #0b0e1a;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f6fc;
  --text-dim: #a2a9c4;
  --text-faint: #6b7290;
  --brand-1: #6d5efc;
  --brand-2: #22d3ee;
  --brand-3: #34e0a1;
  --brand-1-rgb: 109, 94, 252;
  --brand-2-rgb: 34, 211, 238;
  --gradient: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(109, 94, 252, 0.18), rgba(34, 211, 238, 0.18));
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-glow: 0 0 90px rgba(109, 94, 252, 0.28);
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--text-dim); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { position: relative; padding: 120px 0; }
.section--tight { padding: 90px 0; }

.text-center { text-align: center; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Sora", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-2);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 12px rgba(var(--brand-2-rgb), 0.9);
}

.section-head { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head p { font-size: 17px; }

/* ---------- Background FX ---------- */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.bg-fx::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
}
.blob-1 { width: 560px; height: 560px; top: -180px; left: -140px; background: var(--brand-1); }
.blob-2 { width: 620px; height: 620px; top: 10%; right: -220px; background: var(--brand-2); opacity: 0.35; }
.blob-3 { width: 480px; height: 480px; bottom: -180px; left: 30%; background: var(--brand-3); opacity: 0.22; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #060712;
  box-shadow: 0 12px 30px -8px rgba(109, 94, 252, 0.65);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -6px rgba(109, 94, 252, 0.8); }
.btn-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { border-color: var(--border-strong); transform: translateY(-2px); background: var(--surface-strong); }
.btn-sm { padding: 10px 20px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 20px 0;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.is-scrolled {
  padding: 12px 0;
  background: rgba(6, 7, 13, 0.78);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: "Sora", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
#navActionsMobile { display: none; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 991px) {
  .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 84vw); flex-direction: column; justify-content: center; gap: 26px; background: rgba(9, 11, 20, 0.98); border-left: 1px solid var(--border); transition: right 0.35s ease; }
  .nav-links.is-open { right: 0; }
  .navbar > .container > .nav-actions { display: none; }
  #navActionsMobile.is-open { display: flex; position: fixed; bottom: 40px; right: calc(min(320px, 84vw) / 2); transform: translateX(50%); z-index: 501; }
  .nav-toggle { display: inline-flex; z-index: 502; }
}

/* ---------- Hero ---------- */
.hero { padding: 180px 0 120px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(36px, 5.2vw, 60px); margin-bottom: 24px; }
.hero-lead { font-size: 18.5px; max-width: 520px; margin-bottom: 36px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat b { display: block; font-family: "Sora", sans-serif; font-size: 26px; }
.hero-stat span { font-size: 13px; color: var(--text-faint); }

.hero-visual { position: relative; }
.hero-shot {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 6px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-glow);
}
.hero-shot img { border-radius: calc(var(--radius-lg) - 6px); width: 100%; }
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(14, 16, 28, 0.85);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(14px);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.6);
  animation: floaty 5s ease-in-out infinite;
}
.float-chip i { font-size: 16px; }
.chip-a { top: -6%; right: -8%; color: var(--brand-3); animation-delay: 0.4s; }
.chip-b { bottom: 10%; left: -10%; color: var(--brand-2); animation-delay: 1.2s; }
.chip-c { bottom: -6%; right: 8%; color: var(--brand-1); animation-delay: 2s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Channels strip ---------- */
.channels-strip { padding: 50px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.channels-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.channels-strip .label { font-family: "Sora", sans-serif; font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
.channel-icons { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.channel-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 21px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.channel-icon:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.channel-icon.whatsapp { color: #34e0a1; }
.channel-icon.instagram { color: #f472b6; }
.channel-icon.messenger { color: #6d5efc; }
.channel-icon.telegram { color: #22d3ee; }
.channel-icon.webchat { color: #facc15; }

/* ---------- Cards / features ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(var(--brand-2-rgb), 0.45); background: var(--surface-strong); }

.icon-badge {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  font-size: 22px;
  color: var(--brand-2);
  margin-bottom: 22px;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card h5 { font-size: 19px; margin-bottom: 10px; }
.card p { font-size: 14.5px; margin: 0; }

/* ---------- Split (about / overview) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-media { position: relative; }
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  padding: 26px;
}
.media-frame::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  background: var(--gradient);
  filter: blur(120px);
  opacity: 0.28;
  top: -60px; left: -60px;
  z-index: 0;
}
.media-frame img { position: relative; z-index: 1; }

.feature-row { display: flex; gap: 18px; margin-bottom: 24px; }
.feature-row .icon-badge { flex-shrink: 0; margin-bottom: 0; width: 46px; height: 46px; border-radius: 13px; font-size: 18px; }
.feature-row h5 { margin-bottom: 4px; font-size: 17px; }
.feature-row p { margin: 0; font-size: 14.5px; }

/* ---------- Numbered steps (overview) ---------- */
.step-row { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; padding: 70px 0; }
.step-row:not(:last-child) { border-bottom: 1px solid var(--border); }
.step-row.reverse .step-media { order: 2; }
.step-num {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.step-num::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gradient);
}
.step-content h3 { font-size: 26px; margin-bottom: 14px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tag-chip {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

/* ---------- Process / stepper ---------- */
.stepper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; margin-top: 20px; }
.stepper::before {
  content: "";
  position: absolute;
  top: 27px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.step-item { position: relative; text-align: center; padding: 0 10px; }
.step-circle {
  width: 56px; height: 56px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  z-index: 1;
}
.step-item.is-active .step-circle { background: var(--gradient); color: #06070d; border-color: transparent; }
.step-item h5 { font-size: 17px; margin-bottom: 8px; }
.step-item p { font-size: 14px; max-width: 260px; margin: 0 auto; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.is-featured {
  border-color: rgba(var(--brand-2-rgb), 0.55);
  background: linear-gradient(180deg, rgba(109, 94, 252, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow: 0 30px 60px -20px rgba(109, 94, 252, 0.45);
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient);
  color: #06070d;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-name { font-family: "Sora", sans-serif; font-size: 20px; margin-bottom: 6px; }
.price-sub { font-size: 13.5px; color: var(--text-faint); margin-bottom: 24px; }
.price-value { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price-value .currency { font-size: 16px; font-weight: 600; color: var(--text-dim); }
.price-value .amount { font-family: "Sora", sans-serif; font-size: 40px; font-weight: 700; }
.price-value .period { font-size: 13.5px; color: var(--text-faint); }
.price-extra { font-size: 13px; color: var(--text-faint); margin-bottom: 26px; }
.price-features { flex: 1; margin-bottom: 30px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text-dim); padding: 9px 0; border-bottom: 1px dashed var(--border); }
.price-features li:last-child { border-bottom: none; }
.price-features i { color: var(--brand-3); margin-top: 3px; font-size: 13px; }

/* ---------- Testimonials ---------- */
.testi-track-wrap { overflow: hidden; }
.testi-track { display: flex; gap: 24px; transition: transform 0.5s ease; }
.testi-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
}
.testi-stars { color: #facc15; font-size: 13px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-quote { font-size: 15.5px; color: var(--text); margin-bottom: 22px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-person img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi-person b { display: block; font-size: 14.5px; font-family: "Sora", sans-serif; }
.testi-person span { font-size: 12.5px; color: var(--text-faint); }
.testi-nav { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.testi-nav button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.testi-nav button:hover { border-color: var(--border-strong); background: var(--surface-strong); }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 70px 56px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.22), rgba(34, 211, 238, 0.14));
  border: 1px solid var(--border-strong);
  text-align: center;
}
.cta-banner h2 { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 14px; }
.cta-banner p { max-width: 560px; margin: 0 auto 32px; font-size: 16.5px; }
.cta-banner .btn-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 60px; }
.footer-brand img { height: 34px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; max-width: 280px; }
.footer h6 { font-family: "Sora", sans-serif; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14.5px; color: var(--text-dim); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--brand-2); }
.footer-contact li { font-size: 14.5px; color: var(--text-dim); margin-bottom: 12px; display: flex; gap: 10px; }
.footer-contact i { color: var(--brand-2); margin-top: 3px; }
.newsletter-form { display: flex; margin-top: 6px; border: 1px solid var(--border); border-radius: 999px; padding: 6px; background: var(--surface); }
.newsletter-form input { flex: 1; background: transparent; border: none; outline: none; color: var(--text); padding: 10px 16px; font-size: 14px; }
.newsletter-form button { border: none; background: var(--gradient); color: #06070d; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 30px; border-top: 1px solid var(--border); font-size: 13.5px; color: var(--text-faint); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: border-color 0.2s ease, transform 0.2s ease; }
.footer-social a:hover { border-color: var(--border-strong); transform: translateY(-3px); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #06070d;
  display: flex; align-items: center; justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 400;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 14px 30px -8px rgba(109, 94, 252, 0.7);
}
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ---------- Original illustrations (replace stock photos) ---------- */
.media-frame--open { overflow: visible; }

.illustration { position: relative; width: 100%; aspect-ratio: 1 / 1; }
.illustration.is-wide { aspect-ratio: 6 / 5; }
.illustration .connector-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }

/* Hub + spoke (about / integrations) */
.hub-node {
  position: absolute; left: 50%; top: 50%;
  width: 22%; aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(20px, 6cqw, 30px);
  color: #06070d;
  box-shadow: 0 0 60px rgba(109, 94, 252, 0.55);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.orbit-ring { position: absolute; inset: 10%; border: 1px dashed var(--border-strong); border-radius: 50%; z-index: 0; }

.spoke-node {
  position: absolute;
  width: 15%; aspect-ratio: 1 / 1;
  border-radius: 30%;
  background: rgba(12, 14, 26, 0.92);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(14px, 4cqw, 21px);
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.65);
}
.spoke-node.wa { color: #34e0a1; }
.spoke-node.ig { color: #f472b6; }
.spoke-node.ms { color: #6d5efc; }
.spoke-node.tg { color: #22d3ee; }
.spoke-node.wc { color: #facc15; }

.spoke-pill {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(12, 14, 26, 0.92);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.65);
}
.spoke-pill i { font-size: 13px; color: var(--brand-2); }

/* Flow / routing illustration */
.flow-source {
  position: absolute; left: 16%; top: 50%;
  width: 20%; aspect-ratio: 1 / 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--gradient-soft);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(18px, 5cqw, 26px);
  color: var(--brand-2);
  z-index: 2;
}
.flow-card {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(12, 14, 26, 0.92);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.65);
}
.flow-card .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.flow-card .dot.mint { background: var(--brand-3); box-shadow: 0 0 10px var(--brand-3); }
.flow-card .dot.cyan { background: var(--brand-2); box-shadow: 0 0 10px var(--brand-2); }
.flow-card .dot.violet { background: var(--brand-1); box-shadow: 0 0 10px var(--brand-1); }

/* Dashboard mockup */
.dash-mock { display: flex; flex-direction: column; gap: 22px; }
.dash-mock__head { display: flex; align-items: center; justify-content: space-between; font-family: "Sora", sans-serif; font-weight: 700; font-size: 15px; }
.live-dot { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: var(--brand-3); text-transform: uppercase; letter-spacing: 0.06em; }
.live-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-3); box-shadow: 0 0 10px var(--brand-3); animation: pulse-dot 1.6s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.dash-mock__row { display: flex; align-items: center; gap: 24px; }
.bar-chart { flex: 1; display: flex; align-items: flex-end; gap: 10px; height: 130px; }
.bar-chart span { flex: 1; border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, var(--brand-2), var(--brand-1)); opacity: 0.85; }
.bar-chart span:last-child { background: linear-gradient(180deg, var(--brand-3), var(--brand-2)); opacity: 1; }

.ring-chart {
  flex-shrink: 0;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: conic-gradient(var(--brand-2) 0deg 331deg, rgba(255, 255, 255, 0.08) 331deg 360deg);
  display: flex; align-items: center; justify-content: center;
}
.ring-chart__inner {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.dash-mock__stats { display: flex; gap: 12px; }
.dash-mock__stats > div {
  flex: 1;
  padding: 14px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: flex; flex-direction: column; gap: 6px;
}
.dash-mock__stats i { color: var(--brand-2); margin-bottom: 2px; }
.dash-mock__stats span { font-family: "Inter", sans-serif; font-weight: 500; font-size: 11.5px; color: var(--text-faint); }

/* App / chat mockup (hero) */
.app-mock {
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  background: #0b0d18;
  border: 1px solid var(--border-strong);
}
.app-mock__bar { display: flex; align-items: center; gap: 8px; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.app-mock__bar .dot { width: 9px; height: 9px; border-radius: 50%; }
.app-mock__bar .dot-r { background: #ff5f57; }
.app-mock__bar .dot-y { background: #febc2e; }
.app-mock__bar .dot-g { background: #28c840; }
.app-mock__url {
  margin-left: 10px;
  flex: 1;
  font-size: 11.5px;
  color: var(--text-faint);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 5px 14px;
}
.app-mock__body { display: flex; min-height: 300px; }
.app-mock__sidebar {
  width: 60px;
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 18px 0;
  border-right: 1px solid var(--border);
}
.mini-icon {
  width: 36px; height: 36px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 15px;
}
.mini-icon.wa { color: #34e0a1; }
.mini-icon.ig { color: #f472b6; }
.mini-icon.ms { color: #6d5efc; }
.mini-icon.tg { color: #22d3ee; }
.mini-icon.wc { color: #facc15; }

.app-mock__chat { flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 12px; justify-content: flex-end; }
.bubble { max-width: 78%; padding: 11px 15px; border-radius: 14px; font-size: 13.5px; line-height: 1.4; }
.bubble-in { align-self: flex-start; background: var(--surface-strong); border: 1px solid var(--border); border-bottom-left-radius: 4px; color: var(--text-dim); }
.bubble-out { align-self: flex-end; background: var(--gradient); color: #06070d; font-weight: 500; border-bottom-right-radius: 4px; }
.typing { align-self: flex-start; display: flex; gap: 5px; padding: 13px 16px; border-radius: 14px; border-bottom-left-radius: 4px; background: var(--surface-strong); border: 1px solid var(--border); }
.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--text-faint); animation: bounce-dot 1.2s infinite ease-in-out; }
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce-dot { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }

/* Testimonial initials avatar */
.avatar-badge {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #06070d;
  flex-shrink: 0;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.1s; }
.reveal-delay-2.in-view { transition-delay: 0.2s; }
.reveal-delay-3.in-view { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto 20px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-media { order: -1; }
  .step-row { grid-template-columns: 1fr; gap: 34px; padding: 46px 0; }
  .step-row.reverse .step-media { order: -1; }
  .grid-3, .grid-4, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-card { flex: 0 0 calc(100% - 0px); }
}

@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .hero { padding: 140px 0 70px; }
  .grid-3, .grid-4, .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .channels-strip .container { justify-content: center; text-align: center; }
  .stepper { grid-template-columns: 1fr; gap: 40px; }
  .stepper::before { display: none; }
  .cta-banner { padding: 50px 24px; }
}
