/* ==========================================================================
   Endor CRM — Landing Page Stylesheet
   Modern Dark-Sleek, Glassmorphism, Micro-Animations & Responsive System
   ========================================================================== */

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

:root {
  /* Color Tokens */
  --bg-main: #070a12;
  --bg-surface: rgba(15, 23, 42, 0.65);
  --bg-surface-elevated: rgba(30, 41, 59, 0.75);
  --bg-card: rgba(15, 23, 42, 0.5);
  --bg-input: rgba(11, 17, 32, 0.8);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(99, 102, 241, 0.35);
  --border-active: rgba(99, 102, 241, 0.8);

  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --primary-light: #60a5fa;
  --primary-glow: rgba(59, 130, 246, 0.4);
  --cyan: #38bdf8;
  --emerald: #10b981;
  --amber: #f59e0b;
  --rose: #f43f5e;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #38bdf8 100%);
  --gradient-glow: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(7, 10, 18, 0) 70%);
  --gradient-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  --gradient-text: linear-gradient(135deg, #ffffff 30%, #cbd5e1 70%, #94a3b8 100%);
  --gradient-accent-text: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #93c5fd 100%);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevation & Blur */
  --backdrop-blur: blur(16px);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5), 0 0 1px 1px rgba(255, 255, 255, 0.05);
  --shadow-glow: 0 0 40px -5px rgba(59, 130, 246, 0.35);
  --shadow-glow-emerald: 0 0 40px -5px rgba(16, 185, 129, 0.3);

  /* Layout */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Background Lights */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb-1 {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(56, 189, 248, 0.08) 40%, rgba(7, 10, 18, 0) 70%);
  filter: blur(90px);
  animation: pulse-slow 12s infinite alternate ease-in-out;
}

.glow-orb-2 {
  position: absolute;
  top: 35%;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, rgba(7, 10, 18, 0) 70%);
  filter: blur(100px);
}

.glow-orb-3 {
  position: absolute;
  bottom: 10%;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.14) 0%, rgba(14, 165, 233, 0.05) 50%, rgba(7, 10, 18, 0) 70%);
  filter: blur(100px);
}

@keyframes pulse-slow {
  0% { transform: translateX(-50%) scale(1); opacity: 0.8; }
  100% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
  z-index: 1;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-text {
  background: var(--gradient-accent-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead-text {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Badges & Pills */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan);
  box-shadow: 0 0 25px -5px rgba(37, 99, 235, 0.3);
  backdrop-filter: var(--backdrop-blur);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
  animation: blink 2s infinite ease-in-out;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(56, 189, 248, 0.6);
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  backdrop-filter: var(--backdrop-blur);
}

.btn-secondary:hover {
  background: var(--bg-surface-elevated);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
  border-radius: var(--radius-lg);
}

.btn-glow-pulse {
  animation: btn-pulse 3s infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 25px rgba(37, 99, 235, 0.4); }
  50% { box-shadow: 0 0 45px rgba(56, 189, 248, 0.7); }
}

/* Glass Card Component */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  backdrop-filter: var(--backdrop-blur);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-surface);
  pointer-events: none;
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6), 0 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Navigation Bar (Smart Scroll Hide/Reveal & Modern Glass Background)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.15rem 0;
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, padding 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.site-header.scrolled {
  padding: 0.75rem 0;
  background: rgba(7, 10, 20, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.25);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
}

.site-header.nav-hidden {
  transform: translateY(-100%);
}

.site-header.nav-visible {
  transform: translateY(0);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Authentic Brand Logo matching Endor CRM UI */
.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-main);
}

.logo-symbol {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #38bdf8 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.4);
  position: relative;
}

.logo-symbol svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.brand-main-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.brand-sub-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.04em;
  text-transform: capitalize;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.has-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-mini-badge {
  font-size: 0.65rem;
  padding: 0.1rem 0.35rem;
  background: rgba(56, 189, 248, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 4px;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 10rem;
  padding-bottom: 6rem;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  margin-top: 1.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.12;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 2.75rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero-ph-badge-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.ph-badge-link {
  display: inline-block;
  transition: transform var(--transition-fast), filter var(--transition-fast);
  border-radius: 10px;
}

.ph-badge-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.ph-badge-link img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.footer-ph-badge {
  margin-top: 1.25rem;
  display: inline-block;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-size: 0.925rem;
  color: var(--text-dim);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item svg {
  color: var(--emerald);
}

/* ==========================================================================
   Authentic Endor CRM Dashboard Mockup (Hero Showcase)
   ========================================================================== */
.hero-mockup-wrapper {
  margin-top: 4rem;
  position: relative;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.mockup-frame {
  background: #090e1a;
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.8), 0 0 60px -15px rgba(37, 99, 235, 0.25);
  backdrop-filter: var(--backdrop-blur);
}

/* Top App Bar */
.mockup-app-topbar {
  background: #070b14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-top-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mockup-mac-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #10b981; }

.mockup-breadcrumb {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mockup-top-right-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
}

.mockup-avatar-pill {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* App Body Layout */
.mockup-app-layout {
  display: flex;
  min-height: 580px;
  background: #060911;
  text-align: left;
}

/* Sidebar (Faithful to Screenshot) */
.mockup-app-sidebar {
  width: 240px;
  background: #080c16;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  padding-left: 0.5rem;
}

.sidebar-logo-icon {
  width: 28px;
  height: 28px;
  background: #2563eb;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-logo-icon svg { width: 16px; height: 16px; color: #fff; }

.sidebar-brand-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
}

.sidebar-brand-subtitle {
  font-size: 0.65rem;
  color: var(--cyan);
}

/* Workspace Selector Dropdown Pill */
.sidebar-workspace-pill {
  background: rgba(13, 20, 36, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sidebar-workspace-pill:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(56, 189, 248, 0.5);
}

.ws-pill-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ws-avatar {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

.ws-text-col {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.ws-label {
  font-size: 0.62rem;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ws-name {
  font-size: 0.825rem;
  font-weight: 700;
  color: #ffffff;
}

/* Menu items */
.sidebar-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  list-style: none;
}

.sidebar-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sidebar-menu-item.active {
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #fff;
  font-weight: 600;
}

.sidebar-menu-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.85;
}

.sidebar-bottom-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

/* Main Dashboard Panel */
.mockup-app-main {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Welcome Card with Live TCMB Tickers */
.mockup-welcome-card {
  background: #0a0f1d;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.welcome-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.welcome-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tcmb-live-ticker-pill {
  background: #0d1424;
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ticker-strong {
  color: #fff;
  font-weight: 700;
}

/* Date Range Bar */
.mockup-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #080c16;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
}

.filter-date-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.filter-btn-group {
  display: flex;
  gap: 0.35rem;
}

.filter-btn {
  background: transparent;
  border: none;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--text-dim);
  cursor: pointer;
}

.filter-btn.active {
  background: #2563eb;
  color: #fff;
  font-weight: 600;
}

/* 3 Module Cards Grid */
.mockup-module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mockup-mod-card {
  background: #090e1c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
}

.mod-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mod-card-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mod-card-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.15);
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mod-card-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0.35rem 0;
}

.mod-card-pill {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

/* Financial Summary Block */
.mockup-financial-summary {
  background: #090e1c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.fin-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.fin-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fin-icon-box {
  width: 24px;
  height: 24px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fin-cash-position {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.fin-metrics-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.fin-col-item {
  background: #060a14;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
}

.fin-col-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  font-weight: 700;
  text-transform: uppercase;
}

.fin-col-val {
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: 0.25rem;
}

.fin-col-val.green { color: var(--emerald); }
.fin-col-val.red { color: var(--rose); }
.fin-col-val.blue { color: #38bdf8; }

/* Floating Badges Positioned Cleanly */
.floating-badge {
  position: absolute;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(13, 20, 36, 0.95);
  border: 1px solid rgba(59, 130, 246, 0.35);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 0.875rem;
  z-index: 5;
  animation: float 6s infinite ease-in-out;
}

.floating-badge-1 {
  top: -24px;
  right: 20px;
}

.floating-badge-2 {
  bottom: 20px;
  left: -20px;
  animation-delay: -3s;
}

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

.badge-avatar-stack {
  display: flex;
}

.badge-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #080c16;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
}


/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-padding {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}

.section-kicker {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.18;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Preset Showcase (Interactive Tabs)
   ========================================================================== */
.preset-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.preset-tab-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: all var(--transition-smooth);
}

.preset-tab-btn:hover {
  background: var(--bg-surface-elevated);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.preset-tab-btn.active {
  background: rgba(37, 99, 235, 0.2);
  color: #fff;
  border-color: #3b82f6;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.35);
}

.preset-content-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.preset-info {
  text-align: left;
}

.preset-tag-pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.preset-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.preset-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.preset-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.preset-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.preset-feature-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.preset-preview-box {
  background: #070b14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Interactive Mini Kanban Board inside Preset Showcase */
.mockup-kanban-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  text-align: left;
  transition: opacity 0.2s ease-in-out;
}

.kanban-col {
  background: rgba(13, 20, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.kanban-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.col-badge {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.1rem 0.45rem;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.2);
  color: var(--cyan);
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.kanban-card {
  background: #080c16;
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 6px;
  padding: 0.75rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.kanban-card:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.card-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-dim);
  gap: 0.5rem;
}

.card-price {
  font-weight: 800;
  color: var(--emerald);
  font-size: 0.75rem;
  background: rgba(16, 185, 129, 0.15);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .mockup-kanban-board {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Bento Grid (Core Features)
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.bento-card {
  padding: 2.25rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-col-8 { grid-column: span 8; }
.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }
.bento-col-12 { grid-column: span 12; }

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
}

.bento-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.bento-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Bento 1: Live Interactive Quote Simulator */
.quote-interactive-calc {
  background: rgba(8, 12, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.calc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.calc-header-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.currency-pills {
  display: flex;
  gap: 0.4rem;
}

.curr-pill {
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.curr-pill:hover {
  background: rgba(37, 99, 235, 0.2);
  color: #fff;
  border-color: rgba(59, 130, 246, 0.4);
}

.curr-pill.active {
  background: var(--emerald);
  color: #070a12;
  border-color: var(--emerald);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.35);
}

.calc-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.calc-val {
  font-weight: 600;
  color: #f1f5f9;
}

.calc-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0.35rem 0;
}

.calc-row.total {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.calc-total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--emerald);
}

.rate-badge-note {
  font-size: 0.72rem;
  color: var(--cyan);
  margin-top: 0.5rem;
  text-align: right;
  font-weight: 600;
}

/* Bento 2: Automation Visual List */
.automation-visual-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.auto-item {
  background: rgba(8, 12, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #e2e8f0;
  transition: all var(--transition-fast);
}

.auto-item:hover {
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateX(4px);
  background: rgba(13, 20, 36, 0.95);
}

.auto-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.auto-dot.blue { background: var(--primary-light); box-shadow: 0 0 8px var(--primary-light); }
.auto-dot.yellow { background: var(--amber); box-shadow: 0 0 8px var(--amber); }
.auto-dot.green { background: var(--emerald); box-shadow: 0 0 8px var(--emerald); }

/* Bento 3: Role & Permission Chips */
.role-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.role-chip {
  background: rgba(8, 12, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
}

.role-chip:hover {
  border-color: var(--primary-light);
  color: #fff;
  background: rgba(37, 99, 235, 0.15);
  transform: translateY(-2px);
}

.role-chip.active {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(37, 99, 235, 0.2);
  color: #fff;
}

/* Bento 4: Multi-Workspace Row */
.workspace-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.ws-demo-chip {
  background: rgba(8, 12, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  flex: 1 1 240px;
  transition: all var(--transition-fast);
}

.ws-demo-chip:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(13, 20, 36, 0.95);
  transform: translateY(-2px);
}

.ws-demo-chip.active {
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(37, 99, 235, 0.12);
}

.ws-mini-badge {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #2563eb;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   Integrations & Marketplace Showcase
   ========================================================================== */
.integrations-banner {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(9, 14, 26, 0.9) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  margin-top: 3.5rem;
  box-shadow: var(--shadow-card);
}

.integrations-pills-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.int-pill-item {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f1f5f9;
  transition: all var(--transition-smooth);
}

.int-pill-item:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

.int-pill-icon {
  font-size: 1.1rem;
}

.int-pill-tag {
  font-size: 0.7rem;
  padding: 0.1rem 0.4rem;
  background: rgba(56, 189, 248, 0.15);
  color: var(--cyan);
  border-radius: 4px;
  font-weight: 700;
}
.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.compare-card {
  padding: 3rem 2.5rem;
  text-align: left;
  position: relative;
}

.compare-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 50px -10px rgba(99, 102, 241, 0.35);
}

.featured-ribbon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.compare-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.compare-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.compare-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.compare-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.check-icon {
  color: var(--emerald);
  flex-shrink: 0;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  padding: 3rem 2.25rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card.highlight {
  border-color: var(--primary);
  background: rgba(20, 28, 55, 0.6);
  transform: scale(1.03);
}

.price-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  min-height: 44px;
}

.price-tag {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin: 1.25rem 0 1.5rem;
  font-family: var(--font-heading);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.price-tag span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  text-align: left;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-chevron {
  transition: transform var(--transition-smooth);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   Lead Capture CTA Section & Form (Exact 2-Column Split Box)
   ========================================================================== */
.lead-section {
  position: relative;
  overflow: hidden;
}

.lead-box {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(10, 15, 29, 0.95) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-xl);
  padding: 3.75rem 3.5rem;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8), 0 0 50px -10px rgba(37, 99, 235, 0.25);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.lead-info {
  text-align: left;
}

.lead-form-wrapper {
  background: #080c16;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.form-group {
  margin-bottom: 1.15rem;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: #050811;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.925rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
  background: #090e1c;
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: #0f172a;
  color: #ffffff;
}

.form-radio-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.radio-label:hover {
  color: #ffffff;
}

.radio-label input[type="radio"] {
  accent-color: #3b82f6;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .lead-box {
    grid-template-columns: 1fr;
    padding: 2.25rem 1.5rem;
    gap: 2.25rem;
  }
}

.form-success-message {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  background: #05070c;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  text-align: left;
  margin-bottom: 3.5rem;
}

.footer-col-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   Language Switcher & Form Alert Styles
   ========================================================================== */
.lang-switch-btn {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  transition: all var(--transition-fast);
}

.lang-switch-btn:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
  color: #fff;
}

.form-alert-message {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
}

.form-input.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.25) !important;
}

.honeypot-wrap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .bento-col-8, .bento-col-4, .bento-col-6 { grid-column: span 12; }
  .preset-content-panel { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.highlight { transform: none; }
  .lead-box { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem 1.75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-actions .btn-secondary { display: none; }
  .mobile-menu-btn { display: block; }
  .comparison-wrapper { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }
  .mockup-top-metrics { grid-template-columns: repeat(2, 1fr); }
  .mockup-kanban-board { grid-template-columns: 1fr; }
  .floating-badge { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
