/* ============================================================
   Menvo Primary Landing
   ============================================================ */

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* ── Section heading ── */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { margin-bottom: 18px; display: inline-block; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin: 0 0 18px;
  text-wrap: balance;
}
.section-head h2 em {
  font-style: normal;
  color: var(--coral);
  position: relative;
}
.section-head .lead {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}
.h-light { color: #fff !important; }
.lead-light { color: rgba(255,255,255,.7) !important; }
.eyebrow-light { color: #FFB088 !important; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-weight: 700;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-md { padding: 11px 22px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: var(--sh-coral);
}
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-1px); box-shadow: 0 18px 42px rgba(232,93,36,.4); }
.btn-secondary {
  background: var(--surface);
  color: var(--navy);
  border-color: var(--border);
}
.btn-secondary:hover { background: var(--bg); border-color: var(--navy); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(30,58,95,.18);
}
.btn-ghost:hover { background: rgba(30,58,95,.04); border-color: var(--navy); }
.btn .arr {
  display: inline-block;
  transition: transform .2s;
}
.btn:hover .arr { transform: translateX(4px); }

.link-quiet {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.link-quiet:hover { background: rgba(30,58,95,.06); color: var(--navy); }

/* ── Logo mark animations (only on nav) ── */
.menvo-mark .spark {
  transform-origin: 20px 19px;
  animation: menvoLogoSpark 2.8s ease-in-out infinite;
}
.menvo-mark .ping {
  animation: menvoLogoPing 1.8s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 247, 244, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav.scrolled {
  border-bottom-color: rgba(30,58,95,.08);
  background: rgba(249, 247, 244, 0.92);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: rgba(30,58,95,.06); color: var(--navy); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  color: var(--navy);
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero-blur.a {
  width: 600px; height: 600px;
  top: -200px; left: -150px;
  background: var(--navy-tint);
  animation: heroBlur1 18s ease-in-out infinite alternate;
}
.hero-blur.b {
  width: 500px; height: 500px;
  bottom: -150px; right: -100px;
  background: rgba(232,93,36,.25);
  animation: heroBlur2 22s ease-in-out infinite alternate;
}
@keyframes heroBlur1 { 0%{transform:translate(0,0)} 100%{transform:translate(80px,40px)} }
@keyframes heroBlur2 { 0%{transform:translate(0,0)} 100%{transform:translate(-60px,-30px)} }
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(30,58,95,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 1; }
.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 6px 14px;
  background: rgba(232,93,36,.08);
  border: 1px solid rgba(232,93,36,.2);
  border-radius: 999px;
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232,93,36,.18);
  animation: menvoLivePulse 1.8s ease-in-out infinite;
}

.hero-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--navy);
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero-h em {
  font-style: normal;
  position: relative;
  color: var(--coral);
}
.hero-h em::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: -2px;
  height: 14px;
  background: rgba(232,93,36,.18);
  border-radius: 4px;
  z-index: -1;
}
.hero-lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.hero-lead strong { color: var(--navy); font-weight: 700; }
.hero-lead em { font-style: italic; color: var(--coral); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}
.hero-trust strong { color: var(--navy); font-weight: 700; }
.trust-avatars {
  display: inline-flex;
}
.trust-avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-display);
}
.trust-avatars span:first-child { margin-left: 0; }

/* Hero phone */
.hero-phone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.phone {
  position: relative;
  width: 340px;
  background: #15294A;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 30px 80px rgba(17, 24, 39, 0.25),
    0 8px 24px rgba(17, 24, 39, 0.1),
    inset 0 0 0 1px rgba(255,255,255,.05);
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-8px) rotate(0.5deg); }
}
.phone-sm { width: 300px; animation: none; }
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #0a1320;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  background: #ECE5DD;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 560px;
  position: relative;
}
.phone-sm .phone-screen { height: 480px; }

/* WhatsApp UI */
.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 38px 14px 12px;
  background: #075E54;
  color: #fff;
}
.wa-back { background: transparent; border: none; color: #fff; padding: 0; display: none; }
.wa-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #1E3A5F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-meta { flex: 1; min-width: 0; }
.wa-name { font-size: 14px; font-weight: 600; letter-spacing: -0.005em; }
.wa-status {
  font-size: 11px;
  color: rgba(255,255,255,.78);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.wa-online {
  width: 7px; height: 7px;
  background: #4DD865;
  border-radius: 50%;
}
.wa-chat {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px 12px;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.04) 12px,
      transparent 12px,
      transparent 24px
    ),
    #ECE5DD;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wa-chat::-webkit-scrollbar { width: 4px; }
.wa-chat::-webkit-scrollbar-thumb { background: rgba(0,0,0,.1); border-radius: 4px; }
.wa-day {
  align-self: center;
  background: rgba(225, 245, 254, 0.92);
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 11px;
  color: rgba(0,0,0,.55);
  font-weight: 500;
  margin-bottom: 8px;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.wa-bubble {
  max-width: 75%;
  padding: 7px 10px 4px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.35;
  color: #111;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  position: relative;
  word-wrap: break-word;
  animation: bubbleIn .35s cubic-bezier(.2,.7,.2,1);
}
.wa-bubble.them {
  align-self: flex-start;
  background: #fff;
  border-top-left-radius: 2px;
}
.wa-bubble.me {
  align-self: flex-end;
  background: #DCF8C6;
  border-top-right-radius: 2px;
}
.wa-bubble.rtl { direction: rtl; font-family: var(--font-arabic); font-size: 14px; }
.wa-bubble .ts {
  font-size: 10px;
  color: rgba(0,0,0,.45);
  text-align: right;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
}
.wa-bubble.me .ts::after {
  content: "";
  width: 14px; height: 9px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 11' fill='none' stroke='%234FC3F7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='1 6 5 10 11 4'/><polyline points='7 6 11 10 17 1'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
@keyframes bubbleIn {
  from { transform: translateY(8px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.wa-typing {
  align-self: flex-start;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  border-top-left-radius: 2px;
  display: inline-flex;
  gap: 4px;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  animation: bubbleIn .25s cubic-bezier(.2,.7,.2,1);
}
.wa-typing span {
  width: 7px; height: 7px;
  background: #9CA3AF;
  border-radius: 50%;
  animation: menvoTypingDot 1.2s ease-in-out infinite;
}
.wa-typing span:nth-child(2) { animation-delay: .18s; }
.wa-typing span:nth-child(3) { animation-delay: .36s; }

.wa-composer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #f0f0f0;
}
.wa-input {
  flex: 1;
  background: #fff;
  border-radius: 22px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888;
  font-size: 13px;
}
.wa-input svg { color: #888; flex-shrink: 0; }
.wa-input-text { flex: 1; }
.wa-send {
  width: 38px; height: 38px;
  background: #075E54;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Phone annotations */
.phone-anno {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  box-shadow: var(--sh-md);
  animation: annoFloat 5s ease-in-out infinite;
}
.phone-anno .dot {
  width: 6px; height: 6px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(232,93,36,.2);
}
.phone-anno-1 { top: 10%; left: -90px; animation-delay: 0s; }
.phone-anno-2 { top: 50%; right: -70px; animation-delay: 1.5s; }
.phone-anno-3 { bottom: 14%; left: -60px; animation-delay: 3s; }
@keyframes annoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ═══════════════════════════════════════════════════════
   LOGOS STRIP
   ═══════════════════════════════════════════════════════ */
.logos {
  padding: 36px 0 50px;
  border-top: 1px solid rgba(30,58,95,.06);
  border-bottom: 1px solid rgba(30,58,95,.06);
  background: var(--bg-alt);
}
.logos-label {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--subtle);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.logos-label .line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: rgba(30,58,95,.1);
}
.logos-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}
.logo-cell {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--muted);
  line-height: 1.15;
  opacity: .65;
  transition: opacity .2s;
}
.logo-cell:hover { opacity: 1; color: var(--navy); }
.logo-cell span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--subtle);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════
   PROBLEM
   ═══════════════════════════════════════════════════════ */
.problem {
  padding: 100px 0;
  background: var(--bg);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  transition: transform .25s, border-color .25s;
}
.problem-card:hover { transform: translateY(-3px); border-color: rgba(232,93,36,.3); }
.problem-card .pc-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.problem-card .pc-msg {
  margin-bottom: 14px;
}
.problem-card .pc-bubble {
  display: inline-block;
  background: #ECE5DD;
  padding: 10px 14px;
  border-radius: 12px;
  border-top-left-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  color: #1F2937;
  max-width: 95%;
}
.problem-card .pc-msg.rtl .pc-bubble {
  direction: rtl;
  font-family: var(--font-arabic);
  font-size: 15px;
  border-top-left-radius: 12px;
  border-top-right-radius: 4px;
}
.problem-card .pc-reply.pc-empty {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(220,38,38,.04);
  border: 1px dashed rgba(220,38,38,.25);
  border-radius: 12px;
  font-size: 13px;
  color: #991B1B;
  font-weight: 500;
}
.problem-card .pc-reply.pc-empty svg {
  width: 16px; height: 16px;
  color: #DC2626;
  flex-shrink: 0;
}
.problem-card .pc-reply.pc-empty strong { font-weight: 700; }
.problem-card .pc-loss {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--coral);
  font-family: var(--font-display);
  letter-spacing: -0.005em;
}

.problem-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 48px;
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  box-shadow: var(--sh-navy);
}
.problem-stats .ps-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.problem-stats .ps-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--coral);
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.problem-stats .ps-lbl {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.45;
  text-wrap: balance;
}
.problem-stats .ps-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,.12);
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════ */
.how {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid rgba(30,58,95,.06);
  border-bottom: 1px solid rgba(30,58,95,.06);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.how-line {
  position: absolute;
  top: 56px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.how-step {
  position: relative;
  z-index: 1;
  padding: 0 12px;
}
.how-step .hs-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.how-step .hs-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--coral-light);
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(232,93,36,.18);
  transition: transform .25s, background .25s;
}
.how-step .hs-icon svg { width: 28px; height: 28px; }
.how-step:hover .hs-icon { background: var(--coral); color: #fff; transform: rotate(-4deg) scale(1.05); }
.how-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 10px;
}
.how-step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.how-step .hs-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.how-step .hs-bullets li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.how-step .hs-bullets li::before {
  content: "";
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--coral-light);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E85D24' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════
   DEMO
   ═══════════════════════════════════════════════════════ */
.demo {
  padding: 100px 0;
  background: var(--bg);
}
.demo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.demo-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
  background: var(--bg);
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--border);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
.demo-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: transparent;
  border: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: background .2s, color .2s;
}
.demo-tab:hover { color: var(--navy); }
.demo-tab.active { background: var(--navy); color: #fff; }
.demo-tab.active svg { color: var(--coral); }
.demo-tab svg { transition: color .2s; }
.demo-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.demo-side .demo-side-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: .12em;
  margin-bottom: 14px;
}
.demo-side h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0 0 14px;
  text-wrap: balance;
}
.demo-side p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 22px;
}
.demo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--coral-light);
  color: var(--coral-deep);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(232,93,36,.2);
}
.demo-phone {
  display: flex;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════
   INDUSTRIES
   ═══════════════════════════════════════════════════════ */
.industries {
  padding: 100px 0;
  background: var(--surface);
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ind-card {
  padding: 32px 28px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  transition: transform .25s, border-color .25s, box-shadow .25s, background .25s;
  position: relative;
}
.ind-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,93,36,.3);
  box-shadow: var(--sh-md);
  background: var(--surface);
}
.ind-svg {
  width: 36px; height: 36px;
  color: var(--coral);
  margin-bottom: 18px;
  padding: 8px;
  border-radius: 12px;
  background: var(--coral-light);
  box-sizing: content-box;
}
.ind-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 8px;
}
.ind-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}
.ind-card-ghost {
  background: transparent;
  border-style: dashed;
}
.ind-card-ghost .ind-svg {
  background: transparent;
  border: 1px dashed rgba(232,93,36,.4);
  color: var(--coral);
}
.ind-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
}
.ind-link:hover { color: var(--coral-deep); }

/* ═══════════════════════════════════════════════════════
   IMPACT
   ═══════════════════════════════════════════════════════ */
.impact {
  padding: 100px 0;
  background: var(--bg);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.impact-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.impact-stat:hover { transform: translateY(-3px); border-color: rgba(232,93,36,.3); }
.impact-stat::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at 100% 100%, rgba(232,93,36,.08), transparent 70%);
}
.impact-stat .is-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 4.5vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.impact-stat .is-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 10px;
}
.impact-stat .is-meta {
  font-size: 11px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: .03em;
}

/* Testimonial */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}
.testimonial-quote { position: relative; }
.quote-mark {
  width: 36px; height: 36px;
  color: var(--coral);
  opacity: .25;
  margin-bottom: 14px;
}
.testimonial-quote p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ta-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.ta-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.ta-role { font-size: 12px; color: var(--muted); margin-top: 2px; }
.testimonial-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 24px;
  background: var(--bg);
  border-radius: 16px;
}
.tm-stat { text-align: left; }
.tm-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--coral);
  line-height: 1;
}
.tm-lbl {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════
   SECURITY
   ═══════════════════════════════════════════════════════ */
.security {
  padding: 110px 0;
  background: var(--navy);
  background-image:
    radial-gradient(800px 500px at 20% 0%, rgba(232,93,36,.15), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(45,90,143,.4), transparent 60%);
  color: #fff;
  position: relative;
}
.security-grid { max-width: 1080px; margin: 0 auto; }
.security-copy { text-align: center; }
.security-copy .eyebrow { margin-bottom: 18px; display: inline-block; }
.security-copy h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.security-copy .lead {
  margin: 0 auto 56px;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.6;
}
.security-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: left;
}
.sec-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 26px 24px;
  transition: background .2s, border-color .2s, transform .2s;
}
.sec-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(232,93,36,.3);
  transform: translateY(-2px);
}
.sec-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(232,93,36,.18);
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.sec-icon svg { width: 22px; height: 22px; }
.sec-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 6px;
}
.sec-card p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.65);
  margin: 0;
  text-wrap: pretty;
}

/* ═══════════════════════════════════════════════════════
   STATUS BADGES (Live / Coming soon)
   ═══════════════════════════════════════════════════════ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: var(--font-body);
  white-space: nowrap;
}
.status-badge.live {
  background: rgba(22, 163, 74, .12);
  color: #15803D;
  border: 1px solid rgba(22, 163, 74, .25);
}
.status-badge.live::before {
  content: "";
  width: 6px; height: 6px;
  background: #16A34A;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, .25);
  animation: menvoLivePulse 1.6s ease-in-out infinite;
}
.status-badge.soon {
  background: rgba(245, 158, 11, .12);
  color: #92400E;
  border: 1px solid rgba(245, 158, 11, .3);
}
.status-badge.soon::before {
  content: "";
  width: 6px; height: 6px;
  background: #F59E0B;
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════
   CHANNELS
   ═══════════════════════════════════════════════════════ */
.channels {
  padding: 100px 0;
  background: var(--bg);
}
.channels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.channel-card {
  position: relative;
  padding: 28px 22px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.channel-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232,93,36,.3);
  box-shadow: var(--sh-md);
}
.channel-card.coming {
  opacity: .85;
}
.channel-card .ch-status {
  position: absolute;
  top: 12px;
  right: 12px;
}
.channel-card .ch-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.channel-card .ch-icon svg { width: 30px; height: 30px; }
.channel-card.wa .ch-icon { background: #DCFCE7; color: #25D366; }
.channel-card.web .ch-icon { background: rgba(30,58,95,.08); color: var(--navy); }
.channel-card.ig .ch-icon { background: linear-gradient(135deg, #FEF3C7, #FECDD3, #DDD6FE); color: #C13584; }
.channel-card.fb .ch-icon { background: rgba(24, 119, 242, .12); color: #1877F2; }
.channel-card.tt .ch-icon { background: rgba(15, 15, 15, .08); color: #111; }
.channel-card .ch-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.channel-card .ch-blurb {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  text-wrap: pretty;
}

.channels-note {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.channels-note strong { color: var(--navy); font-weight: 700; }
.channels-note svg { width: 16px; height: 16px; color: var(--coral); }

/* ═══════════════════════════════════════════════════════
   AGENT CONFIG
   ═══════════════════════════════════════════════════════ */
.agent {
  padding: 110px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.agent::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,93,36,.06), transparent 70%);
  pointer-events: none;
}
.agent-hero {
  background: linear-gradient(135deg, #1E3A5F 0%, #2D5A8F 60%, #C44A1A 130%);
  color: #fff;
  border-radius: 28px;
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--sh-lg);
}
.agent-hero::before, .agent-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.agent-hero::before { top: -60px; right: -60px; width: 280px; height: 280px; background: rgba(232,93,36,.4); }
.agent-hero::after  { bottom: -80px; left: -40px; width: 240px; height: 240px; background: rgba(245,158,11,.2); }
.agent-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: flex-start;
}
.agent-avatar {
  width: 130px; height: 130px;
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0;
}
.agent-avatar svg { animation: agentBreathe 3.5s ease-in-out infinite; }
@keyframes agentBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.agent-hero h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 6px 0 12px;
}
.agent-hero p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  margin: 0 0 22px;
  max-width: 580px;
  text-wrap: pretty;
}
.agent-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
}
.agent-hero-eyebrow .live-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: rgba(37,211,102,.18);
  border: 1px solid rgba(37,211,102,.35);
  color: #B6F5CF;
  border-radius: 999px;
  font-size: 10px;
}
.agent-hero-eyebrow .live-pill::before {
  content: "";
  width: 6px; height: 6px;
  background: #4DD865;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(77, 216, 101, .25);
  animation: menvoLivePulse 1.6s ease-in-out infinite;
}
.agent-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 28px;
  margin-top: 4px;
}
.agent-stat .as-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #fff;
}
.agent-stat .as-lbl {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 6px;
}
.agent-stat .as-sub {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

.agent-config-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}
.agent-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 28px;
}
.agent-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.agent-card-head .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.agent-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 4px 0 0;
}

/* Voice / tone sliders */
.tone-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.tone-row:last-child { margin-bottom: 0; }
.tone-row .tone-label {
  width: 90px;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.tone-row .tone-track {
  flex: 1;
  position: relative;
  height: 6px;
  background: var(--border);
  border-radius: 999px;
}
.tone-row .tone-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--coral) 0%, var(--coral-deep) 100%);
  border-radius: 999px;
  width: var(--pos, 50%);
  transition: width 1.2s cubic-bezier(.2,.7,.2,1);
}
.tone-row .tone-thumb {
  position: absolute;
  top: 50%;
  left: var(--pos, 50%);
  transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  background: #fff;
  border: 2px solid var(--coral);
  border-radius: 50%;
  box-shadow: var(--sh-sm);
  transition: left 1.2s cubic-bezier(.2,.7,.2,1);
}
.tone-row .tone-ends {
  width: 130px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--subtle);
  font-weight: 500;
}

.agent-lang {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
}
.lang-pill.en { background: var(--navy-tint); color: var(--navy); }
.lang-pill.ar { background: var(--coral-light); color: var(--coral-deep); font-family: var(--font-arabic); font-size: 13px; }
.lang-pill.add {
  background: transparent;
  border: 1px dashed var(--border);
  color: var(--subtle);
}

/* Sample reply */
.agent-sample-bubble {
  background: var(--surface);
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 10px;
  border: 1px solid var(--border);
}
.agent-sample-bubble .meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.agent-sample-bubble.reply {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  border-color: transparent;
}
.agent-sample-bubble.reply .meta {
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 4px;
}
.agent-sample-bubble.reply .meta svg { width: 10px; height: 10px; }
.agent-sample-foot {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}
.agent-sample-foot a { color: var(--coral); font-weight: 600; cursor: pointer; }

/* Behavior rules */
.behavior-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 4px;
}
.behavior-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.behavior-row .br-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--coral-light);
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.behavior-row .br-icon svg { width: 14px; height: 14px; }
.behavior-row .br-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}
.behavior-row .br-mode {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}
.behavior-row .br-mode.auto {
  background: rgba(22, 163, 74, .12);
  color: #15803D;
}
.behavior-row .br-mode.ask {
  background: var(--amber-light);
  color: #92400E;
}

/* Demo scenario badges */
.demo-tab .scen-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  background: rgba(245, 158, 11, .15);
  color: #92400E;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.demo-tab.active .scen-badge {
  background: rgba(245, 158, 11, .2);
  color: #FFD891;
}
.demo-tab .live-dot {
  width: 6px; height: 6px;
  margin-left: 6px;
  background: #16A34A;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, .25);
  animation: menvoLivePulse 1.6s ease-in-out infinite;
  display: inline-block;
}

/* Demo "what menvo handles" list */
.demo-handles {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.demo-handles-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.demo-handles-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.demo-handles-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
}
.demo-handles-list li::before {
  content: "";
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--coral-light);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E85D24' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 8px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Industry card status badge */
.ind-card { position: relative; }
.ind-card .ind-status {
  position: absolute;
  top: 16px; right: 16px;
}

/* ═══════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--surface);
}

/* Billing toggle */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}
.billing-toggle-wrap {
  text-align: center;
}
.billing-toggle button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: transparent;
  border: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: background .2s, color .2s;
}
.billing-toggle button:hover { color: var(--navy); }
.billing-toggle button.active {
  background: var(--navy);
  color: #fff;
}
.billing-toggle .save-pill {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(22, 163, 74, .15);
  color: #15803D;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}
.billing-toggle button.active .save-pill {
  background: rgba(255, 255, 255, .15);
  color: #B6F5CF;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30,58,95,.18);
  box-shadow: var(--sh-md);
}
.price-card-feat {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: scale(1.02);
}
.price-card-feat:hover { transform: scale(1.02) translateY(-4px); }
.price-card-feat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, var(--coral), transparent);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.price-card .pc-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  background: var(--coral);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(232,93,36,.4);
  white-space: nowrap;
}
.pc-tier {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--coral);
  margin-bottom: 14px;
}
.price-card-feat .pc-tier { color: #FFB088; }
.pc-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
  font-family: var(--font-display);
  color: var(--navy);
  flex-wrap: wrap;
}
.price-card-feat .pc-amount { color: #fff; }
.pc-currency {
  font-size: 18px;
  font-weight: 600;
}
.pc-num {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}
.pc-period {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.price-card-feat .pc-period { color: rgba(255,255,255,.6); }
.pc-egp {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 18px;
  font-family: var(--font-body);
}
.price-card-feat .pc-egp { color: rgba(255,255,255,.55); }
.pc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pc-features li {
  font-size: 13.5px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.price-card-feat .pc-features li { color: rgba(255,255,255,.85); }
.pc-features li::before {
  content: "";
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(22, 163, 74, .15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card-feat .pc-features li::before {
  background-color: rgba(255, 255, 255, .15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.pc-features li.trial::before {
  background: rgba(232,93,36,.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E85D24'><polygon points='12 2 15 8.5 22 9.3 17 14 18.2 21 12 17.8 5.8 21 7 14 2 9.3 9 8.5 12 2'/></svg>");
}
.price-card-feat .pc-features li.trial::before {
  background-color: rgba(255,255,255,.2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFB088'><polygon points='12 2 15 8.5 22 9.3 17 14 18.2 21 12 17.8 5.8 21 7 14 2 9.3 9 8.5 12 2'/></svg>");
}
.pc-features li strong { font-weight: 700; color: var(--navy); }
.price-card-feat .pc-features li strong { color: #fff; }

.pricing-foot {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.pricing-foot strong { color: var(--navy); font-weight: 700; }

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq {
  padding: 100px 0;
  background: var(--bg);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 4px 8px;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: rgba(232,93,36,.25);
  box-shadow: var(--sh-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--coral-light);
  color: var(--coral);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 600;
  transition: transform .25s, background .25s, color .25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--coral);
  color: #fff;
  transform: rotate(180deg);
}
.faq-item .faq-body {
  padding: 0 22px 22px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 720px;
  text-wrap: pretty;
}

/* ═══════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════ */
.cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
}
.cta-blob.a { width: 500px; height: 500px; top: -100px; left: 10%; background: rgba(232,93,36,.4); }
.cta-blob.b { width: 600px; height: 600px; bottom: -150px; right: 5%; background: rgba(30,58,95,.4); }
.cta-card {
  position: relative;
  z-index: 1;
  background: var(--navy);
  background-image:
    radial-gradient(600px 300px at 0% 0%, rgba(232,93,36,.25), transparent 60%),
    radial-gradient(500px 300px at 100% 100%, rgba(45,90,143,.6), transparent 60%);
  border-radius: 32px;
  padding: 72px 56px;
  text-align: center;
  color: #fff;
  box-shadow: var(--sh-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.cta-card .eyebrow { display: inline-block; margin-bottom: 18px; }
.cta-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 18px;
  text-wrap: balance;
}
.cta-card .lead { margin-bottom: 36px; }
.cta-form {
  display: flex;
  gap: 8px;
  max-width: 640px;
  margin: 0 auto 16px;
  padding: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  flex-wrap: wrap;
}
.cta-form input {
  flex: 1;
  min-width: 160px;
  background: transparent;
  border: none;
  color: #fff;
  padding: 12px 18px;
  font-size: 14px;
  outline: none;
}
.cta-form input::placeholder { color: rgba(255,255,255,.5); }
.cta-form .btn-primary {
  flex-shrink: 0;
}
.cta-success {
  display: none;
  max-width: 640px;
  margin: 0 auto 16px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.3);
  border-radius: 999px;
  color: #B6F5CF;
  font-size: 14px;
}
.cta-success.show { display: inline-flex; }
.cta-success svg { color: var(--whatsapp); }
.cta-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  flex-wrap: wrap;
  justify-content: center;
}
.cta-dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: rgba(255,255,255,.35);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.foot {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 64px 0 24px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.foot-brand .brand-word { color: #fff; }
.foot-tag {
  margin: 18px 0 14px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  max-width: 320px;
  line-height: 1.5;
}
.foot-made {
  font-size: 14px;
  color: rgba(255,255,255,.45);
}
.foot-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 0;
}
.foot-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  padding: 6px 0;
  transition: color .15s;
}
.foot-col a:hover { color: var(--coral); }
.foot-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.45);
}
.foot-social { display: inline-flex; gap: 14px; }
.foot-social a {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.foot-social a:hover { background: var(--coral); color: #fff; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-phone { order: -1; padding: 0 20px; }
  .phone { transform: scale(.88); }
  .phone-anno { display: none; }
  .channels-grid { grid-template-columns: repeat(3, 1fr); max-width: 660px; }
  .price-cards { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
  .price-card-feat { transform: none; }
  .price-card-feat:hover { transform: translateY(-4px); }
  .agent-config-grid { grid-template-columns: 1fr; }
  .agent-stats { grid-template-columns: repeat(4, auto); gap: 20px; }
}
@media (max-width: 800px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 12px 20px; }
  .nav-cta .link-quiet { display: none; }
  .nav-cta .btn { padding: 10px 16px; font-size: 13px; }
  .hero { padding: 40px 0 60px; }
  .phone-anno { display: none; }
  .logos-row { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .problem-grid, .how-steps, .ind-grid, .impact-grid, .price-cards, .channels-grid { grid-template-columns: 1fr; }
  .agent-config-grid { grid-template-columns: 1fr; }
  .agent-hero-grid { grid-template-columns: 1fr; gap: 18px; }
  .agent-hero { padding: 28px 24px; }
  .agent-avatar { width: 88px; height: 88px; }
  .agent-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .behavior-grid { grid-template-columns: 1fr; }
  .tone-row .tone-ends { display: none; }
  .tone-row .tone-label { width: 76px; font-size: 11px; }
  .how-line { display: none; }
  .problem-stats { flex-direction: column; gap: 20px; padding: 28px 24px; }
  .problem-stats .ps-divider { width: 60%; height: 1px; }
  .demo-body { grid-template-columns: 1fr; gap: 28px; }
  .demo-card { padding: 24px 20px; }
  .demo-tabs { width: 100%; justify-content: center; }
  .testimonial { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .security-grid-inner { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .price-card-feat { transform: none; }
  .price-card-feat:hover { transform: translateY(-4px); }
  .cta-card { padding: 48px 24px; }
  .section-head h2 { font-size: clamp(28px, 6vw, 40px); }
}
