/* ============================================
   ASKDWELL — MAIN STYLESHEET
   Brand: #FD451E | #A1C9CA | #5CC489 | #151718 | #F8F6F2
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FD451E;
  --teal: #A1C9CA;
  --green: #5CC489;
  --dark: #151718;
  --dark2: #1C1F20;
  --dark3: #222628;
  --warm-white: #F8F6F2;
  --muted: #8A8F94;
  --border: rgba(255,255,255,0.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- UTILITIES ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, #FF6B3D 60%, #FF8C5A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s; }
.fade-in-delay.visible { opacity: 1; transform: translateY(0); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  text-decoration: none; transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: #fff; border: 2px solid var(--orange);
}
.btn-primary:hover { background: #E03A14; border-color: #E03A14; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(253,69,30,0.35); }
.btn-outline {
  background: transparent; color: var(--warm-white); border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-1px); }
.btn-full { width: 100%; justify-content: center; }
.btn-play { font-size: 11px; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0; background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  background: rgba(21,23,24,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%; padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { color: var(--orange); font-size: 22px; line-height: 1; }
.logo-text { font-size: 17px; color: var(--warm-white); letter-spacing: -0.3px; }
.logo-text strong { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--warm-white); }
.nav-cta {
  background: var(--orange) !important; color: #fff !important;
  padding: 10px 20px; border-radius: 8px; font-size: 13px !important;
}
.nav-cta:hover { background: #E03A14 !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--warm-white); border-radius: 2px; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  padding: 100px 24px 40px; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(253,69,30,0.15); top: -100px; right: 0; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(161,201,202,0.1); bottom: 0; left: -100px; }
.hero-orb-3 { width: 300px; height: 300px; background: rgba(92,196,137,0.08); top: 40%; right: 20%; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero > * { position: relative; z-index: 1; }
.hero-content { max-width: 760px; width: 100%; }
.hero-actions { justify-content: center; margin-bottom: 56px; }
.hero-stats { justify-content: center; margin-bottom: 32px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px; font-size: 12px;
  color: var(--muted); letter-spacing: 0.5px; margin-bottom: 28px;
}
.badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.hero-title { font-size: clamp(42px, 6vw, 72px); font-weight: 900; line-height: 1.05; letter-spacing: -2px; margin-bottom: 24px; }
.hero-subtitle { font-size: 18px; color: var(--muted); line-height: 1.7; margin-bottom: 40px; }
.hero-subtitle strong { color: var(--warm-white); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; align-items: center; gap: 28px; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-size: 22px; font-weight: 800; color: var(--warm-white); }
.hero-stat span { font-size: 12px; color: var(--muted); margin-top: 2px; }
.hero-divider { width: 1px; height: 36px; background: var(--border); }

/* MOCKUP */
.hero-mockup { display: flex; justify-content: center; align-items: center; max-width: 560px; width: 100%; margin-top: 32px; }
.mockup-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 16px; width: 100%; max-width: 400px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
}
.mockup-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  background: var(--dark3);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.mockup-dots span:nth-child(1) { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FEBC2E; }
.mockup-dots span:nth-child(3) { background: #28C840; }
.mockup-title { flex: 1; text-align: center; font-size: 13px; font-weight: 600; color: var(--muted); }
.mockup-status { font-size: 11px; color: var(--green); font-weight: 500; }
.mockup-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.chat-msg { display: flex; gap: 10px; align-items: flex-end; }
.chat-msg.user { flex-direction: row-reverse; }
.chat-avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0; color: #fff; font-weight: 700;
}
.user-av { background: var(--dark3); border: 1px solid var(--border); font-size: 11px; color: var(--muted); }
.chat-bubble {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 12px 12px 12px 2px; padding: 10px 14px;
  font-size: 13px; line-height: 1.5; color: var(--warm-white);
  max-width: calc(100% - 48px);
}
.chat-msg.user .chat-bubble { border-radius: 12px 12px 2px 12px; background: rgba(253,69,30,0.12); border-color: rgba(253,69,30,0.2); }
.typing { display: flex; gap: 4px; align-items: center; padding: 14px; }
.typing span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--muted);
  animation: bounce 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-8px); } }

/* ---- SECTION SHARED ---- */
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.section-title { font-size: clamp(32px, 4vw, 52px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 20px; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.7; margin-bottom: 60px; }

/* ---- FEATURES ---- */
.features { padding: 120px 0; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px; transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: rgba(253,69,30,0.3); transform: translateY(-4px); }
.feature-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.feature-tag {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--muted); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 100px;
}

/* ---- HOW IT WORKS ---- */
.how-it-works { padding: 120px 0 60px; background: var(--dark2); }
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 60px; }
.step {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 32px;
  align-items: center; padding: 20px 0;
}
.step-number { font-size: 48px; font-weight: 900; color: var(--border); letter-spacing: -2px; }
.step-content h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.5px; }
.step-content p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.step-integrations { display: flex; flex-wrap: wrap; gap: 8px; }
.step-integrations span {
  font-size: 12px; padding: 5px 12px; border-radius: 100px;
  border: 1px solid var(--border); color: var(--muted);
}
.step-visual {
  width: 80px; height: 80px; border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 36px; flex-shrink: 0;
}
.step-visual-1 { background: rgba(253,69,30,0.12); }
.step-visual-2 { background: rgba(161,201,202,0.1); }
.step-visual-3 { background: rgba(92,196,137,0.1); }
.step-connector { width: 2px; height: 30px; background: var(--border); margin-left: 39px; }

/* ---- STATS ---- */
.stats-section { padding: 100px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 720px; margin: 0 auto; }
.stat-item {
  text-align: center; padding: 48px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-size: clamp(36px, 4vw, 52px); font-weight: 900; letter-spacing: -2px; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--muted); line-height: 1.4; }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 60px 0 120px; background: var(--dark2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px; display: flex; flex-direction: column; gap: 20px;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: rgba(161,201,202,0.3); }
.testimonial-stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--warm-white); line-height: 1.7; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; }
.testimonial-author span { font-size: 12px; color: var(--muted); }

/* ---- PRICING ---- */
.pricing { padding: 120px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.pricing-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px; position: relative; transition: transform 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card-featured {
  background: linear-gradient(145deg, rgba(253,69,30,0.08), rgba(161,201,202,0.05));
  border-color: rgba(253,69,30,0.4);
  box-shadow: 0 0 40px rgba(253,69,30,0.1);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 5px 16px; border-radius: 100px;
}
.pricing-tier { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.pricing-price { font-size: 48px; font-weight: 900; letter-spacing: -2px; margin-bottom: 12px; }
.pricing-price span { font-size: 18px; font-weight: 400; color: var(--muted); }
.pricing-desc { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.5; }
.pricing-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: var(--warm-white); }
.pricing-note { text-align: center; font-size: 14px; color: var(--muted); }

/* ---- CTA ---- */
.cta-section { padding: 120px 0; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.cta-orb-1 { width: 600px; height: 600px; background: rgba(253,69,30,0.12); top: -200px; left: -100px; }
.cta-orb-2 { width: 400px; height: 400px; background: rgba(161,201,202,0.08); bottom: -100px; right: -50px; }
.cta-section > .container { position: relative; z-index: 1; }
.cta-content { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 900; letter-spacing: -2px; margin-bottom: 20px; line-height: 1.0; }
.cta-content p { font-size: 17px; color: var(--muted); margin-bottom: 40px; line-height: 1.6; }
.cta-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto 16px; }
.cta-form input {
  flex: 1; background: rgba(255,255,255,0.07); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 18px; color: var(--warm-white);
  font-size: 15px; font-family: var(--font); outline: none; transition: border-color 0.2s;
}
.cta-form input:focus { border-color: var(--orange); }
.cta-form input::placeholder { color: var(--muted); }
.cta-note { font-size: 13px; color: var(--muted); }

/* ---- FOOTER ---- */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 1.5fr 2fr; gap: 80px; margin-bottom: 60px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.footer-pre-ipo {
  display: inline-block; font-size: 11px; letter-spacing: 1px; font-weight: 600;
  color: var(--teal); border: 1px solid rgba(161,201,202,0.3); padding: 4px 12px; border-radius: 100px;
}
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.5px; color: var(--warm-white); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--warm-white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 32px; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-disclaimer { font-size: 11px !important; opacity: 0.6; }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .hero { flex-direction: column; padding-top: 100px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-mockup { margin-left: 0; margin-top: 60px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(2) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(3) { border-top: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { padding: 28px 8px; }
  .stat-number { font-size: clamp(20px, 6vw, 32px); letter-spacing: -1px; }
  .stat-label { font-size: 11px; }
  .step { grid-template-columns: 1fr; }
  .step-number { display: none; }
  .step-visual { display: none; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .cta-form { flex-direction: column; }
  .hero-subtitle br { display: none; }
  .hide-mobile { display: none; }
}

/* ============================================
   ASKDWELL — INTERACTIVE DEMO SECTION
   ============================================ */

.demo-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--dark) 0%, #0D1015 50%, var(--dark) 100%);
  position: relative;
}
.demo-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.demo-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin: 48px 0 40px;
}

.demo-tab {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--dark2);
  color: var(--muted);
  font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
  font-family: var(--font);
}
.demo-tab:hover { border-color: var(--teal); color: var(--warm-white); }
.demo-tab.active {
  background: linear-gradient(135deg, rgba(253,69,30,0.15), rgba(161,201,202,0.15));
  border-color: var(--teal);
  color: var(--warm-white);
}

.demo-window {
  max-width: 680px;
  margin: 0 auto;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.demo-window-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  background: var(--dark3);
  border-bottom: 1px solid var(--border);
}
.demo-window-title { font-size: 13px; font-weight: 600; color: var(--warm-white); flex: 1; text-align: center; }

.demo-chat {
  padding: 24px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  max-height: 420px;
}

.demo-msg {
  display: flex; align-items: flex-start; gap: 10px;
}
.demo-msg.tenant { flex-direction: row-reverse; }

/* Enter animation: start invisible/shifted, transition to visible */
.demo-msg-enter {
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.demo-msg-enter.demo-msg-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Typing indicator bubble */
.demo-typing-bubble {
  display: flex; align-items: center; gap: 5px;
  padding: 14px 18px !important;
  min-width: 60px;
}
.demo-typing-bubble span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--muted);
  animation: demoTypingDot 1.2s infinite ease-in-out;
  display: inline-block;
}
.demo-typing-bubble span:nth-child(2) { animation-delay: 0.2s; }
.demo-typing-bubble span:nth-child(3) { animation-delay: 0.4s; }

@keyframes demoTypingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.demo-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.demo-msg.ai .demo-avatar { background: linear-gradient(135deg, var(--orange), var(--teal)); color: #fff; }
.demo-msg.tenant .demo-avatar { background: var(--dark3); color: var(--muted); font-size: 11px; border: 1px solid var(--border); }

.demo-bubble {
  max-width: 75%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px; line-height: 1.5;
}
.demo-msg.ai .demo-bubble {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-top-left-radius: 4px;
  color: var(--warm-white);
}
.demo-msg.tenant .demo-bubble {
  background: linear-gradient(135deg, rgba(253,69,30,0.2), rgba(161,201,202,0.15));
  border: 1px solid rgba(161,201,202,0.2);
  border-top-right-radius: 4px;
  color: var(--warm-white);
}

/* ============================================
   ASKDWELL — CLIENT HIGHLIGHT CARD
   ============================================ */

.client-highlight {
  margin: 48px 0 40px;
  background: linear-gradient(var(--dark3), var(--dark3)) padding-box,
              linear-gradient(135deg, var(--orange), var(--teal)) border-box;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.client-highlight::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(253,69,30,0.08), transparent);
  pointer-events: none;
}

.client-highlight-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.client-highlight-badge {
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(253,69,30,0.2), rgba(161,201,202,0.15));
  border: 1px solid rgba(253,69,30,0.4);
  border-radius: 100px;
  font-size: 13px; font-weight: 700;
  color: #FF6B3D;
  white-space: nowrap;
}
.client-highlight-name strong {
  font-size: 20px; display: block; color: var(--warm-white);
}
.client-highlight-name span {
  font-size: 14px; color: var(--muted);
}

.client-highlight-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.client-stat {
  text-align: center;
  padding: 20px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.client-stat-num {
  font-size: 28px; font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.client-stat-label {
  font-size: 12px; color: var(--muted); line-height: 1.4;
}

.client-highlight-quote {
  font-size: 16px; line-height: 1.7;
  color: var(--warm-white);
  font-style: italic;
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  margin: 0;
}
.client-highlight-quote cite {
  display: block; margin-top: 12px;
  font-style: normal; font-size: 14px; font-weight: 600;
  color: var(--muted);
}

/* ---- Testimonial grid: 2x2 clean layout ---- */
.testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Tenant badge */
.testimonial-card-tenant {
  border-color: rgba(161,201,202,0.2) !important;
  background: linear-gradient(135deg, rgba(161,201,202,0.04), var(--dark3)) !important;
}
.testimonial-tenant-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(161,201,202,0.1);
  border: 1px solid rgba(161,201,202,0.3);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
}
.testimonial-avatar-tenant {
  background: rgba(161,201,202,0.15) !important;
  color: var(--teal) !important;
  border: 1px solid rgba(161,201,202,0.3) !important;
}

/* Responsive */
@media (max-width: 960px) {
  .client-highlight-stats { grid-template-columns: repeat(2, 1fr); }
  .demo-tabs { gap: 8px; }
  .demo-tab { font-size: 13px; padding: 8px 14px; }
}
@media (max-width: 640px) {
  .client-highlight { padding: 24px; }
  .client-highlight-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .client-stat-num { font-size: 22px; }
  .client-highlight-header { flex-direction: column; align-items: flex-start; }
  .testimonials .testimonials-grid { grid-template-columns: 1fr; }
  .demo-tabs { flex-direction: column; align-items: center; }
}

/* ---- Client highlight photo ---- */
.client-highlight-photo {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(253,69,30,0.4); flex-shrink: 0;
}

/* ---- Testimonial photo ---- */
.testimonial-avatar-wrap { flex-shrink: 0; width: 44px; height: 44px; }
.testimonial-photo {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(253,69,30,0.3); display: block;
}
/* Hide initials fallback by default inside a wrap — only shown via onerror JS */
.testimonial-avatar-wrap .testimonial-avatar { display: none !important; }

/* ---- Audience toggle (Tenant / PM) ---- */
.demo-audience-toggle {
  display: flex; gap: 12px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap;
}
.audience-btn {
  padding: 10px 24px; border-radius: 100px; border: 1px solid var(--border);
  background: transparent; color: var(--text-muted); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.2s ease; font-family: inherit;
}
.audience-btn:hover { border-color: var(--primary); color: var(--primary); }
.audience-btn.active {
  background: var(--primary); border-color: var(--primary); color: white;
}
