/* ══════════════════════════════════════════════════════════════════
   VEMIRU LANDING — style.css
   Design language: Linear / Vercel / GitHub — premium dark, clean
   ══════════════════════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font: inherit; border: none; background: none; }
img { max-width: 100%; display: block; }

/* ── Design tokens ─────────────────────────────────────────────── */
:root {
  /* Brand */
  --blue:           #2563eb;
  --blue-hover:     #1d4ed8;
  --violet:         #1e40af;
  --gradient-brand: linear-gradient(135deg, #60A5FA 0%, #2563EB 45%, #1E40AF 100%);

  /* Dark palette */
  --bg:             #0f172a;
  --surface:        #1e293b;
  --surface-2:      #162032;
  --border:         #1e2d45;
  --border-strong:  #334155;

  /* Text */
  --text:           #f8fafc;
  --text-muted:     #94a3b8;
  --text-faint:     #475569;
  --white:          #ffffff;

  /* Status */
  --red:            #dc2626;
  --amber:          #d97706;
  --green:          #16a34a;

  /* Radius */
  --radius-sm:      6px;
  --radius:         10px;
  --radius-lg:      16px;
  --radius-xl:      24px;

  /* Typography */
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;
  --font-display:   'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* ── Base ──────────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Gradient text ─────────────────────────────────────────────── */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Fade-in animation ─────────────────────────────────────────── */
.fade-in-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Scroll animations: [data-animate] ────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].animated {
  opacity: 1;
  transform: none;
}
[data-animate][data-delay="100"] { transition-delay: 0.10s; }
[data-animate][data-delay="200"] { transition-delay: 0.20s; }
[data-animate][data-delay="300"] { transition-delay: 0.30s; }
[data-animate][data-delay="400"] { transition-delay: 0.40s; }

/* ── Section label (dark variant) ──────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #60a5fa;
  background: rgba(37,99,235,0.12);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
  border: 1px solid rgba(37,99,235,0.25);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.65;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn-primary-sm {
  background: var(--gradient-brand);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(37,99,235,0.35);
}
.btn-primary-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.55);
}

.btn-ghost {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.btn-ghost:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.btn-primary-lg {
  background: var(--gradient-brand);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 4px 24px rgba(37,99,235,0.45);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.btn-primary-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(37,99,235,0.55);
}

.btn-outline-lg {
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  padding: 15px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.15s, color 0.15s, background 0.15s, transform 0.12s;
  backdrop-filter: blur(4px);
}
.btn-outline-lg:hover {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.55);
}

/* ════════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.25s, backdrop-filter 0.25s, border-color 0.25s;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-icon svg { width: 100%; height: 100%; }

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Lang toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

.lang-opt {
  color: var(--text-faint);
  cursor: pointer;
  padding: 2px 5px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.lang-opt:hover { color: var(--text-muted); }
.lang-opt.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.lang-sep { color: rgba(255,255,255,0.18); font-weight: 400; }

/* Mobile */
.nav-mobile-toggle {
  display: none;
  color: var(--text);
  font-size: 1.35rem;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.nav-mobile-toggle:hover { background: rgba(255,255,255,0.06); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px 16px;
  background: rgba(15,23,42,0.97);
  border-top: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  padding: 10px 14px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.mobile-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 6px 0;
}

.mobile-cta {
  text-align: center;
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 0 100px;

  /* Dot grid pattern */
  background-color: var(--bg);
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Ambient glow behind headline */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

/* Early access badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 16px;
  border-radius: 99px;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Headline */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0;
}

.hero-title-line1 {
  display: block;
  color: var(--text);
}

.hero-title-line2 {
  display: block;
}

/* Tagline */
.hero-roi {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.005em;
  margin-top: -8px;
  font-style: italic;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Subheadline */
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
  margin: 0 auto;
}

/* CTAs row */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hint */
.hero-hint {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-top: -8px;
}

/* ════════════════════════════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════════════════════════════ */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 28px 0;
}

.trust-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.trust-bar-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}

.trust-bar-types {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-sep {
  color: var(--text-faint);
  font-weight: 400;
}

/* ════════════════════════════════════════════════════════════════
   SOCIAL PROOF
════════════════════════════════════════════════════════════════ */
.social-proof {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.sp-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 56px;
}

.sp-logos-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}

.sp-logos-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.sp-logo-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.6;
  letter-spacing: -0.01em;
  font-family: var(--font-display);
}

.sp-logo-sep {
  color: var(--border-strong);
  font-size: 1.1rem;
}

.sp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.sp-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s;
}

.sp-card:hover { border-color: var(--border-strong); }

.sp-stars {
  color: #FBBF24;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.sp-quote {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
}

.sp-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.sp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.sp-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sp-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.sp-biz {
  font-size: 0.75rem;
  color: var(--text-faint);
}

/* ════════════════════════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════════════════════════ */
.stats-bar {
  padding: 52px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 48px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-faint);
  text-align: center;
}

@media (max-width: 640px) {
  .stat-item {
    padding: 16px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 50%;
  }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

/* ════════════════════════════════════════════════════════════════
   VIDEO PLACEHOLDER
════════════════════════════════════════════════════════════════ */
.video-section {
  padding: 100px 0;
  background: var(--bg);
}

.video-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.video-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #60a5fa;
  background: rgba(37,99,235,0.12);
  padding: 4px 14px;
  border-radius: 99px;
  border: 1px solid rgba(37,99,235,0.25);
}

.video-frame {
  width: 100%;
  max-width: 960px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}

.vf-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.vf-url {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-left: 8px;
  font-family: monospace;
}

.vf-body {
  aspect-ratio: 16 / 9;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vf-play-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vf-play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
  color: var(--blue);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}
.vf-play-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}

.video-caption {
  font-size: 0.85rem;
  color: var(--text-faint);
}

/* Browser dots shared */
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }

/* ════════════════════════════════════════════════════════════════
   FEATURE SCENES
════════════════════════════════════════════════════════════════ */
.feature-scene {
  padding: 100px 0;
  background: var(--bg);
}

.feature-scene-alt {
  background: var(--surface-2);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  align-items: center;
}

/* Inverted order for scene 2 */
.feature-grid-reverse .feature-visual { order: -1; }

/* Copy side */
.feature-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #60a5fa;
  background: rgba(37,99,235,0.12);
  padding: 4px 14px;
  border-radius: 99px;
  border: 1px solid rgba(37,99,235,0.25);
  width: fit-content;
}

.feature-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.feature-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.bullet-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(37,99,235,0.15);
  border-radius: 50%;
  color: #60a5fa;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Device frame */
.device-frame {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}

.device-frame-glow-blue {
  box-shadow:
    0 40px 100px rgba(0,0,0,0.6),
    0 0 80px rgba(37,99,235,0.30),
    0 0 160px rgba(37,99,235,0.12),
    0 0 0 1px rgba(37,99,235,0.2);
  border-color: rgba(37,99,235,0.25);
}

.device-frame-glow-violet {
  box-shadow:
    0 40px 100px rgba(0,0,0,0.6),
    0 0 80px rgba(124,58,237,0.30),
    0 0 160px rgba(124,58,237,0.12),
    0 0 0 1px rgba(124,58,237,0.2);
  border-color: rgba(124,58,237,0.25);
}

/* Device frame top bar (shared) */
.df-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.df-url {
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-left: 8px;
  font-family: monospace;
}

/* ────────────────────────────────────────
   Scene 1: Calendar device body
──────────────────────────────────────── */
.df-body {
  overflow: hidden;
}

.df-calendar-body {
  display: flex;
  height: 540px;
}

.dfc-sidebar {
  width: 138px;
  background: var(--surface-2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 0 0;
  gap: 1px;
  flex-shrink: 0;
}

.dfc-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px 10px;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.dfc-logo svg { width: 18px; height: 18px; flex-shrink: 0; }
.dfc-logo-text { font-size: 0.7rem; font-weight: 700; color: var(--text); }

.dfc-section-label {
  font-size: 0.42rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-faint);
  padding: 6px 12px 2px;
  width: 100%;
  box-sizing: border-box;
}

.dfc-nav-item {
  width: calc(100% - 8px);
  margin: 0 4px;
  height: 26px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 6px;
  color: var(--text-faint);
  font-size: 0.62rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  box-sizing: border-box;
}
.dfc-nav-item i { font-size: 0.7rem; flex-shrink: 0; }
.dfc-nav-item span { font-size: 0.62rem; }
.dfc-nav-item:hover { background: rgba(255,255,255,0.05); color: var(--text-muted); }
.dfc-nav-item.dfc-active { background: rgba(37,99,235,0.18); color: #60a5fa; }

.dfc-spacer { flex: 1; }

.dfc-user-area {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px 8px;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid var(--border);
}
.dfc-username {
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--text-muted);
}

.dfc-avatar {
  width: 22px; height: 22px;
  border-radius: 5px;
  background: #1d4ed8;
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.dfc-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 12px 14px;
  gap: 8px;
}

.dfc-branch-selector {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 5px;
  padding: 3px 7px;
  margin-bottom: 8px;
  cursor: pointer;
}
.dfc-branch-selector i { font-size: 0.7rem; color: #2563EB; }

.dfc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dfc-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}

.dfc-sub {
  font-size: 0.58rem;
  color: var(--text-faint);
  margin-top: 1px;
}

.dfc-btn-primary {
  width: 26px; height: 26px;
  background: rgba(37,99,235,0.15);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #60a5fa;
  font-size: 0.75rem;
  cursor: pointer;
}

/* Alert banner */
.dfc-alert-banner {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(217,119,6,0.10);
  border: 1px solid rgba(217,119,6,0.25);
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 0.6rem;
  color: #fbbf24;
}
.dfc-alert-banner i { font-size: 0.62rem; }

/* Calendar grid */
.dfc-cal {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
}

.dfc-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.dfc-cal-nav-left {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--text);
}
.dfc-cal-nav i {
  color: var(--text-faint);
  cursor: pointer;
  font-size: 0.66rem;
}
.dfc-today-btn {
  font-size: 0.5rem;
  padding: 1px 5px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.04em;
}
/* KPIs inline in nav row */
.dfc-kpis {
  display: flex;
  gap: 10px;
  align-items: center;
}
.dfc-kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  line-height: 1;
}
.dfc-kpi-num {
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-display);
}
.dfc-kpi-lbl {
  font-size: 0.38rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.dfc-kpi.red .dfc-kpi-num  { color: #f87171; }
.dfc-kpi.red .dfc-kpi-lbl  { color: #f87171; }
.dfc-kpi.amber .dfc-kpi-num { color: #fbbf24; }
.dfc-kpi.amber .dfc-kpi-lbl { color: #fbbf24; }
.dfc-kpi.green .dfc-kpi-num { color: #4ade80; }
.dfc-kpi.green .dfc-kpi-lbl { color: #4ade80; }

.dfc-cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}

.dfc-cal-dow span {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
}

.dfc-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  flex: 1;
}

.dfc-day {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 3px 3px 2px;
  font-size: 0.62rem;
  color: var(--text);
  border-radius: 4px;
  cursor: pointer;
  gap: 2px;
  transition: background 0.12s;
  font-weight: 500;
  overflow: hidden;
}
.dfc-day:hover { background: rgba(255,255,255,0.06); }
.dfc-day.other { color: var(--text-faint); opacity: 0.3; }
.dfc-day.today-d {
  background: rgba(37,99,235,0.25);
  color: #93c5fd;
  font-weight: 700;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(37,99,235,0.4);
}

/* Badge-style labels on calendar days (like real product) */
.dfc-day-tag {
  font-size: 0.4rem;
  font-weight: 600;
  padding: 1px 3px;
  border-radius: 3px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  display: block;
}
.dfc-day-tag.red   { background: rgba(239,68,68,0.18); color: #f87171; }
.dfc-day-tag.amber { background: rgba(245,158,11,0.18); color: #fbbf24; }
.dfc-day-tag.green { background: rgba(34,197,94,0.18); color: #4ade80; }

/* Legend dot (small colored circle) */
.dfc-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dfc-dot.red   { background: #f87171; }
.dfc-dot.amber { background: #fbbf24; }
.dfc-dot.green { background: #4ade80; }

.dfc-legend {
  display: flex;
  gap: 10px;
  font-size: 0.55rem;
  color: var(--text-faint);
}

.dfc-legend span {
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ────────────────────────────────────────
   Scene 2: Email device body
──────────────────────────────────────── */
.df-email-body {
  display: flex;
  height: 480px;
}

.email-inbox {
  width: 48%;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ei-header {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-faint);
  padding: 10px 12px 8px;
  border-bottom: 1px solid var(--border);
}

.ei-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.12s;
}
.ei-item:hover { background: rgba(255,255,255,0.05); }
.ei-item.ei-unread { background: rgba(37,99,235,0.10); border-left: 2px solid #3b82f6; }

.ei-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.ei-info { flex: 1; min-width: 0; }

.ei-from {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ei-subject {
  font-size: 0.62rem;
  color: var(--text-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.ei-time {
  font-size: 0.6rem;
  color: var(--text-faint);
  flex-shrink: 0;
}

/* Email detail panel */
.email-detail {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

/* Brand header strip matching VemiruEmailBase template */
.ed-email-header {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.ed-email-header span {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.ed-from-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 0;
}

.ed-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.ed-name {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text);
}

.ed-addr {
  font-size: 0.6rem;
  color: var(--text-faint);
}

.ed-badge {
  margin-left: auto;
  font-size: 0.55rem;
  font-weight: 700;
  background: rgba(37,99,235,0.2);
  color: #60a5fa;
  padding: 2px 8px;
  border-radius: 99px;
  border: 1px solid rgba(37,99,235,0.3);
}

.ed-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  padding: 8px 14px;
  border-bottom: 1px solid var(--border);
}

.ed-products {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 14px;
}

.ed-product {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text);
  padding: 4px 0;
}

.ep-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ep-dot.red   { background: #f87171; box-shadow: 0 0 5px rgba(248,113,113,0.7); }
.ep-dot.amber { background: #fbbf24; box-shadow: 0 0 5px rgba(251,191,36,0.7); }

.ed-cta {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: #60a5fa;
  background: rgba(37,99,235,0.12);
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid rgba(37,99,235,0.2);
  width: fit-content;
  transition: background 0.15s;
  margin: auto 14px 10px;
}
.ed-cta:hover { background: rgba(37,99,235,0.2); }

/* ────────────────────────────────────────
   Scene 3: Tasks device body
──────────────────────────────────────── */
.df-tasks-body {
  display: flex;
  flex-direction: row;
  height: 520px;
  overflow: hidden;
}
.dft-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 16px;
  overflow: hidden;
}

.dft-header {}

.dft-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}

.dft-sub {
  font-size: 0.65rem;
  color: var(--text-faint);
}

/* Progress */
.dft-progress {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dft-prog-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--text-faint);
}

.dft-prog-count {
  color: var(--text-muted);
  font-weight: 600;
}

.dft-prog-bar {
  height: 5px;
  background: rgba(255,255,255,0.10);
  border-radius: 99px;
  overflow: hidden;
}

.dft-prog-fill {
  height: 100%;
  background: var(--gradient-brand);
  border-radius: 99px;
}

/* Date nav for Scene 3 */
.dft-date-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.dft-date-nav-left {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text);
}
.dft-date-nav i { font-size: 0.62rem; color: var(--text-faint); cursor: pointer; }
.dft-add-btn {
  font-size: 0.52rem;
  padding: 3px 7px;
  border-radius: 5px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.25);
  color: #60a5fa;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}
.dft-filter-row {
  display: flex;
  gap: 6px;
}
.dft-filter-btn {
  font-size: 0.52rem;
  padding: 2px 7px;
  border-radius: 99px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-faint);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* Task cards (individual, like real product) */
.dft-cards {
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
}
.dft-card {
  border-radius: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 7px 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dft-card.vencida { border-left: 2px solid rgba(239,68,68,0.5); }
.dft-card.done { opacity: 0.6; }
.dft-card-main {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: space-between;
}
.dft-card-title {
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 1;
  min-width: 0;
}
.dft-turno {
  font-size: 0.48rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  color: var(--text-faint);
  flex-shrink: 0;
  white-space: nowrap;
}
.dft-status-badge {
  font-size: 0.5rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 99px;
  flex-shrink: 0;
}
.dft-status-badge.completada { background: rgba(22,163,74,0.15); color: #4ade80; border: 1px solid rgba(22,163,74,0.2); }
.dft-status-badge.pendiente  { background: rgba(217,119,6,0.12); color: #fbbf24; border: 1px solid rgba(217,119,6,0.2); }
.dft-status-badge.vencida    { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.dft-card-meta {
  font-size: 0.55rem;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 3px;
}
.dft-hecho-btn {
  font-size: 0.5rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  color: #60a5fa;
  cursor: pointer;
  font-weight: 600;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════
   ROI CALCULATOR
════════════════════════════════════════════════════════════════ */
.calculator {
  padding: 100px 0;
  background: var(--surface-2);
}

.calculator .container {
  max-width: 900px;
  text-align: center;
}

.calc-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #60a5fa;
  background: rgba(37,99,235,0.12);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
  border: 1px solid rgba(37,99,235,0.25);
}

.calc-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.calc-section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.calc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.calc-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calc-input-wrap {
  display: flex;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s;
}
.calc-input-wrap:focus-within { border-color: var(--blue); }

.calc-prefix {
  padding: 12px 14px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
}

.calc-input-wrap input {
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px 14px;
  width: 100%;
  font-family: var(--font-body);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
  height: 4px;
  cursor: pointer;
}

.calc-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-faint);
}

.calc-pct-buttons {
  display: flex;
  gap: 8px;
}

.calc-pct-btn {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.15s;
}
.calc-pct-btn:hover { border-color: var(--blue); color: var(--text); }
.calc-pct-btn.active {
  background: rgba(37,99,235,0.15);
  border-color: var(--blue);
  color: #60a5fa;
}

.calc-pct-hint {
  font-size: 0.75rem;
  color: var(--text-faint);
  font-style: italic;
}

/* Results grid */
.calc-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.calc-result-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.calc-result-icon {
  font-size: 1.3rem;
  color: var(--text-faint);
}

.calc-result-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.calc-result-label {
  font-size: 0.72rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.calc-result-card.loss .calc-result-value   { color: #f87171; }
.calc-result-card.savings .calc-result-value { color: #4ade80; }
.calc-result-card.roi .calc-result-value    { color: #60a5fa; }
.calc-result-card.roi { border-color: rgba(37,99,235,0.3); }

/* CTA inside calc */
.calc-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.calc-cta p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.calc-cta p strong {
  color: var(--text);
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════════════
   PRICING — 2 planes
════════════════════════════════════════════════════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--surface);
}

.pricing-roi-bar {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 32px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pricing-roi-bar i {
  color: var(--blue);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1020px;
  margin: 0 auto 40px;
  align-items: start;
}

.pricing-card {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pricing-card.popular {
  border-color: rgba(37,99,235,0.5);
  box-shadow: 0 0 0 1px rgba(37,99,235,0.2), 0 20px 60px rgba(37,99,235,0.1);
  transform: translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 99px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-faint);
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.plan-features li i {
  color: var(--green);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.15s;
  margin-top: 4px;
}

.btn-plan.primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.btn-plan.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.55);
}

.btn-plan.outline {
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
}
.btn-plan.outline:hover {
  border-color: var(--text-muted);
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.plan-hint {
  font-size: 0.75rem;
  color: var(--text-faint);
  text-align: center;
}

/* ── Pricing cycle toggle ──────────────────────────────────── */
.pricing-cycle-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.pct-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-faint);
  transition: color 0.15s;
}

.pct-label.pct-label-active {
  color: var(--text);
  font-weight: 700;
}

.pct-switch {
  width: 44px;
  height: 24px;
  border-radius: 99px;
  background: var(--border);
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  padding: 0;
  flex-shrink: 0;
}

.pct-switch.pct-switch-annual {
  background: var(--blue);
}

.pct-thumb {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: left 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.pct-switch.pct-switch-annual .pct-thumb {
  left: 23px;
}

.pct-saving-badge {
  background: rgba(22,163,74,0.15);
  color: #4ade80;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 99px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(22,163,74,0.25);
}

/* ── Plan annual note ──────────────────────────────────────── */
.plan-price-annual-note {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: -4px;
  margin-bottom: 4px;
}

.plan-saving-tag {
  background: rgba(22,163,74,0.15);
  color: #4ade80;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
  border: 1px solid rgba(22,163,74,0.25);
}

.pricing-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 32px 0 16px;
}

.pricing-trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-faint);
}

.pricing-trust-badge i {
  font-size: 0.8rem;
  color: var(--blue);
  opacity: 0.7;
}

.pricing-trust-sep {
  color: var(--border-strong);
  font-size: 0.9rem;
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-faint);
  text-align: center;
}

/* ════════════════════════════════════════════════════════════════
   FAQ — accordion premium
════════════════════════════════════════════════════════════════ */
.faq {
  padding: 100px 0;
  background: var(--surface-2);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: rgba(37,99,235,0.2);
}

.faq-summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-summary:hover .faq-q { color: var(--white); }

.faq-q {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  transition: color 0.2s;
}
.faq-item.open .faq-q { color: var(--white); }

.faq-toggle-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  font-size: 1rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.3s;
}
.faq-item.open .faq-toggle-icon {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(37,99,235,0.08);
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-item.open .faq-body {
  max-height: 320px;
}

.faq-body p {
  padding: 0 52px 26px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════════
   CONTACT — cards de contacto
════════════════════════════════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37,99,235,0.10);
  border-radius: var(--radius);
  color: var(--blue);
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.contact-card-icon--green {
  background: rgba(22,163,74,0.10);
  color: #22c55e;
}
.contact-card-icon--violet {
  background: rgba(37,99,235,0.12);
  color: #60a5fa;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
a.contact-value:hover { color: var(--blue); }

.contact-sla {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════════════════════════════ */
.cta-final {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(37,99,235,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(124,58,237,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: -4px;
}

.cta-btn { margin-top: 8px; }

.cta-contact {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-top: 4px;
}
.cta-contact a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.cta-contact a:hover { color: var(--text); }

/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-faint);
  line-height: 1.6;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint);
  font-size: 0.9rem;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.footer-socials a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-muted);
  border-color: var(--border-strong);
}

.footer-links {
  display: contents;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-faint);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--text-muted); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .feature-grid { gap: 48px; }
  .calc-inputs  { gap: 24px; }
  .calc-results { grid-template-columns: repeat(2, 1fr); }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .pricing-grid-3 { grid-template-columns: 1fr 1fr; max-width: 640px; }
}

@media (max-width: 768px) {
  /* Navbar */
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-mobile-toggle { display: block; }

  /* Hero */
  .hero { padding: 100px 0 80px; min-height: auto; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { text-align: center; }
  .btn-primary-lg { padding: 15px 28px; font-size: 0.95rem; }
  .btn-outline-lg  { justify-content: center; padding: 14px 24px; font-size: 0.95rem; }

  /* Section titles */
  .section-title { font-size: clamp(24px, 6vw, 36px); }
  .feature-headline { font-size: clamp(28px, 6vw, 38px); }

  /* Trust bar */
  .trust-bar-types { flex-wrap: wrap; justify-content: center; gap: 6px 12px; }

  /* Feature scenes */
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid-reverse .feature-visual { order: 0; }
  .feature-scene { padding: 72px 0; }

  /* FAQ */
  .faq-body p { padding-right: 0; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; max-width: 420px; }

  /* Calculator */
  .calc-card { padding: 28px 20px; }
  .calc-inputs { grid-template-columns: 1fr; }
  .calc-results { grid-template-columns: 1fr 1fr; }

  /* Pricing */
  .pricing-grid-3 { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card.popular { transform: none; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 48px 24px; }
  .footer-brand { grid-column: 1 / -1; }

  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  /* Device frames: reduce height on mobile */
  .df-calendar-body { height: 380px; }
  .df-email-body    { height: 360px; }
  .df-tasks-body    { height: 380px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: clamp(40px, 10vw, 56px); }

  .calc-results { grid-template-columns: 1fr 1fr; gap: 10px; }
  .calc-result-value { font-size: 1.2rem; }

  .trust-bar-types { font-size: 0.85rem; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-col { grid-column: auto; }

  .cta-headline { font-size: clamp(40px, 10vw, 56px); }

  /* Email body: stack on very small screens */
  .df-email-body { flex-direction: column; height: auto; }
  .email-inbox { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
}

/* ── Language dropdown ─────────────────────────────────────────────── */
.lang-dropdown {
  position: relative;
}

.lang-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}
.lang-dropdown-trigger:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.lang-dropdown-trigger .bi-globe2 { font-size: 0.9rem; opacity: 0.8; }
.lang-chevron {
  font-size: 0.65rem;
  opacity: 0.6;
  transition: transform 0.2s;
}
.lang-dropdown-trigger[aria-expanded="true"] .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #0f1a2e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 6px;
  min-width: 148px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  opacity: 0;
  transform: translateY(-6px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
  z-index: 300;
}
.lang-dropdown-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.lang-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  font-family: var(--font-body);
  text-align: left;
}
.lang-menu-item:hover {
  background: rgba(255,255,255,0.07);
  color: var(--white);
}
.lang-menu-item.active {
  color: var(--white);
  background: rgba(37,99,235,0.2);
  font-weight: 600;
}
.lang-flag { font-size: 1rem; line-height: 1; }

/* Mobile lang row */
.mobile-lang-row {
  display: flex;
  gap: 8px;
  padding: 4px 0 8px;
}
.mobile-lang-btn {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.15s, color 0.15s;
  text-align: center;
}
.mobile-lang-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════
   TRUST SIGNALS BAR
═══════════════════════════════════════════════════════════════════ */
.trust-signals-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-signals-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}
.trust-signal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.25rem 1rem;
  white-space: nowrap;
}
.trust-signal i {
  color: var(--blue);
  font-size: 0.95rem;
}
.trust-signal-sep {
  width: 1px;
  height: 20px;
  background: var(--border-strong);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .trust-signal-sep { display: none; }
  .trust-signals-inner { gap: 0.5rem 1rem; justify-content: flex-start; padding: 0 1rem; }
  .trust-signal { padding: 0.25rem 0; }
}

/* ═══════════════════════════════════════════════════════════════════
   CÓMO FUNCIONA
═══════════════════════════════════════════════════════════════════ */
.how-it-works {
  padding: 6rem 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--blue) 0%, rgba(37,99,235,0.2) 100%);
  border-top: 1px dashed var(--border-strong);
  z-index: 0;
}
.hiw-step {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  position: relative;
  z-index: 1;
  transition: border-color 0.2s, transform 0.2s;
}
.hiw-step:hover {
  border-color: rgba(37,99,235,0.4);
  transform: translateY(-2px);
}
.hiw-number {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-display);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.35;
}
.hiw-icon {
  width: 44px;
  height: 44px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--blue);
}
.hiw-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.hiw-body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hiw-steps { grid-template-columns: 1fr; }
  .hiw-steps::before { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   SECURITY SECTION
═══════════════════════════════════════════════════════════════════ */
.security-section {
  padding: 5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}
.security-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.security-item:hover {
  border-color: rgba(37,99,235,0.3);
}
.security-icon {
  width: 36px;
  height: 36px;
  background: rgba(37,99,235,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.security-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.security-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 600px) {
  .security-grid { grid-template-columns: 1fr; }
}

/* ── Ideal Para ───────────────────────────────── */
.ideal-para {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.ideal-para .section-header {
  margin-bottom: 48px;
}

.ideal-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

@media (max-width: 1100px) {
  .ideal-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .ideal-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.ideal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}

.ideal-item:hover {
  border-color: var(--blue);
  background: rgba(37, 99, 235, 0.05);
}

.ideal-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--blue);
  flex-shrink: 0;
}

.ideal-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ── Overview Feature Scene (dov-*) ─────────────── */
.dov-body-wrap {
  display: flex;
  height: 100%;
  overflow: hidden;
}

.dov-sidebar {
  width: 108px;
  background: #0b1120;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 6px;
  flex-shrink: 0;
}

.dov-sb-logo {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--blue);
  padding: 0 6px 8px;
  letter-spacing: -0.03em;
  font-family: var(--font-display);
}

.dov-sb-section-label {
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.2);
  padding: 6px 6px 2px;
  text-transform: uppercase;
}

.dov-sb-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  padding: 4px 6px;
  border-radius: 5px;
  cursor: default;
}

.dov-sb-item i { font-size: 0.65rem; }

.dov-sb-active {
  background: rgba(37, 99, 235, 0.18);
  color: #93c5fd;
  font-weight: 600;
}

.dov-main {
  flex: 1;
  overflow: hidden;
  padding: 12px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg);
}

.dov-page-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  font-family: var(--font-display);
}

.dov-page-sub {
  font-size: 0.55rem;
  color: var(--text-faint);
  margin-top: -4px;
}

.dov-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.dov-kpi-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 7px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dov-kpi-warn {
  border-color: rgba(251, 146, 60, 0.4);
}

.dov-kpi-num {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  font-family: var(--font-display);
  line-height: 1;
}

.dov-kpi-label {
  font-size: 0.42rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  text-transform: uppercase;
  line-height: 1.2;
}

.dov-kpi-delta {
  font-size: 0.48rem;
  color: #4ade80;
  font-weight: 600;
  margin-top: 1px;
}

.dov-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.dov-insights,
.dov-chart {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dov-panel-title {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.dov-insight-item {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.dov-insight-num {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.2);
  color: #93c5fd;
  font-size: 0.45rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.dov-insight-text {
  font-size: 0.48rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.dov-chart-area {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-top: 4px;
}

.dov-chart-svg {
  width: 100%;
  height: 44px;
}

.dov-products {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dov-prod-row {
  display: grid;
  grid-template-columns: 1fr 80px 28px;
  align-items: center;
  gap: 6px;
}

.dov-prod-name {
  font-size: 0.48rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dov-prod-bar-wrap {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.dov-prod-bar {
  height: 100%;
  background: var(--gradient-brand);
  border-radius: 2px;
  min-width: 2px;
}

.dov-prod-pct {
  font-size: 0.48rem;
  font-weight: 600;
  color: var(--text-faint);
  text-align: right;
}
