/* ====================================================
   OMNI LANDING — MASTER STYLESHEET
   Design System: Light Mode + WhatsApp Green + Teal
   ==================================================== */

/* ─── Google Fonts ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── CSS Variables (Design Tokens) ────────────────── */
:root {
  /* Colors */
  --green-primary:   #25D366;
  --green-dark:      #128C7E;
  --green-light:     #DCF8C6;
  --teal:            #00BFA5;
  --teal-dark:       #00897B;
  --accent-purple:   #6C63FF;
  --accent-blue:     #3B82F6;
  --accent-orange:   #F59E0B;

  /* Backgrounds */
  --bg-primary:      #FAFBFF;
  --bg-card:         #FFFFFF;
  --bg-muted:        #F1F5F9;
  --bg-green-soft:   #F0FDF4;
  --bg-hero-grad:    linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 50%, #F0F9FF 100%);

  /* Text */
  --text-primary:    #0A1628;
  --text-secondary:  #475569;
  --text-muted:      #94A3B8;
  --text-white:      #FFFFFF;
  --text-green:      #16A34A;

  /* Borders */
  --border:          #E2E8F0;
  --border-green:    #BBF7D0;

  /* Gradients */
  --grad-primary:    linear-gradient(135deg, #25D366 0%, #00BFA5 100%);
  --grad-hero:       linear-gradient(135deg, #0A1628 0%, #1a2d4d 100%);
  --grad-card:       linear-gradient(145deg, #fff 0%, #f8fffe 100%);
  --grad-glow:       radial-gradient(circle at 50% 50%, rgba(37,211,102,0.15) 0%, transparent 70%);

  /* Shadows */
  --shadow-xs:       0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:       0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:       0 8px 24px rgba(0,0,0,0.1);
  --shadow-lg:       0 20px 60px rgba(0,0,0,0.12);
  --shadow-green:    0 8px 32px rgba(37,211,102,0.3);
  --shadow-card:     0 4px 20px rgba(37,211,102,0.08), 0 1px 4px rgba(0,0,0,0.06);

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;

  /* Border Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 999px;

  /* Transitions */
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.64, 0, 0.78, 0);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:  150ms;
  --dur-base:  250ms;
  --dur-slow:  400ms;
}

/* ─── Reset & Base ──────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ─── Scroll Progress Bar ───────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-primary);
  z-index: 9999;
  transition: width 50ms linear;
  border-radius: 0 2px 2px 0;
}

/* ─── Container ─────────────────────────────────────── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Utility Classes ───────────────────────────────── */
.text-green  { color: var(--green-primary); }
.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-green {
  background: var(--bg-green-soft);
  color: var(--text-green);
  border: 1px solid var(--border-green);
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
}
.section-center { text-align: center; }
.section-center .section-subtitle { margin: 0 auto; }

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--dur-base) var(--ease-smooth);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: var(--bg-green-soft);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ─── Scroll Reveal Animations ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ─── NAVBAR ────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--dur-slow) var(--ease-smooth);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  flex-shrink: 0;
}
.nav-logo img {
  height: 36px;
  width: auto;
  border-radius: 8px;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--grad-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  overflow: hidden;
  flex-shrink: 0;
  transition: all var(--dur-fast) var(--ease-smooth);
}
.nav-logo-icon.has-custom-img {
  background: transparent;
  border-radius: 8px;
}
.brand-logo-img {
  width: 100%;
  height: 100%;
  max-height: 36px;
  object-fit: contain;
  border-radius: 6px;
}
.nav-logo-text span { color: var(--green-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--dur-fast) var(--ease-smooth);
}
.nav-links a:hover {
  color: var(--text-primary);
  background: var(--bg-muted);
}
.nav-links a.active {
  color: var(--green-dark);
  background: rgba(37, 211, 102, 0.12);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-login {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--dur-fast);
}
.nav-login:hover { color: var(--text-primary); background: var(--bg-muted); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast);
}
.nav-hamburger:hover { background: var(--bg-muted); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-smooth);
}
.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--dur-fast);
}
.nav-mobile a:hover {
  color: var(--text-primary);
  background: var(--bg-muted);
}
.nav-mobile a.active {
  color: var(--green-dark);
  background: rgba(37, 211, 102, 0.12);
  font-weight: 600;
}
.nav-mobile .btn { margin-top: 12px; text-align: center; }

/* ─── HERO SECTION ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-hero-grad);
  padding: 120px 0 80px;
}

/* Animated background elements */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,211,102,0.2), transparent 70%);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}
.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,191,165,0.15), transparent 70%);
  bottom: -100px;
  left: 10%;
  animation-delay: -3s;
}
.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(108,99,255,0.1), transparent 70%);
  top: 30%;
  left: 50%;
  animation-delay: -6s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.05); }
  66%       { transform: translate(-10px, 20px) scale(0.95); }
}

/* Grid dots background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(37,211,102,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Left */
.hero-content { }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-full);
  padding: 6px 16px 6px 8px;
  margin-bottom: 28px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-green);
  animation: fadeSlideDown 0.8s var(--ease-out) forwards;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 8px;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.1s both;
}
.hero-title-line2 {
  display: block;
  color: var(--text-primary);
}
.hero-typewriter-wrapper {
  display: block;
  min-height: 1.2em;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.2s both;
}
.hero-typewriter {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-right: 3px solid var(--green-primary);
  animation: blink 0.8s step-end infinite;
}
@keyframes blink {
  0%, 100% { border-color: var(--green-primary); }
  50%       { border-color: transparent; }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 24px 0 36px;
  max-width: 520px;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.3s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.4s both;
}

.hero-trust-pills {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.5s both;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.trust-pill-check {
  width: 18px;
  height: 18px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* Hero Right — Dashboard Mockup */
.hero-visual {
  position: relative;
  animation: fadeSlideUp 1s var(--ease-out) 0.3s both;
}
.hero-mockup {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
  transition: transform 0.6s var(--ease-out);
}
.hero-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Mockup Window Bar */
.mockup-bar {
  background: #F8FAFC;
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mockup-dots {
  display: flex;
  gap: 6px;
}
.mockup-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FEBC2E; }
.mockup-dot:nth-child(3) { background: #28C840; }
.mockup-url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Dashboard UI inside mockup */
.mockup-dashboard {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 380px;
}
.dash-sidebar {
  background: #0A1628;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-sidebar-item {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--dur-fast);
}
.dash-sidebar-item.active {
  background: rgba(37,211,102,0.15);
  color: var(--green-primary);
}
.dash-sidebar-item svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
}

.dash-main {
  background: var(--bg-primary);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dash-stat-card {
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid var(--border);
}
.dash-stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.dash-stat-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
}
.dash-stat-value.green { color: var(--green-primary); }
.dash-stat-badge {
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 999px;
  background: #DCFCE7;
  color: #16A34A;
  font-weight: 600;
  margin-top: 2px;
  display: inline-block;
}

/* Chat messages in mockup */
.dash-messages {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.dash-msg-header {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-primary);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-msg-dot {
  width: 6px; height: 6px;
  background: var(--green-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.msg-bubble {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.msg-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.msg-content {
  background: var(--bg-muted);
  border-radius: 0 8px 8px 8px;
  padding: 6px 9px;
  font-size: 0.65rem;
  color: var(--text-primary);
  max-width: 150px;
  line-height: 1.4;
}
.msg-content.sent {
  background: var(--green-light);
  border-radius: 8px 0 8px 8px;
}
.msg-time {
  font-size: 0.55rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Floating notification cards */
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  white-space: nowrap;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card-1 {
  top: -20px;
  right: -30px;
  animation-delay: 0s;
}
.hero-float-card-2 {
  bottom: 30px;
  left: -30px;
  animation-delay: -2s;
}
.hero-float-card-3 {
  top: 50%;
  right: -40px;
  animation-delay: -4s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
.float-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.float-icon.green { background: #DCFCE7; }
.float-icon.blue  { background: #DBEAFE; }
.float-icon.purple{ background: #EDE9FE; }
.float-info strong {
  display: block;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.82rem;
}
.float-info span {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* ─── TRUST BAR ─────────────────────────────────────── */
.trust-bar {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-bar-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  flex: 1;
}
.trust-logo-item {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.6;
  letter-spacing: -0.02em;
  transition: opacity var(--dur-base);
}
.trust-logo-item:hover { opacity: 1; }

.trust-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-stat {
  text-align: center;
}
.trust-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
}
.trust-stat span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ─── FEATURES BENTO GRID ───────────────────────────── */
.features {
  padding: var(--section-padding);
}
.features-header {
  text-align: center;
  margin-bottom: 60px;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Wide cards */
.bento-card:nth-child(1),
.bento-card:nth-child(5),
.bento-card:nth-child(9) {
  grid-column: span 2;
}

.bento-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--dur-slow) var(--ease-smooth);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--dur-slow);
  border-radius: inherit;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(37,211,102,0.2);
  border-color: rgba(37,211,102,0.3);
}
.bento-card:hover::before { opacity: 0.03; }

.bento-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.bento-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.bento-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.bento-card-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Feature card visual previews (wide cards) */
.bento-preview {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-muted);
  height: 120px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
}

/* Mini chat bubbles preview */
.mini-chat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.mini-bubble {
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.65rem;
  max-width: 70%;
  color: var(--text-primary);
}
.mini-bubble.in  { background: #fff; border: 1px solid var(--border); }
.mini-bubble.out {
  background: var(--green-light);
  margin-left: auto;
}

/* Mini bar chart */
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  padding: 0 8px;
  width: 100%;
}
.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--grad-primary);
  opacity: 0.7;
  transition: height 1s var(--ease-out);
  min-height: 4px;
}
.chart-bar:nth-child(even) { background: var(--teal); opacity: 0.5; }

/* ─── HOW IT WORKS ──────────────────────────────────── */
.how-it-works {
  padding: var(--section-padding);
  background: var(--bg-muted);
}
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.steps-container::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--green-primary), var(--teal));
  z-index: 0;
}
.step-item {
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 88px; height: 88px;
  background: var(--bg-card);
  border: 3px solid var(--border-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: all var(--dur-base) var(--ease-smooth);
}
.step-item:hover .step-number {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-green);
  transform: scale(1.05);
}
.step-num-badge {
  position: absolute;
  top: -6px; right: -6px;
  width: 24px; height: 24px;
  background: var(--grad-primary);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── USE CASES TABS ────────────────────────────────── */
.use-cases {
  padding: var(--section-padding);
}
.use-cases-header {
  text-align: center;
  margin-bottom: 48px;
}
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  background: var(--bg-muted);
  padding: 6px;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--dur-base) var(--ease-smooth);
  cursor: pointer;
}
.tab-btn.active {
  background: #fff;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.tab-content {
  display: none;
  animation: tabFadeIn 0.4s var(--ease-out);
}
.tab-content.active { display: grid; }
.tab-content-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tab-visual {
  background: var(--bg-muted);
  border-radius: var(--radius-xl);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.tab-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0.06;
}
.tab-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tab-info-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.tab-info-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}
.tab-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.tab-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}
.tab-feature-check {
  width: 20px; height: 20px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: #fff;
}

/* ─── STATS SECTION ─────────────────────────────────── */
.stats-section {
  padding: 80px 0;
  background: var(--text-primary);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.stat-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--dur-base) var(--ease-smooth);
}
.stat-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-number .counter-suffix {
  color: var(--green-primary);
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ─── TESTIMONIALS ──────────────────────────────────── */
.testimonials {
  padding: var(--section-padding);
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 16px;
  animation: marqueeLeft 40s linear infinite;
}
.marquee-track.reverse {
  animation: marqueeRight 40s linear infinite;
}
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  min-width: 320px;
  max-width: 320px;
  transition: all var(--dur-base) var(--ease-smooth);
  flex-shrink: 0;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(37,211,102,0.3);
  transform: translateY(-2px);
}
.testi-stars {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testi-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}
.testi-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── COMPARISON TABLE ──────────────────────────────── */
.comparison {
  padding: var(--section-padding);
  background: var(--bg-muted);
}
.comparison-header {
  text-align: center;
  margin-bottom: 48px;
}
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}
.comparison-table th,
.comparison-table td {
  padding: 16px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.comparison-table th {
  background: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-bottom: 2px solid var(--border);
}
.comparison-table th.highlight {
  background: var(--bg-green-soft);
  color: var(--text-green);
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-primary);
}
.comparison-table td.highlight {
  background: rgba(37,211,102,0.04);
  font-weight: 700;
  color: var(--text-green);
}
.comparison-table tr:last-child td { border-bottom: none; }
.check-yes { color: var(--green-primary); font-size: 1.1rem; }
.check-no  { color: var(--text-muted); font-size: 1.1rem; }
.check-partial { color: var(--accent-orange); font-size: 1.1rem; }

/* ─── PRICING PREVIEW ───────────────────────────────── */
.pricing-section {
  padding: var(--section-padding);
  text-align: center;
}
.pricing-card {
  max-width: 600px;
  margin: 60px auto 0;
  background: var(--bg-card);
  border: 2px solid var(--border-green);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  position: relative;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-primary);
}
.pricing-card-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
}
.pricing-card-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.pricing-card-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.pricing-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 32px 0;
}
.perk-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-green-soft);
  border: 1px solid var(--border-green);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-green);
}

/* ─── FAQ ───────────────────────────────────────────── */
.faq-section {
  padding: var(--section-padding);
  background: var(--bg-muted);
}
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-base);
}
.faq-item.open { border-color: var(--border-green); }
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color var(--dur-fast);
}
.faq-item.open .faq-question { color: var(--green-dark); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: all var(--dur-base) var(--ease-smooth);
}
.faq-item.open .faq-icon {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth), padding 0.3s;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ─── FINAL CTA ─────────────────────────────────────── */
.final-cta {
  padding: 100px 0;
  background: var(--text-primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(37,211,102,0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(0,191,165,0.1) 0%, transparent 60%);
}
.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  margin-bottom: 24px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-primary);
}
.final-cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.final-cta-title .text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final-cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.final-cta-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 1;
}

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
  background: #060D1A;
  padding: 60px 0 32px;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--dur-base);
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: #fff;
}
.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  transition: color var(--dur-fast);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ─── SCROLL TO TOP ─────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow-green);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--dur-base) var(--ease-smooth);
  z-index: 999;
  border: none;
}
#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
#scroll-top:hover { transform: translateY(-4px); }

/* ─── DEMO CHAT WIDGET ──────────────────────────────── */
.chat-widget {
  position: fixed;
  bottom: 92px;
  right: 32px;
  z-index: 998;
}
.chat-widget-btn {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  cursor: pointer;
  border: none;
  animation: chatBounce 3s ease-in-out infinite;
  transition: transform var(--dur-base);
}
.chat-widget-btn:hover { transform: scale(1.1); }
@keyframes chatBounce {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}
.chat-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
  overflow: hidden;
  display: none;
  flex-direction: column;
  animation: chatOpen 0.3s var(--ease-out);
}
.chat-panel.open { display: flex; }
@keyframes chatOpen {
  from { opacity: 0; transform: scale(0.9) translateY(10px); transform-origin: bottom right; }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.chat-panel-header {
  background: #128C7E;
  padding: 16px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.chat-panel-title { font-weight: 700; font-size: 0.9rem; }
.chat-panel-subtitle { font-size: 0.75rem; opacity: 0.7; margin-top: 2px; }
.chat-panel-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background var(--dur-fast);
}
.chat-panel-close:hover { background: rgba(255,255,255,0.25); }
.chat-panel-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 280px;
  overflow-y: auto;
  background: #ECE5DD;
}
.chat-msg {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.chat-msg.out { flex-direction: row-reverse; }
.chat-bubble {
  background: #fff;
  padding: 10px 12px;
  border-radius: 12px 12px 12px 0;
  font-size: 0.82rem;
  color: #1a1a1a;
  max-width: 200px;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.chat-msg.out .chat-bubble {
  background: #DCF8C6;
  border-radius: 12px 12px 0 12px;
}
.chat-time {
  font-size: 0.6rem;
  color: rgba(0,0,0,0.4);
  padding: 0 4px;
}
.chat-panel-footer {
  padding: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}
.chat-input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  font-size: 0.85rem;
  outline: none;
  font-family: inherit;
  transition: border-color var(--dur-fast);
}
.chat-input:focus { border-color: var(--green-primary); }
.chat-send {
  width: 36px; height: 36px;
  background: var(--green-primary);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur-fast);
}
.chat-send:hover { background: var(--green-dark); }

/* ─── PAGE LOADER ───────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  animation: pulse 1.5s ease-in-out infinite;
}
.loader-logo span { color: var(--green-primary); }
.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: var(--grad-primary);
  border-radius: 2px;
  animation: loadFill 1.5s var(--ease-out) forwards;
}
@keyframes loadFill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ─── ANIMATIONS ────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 1; }
  .hero-visual  { order: 2; max-width: 600px; margin: 0 auto; }
  .hero-trust-pills { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-float-card { display: none; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card:nth-child(1),
  .bento-card:nth-child(5),
  .bento-card:nth-child(9) { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tab-content-inner { grid-template-columns: 1fr; }
  .tab-visual { min-height: 200px; }
}
@media (max-width: 768px) {
  :root { --section-padding: 70px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-login { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .steps-container { grid-template-columns: 1fr; gap: 40px; }
  .steps-container::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .tabs-nav { flex-wrap: wrap; border-radius: var(--radius-xl); }
  .hero-mockup { transform: none; }
  .comparison-table th:not(:first-child):not(.highlight),
  .comparison-table td:not(:first-child):not(.highlight) { display: none; }
  .comparison-table th:nth-child(2),
  .comparison-table td:nth-child(2) { display: table-cell; }
  .trust-bar-inner { flex-direction: column; gap: 24px; text-align: center; }
  .trust-logos { justify-content: center; }
  .trust-stats { justify-content: center; }
  #scroll-top { bottom: 20px; right: 20px; }
  .chat-widget { bottom: 80px; right: 20px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 36px 24px; }
  .chat-panel { width: 280px; }
}
