/* Veyra CRM — Calm Enterprise Design System (Stripe-inspired) */
:root {
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-elevated: #ffffff;
  --bg-subtle: #f1f5f9;
  --border-light: #e2e8f0;
  --border-focus: #cbd5e1;
  --border-strong: #94a3b8;
  
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --primary: #635bff;
  --primary-hover: #534be8;
  --primary-light: #f2f1ff;
  --primary-glow: rgba(99, 91, 255, 0.12);
  
  --accent-sky: #0284c7;
  --accent-sky-light: #f0f9ff;
  --accent-emerald: #059669;
  --accent-emerald-light: #ecfdf5;
  --accent-amber: #d97706;
  --accent-amber-light: #fffbeb;

  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 12px 28px -4px rgba(15, 23, 42, 0.08), 0 4px 8px -4px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 0 35px rgba(99, 91, 255, 0.14);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.section {
  padding: 96px 0;
  position: relative;
}

.section-sm {
  padding: 64px 0;
}

.section-border {
  border-top: 1px solid var(--border-light);
}

/* ---------------- Header & Navigation ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-sky) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(99, 91, 255, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ---------------- Buttons & CTAs ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  transition: all 0.15s ease;
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1.4;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(99, 91, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 3px 8px rgba(99, 91, 255, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-primary);
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-subtle);
  border-color: var(--border-focus);
}

.btn-lg {
  padding: 13px 26px;
  font-size: 15.5px;
  border-radius: var(--radius-md);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-subtle);
}

/* ---------------- Badges & Pills ---------------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(99, 91, 255, 0.18);
  margin-bottom: 20px;
}

.pill-emerald {
  background: var(--accent-emerald-light);
  color: var(--accent-emerald);
  border-color: rgba(5, 150, 105, 0.2);
}

.pill-amber {
  background: var(--accent-amber-light);
  color: var(--accent-amber);
  border-color: rgba(217, 119, 6, 0.2);
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
}

/* ---------------- Typography & Headers ---------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.section-header {
  max-width: 680px;
  margin: 0 auto 56px auto;
  text-align: center;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-lead {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------------- Hero Section ---------------- */
.hero {
  padding: 80px 0 96px 0;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 480px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.08) 0%, rgba(2, 132, 199, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-title span.highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-sky) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 34px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------------- Hero Mockup Preview ---------------- */
.hero-mockup {
  position: relative;
  margin-top: 54px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  text-align: left;
}

.mockup-header {
  background: #fafbfd;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}

.mockup-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.mockup-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  background: #ffffff;
}

.mockup-sidebar {
  border-right: 1px solid var(--border-light);
  padding-right: 20px;
}

.mockup-pipeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pipeline-card {
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-main);
  font-size: 12.5px;
}

.pipeline-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pipeline-meta {
  color: var(--text-muted);
  font-size: 11px;
}

/* ---------------- Stats & Metrics Bar ---------------- */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 0;
}

.metric-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.metric-value {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------------- Feature Grid & Cards ---------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-focus);
}

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.feature-icon-sky {
  background: var(--accent-sky-light);
  color: var(--accent-sky);
}

.feature-icon-emerald {
  background: var(--accent-emerald-light);
  color: var(--accent-emerald);
}

.feature-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 18px;
}

.feature-link:hover {
  color: var(--primary-hover);
}

/* ---------------- Detailed Split Feature Row ---------------- */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.split-row:last-child {
  margin-bottom: 0;
}

.split-row.reverse {
  direction: rtl;
}

.split-row.reverse > * {
  direction: ltr;
}

.split-text h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.split-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.feature-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-secondary);
}

.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent-emerald);
  margin-top: 3px;
}

.split-visual {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: relative;
}

/* ---------------- Interactive Preview Cards inside Split Visuals ---------------- */
.mini-console {
  background: #0f172a;
  color: #f8fafc;
  border-radius: var(--radius-md);
  padding: 18px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.6;
}

.console-green { color: #34d399; }
.console-sky { color: #38bdf8; }
.console-muted { color: #64748b; }

.lead-card-preview {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.lead-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.lead-score-pill {
  font-weight: 700;
  font-size: 12px;
  background: #ecfdf5;
  color: #059669;
  padding: 3px 8px;
  border-radius: 99px;
}

/* ---------------- Pricing Cards & Tables ---------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 64px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: 0.02em;
}

.pricing-plan {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  min-height: 42px;
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.price-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
}

/* ---------------- Comparison Table ---------------- */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.comp-table th, .comp-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}

.comp-table th {
  background: var(--bg-subtle);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comp-table tr:last-child td {
  border-bottom: none;
}

.comp-table td.center {
  text-align: center;
}

/* ---------------- Testimonial & Case Studies ---------------- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: normal;
}

.author-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 14px;
}

.author-info h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
}

.author-info p {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ---------------- High Impact CTA Banner ---------------- */
.cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner p {
  font-size: 17px;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}

.cta-banner .btn-primary {
  background: #ffffff;
  color: var(--text-primary);
  border-color: #ffffff;
}

.cta-banner .btn-primary:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

/* ---------------- FAQ Accordion ---------------- */
.faq-grid {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.faq-answer {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---------------- Footer ---------------- */
.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 72px 0 40px 0;
  font-size: 13.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h5 {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 18px;
}

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

.footer-link {
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 13px;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .hero-title { font-size: 42px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .split-row { gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .hero-title { font-size: 34px; }
  .hero-lead { font-size: 16.5px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .split-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
  .split-row.reverse { direction: ltr; }
  .cta-banner { padding: 40px 24px; }
  .cta-banner h2 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ========================================================
   FLOW-STYLE DYNAMIC ANIMATION EXTENSIONS (Webflow-inspired)
   ======================================================== */

/* 1. Ambient Background Flow Animation */
@keyframes floatGlow {
  0% { transform: translate(-50%, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(-48%, 28px) scale(1.12); opacity: 0.95; }
  100% { transform: translate(-50%, 0) scale(1); opacity: 0.7; }
}

.hero-glow {
  animation: floatGlow 10s ease-in-out infinite;
}

/* 2. Scroll-Triggered Reveal Transitions */
.reveal {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* 3. Interactive Mouse Spotlight (Stripe/Flow Cards) */
.spotlight-card, .feature-card, .pricing-card, .metric-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card::before, .feature-card::before, .pricing-card::before, .metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(circle 260px at var(--mouse-x, -200px) var(--mouse-y, -200px), rgba(99, 91, 255, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.spotlight-card:hover::before, .feature-card:hover::before, .pricing-card:hover::before, .metric-card:hover::before {
  opacity: 1;
}

/* 4. Pulsing Beacon & Live Indicators */
@keyframes pulseBeacon {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(5, 150, 105, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.pulsing-beacon {
  width: 8px;
  height: 8px;
  background: #059669;
  border-radius: 50%;
  display: inline-block;
  animation: pulseBeacon 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* 5. Audio Waveform Animation (Voice/Dialer Simulator) */
.wave-container {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 18px;
  padding: 0 4px;
}

.wave-bar {
  width: 3px;
  height: 4px;
  background: #635bff;
  border-radius: 2px;
  transition: height 0.2s ease;
}

@keyframes waveDance {
  0%, 100% { height: 4px; }
  50% { height: 16px; }
}

.wave-bar.pulsing:nth-child(1) { animation: waveDance 0.7s infinite 0.1s ease-in-out; }
.wave-bar.pulsing:nth-child(2) { animation: waveDance 0.7s infinite 0.25s ease-in-out; }
.wave-bar.pulsing:nth-child(3) { animation: waveDance 0.7s infinite 0.4s ease-in-out; }
.wave-bar.pulsing:nth-child(4) { animation: waveDance 0.7s infinite 0.15s ease-in-out; }

/* 6. Live Console Animation & Feed */
.mini-console {
  max-height: 220px;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.console-line {
  opacity: 0;
  transform: translateY(6px);
  animation: consoleFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  margin-bottom: 8px;
}

@keyframes consoleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 7. Shimmer Sweep Effect for Buttons & Highlights */
@keyframes shimmerLight {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(200%) rotate(25deg); }
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 40%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 60%
  );
  transform: translateX(-100%) rotate(25deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  transform: translateX(100%) rotate(25deg);
}

/* 8. Flowing Data Streams (SVG line animation) */
@keyframes dashFlow {
  from { stroke-dashoffset: 60; }
  to { stroke-dashoffset: 0; }
}

.flow-stream {
  stroke-dasharray: 6 4;
  animation: dashFlow 1.8s linear infinite;
}

/* 9. Interactive Step Transitions */
.interactive-step {
  cursor: pointer;
  transition: all 0.2s ease;
}

.interactive-step:hover {
  background: #f1f5f9 !important;
  transform: translateX(4px);
}

.interactive-step.active-step {
  background: #eef2ff !important;
  border-left-color: #635bff !important;
  box-shadow: 0 1px 3px rgba(99, 91, 255, 0.15);
}

/* 10. FAQ Accordion Smooth Dropdown */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, margin 0.3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 320px;
  opacity: 1;
  margin-top: 10px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 20px;
  color: var(--primary);
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}

/* 11. Floating Badge / Card Physics */
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-slow {
  animation: floatCard 5s ease-in-out infinite;
}


/* ========================================================
   MULTI-DEVICE OPTIMIZED FAQ ACCORDION & SEARCH SYSTEM
   ======================================================== */

.faq-section {
  padding: 80px 0;
  position: relative;
}

/* Category Filter Bar - Horizontally scrollable on mobile */
.faq-filter-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  overflow-x: auto;
  padding: 4px 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.faq-filter-wrap::-webkit-scrollbar {
  display: none;
}

.faq-tab-btn {
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  min-height: 40px;
}

.faq-tab-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-focus);
}

.faq-tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 2px 6px rgba(99, 91, 255, 0.25);
}

/* Instant Search Box */
.faq-search-wrap {
  max-width: 540px;
  margin: 0 auto 36px auto;
  position: relative;
  padding: 0 16px;
}

.faq-search-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  font-size: 16px; /* 16px prevents iOS zoom on focus */
  font-family: inherit;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  outline: none;
}

.faq-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow), var(--shadow-sm);
}

.faq-search-icon {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

/* Multi-device Accordion Container */
.faq-accordion-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  overflow: hidden;
}

.faq-accordion-item:hover {
  border-color: var(--border-focus);
  box-shadow: var(--shadow-md);
}

.faq-accordion-item.is-open {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(99, 91, 255, 0.08);
}

/* Accessible, Touch-Optimized Button Header (>= 48px target) */
.faq-accordion-btn {
  width: 100%;
  min-height: 56px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s ease;
}

.faq-accordion-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.faq-accordion-item.is-open .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Fluid Height Animation using CSS Grid */
.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-accordion-item.is-open .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-content {
  padding: 0 20px 20px 20px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  border-top: 1px solid #f8fafc;
}

.faq-tag-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 2px 8px;
  border-radius: 99px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Mobile optimizations */
@media (max-width: 640px) {
  .faq-filter-wrap {
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }
  .faq-accordion-btn {
    font-size: 15px;
    padding: 14px 16px;
  }
  .faq-answer-content {
    padding: 0 16px 16px 16px;
    font-size: 14px;
  }
  .faq-search-wrap {
    padding: 0 20px;
  }
}


/* Enhanced Vibrant Stripe Mesh & Accents */
body {
  background-color: #f8fafc !important;
  background-image: 
    radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.12) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(14, 165, 233, 0.12) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(124, 58, 237, 0.05) 0px, transparent 50%) !important;
  background-attachment: fixed !important;
}

.brand-mark {
  background: linear-gradient(135deg, #635bff 0%, #06b6d4 100%) !important;
  box-shadow: 0 4px 14px rgba(99, 91, 255, 0.4) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #635bff 0%, #6366f1 50%, #534be8 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(99, 91, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-primary:hover {
  box-shadow: 0 6px 22px rgba(99, 91, 255, 0.45) !important;
  transform: translateY(-2px) !important;
}

.hero-title span.highlight {
  background: linear-gradient(135deg, #635bff 0%, #7c3aed 50%, #0284c7 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.hero-glow {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(14, 165, 233, 0.16) 40%, transparent 70%) !important;
  filter: blur(40px) !important;
}

.pill {
  background: #eef2ff !important;
  color: #635bff !important;
  border: 1px solid rgba(99, 91, 255, 0.3) !important;
  box-shadow: 0 2px 8px rgba(99, 91, 255, 0.12) !important;
}

.feature-icon-wrap {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%) !important;
  color: #635bff !important;
  border: 1px solid rgba(99, 91, 255, 0.25) !important;
  box-shadow: 0 4px 10px rgba(99, 91, 255, 0.15) !important;
}

.feature-icon-sky {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
  color: #0284c7 !important;
  border: 1px solid rgba(2, 132, 199, 0.25) !important;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.15) !important;
}

.feature-icon-emerald {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%) !important;
  color: #059669 !important;
  border: 1px solid rgba(5, 150, 105, 0.25) !important;
  box-shadow: 0 4px 10px rgba(5, 150, 105, 0.15) !important;
}

.metric-value {
  background: linear-gradient(135deg, #0f172a 0%, #635bff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.cta-banner {
  background: linear-gradient(135deg, #0b0f19 0%, #1e1b4b 60%, #0f172a 100%) !important;
  border: 1px solid rgba(99, 102, 241, 0.3) !important;
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.4), 0 0 50px rgba(99, 91, 255, 0.2) !important;
}


/* ========================================================
   EMIL KOWALSKI DESIGN ENGINEERING SYSTEM (animations.dev)
   ======================================================== */
:root {
  /* Emil's custom easing tokens - punchy, responsive, deliberate */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Micro-durations */
  --duration-fast: 120ms;
  --duration-normal: 180ms;
  --duration-sheet: 260ms;
}

/* 1. Tactile Button & Press Interactions */
.btn {
  transition: transform var(--duration-fast) var(--ease-out), 
              background var(--duration-normal) var(--ease-out), 
              box-shadow var(--duration-normal) var(--ease-out), 
              border-color var(--duration-normal) var(--ease-out) !important;
  will-change: transform;
}

.btn:active, .interactive-step:active, .pipeline-kanban-card:active, .faq-tab-btn:active {
  transform: scale(0.97) !important;
  transition-duration: 70ms !important;
}

.btn-primary {
  background: linear-gradient(180deg, #6366f1 0%, #635bff 100%) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 
              0 4px 12px rgba(99, 91, 255, 0.25), 
              inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  border: 1px solid rgba(99, 91, 255, 0.6) !important;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #635bff 0%, #534be8 100%) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 
              0 8px 20px rgba(99, 91, 255, 0.35), 
              inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-1px);
}

.btn-secondary {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
  transition: transform var(--duration-fast) var(--ease-out), 
              border-color var(--duration-normal) var(--ease-out), 
              background-color var(--duration-normal) var(--ease-out), 
              box-shadow var(--duration-normal) var(--ease-out) !important;
}

.btn-secondary:hover {
  background: #f8fafc !important;
  border-color: #cbd5e1 !important;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.06) !important;
  transform: translateY(-1px);
}

/* 2. Emil's Natural Entrance Scaling (Never scale from 0) */
.reveal {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.reveal.is-revealed {
  opacity: 1;
  transform: scale(1) translateY(0) !important;
}

/* 3. Sliding Segmented Control / Tab Indicator */
.segmented-control-track {
  display: inline-flex;
  position: relative;
  background: #f1f5f9;
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid #e2e8f0;
}

.segmented-pill-indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  background: #ffffff;
  border-radius: var(--radius-full);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 0.22s var(--ease-out), width 0.22s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}

.segmented-control-btn {
  position: relative;
  z-index: 2;
  border: none;
  background: transparent;
  padding: 6px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: color 0.15s var(--ease-out);
  font-family: inherit;
}

.segmented-control-btn.active {
  color: var(--text-primary);
}

/* 4. Sonner-Style Native Toast System */
#sonner-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.sonner-toast {
  pointer-events: auto;
  background: #0f172a;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3), 0 4px 8px -2px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  min-width: 300px;
  max-width: 420px;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

.sonner-toast.sonner-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sonner-toast.sonner-dismissing {
  opacity: 0;
  transform: translateY(12px) scale(0.96);
}

.sonner-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sonner-success { background: #059669; color: #fff; }
.sonner-info { background: #635bff; color: #fff; }

.sonner-title {
  font-weight: 600;
  color: #ffffff;
  font-size: 13.5px;
}

.sonner-desc {
  color: #94a3b8;
  font-size: 12px;
  margin-top: 2px;
}

/* 5. Interactive Kanban Pipeline Simulator */
.kanban-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.kanban-col {
  background: #f1f5f9;
  border-radius: 10px;
  padding: 12px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kanban-col-header {
  font-size: 11.5px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.kanban-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 12px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out), 
              box-shadow var(--duration-fast) var(--ease-out), 
              border-color var(--duration-fast) var(--ease-out);
  user-select: none;
}

.kanban-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.kanban-card:active {
  transform: scale(0.97);
}

.kanban-card.card-won {
  border-color: #059669;
  background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
}

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


/* ---------------- Calm Attio/Linear CRM Deal Overview ---------------- */
.crm-overview-window {
  position: relative;
  margin-top: 48px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04), 0 0 0 1px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  text-align: left;
}

.crm-window-bar {
  background: #f8fafc;
  padding: 11px 18px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.crm-window-controls {
  display: flex;
  gap: 6px;
  align-items: center;
}

.ctrl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.crm-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
}

.crm-breadcrumb-dim {
  color: #94a3b8;
}

.crm-breadcrumb-sep {
  color: #cbd5e1;
  font-size: 11px;
}

.crm-breadcrumb-active {
  color: #0f172a;
  font-weight: 600;
}

.crm-header-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-stage {
  font-size: 11px;
  font-weight: 600;
  background: #eef2ff;
  color: #534be8;
  border: 1px solid #c7d2fe;
  padding: 2px 8px;
  border-radius: 4px;
}

.badge-value {
  font-size: 11.5px;
  font-weight: 700;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Deal Summary Ribbon */
.crm-deal-ribbon {
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.crm-ribbon-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ribbon-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
}

.ribbon-value {
  font-size: 12.5px;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 6px;
}

.avatar-sm {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 9.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.health-good {
  color: #059669;
  font-weight: 600;
}

.status-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #059669;
  display: inline-block;
}

/* Main Workspace Split */
.crm-workspace-grid {
  display: grid;
  grid-template-columns: 290px 1fr;
  background: #ffffff;
}

@media (max-width: 860px) {
  .crm-workspace-grid {
    grid-template-columns: 1fr;
  }
  .crm-sidebar-pane {
    border-right: none !important;
    border-bottom: 1px solid #f1f5f9;
  }
}

.crm-sidebar-pane {
  padding: 18px 20px;
  border-right: 1px solid #f1f5f9;
  background: #fafbfd;
}

.pane-section-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 12px;
}

.property-list {
  display: flex;
  flex-direction: column;
}

.property-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 12px;
}

.property-row:last-child {
  border-bottom: none;
}

.prop-name {
  color: #64748b;
  font-weight: 500;
}

.prop-val {
  color: #0f172a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.email-val {
  font-family: var(--font-mono, monospace);
  font-size: 11.5px;
}

.verified-icon {
  display: inline-block;
  vertical-align: middle;
}

.phone-val {
  font-size: 12px;
}

.tel-tag {
  font-size: 9.5px;
  background: #eef2ff;
  color: #635bff;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 600;
}

.pane-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 16px 0;
}

.pinned-task-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px;
}

.task-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.task-badge {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #635bff;
  background: #eef2ff;
  padding: 2px 6px;
  border-radius: 4px;
}

.task-due {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
}

.task-title {
  font-size: 12.5px;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.task-checkbox {
  width: 14px;
  height: 14px;
  border: 1.5px solid #94a3b8;
  border-radius: 3px;
  margin-top: 2px;
  flex-shrink: 0;
}

.task-subtext {
  font-size: 11px;
  color: #64748b;
  margin-left: 22px;
}

/* Timeline Pane */
.crm-timeline-pane {
  padding: 18px 24px;
  background: #ffffff;
}

.timeline-stream {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-top: 8px;
}

.timeline-event {
  display: flex;
  gap: 14px;
  position: relative;
}

.timeline-event::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 13px;
  bottom: -16px;
  width: 1px;
  background: #e2e8f0;
}

.timeline-event:last-child::before {
  display: none;
}

.event-marker {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #64748b;
}

.call-marker {
  background: #f0fdf4;
  color: #16a34a;
  border-color: #bbf7d0;
}

.enrich-marker {
  background: #f0f9ff;
  color: #0284c7;
  border-color: #bae6fd;
}

.email-marker {
  background: #f5f3ff;
  color: #7c3aed;
  border-color: #ddd6fe;
}

.event-content {
  flex: 1;
}

.event-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.event-title {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.event-time {
  font-size: 11px;
  color: #94a3b8;
}

.event-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Audio Player Mockup */
.audio-player-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px 12px;
  margin: 8px 0 10px 0;
}

.player-play-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.player-waveform {
  flex: 1;
  height: 4px;
  background: #e2e8f0;
  border-radius: 99px;
  overflow: hidden;
}

.waveform-progress {
  height: 100%;
  background: #635bff;
}

.player-timestamp {
  font-size: 11px;
  color: #64748b;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.player-badge {
  font-size: 10px;
  font-weight: 600;
  color: #059669;
  background: #ecfdf5;
  padding: 1px 6px;
  border-radius: 3px;
}

/* AI Summary Card */
.ai-summary-card {
  background: #fafbfd;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 12px;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid #f1f5f9;
}

.summary-tag {
  font-size: 10.5px;
  font-weight: 700;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.talk-ratio {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
}

.summary-bullets {
  margin: 0;
  padding-left: 16px;
  color: #334155;
  line-height: 1.55;
}

.summary-bullets li {
  margin-bottom: 3px;
}

.summary-bullets li:last-child {
  margin-bottom: 0;
}


.brand-logo {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.15s ease;
}
.brand:hover .brand-logo {
  opacity: 0.88;
}


/* ---------------- Audience Switcher ---------------- */
.audience-switcher-wrap {
  display: flex;
  justify-content: center;
  margin: 28px auto 0 auto;
}

.audience-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 99px;
  padding: 4px 6px;
}

.switcher-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #64748b;
  padding: 0 8px 0 10px;
}

.switcher-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  color: #475569;
  text-decoration: none;
  transition: all 0.15s ease;
}

.switcher-tab:hover {
  color: #0f172a;
}

.switcher-tab.active {
  background: #ffffff;
  color: #635bff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

@media (max-width: 640px) {
  .audience-switcher {
    flex-direction: column;
    border-radius: 12px;
    padding: 8px;
    width: 100%;
    max-width: 360px;
  }
  .switcher-label {
    padding: 0 0 4px 0;
  }
  .switcher-tab {
    width: 100%;
    justify-content: center;
  }
}

/* ---------------- Mobile Navigation Drawer ---------------- */


.mobile-menu-btn {
  display: none;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 7px 9px;
  color: #0f172a;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.mobile-menu-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: inline-flex !important;
  }
  .hide-mobile {
    display: none !important;
  }
}

.mobile-drawer {
  display: none;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 20px 22px 20px;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  display: block;
  transition: background 0.15s ease, color 0.15s ease;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: #f2f1ff;
  color: #635bff;
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

/* ---------------- Integration Logo Ribbon ---------------- */
.integration-ribbon-section {
  padding: 32px 0 28px 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
}

.ribbon-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ribbon-text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

.ribbon-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.ribbon-logo-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #64748b;
  opacity: 0.78;
  transition: all 0.2s ease;
}

.ribbon-logo-item svg {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.ribbon-logo-item:hover {
  opacity: 1;
  color: #0f172a;
}

.ribbon-logo-item:hover svg {
  color: #635bff;
}


/* ---------------- Big 4 / Enterprise Aesthetic Polish ---------------- */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 900 !important;
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
}

.section-title {
  letter-spacing: -0.025em;
  font-weight: 800;
}

.hero-title {
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.btn-primary {
  background: linear-gradient(180deg, #6d66ff 0%, #635bff 100%) !important;
  border: 1px solid #554de6 !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(99, 91, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #635bff 0%, #534be8 100%) !important;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.1), 0 6px 16px rgba(99, 91, 255, 0.36) !important;
  transform: translateY(-1px);
}

.btn-secondary {
  background: #ffffff !important;
  border: 1px solid #d1d5db !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.btn-secondary:hover {
  background: #f8fafc !important;
  border-color: #94a3b8 !important;
  color: #0f172a !important;
}

.feature-card, .metric-card, .pricing-card {
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 8px 16px -2px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
  border: 1px solid #e2e8f0 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
}

.feature-card:hover, .pricing-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 28px -4px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04) !important;
  border-color: #cbd5e1 !important;
}

.crm-overview-window, .advisor-mockup-window {
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.05) !important;
}

.integration-ribbon-section {
  background: #fafbfd !important;
}


/* ---------------- Step 1: Command Palette (⌘K) ---------------- */
.cmd-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.cmd-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cmd-modal {
  width: 100%;
  max-width: 580px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transform: scale(0.96) translateY(-8px);
  transition: transform 0.2s ease;
}

.cmd-backdrop.is-open .cmd-modal {
  transform: scale(1) translateY(0);
}

.cmd-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid #f1f5f9;
}

.cmd-search-input {
  flex: 1;
  border: none;
  font-size: 15px;
  color: #0f172a;
  background: transparent;
  font-family: inherit;
  outline: none;
}

.cmd-search-input::placeholder {
  color: #94a3b8;
}

.cmd-kbd {
  font-size: 10px;
  font-weight: 700;
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #cbd5e1;
  padding: 2px 5px;
  border-radius: 4px;
}

.cmd-results {
  max-height: 380px;
  overflow-y: auto;
  padding: 8px;
}

.cmd-group-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  padding: 8px 12px 4px 12px;
}

.cmd-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13.5px;
  color: #334155;
  text-decoration: none;
  transition: all 0.12s ease;
}

.cmd-item:hover, .cmd-item.selected {
  background: #f2f1ff;
  color: #635bff;
}

.cmd-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.cmd-item:hover .cmd-item-left, .cmd-item.selected .cmd-item-left {
  font-weight: 600;
}

.cmd-item-badge {
  font-size: 10px;
  font-weight: 600;
  background: #f1f5f9;
  color: #64748b;
  padding: 2px 6px;
  border-radius: 4px;
}

.cmd-footer {
  padding: 10px 16px;
  background: #fafbfd;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #94a3b8;
}


/* ========================================================
   DYNAMIC UI ANIMATION ENGINES (Derived from Veyra Product Videos)
   ======================================================== */

/* 1. Neon Branching Flow Path Animation (Pipeline_automation video) */
@keyframes branchPulse {
  0% { stroke-dashoffset: 48; filter: drop-shadow(0 0 2px rgba(99, 91, 255, 0.4)); }
  50% { filter: drop-shadow(0 0 8px rgba(99, 91, 255, 0.9)); }
  100% { stroke-dashoffset: 0; filter: drop-shadow(0 0 2px rgba(99, 91, 255, 0.4)); }
}

.anim-flow-path {
  stroke-dasharray: 6 6;
  animation: branchPulse 1.8s linear infinite;
}

/* 2. Outreach Analytics Trending Green Spline (Pipeline_automation video) */
@keyframes splineDraw {
  0% { stroke-dashoffset: 360; }
  100% { stroke-dashoffset: 0; }
}

.anim-spline-line {
  stroke-dasharray: 360;
  stroke-dashoffset: 0;
  animation: splineDraw 2.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.7));
}

/* 3. Glowing Lead Score 94 Badge (Data_table_highlighting video) */
@keyframes badgeGlowPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(16, 185, 129, 0.35), inset 0 0 6px rgba(16, 185, 129, 0.2); }
  50% { box-shadow: 0 0 22px rgba(16, 185, 129, 0.75), inset 0 0 10px rgba(16, 185, 129, 0.4); }
}

.glowing-lead-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #091a18;
  border: 1.5px solid #10b981;
  color: #10b981;
  font-size: 19px;
  font-weight: 800;
  animation: badgeGlowPulse 2.2s ease-in-out infinite;
}

/* 4. Live Telemetry Audio Scrubber Shimmer */
@keyframes wavePulseAnim {
  0%, 100% { height: 6px; }
  50% { height: 18px; }
}

.mini-waveform-bar {
  width: 3px;
  background: #635bff;
  border-radius: 99px;
  display: inline-block;
  animation: wavePulseAnim 1.2s ease-in-out infinite;
}
.mini-waveform-bar:nth-child(2) { animation-delay: 0.15s; }
.mini-waveform-bar:nth-child(3) { animation-delay: 0.3s; }
.mini-waveform-bar:nth-child(4) { animation-delay: 0.45s; }
.mini-waveform-bar:nth-child(5) { animation-delay: 0.2s; }

/* 5. Rich Animated Feature Card Container */
.interactive-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 8px 16px -2px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.interactive-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -4px rgba(15, 23, 42, 0.09);
  border-color: #cbd5e1;
}

.feature-card-header {
  padding: 22px 24px 14px 24px;
}

.feature-card-visual {
  background: #0f172a;
  border-top: 1px solid #1e293b;
  padding: 16px 20px;
  margin-top: auto;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card-visual.light-visual {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}


/* ========================================================
   PIPEDRIVE-ALIGNED VISUAL SYSTEM & LAYOUT RULES
   ======================================================== */

:root {
  --pipedrive-green: #059669;
  --pipedrive-green-hover: #047857;
  --pipedrive-dark: #1e2532;
  --pipedrive-gray: #5e6c84;
  --pipedrive-light: #f7f9fa;
  --pipedrive-border: #e6e9eb;
}

/* 1. Primary Action Button - Pipedrive Signature Vibrant Green */
.btn-primary, .btn-primary:visited {
  background: var(--pipedrive-green) !important;
  color: #ffffff !important;
  border: 1px solid var(--pipedrive-green) !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 4px rgba(5, 150, 105, 0.2) !important;
  transition: all 0.2s ease !important;
}

.btn-primary:hover, .btn-primary:focus {
  background: var(--pipedrive-green-hover) !important;
  border-color: var(--pipedrive-green-hover) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3) !important;
}

/* Secondary Button - Clean White / Slate */
.btn-secondary {
  background: #ffffff !important;
  color: var(--pipedrive-dark) !important;
  border: 1.5px solid var(--pipedrive-border) !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  transition: all 0.2s ease !important;
}

.btn-secondary:hover {
  background: #f8fafc !important;
  border-color: #cbd5e1 !important;
  color: #0f172a !important;
}

/* 2. Fix "MOST POPULAR" Badge Cutoff */
.pricing-card {
  position: relative !important;
  overflow: visible !important;
}

.pricing-card.featured {
  position: relative !important;
  overflow: visible !important;
  border: 2px solid var(--pipedrive-green) !important;
  box-shadow: 0 12px 32px -4px rgba(5, 150, 105, 0.12), 0 4px 12px rgba(0,0,0,0.05) !important;
}

.pricing-badge {
  position: absolute !important;
  top: -14px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: var(--pipedrive-green) !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  padding: 5px 16px !important;
  border-radius: 99px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4) !important;
  white-space: nowrap !important;
  z-index: 100 !important;
  display: block !important;
  line-height: 1.2 !important;
}

/* 3. Drag-and-Drop Kanban Simulator Rules */
.kanban-card {
  cursor: grab !important;
  user-select: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease !important;
}

.kanban-card:active {
  cursor: grabbing !important;
}

.kanban-card.dragging {
  opacity: 0.45 !important;
  transform: scale(0.96) rotate(1deg) !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2) !important;
}

.kanban-col {
  min-height: 130px !important;
  transition: background-color 0.2s ease, border-color 0.2s ease !important;
  border: 2px dashed transparent !important;
  border-radius: 8px !important;
}

.kanban-col.drop-target-active {
  background-color: #ecfdf5 !important;
  border: 2px dashed #059669 !important;
}

/* 4. Complete Removal of .pill Badges */
.pill {
  display: none !important;
}

/* 5. Clean Pipedrive-Style Headings */
.section-title {
  font-size: 38px !important;
  font-weight: 800 !important;
  color: #1e2532 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.15 !important;
  margin-bottom: 14px !important;
}

.section-lead {
  font-size: 18px !important;
  color: #5e6c84 !important;
  line-height: 1.6 !important;
  max-width: 680px !important;
  margin: 0 auto 36px auto !important;
}


/* ========================================================
   VEYRA ORIGINAL BRAND PALETTE RESTORATION
   Primary: #635bff | Primary Hover: #534be8 | Accent: #0ea5e9 / #10b981
   ======================================================== */

.btn-primary, .btn-primary:visited {
  background: #635bff !important;
  color: #ffffff !important;
  border: 1px solid #635bff !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 4px rgba(99, 91, 255, 0.25) !important;
  transition: all 0.2s ease !important;
}

.btn-primary:hover, .btn-primary:focus {
  background: #534be8 !important;
  border-color: #534be8 !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 14px rgba(99, 91, 255, 0.4) !important;
}

.pricing-card.featured {
  position: relative !important;
  overflow: visible !important;
  border: 2px solid #635bff !important;
  box-shadow: 0 12px 32px -4px rgba(99, 91, 255, 0.16), 0 4px 12px rgba(0,0,0,0.05) !important;
}

.pricing-badge {
  position: absolute !important;
  top: -14px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: #635bff !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  padding: 6px 18px !important;
  border-radius: 99px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 14px rgba(99, 91, 255, 0.4) !important;
  white-space: nowrap !important;
  z-index: 100 !important;
  display: block !important;
  line-height: 1.2 !important;
}

/* GUARANTEED VISIBILITY FOR ALL BROWSERS */
.reveal, .reveal.is-revealed, .reveal.active {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}


/* 8-Second Hero Words Delayed Fade-In */
.hero-words-delayed.faded-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


@media (max-width: 968px) {
  .hero .container > div {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .hero-title {
    font-size: 42px !important;
  }
  .hero-mockup-tilted {
    transform: none !important;
  }
}
