/* ====================================================
   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%;
  overflow-x: hidden;
  max-width: 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;
  max-width: 100%;
  width: 100%;
  position: relative;
  -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;
}
.btn-block {
  width: 100%;
  max-width: 100%;
  display: inline-flex;
  justify-content: center;
  text-align: center;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

/* ─── 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: 14px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all var(--dur-base) var(--ease-smooth);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom-color: var(--border);
  padding: 10px 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: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  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;
  width: auto;
  min-width: unset;
  height: 42px;
  max-width: 220px;
  display: flex;
  align-items: center;
  border-radius: 8px;
}
.brand-logo-img {
  width: auto;
  height: 100%;
  max-height: 40px;
  max-width: 220px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}
.loader-logo-img {
  width: auto;
  height: auto;
  max-height: 60px;
  max-width: 280px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  animation: pulse 1.5s ease-in-out infinite;
}
.nav-logo-text span { color: var(--green-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  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: 600;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--dur-fast);
}
.nav-login:hover { color: var(--text-primary); background: var(--bg-muted); }

/* ─── HAMBURGER BUTTON ──────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-fast) var(--ease-smooth);
  flex-shrink: 0;
  z-index: 1001;
}
.nav-hamburger:hover {
  background: var(--bg-muted);
  border-color: rgba(37, 211, 102, 0.4);
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-smooth);
  transform-origin: center;
}
.nav-hamburger.active {
  background: var(--bg-muted);
  border-color: var(--green-primary);
}
.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--green-dark);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--green-dark);
}

/* ─── BACKDROP OVERLAY ──────────────────────────────── */
.nav-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.nav-mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ─── MOBILE DRAWER ─────────────────────────────────── */
.nav-mobile {
  display: block;
  position: fixed;
  top: 72px;
  left: 14px;
  right: 14px;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  box-shadow: 0 20px 50px -10px rgba(10, 22, 40, 0.18), 0 0 0 1px rgba(0,0,0,0.03);
  z-index: 999;
  max-height: calc(100vh - 90px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(-16px) scale(0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
}
.nav-mobile.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-mobile-inner {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
}
.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-mobile-icon {
  font-size: 1.2rem;
}
.nav-mobile-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}
.nav-mobile-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border: none;
  cursor: pointer;
  transition: all var(--dur-fast);
}
.nav-mobile-close:hover {
  background: #E2E8F0;
  color: var(--text-primary);
}
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav-mobile-item {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  transition: all var(--dur-fast);
  text-decoration: none;
  gap: 12px;
}
.nav-mobile-item:hover {
  background: var(--bg-muted);
  transform: translateX(4px);
}
.nav-mobile-item.active {
  background: rgba(37, 211, 102, 0.12);
  color: var(--green-dark);
}
.nav-mobile-item-icon {
  font-size: 1.15rem;
  width: 24px;
  text-align: center;
}
.nav-mobile-item-text {
  flex: 1;
}
.nav-mobile-item-arrow {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: transform var(--dur-fast);
}
.nav-mobile-item:hover .nav-mobile-item-arrow {
  transform: translateX(3px);
  color: var(--green-primary);
}
.nav-mobile-badge {
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}
.nav-mobile-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}
.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-mobile-cta {
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
.nav-mobile-login-btn {
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 14px;
  background: var(--bg-muted);
  color: var(--text-primary);
  border: 1px solid var(--border);
  text-align: center;
}
.nav-mobile-login-btn:hover {
  background: #E2E8F0;
}
.nav-mobile-wa-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #128C7E;
  border-radius: 10px;
  text-decoration: none;
  transition: background var(--dur-fast);
  margin-top: 4px;
}
.nav-mobile-wa-link:hover {
  background: rgba(37, 211, 102, 0.08);
}

/* ─── 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: 24px;
}

/* Wide cards spanning 2 columns on desktop */
@media (min-width: 992px) {
  .bento-card.bento-wide,
  .bento-card-wide {
    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;
  display: flex;
  flex-direction: column;
}
.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); }
}

/* ─── AUTO REMINDER SPOTLIGHT SECTION ──────────────── */
.reminder-spotlight {
  padding: var(--section-padding);
  background: radial-gradient(circle at 10% 20%, rgba(37,211,102,0.06) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(0,191,165,0.08) 0%, transparent 50%),
              var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.reminder-spotlight-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.reminder-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.reminder-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.reminder-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37,211,102,0.4);
  box-shadow: 0 16px 36px rgba(37,211,102,0.1);
}

.reminder-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.reminder-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.reminder-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 12px;
}

.reminder-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Live WhatsApp Reminder Phone Mockup */
.reminder-phone-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.reminder-phone {
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  border-radius: 36px;
  box-shadow: 0 25px 60px -12px rgba(10,22,40,0.18), 0 0 0 1px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 8px solid #0f172a;
}

.reminder-phone-bar {
  background: #075E54;
  color: #ffffff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reminder-phone-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #128C7E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
}

.reminder-phone-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.reminder-phone-status {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 4px;
}

.reminder-chat-body {
  background: #ECE5DD url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reminder-date-pill {
  align-self: center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  color: #555;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.reminder-wa-bubble {
  background: #DCF8C6;
  border-radius: 14px 14px 2px 14px;
  padding: 14px 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  color: #111;
  font-size: 0.88rem;
  line-height: 1.5;
  position: relative;
}

.reminder-wa-header {
  font-weight: 800;
  color: #075E54;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.reminder-wa-invoice-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 12px;
  margin: 10px 0;
  border: 1px dashed #4ADE80;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reminder-wa-buttons {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.reminder-wa-btn {
  background: #ffffff;
  color: #00A884;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(0,168,132,0.25);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}

.reminder-wa-btn.primary {
  background: #25D366;
  color: #ffffff;
  border: none;
}

.reminder-wa-btn:hover {
  transform: scale(1.02);
}

.reminder-float-badge {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: floatBounce 4s ease-in-out infinite;
}

.reminder-float-1 {
  top: -18px;
  right: -24px;
}

.reminder-float-2 {
  bottom: 24px;
  left: -28px;
  animation-delay: 2s;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   ═══════════════════════════════════════════════════════ */

/* ─── 1. TABLETS & SMALL LAPTOPS (<= 1024px) ────────── */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-content {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-visual {
    order: 2;
    max-width: 600px;
    width: 100%;
    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 !important;
  }
  
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .bento-card.bento-wide,
  .bento-card-wide {
    grid-column: span 2;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .tab-content-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tab-visual {
    min-height: 240px;
  }
  
  .reminder-spotlight-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .reminder-spotlight .section-title,
  .reminder-spotlight .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .reminder-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
  .reminder-float-1,
  .reminder-float-2 {
    display: none !important;
  }
}

/* ─── 2. MOBILE & TABLETS (<= 768px) ────────────────── */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .container {
    padding: 0 20px;
  }
  
  /* Navbar */
  .nav-inner {
    height: 64px;
  }
  .nav-links {
    display: none !important;
  }
  .nav-actions {
    display: none !important;
  }
  .nav-hamburger {
    display: flex !important;
  }
  
  /* Hero */
  .hero {
    padding: 100px 0 50px;
    min-height: auto;
  }
  .hero-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin: 18px 0 28px;
  }
  .hero-mockup {
    transform: none !important;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  }
  
  /* Dashboard inside mockup on mobile */
  .mockup-dashboard {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .dash-sidebar {
    display: none;
  }
  .dash-main {
    padding: 14px;
    gap: 10px;
  }
  .dash-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .dash-stat-card {
    padding: 10px 8px;
  }
  .dash-stat-value {
    font-size: 1.05rem;
  }
  .dash-stat-label {
    font-size: 0.6rem;
  }
  
  /* Bento Grid */
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bento-card {
    padding: 24px;
    border-radius: 20px;
  }
  .bento-card-title {
    font-size: 1.05rem;
  }
  .bento-card-desc {
    font-size: 0.88rem;
  }
  .bento-preview {
    height: 100px;
  }
  
  /* Steps / How It Works */
  .steps-container {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }
  .steps-container::before {
    display: none;
  }
  .step-item {
    padding: 0 16px;
  }
  .step-number {
    width: 72px;
    height: 72px;
    font-size: 1.6rem;
    margin-bottom: 18px;
  }
  
  /* Use Cases Tabs */
  .use-cases-header {
    margin-bottom: 32px;
  }
  .tabs-nav {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px;
    gap: 6px;
    border-radius: 100px;
    margin-bottom: 32px;
  }
  .tabs-nav::-webkit-scrollbar {
    display: none;
  }
  .tab-btn {
    flex-shrink: 0;
    padding: 8px 18px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  .tab-info-title {
    font-size: 1.6rem;
  }
  .tab-info-desc {
    font-size: 0.9rem;
  }
  
  /* Stats Grid */
  .stats-section {
    padding: 60px 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-card {
    padding: 24px 16px;
    border-radius: 18px;
  }
  .stat-number {
    font-size: 2.4rem;
  }
  .stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  /* Trust Bar */
  .trust-bar {
    padding: 32px 0;
  }
  .trust-bar-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .trust-logos {
    justify-content: center;
    gap: 24px;
  }
  .trust-stats {
    justify-content: center;
    gap: 28px;
  }
  
  /* Reminder Spotlight */
  .reminder-benefit-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .reminder-phone {
    max-width: 100%;
    border-radius: 28px;
    border-width: 6px;
  }
  .reminder-card {
    padding: 20px;
  }
  
  /* Comparison Table */
  .comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
    font-size: 0.82rem;
  }
  
  /* Testimonials */
  .testimonials-header {
    margin-bottom: 40px;
  }
  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
    padding: 20px;
  }
  
  /* FAQ */
  .faq-header {
    margin-bottom: 36px;
  }
  .faq-question {
    padding: 18px 20px;
    font-size: 0.92rem;
  }
  
  /* Footer */
  .footer {
    padding: 48px 0 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  
  /* Floating buttons */
  #scroll-top {
    bottom: 20px;
    right: 18px;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    z-index: 990;
  }
  .chat-widget {
    bottom: 74px;
    right: 18px;
    z-index: 990;
  }
  .chat-widget-btn {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}

/* ─── 3. SMALL MOBILE PHONES (<= 480px) ─────────────── */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  /* Header */
  .nav-inner {
    height: 60px;
  }
  .nav-logo-text {
    font-size: 1.15rem;
  }
  .nav-logo-icon {
    font-size: 1.2rem;
  }
  
  /* Hero */
  .hero {
    padding: 85px 0 40px;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 12px;
    margin-bottom: 20px;
  }
  .hero-title {
    font-size: 2.15rem;
    line-height: 1.15;
    margin-bottom: 6px;
  }
  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 16px 0 28px;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  .hero-trust-pills {
    gap: 10px;
  }
  .trust-pill {
    font-size: 0.74rem;
  }
  
  /* Mockup */
  .mockup-bar {
    padding: 8px 12px;
  }
  .mockup-dots {
    gap: 4px;
  }
  .mockup-dot {
    width: 9px;
    height: 9px;
  }
  .mockup-url {
    font-size: 0.68rem;
    padding: 3px 8px;
  }
  .dash-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .dash-stat-card {
    padding: 8px 6px;
  }
  .dash-stat-value {
    font-size: 0.95rem;
  }
  .dash-stat-label {
    font-size: 0.55rem;
  }
  
  /* Section Headings */
  .section-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  .section-subtitle {
    font-size: 0.88rem;
    line-height: 1.6;
  }
  
  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-card {
    padding: 18px 12px;
    border-radius: 14px;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }
  .stat-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  
  /* Pricing */
  .pricing-card {
    padding: 32px 20px;
    border-radius: 20px;
  }
  .pricing-card-title {
    font-size: 1.6rem;
  }
  .pricing-perks {
    gap: 8px;
    margin: 24px 0;
  }
  .perk-chip {
    font-size: 0.74rem;
    padding: 6px 12px;
  }
  
  /* FAQ */
  .faq-question {
    padding: 16px 16px;
    font-size: 0.88rem;
    gap: 10px;
  }
  .faq-icon {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
  }
  .faq-answer {
    font-size: 0.82rem;
    padding: 0 16px;
  }
  .faq-item.open .faq-answer {
    padding: 0 16px 16px;
  }
  
  /* Final CTA */
  .final-cta {
    padding: 70px 0;
  }
  .final-cta-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  .final-cta-subtitle {
    font-size: 0.9rem;
    margin-bottom: 28px;
  }
  .final-cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .final-cta-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px !important;
  }
  .final-cta-note {
    font-size: 0.72rem;
    line-height: 1.6;
  }
  
  /* Demo Chat panel */
  .chat-panel {
    width: calc(100vw - 32px);
    right: -8px;
    bottom: 65px;
    border-radius: 18px;
  }
}

/* ─── 4. ULTRA-SMALL DEVICES (<= 360px) ─────────────── */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.85rem;
  }
  .nav-logo-text {
    font-size: 1.05rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .dash-stats-row {
    grid-template-columns: 1fr;
  }
}

/* ─── POLICY PAGES STYLES ──────────────────────────── */
.policy-content {
  padding: 120px 24px 60px;
  max-width: 840px;
  margin: 0 auto;
  min-height: 70vh;
}
.policy-content h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
  line-height: 1.2;
}
.policy-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.policy-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.policy-content p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.policy-content ul {
  margin-bottom: 24px;
  padding-left: 24px;
  color: var(--text-secondary);
  list-style: disc;
}
.policy-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.policy-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}
.policy-content a {
  color: var(--green-primary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .policy-content {
    padding: 95px 16px 40px;
  }
}


