/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@400;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --white: #ffffff;
  --bg-soft: #f8fafc;
  --bg-blue-tint: #eff6ff;
  --blue-primary: #2563eb;
  --blue-mid: #3b82f6;
  --blue-light: #dbeafe;
  --blue-dark: #1d4ed8;
  --purple-accent: #7c3aed;
  --green-success: #10b981;
  --gradient-cta: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-text: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-hero: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(37,99,235,0.10) 0%, rgba(124,58,237,0.07) 50%, transparent 80%);
  --gradient-hero-2: radial-gradient(ellipse 60% 50% at 20% 60%, rgba(59,130,246,0.08) 0%, transparent 70%);
  --text-heading: #0f172a;
  --text-body: #475569;
  --text-muted: #94a3b8;
  --text-light: #cbd5e1;
  --border: #e2e8f0;
  --border-blue: rgba(37,99,235,0.25);
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(37,99,235,0.10), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-xl: 0 32px 80px rgba(37,99,235,0.15), 0 12px 32px rgba(0,0,0,0.08);
  --shadow-blue: 0 8px 32px rgba(37,99,235,0.25);
  --shadow-blue-lg: 0 16px 48px rgba(37,99,235,0.30);
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-full: 9999px;
  --section-padding: 110px 0;
  --section-padding-mobile: 64px 0;
  --container-max: 1200px;
  --container-pad: 0 24px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: var(--text-body);
  background: #ffffff;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { color: var(--text-heading); line-height: 1.2; }
h1 { font-family: 'Sora', sans-serif; font-size: clamp(46px, 6vw, 82px); font-weight: 700; line-height: 1.04; letter-spacing: -0.03em; }
h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(34px, 4vw, 54px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h3 { font-size: 20px; font-weight: 600; line-height: 1.3; }
p { font-size: 16px; line-height: 1.75; color: var(--text-body); }

/* ===== CONTAINER ===== */
.container { max-width: var(--container-max); margin: 0 auto; padding: var(--container-pad); }

/* ===== SECTIONS ===== */
.section { padding: var(--section-padding); }
.section-soft { background: var(--bg-soft); }
.section-blue { background: var(--bg-blue-tint); }
.section-dot {
  background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
  background-size: 30px 30px;
  background-color: var(--bg-soft);
}
.section-white { background: #ffffff; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--text-body); }

/* ===== TYPOGRAPHY ===== */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-light); color: var(--blue-primary);
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 14px;
  border-radius: var(--radius-full); margin-bottom: 16px;
}

/* ===== LOGO ===== */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 20px; color: var(--text-heading); letter-spacing: -0.02em; }
.logo-accent { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer .logo-text { color: white; }
.footer .logo-accent { -webkit-text-fill-color: white; background: none; color: #93c5fd; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; position: relative; }
.nav-link {
  padding: 8px 12px; font-size: 14px; font-weight: 500; color: var(--text-body);
  text-decoration: none; border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s; display: inline-flex; align-items: center;
}
.nav-link:hover, .nav-link.active { color: var(--blue-primary); background: var(--blue-light); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(-8px);
  background: white; border: 1px solid var(--border); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl); min-width: 580px; padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.dropdown-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--radius-md); text-decoration: none; transition: background 0.15s; }
.dropdown-item:hover { background: var(--bg-soft); }
.dropdown-item strong { display: block; font-size: 13px; font-weight: 600; color: var(--text-heading); }
.dropdown-item small { display: block; font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.dropdown-icon { font-size: 20px; width: 36px; height: 36px; background: var(--bg-soft); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-heading); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; flex-direction: column; padding: 20px 24px 24px;
  border-top: 1px solid var(--border); background: white;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-nav.open { max-height: 600px; display: flex; }
.mobile-nav a { padding: 12px 0; font-size: 16px; font-weight: 500; color: var(--text-heading); text-decoration: none; border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--blue-primary); }
.nav-indicator {
  position: absolute; bottom: -2px; height: 2px;
  background: var(--gradient-cta); border-radius: var(--radius-full);
  transition: left 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), width 0.3s ease;
  pointer-events: none;
}
.nav-cta { margin-left: 12px; }
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 15px;
  text-decoration: none; cursor: pointer; border: none;
  position: relative; overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gradient-cta); color: white; box-shadow: var(--shadow-blue); }
.btn-primary:hover { box-shadow: var(--shadow-blue-lg); }
.btn-secondary { background: white; color: var(--blue-primary); border: 2px solid var(--blue-primary); }
.btn-secondary:hover { background: var(--blue-light); }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-white { background: white; color: var(--blue-primary); box-shadow: var(--shadow-md); }
.btn-white:hover { box-shadow: var(--shadow-lg); }
.btn-large { padding: 18px 40px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; }
.btn:active { transform: scale(0.96) !important; }
.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0); animation: ripple-anim 0.6s linear;
  pointer-events: none;
}
@keyframes ripple-anim { to { transform: scale(1); opacity: 0; } }

/* ===== CARDS ===== */
.card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 32px; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
}
.card:hover { box-shadow: var(--shadow-lg); border-color: var(--border-blue); }
.card-icon {
  width: 52px; height: 52px; background: var(--gradient-cta);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 20px; flex-shrink: 0;
}
.card-icon-soft {
  width: 52px; height: 52px; background: var(--blue-light);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 20px; flex-shrink: 0;
}
.card h3 { font-size: 18px; font-weight: 600; color: var(--text-heading); margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--text-body); line-height: 1.65; }
.card-link { color: var(--blue-primary); font-size: 14px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; margin-top: 16px; transition: gap 0.2s; }
.card-link:hover { gap: 8px; }

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }

/* ===== CHECK LIST ===== */
.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: 15px; color: var(--text-body);
}
.check-list li::before {
  content: '✓'; color: white; background: var(--gradient-cta);
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #dcfce7; color: #16a34a;
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: var(--radius-full); letter-spacing: 0.04em;
}
.badge-blue { background: var(--blue-light); color: var(--blue-primary); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.19s; }
.stagger-4 { transition-delay: 0.26s; }
.stagger-5 { transition-delay: 0.33s; }
.stagger-6 { transition-delay: 0.40s; }
.stagger-7 { transition-delay: 0.47s; }
.stagger-8 { transition-delay: 0.54s; }
.stagger-9 { transition-delay: 0.61s; }
.stagger-10 { transition-delay: 0.68s; }

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed; width: 350px; height: 350px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(37,99,235,0.055) 0%, transparent 70%);
  transition: left 0.12s ease, top 0.12s ease;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: var(--gradient-cta); transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  background: var(--text-heading); color: white;
  padding: 16px 24px; border-radius: var(--radius-lg);
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-xl); font-size: 14px; font-weight: 500;
  transform: translateY(20px); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--green-success); display: flex;
  align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0;
}

/* ===== FORMS ===== */
.form-group { position: relative; margin-bottom: 24px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 20px 16px 8px;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px;
  color: var(--text-heading); background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.10);
}
.form-group label {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-size: 15px; color: var(--text-muted); pointer-events: none;
  transition: all 0.2s ease; background: white; padding: 0 4px;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select.has-value ~ label {
  top: 0; font-size: 11px; font-weight: 600; color: var(--blue-primary);
  letter-spacing: 0.05em; transform: translateY(-50%);
}
.form-group textarea ~ label { top: 20px; transform: none; }
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label { top: -8px; transform: none; }
.form-group textarea { min-height: 120px; resize: vertical; padding-top: 24px; }
.form-group select { padding-top: 20px; cursor: pointer; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 12px; background: white; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-item:hover, .faq-item.open { border-color: var(--border-blue); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; cursor: pointer; font-size: 16px; font-weight: 600;
  color: var(--text-heading); gap: 16px; user-select: none;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-primary); font-size: 18px; flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue-primary); color: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--text-body); line-height: 1.75; }
.faq-item.open .faq-answer { padding-bottom: 0; }

/* ===== AUDIO DEMO ===== */
.demo-card { padding: 28px; cursor: pointer; transition: all 0.3s ease; }
.demo-card:hover { border-color: var(--border-blue); }
.demo-card.playing { border-color: var(--blue-primary); box-shadow: var(--shadow-blue); animation: card-pulse 2s ease-in-out infinite; }
@keyframes card-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0.15), var(--shadow-md); }
  50% { box-shadow: 0 0 0 8px rgba(37,99,235,0.05), var(--shadow-lg); }
}
.waveform { display: flex; align-items: center; gap: 3px; height: 48px; margin: 20px 0; }
.waveform-bar {
  flex: 1; background: var(--gradient-cta); border-radius: 2px;
  height: 6px; transition: height 0.2s;
}
.demo-card.playing .waveform-bar { animation: wave-anim 0.8s ease-in-out infinite; }
.demo-card:not(.playing) .waveform-bar { animation: none; height: 6px; }
@keyframes wave-anim { 0%, 100% { height: 6px; } 50% { height: var(--bar-height, 24px); } }
.demo-play-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gradient-cta); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px; box-shadow: var(--shadow-blue);
  transition: transform 0.2s, box-shadow 0.2s; flex-shrink: 0;
}
.demo-play-btn:hover { transform: scale(1.08); box-shadow: var(--shadow-blue-lg); }
.demo-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.demo-industry { font-size: 13px; font-weight: 600; color: var(--text-heading); }
.demo-duration { font-size: 12px; color: var(--text-muted); background: var(--bg-soft); padding: 4px 10px; border-radius: var(--radius-full); }
.demo-scenario { font-size: 14px; color: var(--text-body); margin-bottom: 4px; }
.demo-footer { display: flex; align-items: center; justify-content: space-between; }

/* ===== STATS BAR ===== */
.stats-bar { background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 48px 0; }
.stats-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat-item { text-align: center; padding: 0 60px; }
.stat-number { display: block; font-family: 'Sora', sans-serif; font-size: 56px; font-weight: 700; line-height: 1; margin-bottom: 8px; }
.stat-label { display: block; font-size: 14px; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 120px 0 80px;
  background: white;
}
.hero-bg { background: var(--gradient-hero), var(--gradient-hero-2), white; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.hero h1 { font-family: 'Sora', sans-serif; font-size: clamp(46px, 6vw, 82px); font-weight: 700; line-height: 1.04; letter-spacing: -0.03em; color: var(--text-heading); margin-bottom: 24px; }
.hero-sub { font-size: 18px; color: var(--text-body); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.hero-trust span { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(60px);
  pointer-events: none; animation: blob-float 8s ease-in-out infinite;
}
.blob-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(37,99,235,0.10), transparent 70%); top: -100px; right: -100px; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(124,58,237,0.08), transparent 70%); bottom: -50px; left: -50px; animation-delay: -4s; }
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -25px) scale(1.04); }
  66% { transform: translate(-20px, 15px) scale(0.97); }
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
  background-size: 30px 30px; opacity: 0.3; pointer-events: none;
}
#typing-word { display: inline-block; transition: opacity 0.3s ease, transform 0.3s ease; }

/* ===== HERO CARD ===== */
.hero-visual { position: relative; }
.hero-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-xl);
  padding: 28px; animation: card-float 5s ease-in-out infinite;
}
@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 13px; font-weight: 600; color: var(--text-heading); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-success); animation: pulse-dot 2s infinite; flex-shrink: 0; }
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); } 50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); } }
.hero-card-call { display: flex; align-items: center; gap: 12px; background: var(--bg-soft); border-radius: var(--radius-md); padding: 14px; margin-bottom: 16px; }
.call-icon { font-size: 22px; flex-shrink: 0; }
.hero-card-call strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-heading); }
.hero-card-call small { font-size: 12px; color: var(--text-muted); }
.call-answered { margin-left: auto; background: #dcfce7; color: #16a34a; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: var(--radius-full); white-space: nowrap; }
.hero-waveform { display: flex; align-items: center; gap: 3px; height: 40px; margin-bottom: 16px; }
.hero-waveform span { flex: 1; background: var(--gradient-cta); border-radius: 2px; animation: wave-anim 0.8s ease-in-out infinite; }
.hero-card-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.hero-card-stats div { text-align: center; padding: 10px; background: var(--bg-soft); border-radius: var(--radius-md); }
.hero-card-stats strong { display: block; font-size: 20px; font-weight: 700; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-card-stats small { font-size: 11px; color: var(--text-muted); }

/* ===== PAGE HERO (non-home) ===== */
.page-hero { padding: 100px 0 80px; background: var(--bg-blue-tint); text-align: center; position: relative; overflow: hidden; }
.page-hero h1 { font-family: 'Sora', sans-serif; font-size: clamp(40px, 5vw, 70px); }
.page-hero .hero-sub { margin: 0 auto 36px; max-width: 600px; }
.page-hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== HOW IT WORKS ===== */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; position: relative; }
.steps-row::before {
  content: ''; position: absolute; top: 44px; left: calc(16% + 44px); right: calc(16% + 44px);
  height: 2px; background: linear-gradient(90deg, var(--blue-light), var(--blue-primary), var(--blue-light));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--gradient-cta); color: white;
  font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; box-shadow: var(--shadow-blue);
}
.step h3 { margin-bottom: 12px; color: var(--text-heading); }
.step p { font-size: 15px; color: var(--text-body); }

/* ===== INTEGRATIONS ===== */
.integrations-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.integration-pill {
  display: flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 10px 20px;
  font-size: 14px; font-weight: 600; color: var(--text-heading);
  box-shadow: var(--shadow-sm); transition: all 0.2s ease; cursor: default;
}
.integration-pill:hover { box-shadow: var(--shadow-md); border-color: var(--border-blue); transform: translateY(-2px); }

/* ===== TESTIMONIALS ===== */
.testimonial-card { padding: 36px; }
.testimonial-stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; margin-bottom: 20px; }
.testimonial-quote { font-size: 16px; line-height: 1.8; color: var(--text-body); margin-bottom: 24px; font-style: italic; position: relative; }
.testimonial-quote::before { content: '"'; font-size: 80px; color: var(--blue-light); line-height: 1; position: absolute; top: -20px; left: -8px; font-family: 'Sora', sans-serif; z-index: 0; }
.testimonial-quote span { position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-cta); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--text-heading); }
.testimonial-role { font-size: 13px; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--gradient-cta); padding: 100px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-blob {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,0.04); top: -200px; right: -100px;
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; }
.cta-trust { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; color: rgba(255,255,255,0.65); font-size: 13px; margin-top: 32px; }

/* ===== FOOTER ===== */
.footer { margin-top: 0; }
.footer-wave { display: block; line-height: 0; margin-bottom: -1px; }
.footer-wave svg { width: 100%; }
.footer-body { background: #0f172a; padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-col h4 { color: white; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: #64748b; font-size: 14px; text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #60a5fa; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: #475569; font-size: 13px; }
.footer-badges { display: flex; gap: 16px; }
.footer-badges span { color: #475569; font-size: 12px; }

/* ===== SERVICE SECTIONS (services.html) ===== */
.service-section { padding: var(--section-padding); }
.service-section:nth-child(even) { background: var(--bg-soft); }
.service-illustration {
  background: var(--gradient-cta); border-radius: var(--radius-xl);
  min-height: 360px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.service-illustration-inner { text-align: center; color: white; padding: 40px; }
.service-illustration-icon { font-size: 80px; margin-bottom: 16px; }
.service-illustration h3 { font-size: 24px; font-weight: 700; color: white; margin-bottom: 8px; }
.service-illustration p { color: rgba(255,255,255,0.8); font-size: 14px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.service-tag { background: rgba(255,255,255,0.15); color: white; font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,0.2); }
.who-its-for { background: var(--bg-blue-tint); border-radius: var(--radius-md); padding: 16px 20px; margin-top: 24px; font-size: 14px; color: var(--text-body); }
.who-its-for strong { color: var(--blue-primary); }

/* ===== PHONE MOCKUP ===== */
.phone-mockup {
  width: 280px; background: #0f172a; border-radius: 40px;
  padding: 12px; box-shadow: 0 40px 80px rgba(15,23,42,0.4);
  margin: 0 auto; position: relative;
}
.phone-screen { background: white; border-radius: 30px; overflow: hidden; min-height: 520px; }
.phone-status { background: #0f172a; color: white; font-size: 11px; display: flex; justify-content: space-between; padding: 10px 20px 6px; }
.phone-notch { width: 100px; height: 24px; background: #0f172a; border-radius: 0 0 16px 16px; margin: 0 auto; }
.phone-call-screen { padding: 24px; }
.phone-call-status { text-align: center; margin: 20px 0 24px; }
.phone-call-status .call-name { font-size: 22px; font-weight: 700; color: var(--text-heading); }
.phone-call-status .call-info { font-size: 13px; color: var(--green-success); font-weight: 600; margin-top: 4px; }
.phone-call-status .call-timer { font-size: 13px; color: var(--text-muted); }
.phone-waveform { display: flex; align-items: center; gap: 3px; height: 50px; padding: 0 16px; margin-bottom: 20px; }
.phone-waveform span { flex: 1; background: var(--gradient-cta); border-radius: 2px; animation: wave-anim 0.8s ease-in-out infinite; }
.phone-message { background: var(--bg-blue-tint); border-radius: var(--radius-md); padding: 14px; font-size: 13px; color: var(--text-body); line-height: 1.6; }
.phone-message strong { color: var(--blue-primary); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 4px; }

/* ===== ROI TABLE ===== */
.roi-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 32px; }
.roi-table th { background: var(--gradient-cta); color: white; padding: 18px 24px; font-size: 14px; font-weight: 600; text-align: left; }
.roi-table th:first-child { background: #1e293b; }
.roi-table td { padding: 16px 24px; font-size: 14px; color: var(--text-body); border-bottom: 1px solid var(--border); }
.roi-table tr:last-child td { border-bottom: none; }
.roi-table tr:nth-child(even) td { background: var(--bg-soft); }
.roi-table td:first-child { font-weight: 600; color: var(--text-heading); }
.roi-table .check-yes { color: var(--green-success); font-weight: 600; }
.roi-table .check-no { color: #ef4444; }

/* ===== INDUSTRY TABS ===== */
.industry-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 60px; }
.industry-tab {
  padding: 10px 22px; border-radius: var(--radius-full); font-size: 14px; font-weight: 600;
  background: white; border: 1px solid var(--border); color: var(--text-body);
  cursor: pointer; transition: all 0.2s ease; text-decoration: none;
}
.industry-tab:hover, .industry-tab.active { background: var(--blue-primary); color: white; border-color: var(--blue-primary); box-shadow: var(--shadow-blue); }

/* ===== INDUSTRY SECTION ===== */
.industry-section { padding: var(--section-padding); }
.industry-section:nth-child(even) { background: var(--bg-soft); }
.industry-visual {
  background: var(--gradient-cta); border-radius: var(--radius-xl);
  min-height: 320px; display: flex; align-items: center; justify-content: center;
  font-size: 100px; position: relative; overflow: hidden;
}
.industry-quote { border-left: 4px solid var(--blue-primary); padding: 20px 24px; background: var(--bg-blue-tint); border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 24px 0; font-style: italic; font-size: 15px; color: var(--text-body); }
.industry-services-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.industry-service-tag { background: var(--blue-light); color: var(--blue-primary); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: var(--radius-full); }

/* ===== DEMO PAGE ===== */
.calendly-placeholder {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px;
  box-shadow: var(--shadow-md);
}
.calendly-header { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.calendly-logo { width: 32px; height: 32px; border-radius: 8px; background: var(--gradient-cta); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 14px; }
.calendly-title { font-weight: 700; font-size: 16px; color: var(--text-heading); }
.calendly-subtitle { font-size: 13px; color: var(--text-muted); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 20px; }
.cal-day-header { text-align: center; font-size: 11px; font-weight: 600; color: var(--text-muted); padding: 6px 0; text-transform: uppercase; }
.cal-day { text-align: center; padding: 8px 4px; font-size: 13px; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.15s; color: var(--text-body); }
.cal-day:hover { background: var(--blue-light); color: var(--blue-primary); }
.cal-day.active { background: var(--blue-primary); color: white; font-weight: 600; }
.cal-day.empty { opacity: 0; cursor: default; }
.cal-day.past { color: var(--text-light); cursor: default; }
.time-slots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 16px; }
.time-slot { padding: 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; color: var(--text-body); text-align: center; cursor: pointer; transition: all 0.15s; }
.time-slot:hover { border-color: var(--blue-primary); background: var(--blue-light); color: var(--blue-primary); }
.time-slot.active { background: var(--blue-primary); border-color: var(--blue-primary); color: white; }
.calendly-powered { display: flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 12px; color: var(--text-muted); }

/* ===== ABOUT PAGE ===== */
.story-text { font-size: 20px; line-height: 1.8; color: var(--text-body); max-width: 780px; margin: 0 auto; text-align: center; }
.story-text p { margin-bottom: 28px; }
.story-text p:last-child { margin-bottom: 0; }
.team-card { padding: 36px; text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--gradient-cta); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.team-avatar svg { opacity: 0.6; }
.team-name { font-size: 20px; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.team-role { font-size: 14px; color: var(--blue-primary); font-weight: 600; margin-bottom: 16px; }
.team-bio { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; }

/* ===== CONTACT PAGE ===== */
.contact-card { padding: 36px; height: 100%; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-icon { width: 44px; height: 44px; background: var(--blue-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-value { font-size: 15px; font-weight: 600; color: var(--text-heading); }
.contact-value a { color: var(--blue-primary); }
.map-placeholder { background: var(--bg-blue-tint); border-radius: var(--radius-lg); height: 160px; display: flex; align-items: center; justify-content: center; margin-top: 24px; position: relative; overflow: hidden; border: 1px solid var(--blue-light); }
.map-pin { font-size: 32px; position: relative; z-index: 2; }
.map-rings { position: absolute; }
.map-ring { border-radius: 50%; border: 1px solid rgba(37,99,235,0.2); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: map-ring-pulse 3s ease-out infinite; }
.map-ring:nth-child(1) { width: 60px; height: 60px; animation-delay: 0s; }
.map-ring:nth-child(2) { width: 100px; height: 100px; animation-delay: 0.5s; }
.map-ring:nth-child(3) { width: 140px; height: 140px; animation-delay: 1s; }
@keyframes map-ring-pulse { 0% { opacity: 0.6; } 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.3); } }

/* ===== FAQ CATEGORIES ===== */
.faq-cats { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.faq-cat {
  padding: 8px 20px; border-radius: var(--radius-full); font-size: 14px; font-weight: 600;
  background: white; border: 1px solid var(--border); color: var(--text-body);
  cursor: pointer; transition: all 0.2s ease;
}
.faq-cat:hover, .faq-cat.active { background: var(--blue-primary); color: white; border-color: var(--blue-primary); }

/* ===== TRUST STRIP ===== */
.trust-strip { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 24px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--text-muted); }

/* ===== CHECKBOX GRID ===== */
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 24px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-md); cursor: pointer; transition: all 0.2s; font-size: 14px; color: var(--text-body); }
.checkbox-item:hover { border-color: var(--blue-primary); background: var(--bg-blue-tint); }
.checkbox-item input { width: 16px; height: 16px; accent-color: var(--blue-primary); }
.checkbox-item.checked { border-color: var(--blue-primary); background: var(--bg-blue-tint); color: var(--blue-primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .steps-row::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-padding: var(--section-padding-mobile); }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .section-header { margin-bottom: 40px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .stats-inner { flex-direction: column; }
  .stat-divider { width: 60px; height: 1px; }
  .stat-item { padding: 20px 0; }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .calendar-grid { grid-template-columns: repeat(7, 1fr); }
  .two-col-reverse { direction: ltr; }
  .checkbox-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .btn-large { padding: 16px 28px; font-size: 15px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .page-hero-ctas { flex-direction: column; align-items: center; }
  h1 { font-size: clamp(36px, 8vw, 52px); }
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--gradient-cta); color: white;
  padding: 9px 24px; text-align: center;
  font-size: 13px; font-weight: 500;
}
.announcement-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto;
}
.ann-dot { opacity: 0.45; }
.ann-cta {
  color: white; font-weight: 700;
  background: rgba(255,255,255,0.18); padding: 4px 12px;
  border-radius: var(--radius-full); font-size: 12px;
  text-decoration: none; transition: background 0.2s;
}
.ann-cta:hover { background: rgba(255,255,255,0.28); }
@media (max-width: 600px) {
  .ann-dot, .announcement-inner span:not(:first-child):not(.ann-cta) { display: none; }
}

/* ===== PRICING SECTION ===== */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 48px;
}
.pricing-toggle-track {
  display: flex; background: var(--bg-soft);
  border: 1px solid var(--border); border-radius: var(--radius-full);
  padding: 4px; gap: 4px;
}
.pricing-pill {
  padding: 8px 22px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600; cursor: pointer; border: none;
  background: transparent; color: var(--text-body);
  transition: all 0.25s ease;
}
.pricing-pill.active {
  background: var(--gradient-cta); color: white;
  box-shadow: var(--shadow-blue);
}
.pricing-save-badge {
  background: #dcfce7; color: #16a34a;
  font-size: 11px; font-weight: 700; padding: 3px 8px;
  border-radius: var(--radius-full);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}
.pricing-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px;
  box-shadow: var(--shadow-md); position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-blue); }
.pricing-card.popular {
  border-color: var(--blue-primary); box-shadow: var(--shadow-blue);
  transform: translateY(-8px);
  border-top: 4px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #2563eb, #7c3aed) border-box;
  border-top: 4px solid var(--blue-primary);
}
.pricing-card.popular:hover { transform: translateY(-12px); box-shadow: var(--shadow-blue-lg); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-cta); color: white;
  font-size: 11px; font-weight: 700; padding: 5px 16px;
  border-radius: var(--radius-full); white-space: nowrap;
  letter-spacing: 0.04em;
}
.pricing-tier { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-primary); margin-bottom: 8px; }
.pricing-tagline { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-amount { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 8px; }
.pricing-amount .currency { font-size: 22px; font-weight: 700; color: var(--text-heading); line-height: 1.3; }
.pricing-amount .price { font-family: 'Sora', sans-serif; font-size: 52px; font-weight: 700; color: var(--text-heading); line-height: 1; }
.pricing-amount .period { font-size: 15px; color: var(--text-muted); margin-bottom: 8px; }
.pricing-was { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-was s { color: var(--text-muted); }
.pricing-features { list-style: none; padding: 0; margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-body); margin-bottom: 12px;
}
.pricing-features li::before {
  content: '✓'; color: white; background: var(--gradient-cta);
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.pricing-custom { font-family: 'Sora', sans-serif; font-size: 40px; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.pricing-note { text-align: center; margin-top: 32px; font-size: 13px; color: var(--text-muted); max-width: 640px; margin-left: auto; margin-right: auto; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } .pricing-card.popular { transform: none; } }

/* ===== MOBILE CTA BAR ===== */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: white; border-top: 1px solid var(--border);
  padding: 12px 16px; gap: 10px;
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 80px; }
}
.mobile-cta-bar a {
  flex: 1; text-align: center; padding: 12px;
  border-radius: var(--radius-full); font-weight: 600;
  font-size: 14px; text-decoration: none;
}
.mobile-cta-demo { background: var(--gradient-cta); color: white; }
.mobile-cta-wa { background: #25d366; color: white; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 12px 40px rgba(37,211,102,0.45); }
@media (max-width: 768px) { .whatsapp-float { display: none; } }

/* ===== CHAT BUBBLE ===== */
.chat-bubble {
  position: fixed; bottom: 100px; right: 32px; z-index: 997;
  background: var(--gradient-cta); color: white;
  border-radius: var(--radius-full); padding: 12px 20px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-blue); cursor: pointer;
  font-size: 14px; font-weight: 600;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  animation: chat-bounce 3s ease-in-out infinite;
}
.chat-bubble:hover { transform: scale(1.06); }
@keyframes chat-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (max-width: 768px) { .chat-bubble { display: none; } }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: -200px; left: 16px; right: 16px; z-index: 9998;
  max-width: 900px; margin: 0 auto;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 22px 28px;
  box-shadow: var(--shadow-xl);
  transition: bottom 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.cookie-banner.show { bottom: 20px; }
.cookie-content { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-text { flex: 1; }
.cookie-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--text-heading); margin-bottom: 3px; }
.cookie-text p { font-size: 13px; color: var(--text-body); }
.cookie-text a { color: var(--blue-primary); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }

/* ===== EXIT POPUP ===== */
.exit-popup {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.exit-popup.show { opacity: 1; pointer-events: all; }
.exit-overlay {
  position: absolute; inset: 0;
  background: rgba(15,23,42,0.55); backdrop-filter: blur(4px);
}
.exit-modal {
  position: relative; background: white;
  border-radius: var(--radius-xl); padding: 48px 40px;
  max-width: 460px; width: 90%; text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.exit-popup.show .exit-modal { transform: scale(1); }
.exit-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 26px;
  color: var(--text-muted); cursor: pointer;
}
.exit-emoji { font-size: 52px; margin-bottom: 16px; }
.exit-modal h3 { font-size: 26px; font-weight: 700; color: var(--text-heading); margin-bottom: 12px; }
.exit-modal p { font-size: 15px; color: var(--text-body); line-height: 1.65; }

/* ===== BLOG PREVIEW ===== */
.blog-card { padding: 0; overflow: hidden; }
.blog-card-img {
  height: 180px; background: var(--gradient-cta);
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; position: relative; overflow: hidden;
}
.blog-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(15,23,42,0.12));
}
.blog-card-body { padding: 28px; }
.blog-category {
  display: inline-flex; background: var(--blue-light);
  color: var(--blue-primary); font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: var(--radius-full);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px;
}
.blog-title { font-size: 17px; font-weight: 700; color: var(--text-heading); line-height: 1.35; margin-bottom: 12px; }
.blog-excerpt { font-size: 14px; color: var(--text-body); line-height: 1.65; margin-bottom: 20px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; }
.blog-read-time { font-size: 12px; color: var(--text-muted); }
.blog-link { font-size: 13px; font-weight: 600; color: var(--blue-primary); }

/* ===== APP SECTION ===== */
.app-section {
  background: #0f172a; padding: var(--section-padding);
  position: relative; overflow: hidden;
}
.app-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.app-blob-1 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 70%);
  top: -200px; right: -100px; pointer-events: none;
}
.app-blob-2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.12), transparent 70%);
  bottom: -100px; left: -100px; pointer-events: none;
}
.app-check-list { list-style: none; padding: 0; margin-bottom: 36px; }
.app-check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: 15px; color: rgba(255,255,255,0.85);
}
.app-check-list li::before {
  content: '✓'; color: white; background: var(--gradient-cta);
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.app-waitlist { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.app-waitlist input {
  flex: 1; min-width: 200px; padding: 14px 18px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full); color: white;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; outline: none;
  transition: border-color 0.2s;
}
.app-waitlist input::placeholder { color: rgba(255,255,255,0.4); }
.app-waitlist input:focus { border-color: rgba(37,99,235,0.6); }
.app-note { font-size: 12px; color: rgba(255,255,255,0.5); }
.app-phone-mockup {
  width: 260px; margin: 0 auto;
  background: #1e293b; border-radius: 36px;
  padding: 10px; box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
}
.app-phone-screen {
  background: #0f172a; border-radius: 28px; overflow: hidden; min-height: 480px;
}
.app-phone-header {
  background: #1e293b; padding: 16px 20px 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.app-phone-header p { color: rgba(255,255,255,0.5); font-size: 11px; margin: 0; }
.app-phone-header strong { color: white; font-size: 16px; display: block; }
.app-live-dot {
  display: flex; align-items: center; gap: 6px;
  background: rgba(16,185,129,0.15); color: #10b981;
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: var(--radius-full);
}
.app-live-dot::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #10b981; animation: pulse-dot 2s infinite;
}
.app-phone-body { padding: 16px; }
.app-stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.app-stat-card {
  background: #1e293b; border-radius: 12px; padding: 14px;
  border: 1px solid rgba(255,255,255,0.06);
}
.app-stat-card strong { display: block; font-size: 22px; font-weight: 700; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.app-stat-card small { font-size: 11px; color: rgba(255,255,255,0.45); }
.app-chart { background: #1e293b; border-radius: 12px; padding: 14px; margin-bottom: 12px; border: 1px solid rgba(255,255,255,0.06); }
.app-chart p { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
.app-chart-bars { display: flex; align-items: flex-end; gap: 5px; height: 40px; }
.app-chart-bar { flex: 1; background: var(--gradient-cta); border-radius: 3px 3px 0 0; opacity: 0.7; }
.app-notification {
  background: #1e293b; border-radius: 12px; padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,0.06); border-left: 3px solid #10b981;
}
.app-notif-dot { width: 8px; height: 8px; border-radius: 50%; background: #10b981; flex-shrink: 0; }
.app-notification strong { display: block; font-size: 12px; font-weight: 600; color: white; }
.app-notification small { font-size: 11px; color: rgba(255,255,255,0.4); }
.app-phone-nav {
  background: #1e293b; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-around; padding: 12px 0 8px;
  margin-top: 8px;
}
.app-nav-icon { font-size: 18px; opacity: 0.5; cursor: default; }
.app-nav-icon.active-nav { opacity: 1; }

/* ===== BLOG ARTICLE PAGE ===== */
.article-hero { padding: 80px 0 60px; background: var(--bg-blue-tint); }
.article-header { max-width: 760px; margin: 0 auto; }
.article-body { max-width: 760px; margin: 0 auto; padding: 60px 0 80px; }
.article-body h2 { font-size: 26px; margin: 40px 0 16px; }
.article-body h3 { font-size: 20px; margin: 32px 0 12px; }
.article-body p { font-size: 16px; line-height: 1.85; color: var(--text-body); margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { font-size: 16px; color: var(--text-body); line-height: 1.75; margin-bottom: 8px; }
.article-callout { background: var(--bg-blue-tint); border-left: 4px solid var(--blue-primary); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 20px 24px; margin: 32px 0; }
.article-callout p { margin: 0; font-size: 15px; }
.article-author-bar { display: flex; align-items: center; gap: 16px; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 0; }
.article-author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gradient-cta); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 18px; flex-shrink: 0; }
.article-back { display: inline-flex; align-items: center; gap: 6px; color: var(--blue-primary); font-weight: 600; font-size: 14px; margin-bottom: 20px; }

/* ===== PRIVACY / TERMS PAGE ===== */
.legal-page { max-width: 760px; margin: 0 auto; padding: 60px 24px 100px; }
.legal-page h1 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 8px; }
.legal-page h2 { font-size: 22px; font-weight: 700; color: var(--text-heading); margin: 40px 0 12px; padding-top: 8px; border-top: 1px solid var(--border); }
.legal-page h3 { font-size: 17px; font-weight: 600; color: var(--text-heading); margin: 24px 0 8px; }
.legal-page p, .legal-page li { font-size: 15px; line-height: 1.85; color: var(--text-body); margin-bottom: 14px; }
.legal-page ul, .legal-page ol { padding-left: 22px; margin-bottom: 16px; }
.legal-page a { color: var(--blue-primary); }
.legal-toc {
  position: sticky; top: 100px; background: var(--bg-soft);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; font-size: 13px;
}
.legal-toc h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.legal-toc a { display: block; color: var(--text-body); padding: 5px 0; border-bottom: 1px solid var(--border); text-decoration: none; transition: color 0.2s; }
.legal-toc a:last-child { border-bottom: none; }
.legal-toc a:hover { color: var(--blue-primary); }
.legal-layout { display: grid; grid-template-columns: 1fr 260px; gap: 60px; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 900px) { .legal-layout { grid-template-columns: 1fr; } .legal-toc { display: none; } }

/* ===== 404 PAGE ===== */
.page-404 { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.four-oh-four { font-family: 'Sora', sans-serif; font-size: clamp(100px, 20vw, 180px); font-weight: 700; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 16px; animation: float-404 4s ease-in-out infinite; }
@keyframes float-404 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.quick-links-404 { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ===== CAREERS PAGE ===== */
.job-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-blue); }
.job-pill {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 600; padding: 4px 12px;
  border-radius: var(--radius-full); margin-right: 6px; margin-bottom: 6px;
}
.pill-dept { background: var(--blue-light); color: var(--blue-primary); }
.pill-location { background: var(--bg-soft); color: var(--text-body); border: 1px solid var(--border); }
.pill-type { background: #dcfce7; color: #16a34a; }
.job-requirements { margin: 16px 0; padding-left: 0; list-style: none; }
.job-requirements li { font-size: 14px; color: var(--text-body); padding: 6px 0; padding-left: 18px; position: relative; }
.job-requirements li::before { content: '•'; position: absolute; left: 0; color: var(--blue-primary); font-weight: 700; }
.job-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.job-posted { font-size: 12px; color: var(--text-muted); }
.spec-card { background: var(--bg-blue-tint); border: 1px solid var(--blue-light); border-radius: var(--radius-xl); padding: 40px; text-align: center; margin-top: 32px; }
.careers-cta-banner { background: var(--gradient-cta); padding: 80px 0; text-align: center; }
.diversity-callout { border-left: 4px solid var(--blue-primary); background: var(--bg-blue-tint); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 24px 32px; max-width: 700px; margin: 40px auto 0; font-style: italic; font-size: 15px; color: var(--text-body); line-height: 1.8; text-align: center; }
.programme-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column;
}
.programme-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-blue); }
.programme-name { font-size: 18px; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.programme-tagline { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.target-pill { display: inline-flex; background: var(--blue-light); color: var(--blue-primary); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: var(--radius-full); margin-bottom: 14px; }
.programme-desc { font-size: 13px; color: var(--text-body); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.btn-outline { background: transparent; color: var(--blue-primary); border: 1.5px solid var(--border-blue); border-radius: var(--radius-full); padding: 10px 20px; font-size: 13px; font-weight: 600; font-family: inherit; cursor: pointer; width: 100%; transition: all 0.2s; text-decoration: none; display: inline-block; text-align: center; }
.btn-outline:hover { background: var(--blue-light); border-color: var(--blue-primary); }
.grid-3-to-2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-3-to-2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3-to-2 { grid-template-columns: 1fr; } }

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 20px 0; background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-label {
  text-align: center; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 16px;
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 20px; font-size: 13px; font-weight: 600;
  color: var(--text-body); transition: color 0.2s;
}
.trust-item:hover { color: var(--blue-primary); }
.trust-icon { font-size: 16px; }
.trust-divider { width: 1px; height: 20px; background: var(--border); flex-shrink: 0; }
@media (max-width: 768px) {
  .trust-items { gap: 8px; }
  .trust-divider { display: none; }
  .trust-item { padding: 6px 12px; font-size: 12px; background: white; border: 1px solid var(--border); border-radius: var(--radius-full); }
}

/* ===== ROI CALCULATOR ===== */
.roi-calculator-section {
  background: var(--bg-blue-tint);
  background-image: radial-gradient(circle, #c7d7f5 1px, transparent 1px);
  background-size: 28px 28px;
  padding: var(--section-padding);
}
.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.roi-inputs { }
.roi-input-group { margin-bottom: 32px; }
.roi-input-group label { display: block; font-size: 15px; font-weight: 600; color: var(--text-heading); margin-bottom: 12px; }
.roi-slider-wrap { position: relative; }
.roi-slider-value { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 700; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; display: block; }
input[type="range"].roi-slider {
  width: 100%; height: 6px; appearance: none;
  background: linear-gradient(to right, var(--blue-primary) 0%, var(--blue-primary) var(--fill, 14%), var(--blue-light) var(--fill, 14%));
  border-radius: 3px; outline: none; cursor: pointer;
}
input[type="range"].roi-slider::-webkit-slider-thumb {
  appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--gradient-cta); border: 3px solid white;
  box-shadow: var(--shadow-blue); cursor: pointer; transition: transform 0.2s;
}
input[type="range"].roi-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"].roi-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gradient-cta); border: 3px solid white;
  box-shadow: var(--shadow-blue); cursor: pointer;
}
.roi-slider-labels { display: flex; justify-content: space-between; margin-top: 6px; font-size: 11px; color: var(--text-muted); }
.roi-money-input { position: relative; }
.roi-money-input .currency-prefix {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-size: 18px; font-weight: 700; color: var(--text-heading); pointer-events: none;
}
.roi-money-input input {
  width: 100%; padding: 14px 16px 14px 36px;
  border: 2px solid var(--border); border-radius: var(--radius-md);
  font-size: 18px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-heading); outline: none; background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.roi-money-input input:focus { border-color: var(--blue-primary); box-shadow: 0 0 0 4px rgba(37,99,235,0.1); }
.roi-helper { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.roi-select {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-md);
  font-size: 15px; font-weight: 500; font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-heading); outline: none; background: white; cursor: pointer;
  transition: border-color 0.2s;
}
.roi-select:focus { border-color: var(--blue-primary); }
.roi-results {
  background: white; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl); overflow: hidden;
  border-top: 3px solid var(--blue-primary);
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #2563eb, #7c3aed) border-box;
  border-top: 3px solid transparent;
}
.roi-results-header { background: var(--gradient-cta); padding: 20px 28px; }
.roi-results-header p { color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 600; }
.roi-results-body { padding: 28px; }
.roi-stat { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.roi-stat:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.roi-stat-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.roi-stat-value { font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 700; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.roi-stat-annual .roi-stat-value { font-size: 64px; }
.roi-stat-gain .roi-stat-value { -webkit-text-fill-color: unset; background: none; color: var(--green-success); }
.roi-industry-msg { background: var(--bg-blue-tint); border-radius: var(--radius-md); padding: 12px 16px; margin-bottom: 20px; font-size: 13px; color: var(--text-body); font-style: italic; border-left: 3px solid var(--blue-primary); }
@media (max-width: 900px) { .roi-grid { grid-template-columns: 1fr; } }

/* ===== SOCIAL PROOF WIDGET ===== */
.social-proof-widget {
  position: fixed; bottom: 32px; left: 32px; z-index: 996;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px 18px;
  box-shadow: var(--shadow-xl); display: flex; align-items: center; gap: 12px;
  max-width: 300px; min-width: 260px;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.social-proof-widget.show { transform: translateX(0); }
.sp-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none; font-size: 16px;
  color: var(--text-muted); cursor: pointer; line-height: 1;
}
.sp-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-cta); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; flex-shrink: 0;
}
.sp-name { font-size: 13px; font-weight: 700; color: var(--text-heading); }
.sp-action { font-size: 12px; color: var(--text-body); margin: 1px 0; }
.sp-meta { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.sp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-success); animation: pulse-dot 2s infinite; flex-shrink: 0; }
#spLocation { font-size: 11px; color: var(--text-muted); font-weight: 500; }
#spTime { font-size: 11px; color: var(--text-muted); }
#spTime::before { content: '· '; }
@media (max-width: 768px) { .social-proof-widget { bottom: 90px; left: 16px; max-width: calc(100vw - 32px); } }

/* ===== FOOTER NEWSLETTER ===== */
.footer-newsletter {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; padding: 36px 0; margin-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.fn-left { max-width: 380px; }
.fn-left h4 { color: white; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.fn-left p { color: #64748b; font-size: 14px; line-height: 1.6; margin-bottom: 0; }
.fn-form { flex: 1; min-width: 300px; }
.fn-inputs { display: flex; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.fn-inputs input {
  flex: 1; min-width: 140px; padding: 13px 16px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full); color: white;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.2s;
}
.fn-inputs input:focus { border-color: rgba(37,99,235,0.6); }
.fn-inputs input::placeholder { color: rgba(255,255,255,0.35); }
.fn-note { font-size: 11px; color: #475569; }
@media (max-width: 768px) { .footer-newsletter { flex-direction: column; } }

/* ===== CHATBOT ===== */
.chatbot-trigger {
  position: fixed; bottom: 32px; right: 100px; z-index: 995;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 12px 18px 12px 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-xl); cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
  max-width: 220px;
}
.chatbot-trigger:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); }
.chatbot-trigger-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-cta); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.chatbot-trigger-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--text-heading); }
.chatbot-trigger-text span { font-size: 11px; color: var(--text-muted); }
.chatbot-online-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-success);
  animation: pulse-dot 2s infinite; flex-shrink: 0;
}
.chatbot-window {
  position: fixed; bottom: 100px; right: 24px; z-index: 994;
  width: 380px; max-height: 560px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-xl);
  display: flex; flex-direction: column; overflow: hidden;
  transform: scale(0.9) translateY(20px); opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}
.chatbot-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chatbot-header {
  background: var(--gradient-cta); padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.chatbot-header-left { display: flex; align-items: center; gap: 10px; }
.chatbot-avatar-cb {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.2); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.chatbot-header-left strong { display: block; color: white; font-size: 14px; font-weight: 700; }
.chatbot-header-left span { color: rgba(255,255,255,0.8); font-size: 11px; }
.chatbot-close-btn { background: rgba(255,255,255,0.2); border: none; color: white; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.chatbot-close-btn:hover { background: rgba(255,255,255,0.3); }
.chatbot-messages {
  flex: 1; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  scroll-behavior: smooth;
}
.chatbot-msg { display: flex; }
.chatbot-msg.bot { justify-content: flex-start; }
.chatbot-msg.user { justify-content: flex-end; }
.msg-bubble {
  max-width: 80%; padding: 10px 14px;
  border-radius: 18px; font-size: 14px; line-height: 1.55;
}
.chatbot-msg.bot .msg-bubble { background: var(--bg-soft); color: var(--text-heading); border-bottom-left-radius: 4px; }
.chatbot-msg.user .msg-bubble { background: var(--gradient-cta); color: white; border-bottom-right-radius: 4px; }
.chatbot-typing .msg-bubble { padding: 14px 18px; }
.typing-dots { display: flex; gap: 4px; }
.typing-dots span { width: 6px; height: 6px; background: var(--text-muted); border-radius: 50%; animation: typing-bounce 1.2s infinite; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }
.chatbot-quick-replies { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.chatbot-quick-replies button {
  background: white; border: 1.5px solid var(--border-blue);
  color: var(--blue-primary); border-radius: var(--radius-full);
  padding: 6px 12px; font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif;
}
.chatbot-quick-replies button:hover { background: var(--blue-light); }
.chatbot-input-area { padding: 12px 16px; border-top: 1px solid var(--border); }
.chatbot-input-row { display: flex; gap: 8px; margin-bottom: 6px; }
#chatbotInput {
  flex: 1; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-full); font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; outline: none; transition: border-color 0.2s;
}
#chatbotInput:focus { border-color: var(--blue-primary); }
.chatbot-send {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-cta); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s; flex-shrink: 0;
}
.chatbot-send:hover { transform: scale(1.08); }
.chatbot-disclaimer { font-size: 10px; color: var(--text-muted); text-align: center; }
.chatbot-disclaimer a { color: var(--blue-primary); }
@media (max-width: 480px) {
  .chatbot-window { width: calc(100vw - 24px); right: 12px; bottom: 80px; }
  .chatbot-trigger { right: 16px; bottom: 90px; max-width: 180px; }
  .chatbot-trigger-text span { display: none; }
}

/* ===== REFERRAL PAGE ===== */
.referral-earn-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.earn-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px 32px; text-align: center; box-shadow: var(--shadow-md); transition: transform 0.3s, box-shadow 0.3s; }
.earn-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.earn-number { font-family: 'Sora', sans-serif; font-size: 56px; font-weight: 700; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 8px; }
.earn-label { font-size: 15px; font-weight: 600; color: var(--text-heading); margin-bottom: 8px; }
.earn-desc { font-size: 14px; color: var(--text-body); line-height: 1.6; }
.refer-earnings-calc { background: var(--bg-blue-tint); border-radius: var(--radius-xl); padding: 40px; margin-top: 48px; }
.refer-earnings-result { background: white; border-radius: var(--radius-lg); padding: 28px; margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.refer-result-item { text-align: center; }
.refer-result-value { font-family: 'Sora', sans-serif; font-size: 40px; font-weight: 700; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.refer-result-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
@media (max-width: 768px) { .referral-earn-cards { grid-template-columns: 1fr; } .refer-earnings-result { grid-template-columns: 1fr; } }
