/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1F2937;
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Design tokens ── */
:root {
  --purple-dark:  #3D0B7D;
  --purple:       #6B1E9A;
  --purple-mid:   #8B4789;
  --purple-light: #B066C9;
  --orange:       #FF7A00;
  --orange-light: #FFA133;
  --green:        #00C851;
  --blue:         #0052CC;
  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.14);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.18);
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

/* ── Utility ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }
.text-purple { color: var(--purple); }
.text-orange { color: var(--orange); }
.badge {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--purple);
  background: rgba(107,30,154,.1);
  border: 1px solid rgba(107,30,154,.2);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto 52px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: .95rem; font-weight: 700;
  padding: 14px 28px;
  border-radius: 99px; border: none; cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  box-shadow: 0 4px 18px rgba(255,122,0,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,122,0,.5); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline-purple {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline-purple:hover { background: var(--purple); color: #fff; }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  background: rgba(61,11,125,.92);
  backdrop-filter: blur(14px);
  transition: padding .2s;
}
#nav.scrolled { padding: 10px 0; box-shadow: 0 2px 20px rgba(0,0,0,.25); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img { width: 38px; height: 38px; border-radius: 8px; }
.nav-logo-text {
  font-size: 1.2rem; font-weight: 800; color: #fff;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.78);
  padding: 8px 14px; border-radius: 8px;
  transition: all .15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  color: #fff; font-size: 1.4rem; padding: 4px;
}
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99;
  background: var(--purple-dark);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.4rem; font-weight: 700; color: #fff; }
.mobile-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#hero {
  background: linear-gradient(140deg, #3D0B7D 0%, #6B1E9A 50%, #8B4789 100%);
  padding: 130px 0 80px;
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: var(--orange-light);
  background: rgba(255,161,51,.12);
  border: 1px solid rgba(255,161,51,.25);
  padding: 6px 14px; border-radius: 99px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; line-height: 1.12;
  color: #fff;
  margin-bottom: 22px;
}
.hero-title span { color: var(--orange-light); }
.hero-sub {
  font-size: 1.12rem; color: rgba(255,255,255,.82);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 12px;
  margin-top: 32px;
  font-size: .82rem; color: rgba(255,255,255,.6);
}
.hero-trust-icons { display: flex; gap: -4px; }
.hero-trust-icons span {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg,#fff2,#fff1);
  border: 2px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: rgba(255,255,255,.8);
}
.hero-image-wrap {
  display: flex; justify-content: center; align-items: center; position: relative;
}
.hero-image-wrap img {
  width: 100%; max-width: 420px;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.hero-badge-pill {
  position: absolute;
  background: #fff; color: var(--purple-dark);
  font-size: .78rem; font-weight: 700;
  padding: 8px 14px; border-radius: 99px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.hero-badge-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.pill-1 { bottom: 14%; left: -18%; }
.pill-2 { top: 14%; right: -12%; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LOGOS / TRUST BAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#trust {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 32px 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-label { font-size: .8rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; }
.trust-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: .95rem; font-weight: 700; color: var(--gray-500);
  opacity: .7;
  transition: opacity .2s;
}
.trust-logo:hover { opacity: 1; }
.trust-logo i { font-size: 1.2rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROBLEM
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#problem { background: #fff; }
.problem-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
  margin-top: 52px;
}
.problem-card {
  padding: 32px; border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  position: relative;
}
.problem-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg,#f3e8ff,#ede9fe);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--purple);
  margin-bottom: 18px;
}
.problem-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.problem-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.6; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BOT TYPES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#bots { background: var(--gray-50); }
.bots-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.bot-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  overflow: hidden;
  transition: all .22s ease;
  cursor: default;
}
.bot-card:hover { border-color: var(--purple-light); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bot-card-header {
  padding: 28px 28px 22px;
  display: flex; align-items: center; gap: 16px;
}
.bot-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.bot-icon-simple { background: linear-gradient(135deg,#E9D5FF,#C4B5FD); color: #5B21B6; }
.bot-icon-flow   { background: linear-gradient(135deg,#BFDBFE,#93C5FD); color: #1D4ED8; }
.bot-icon-ai     { background: linear-gradient(135deg,#D1FAE5,#6EE7B7); color: #065F46; }
.bot-card-header h3 { font-size: 1.1rem; font-weight: 800; }
.bot-card-header .sub { font-size: .8rem; color: var(--gray-500); margin-top: 2px; }
.bot-badge { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 3px 9px; border-radius: 99px; display: inline-block; margin-top: 4px; }
.bot-badge-new  { background: #FEF3C7; color: #92400E; }
.bot-badge-pop  { background: #EDE9FE; color: #4C1D95; }
.bot-badge-adv  { background: #D1FAE5; color: #065F46; }
.bot-card-body { padding: 0 28px 28px; }
.bot-card-body p { font-size: .9rem; color: var(--gray-500); margin-bottom: 20px; line-height: 1.6; }
.bot-feats { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.bot-feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--gray-700);
}
.bot-feats li i { font-size: .75rem; color: var(--purple); margin-top: 3px; flex-shrink: 0; }
.bot-card-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between;
}
.bot-card-footer a { font-size: .85rem; font-weight: 600; color: var(--purple); display: flex; align-items: center; gap: 5px; }
.bot-card-footer a:hover { gap: 8px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FEATURES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#features { background: #fff; }
.feat-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.feat-item {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all .2s;
}
.feat-item:hover { border-color: var(--purple-light); box-shadow: var(--shadow-md); }
.feat-item-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 16px;
  background: linear-gradient(135deg,#f5f3ff,#ede9fe);
  color: var(--purple);
}
.feat-item h4 { font-size: .97rem; font-weight: 700; margin-bottom: 8px; }
.feat-item p  { font-size: .87rem; color: var(--gray-500); line-height: 1.58; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CHANNELS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#channels { background: var(--gray-50); }
.channels-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.channels-list { display: flex; flex-direction: column; gap: 16px; }
.channel-row {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--gray-200);
  padding: 16px 20px; border-radius: var(--radius);
  transition: all .18s;
}
.channel-row:hover { border-color: var(--purple-light); transform: translateX(4px); }
.channel-row-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.ch-wa     { background: #D1FAE5; color: #128C4E; }
.ch-ig     { background: #FDF2F8; color: #C13584; }
.ch-fb     { background: #EFF6FF; color: #1877F2; }
.ch-tg     { background: #E0F2FE; color: #0284C7; }
.ch-lc     { background: #F0FDF4; color: #16A34A; }

.channel-row-featured {
  border-color: #25D366;
  background: linear-gradient(to right, #F0FDF4, #fff);
  box-shadow: 0 2px 12px rgba(37,211,102,.15);
}
.channel-row-featured .channel-row-icon.ch-wa {
  background: #25D366; color: #fff;
}
.channel-row-featured h4 { color: #128C4E; }
.channel-row-info h4 { font-size: .92rem; font-weight: 700; }
.channel-row-info p  { font-size: .8rem; color: var(--gray-500); }
.channels-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(140deg,#3D0B7D,#8B4789);
  padding: 40px 32px; color: #fff;
  box-shadow: var(--shadow-xl);
}
.mock-chat { display: flex; flex-direction: column; gap: 12px; }
.mock-msg {
  display: flex; gap: 10px; align-items: flex-end;
}
.mock-msg.bot { flex-direction: row; }
.mock-msg.user { flex-direction: row-reverse; }
.mock-bubble {
  max-width: 78%; padding: 10px 15px;
  font-size: .83rem; line-height: 1.5; border-radius: 16px;
}
.mock-msg.bot  .mock-bubble { background: rgba(255,255,255,.18); color: #fff; border-bottom-left-radius: 4px; }
.mock-msg.user .mock-bubble { background: #fff; color: var(--purple-dark); border-bottom-right-radius: 4px; }
.mock-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; flex-shrink: 0;
}
.mock-buttons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.mock-btn {
  font-size: .75rem; padding: 6px 12px; border-radius: 99px;
  background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.3); cursor: pointer;
  transition: background .15s;
}
.mock-btn:hover { background: rgba(255,255,255,.25); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRICING
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#pricing { background: var(--gray-50); }
.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 48px;
}
.pricing-toggle span { font-size: .9rem; font-weight: 600; color: var(--gray-500); }
.pricing-toggle span.active { color: var(--gray-900); }
.toggle-switch {
  position: relative; width: 52px; height: 28px;
  background: var(--purple); border-radius: 99px;
  cursor: pointer; transition: background .2s;
}
.toggle-switch::after {
  content: ''; position: absolute;
  width: 22px; height: 22px; top: 3px; left: 3px;
  background: #fff; border-radius: 50%;
  transition: transform .2s;
}
.toggle-switch.annual::after { transform: translateX(24px); }
.annual-badge {
  font-size: .72rem; font-weight: 700;
  color: var(--green); background: rgba(0,200,81,.1);
  border: 1px solid rgba(0,200,81,.25);
  padding: 2px 8px; border-radius: 99px;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.plan-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  padding: 32px 24px;
  display: flex; flex-direction: column;
  transition: all .22s;
}
.plan-card:hover { border-color: var(--purple-light); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.plan-card.popular {
  border-color: var(--purple);
  background: linear-gradient(160deg,#faf5ff 0%,#fff 60%);
  position: relative;
}
.plan-popular-label {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  background: var(--purple); color: #fff;
  padding: 4px 16px; border-radius: 99px;
}
.plan-name { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--purple); margin-bottom: 12px; }
.plan-price { margin-bottom: 6px; }
.plan-price-amount { font-size: 2.2rem; font-weight: 900; color: var(--gray-900); }
.plan-price-cur { font-size: 1.1rem; font-weight: 700; vertical-align: top; margin-top: 6px; display: inline-block; }
.plan-price-period { font-size: .82rem; color: var(--gray-500); }
.plan-desc { font-size: .85rem; color: var(--gray-500); margin-bottom: 24px; line-height: 1.5; }
.plan-divider { height: 1px; background: var(--gray-200); margin-bottom: 20px; }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-feats li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .86rem; color: var(--gray-700);
}
.plan-feats li i { font-size: .75rem; margin-top: 3px; flex-shrink: 0; }
.plan-feats li .check { color: var(--green); }
.plan-feats li .cross { color: var(--gray-500); }
.plan-cta { margin-top: 24px; width: 100%; justify-content: center; border-radius: var(--radius); }
.plan-cta-primary {
  background: linear-gradient(135deg,var(--purple),var(--purple-mid));
  color: #fff; border: none;
  box-shadow: 0 4px 16px rgba(107,30,154,.3);
}
.plan-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107,30,154,.4); }
.plan-cta-outline {
  background: transparent; color: var(--purple);
  border: 2px solid var(--purple-light);
}
.plan-cta-outline:hover { background: rgba(107,30,154,.05); }
.plan-annual-price { display: none; }
.annual-mode .plan-monthly-price { display: none; }
.annual-mode .plan-annual-price  { display: block; }
.plan-price-was {
  display: block;
  font-size: .82rem; font-weight: 600;
  color: var(--gray-500);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.plan-price-off {
  display: inline-block;
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .05em;
  color: #fff;
  background: var(--green);
  padding: 2px 8px; border-radius: 99px;
  margin-left: 6px;
  vertical-align: middle;
}
.plan-price-note {
  font-size: .78rem; color: var(--gray-500);
  margin-top: 4px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   B24 NON-USER CTA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#nonuser {
  background: linear-gradient(135deg,#3D0B7D 0%,#6B1E9A 100%);
  color: #fff;
  padding: 80px 0;
}
.nonuser-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.nonuser-eyebrow {
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: var(--orange-light); margin-bottom: 18px;
}
.nonuser-title { font-size: clamp(1.6rem,3.5vw,2.2rem); font-weight: 800; line-height: 1.18; margin-bottom: 18px; }
.nonuser-text { font-size: 1rem; color: rgba(255,255,255,.78); margin-bottom: 32px; line-height: 1.65; }
.nonuser-steps { display: flex; flex-direction: column; gap: 18px; }
.nonuser-step {
  display: flex; gap: 16px; align-items: flex-start;
}
.nonuser-step-num {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(255,255,255,.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800; color: var(--orange-light);
  border: 1.5px solid rgba(255,161,51,.4);
}
.nonuser-step-text h4 { font-size: .95rem; font-weight: 700; }
.nonuser-step-text p  { font-size: .85rem; color: rgba(255,255,255,.65); margin-top: 2px; }
.nonuser-ctas { display: flex; flex-direction: column; gap: 12px; }
.nonuser-cta-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 24px; border-radius: var(--radius);
  transition: all .2s;
}
.nonuser-cta-card:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.nonuser-cta-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.nonuser-cta-card p  { font-size: .85rem; color: rgba(255,255,255,.65); margin-bottom: 14px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#testimonials { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  padding: 28px; border-radius: var(--radius-lg);
}
.testimonial-stars { color: #F59E0B; font-size: .9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: .92rem; color: var(--gray-700); line-height: 1.65; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg,var(--purple),var(--purple-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: .9rem;
}
.testimonial-author-info h5 { font-size: .88rem; font-weight: 700; }
.testimonial-author-info span { font-size: .78rem; color: var(--gray-500); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#faq { background: var(--gray-50); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer;
  font-size: .97rem; font-weight: 600;
  user-select: none;
  transition: background .15s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-q i { font-size: .85rem; color: var(--purple); transition: transform .2s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 24px;
  font-size: .9rem; color: var(--gray-500); line-height: 1.65;
  transition: all .3s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FINAL CTA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#final-cta {
  background: linear-gradient(135deg,#3D0B7D,#8B4789);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
#final-cta::after {
  content: '';
  position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 200px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
#final-cta h2 { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 900; color: #fff; margin-bottom: 16px; }
#final-cta p  { font-size: 1.08rem; color: rgba(255,255,255,.75); margin-bottom: 40px; }
.final-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footer {
  background: var(--gray-900); color: rgba(255,255,255,.65);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { width: 40px; border-radius: 8px; margin-bottom: 14px; }
.footer-brand h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-brand p { font-size: .85rem; line-height: 1.6; max-width: 260px; }
.footer-col h4 { font-size: .82rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .87rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: .8rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .bots-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-image-wrap img { max-width: 260px; margin: 0 auto; }
  .pill-1, .pill-2 { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .bots-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .channels-wrap { grid-template-columns: 1fr; }
  .nonuser-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .section { padding: 60px 0; }
}
@media (max-width: 480px) {
  .feat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 24px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }

/* ── Language toggle ── */
.lang-toggle {
  font-family: inherit; font-size: .8rem; font-weight: 700;
  padding: 7px 14px; border-radius: 99px;
  background: rgba(255,255,255,.12);
  color: #fff; border: 1px solid rgba(255,255,255,.3);
  cursor: pointer; transition: all .18s;
  white-space: nowrap;
}
.lang-toggle:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.6); }
.mobile-menu .lang-toggle {
  font-size: 1rem; padding: 10px 22px;
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25);
}
