/* Lumya Vision — Premium Design System (site) */

:root,
[data-theme="light"] {
  --bc-primary: #0B132B;
  --bc-primary-hover: #152244;
  --bc-secondary: #D4AF37;
  --bc-accent: #D4AF37;
  --bc-accent-hover: #C4A030;
  --bc-accent-glow: rgba(212, 175, 55, 0.28);
  --bc-accent-soft: rgba(212, 175, 55, 0.12);
  --bc-success: #16A34A;
  --bc-warning: #F59E0B;
  --bc-danger: #DC2626;
  --bc-bg: #F8FAFC;
  --bc-surface: #FFFFFF;
  --bc-card: #FFFFFF;
  --bc-border: #E5E7EB;
  --bc-border-strong: #D1D5DB;
  --bc-hover: rgba(11, 19, 43, 0.04);
  --bc-heading: #0B132B;
  --bc-subtitle: #111827;
  --bc-text: #111827;
  --bc-muted: #64748B;
  --bc-caption: #64748B;
  --bc-support: #2563EB;
  --bc-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --bc-shadow: 0 4px 16px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.04);
  --bc-shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.04);
  --bc-shadow-glow: 0 0 48px rgba(212, 175, 55, 0.12);
  --bc-nav-bg: rgba(255, 255, 255, 0.86);
  --bc-glass: rgba(255, 255, 255, 0.65);
  --bc-glass-border: rgba(229, 231, 235, 0.9);
  --bc-hero-mesh:
    radial-gradient(ellipse 90% 70% at 10% 0%, rgba(212, 175, 55, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(11, 19, 43, 0.04) 0%, transparent 50%);
  --bc-grid-color: rgba(15, 23, 42, 0.035);
  --bc-section-alt: rgba(15, 23, 42, 0.025);
  --bc-toggler-filter: none;
  --bc-font-ui: 'Inter', system-ui, -apple-system, sans-serif;
  --bc-font-display: 'Manrope', 'Inter', system-ui, sans-serif;
  --bc-font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

[data-theme="dark"] {
  --bc-primary: #0B132B;
  --bc-primary-hover: #152244;
  --bc-secondary: #D4AF37;
  --bc-accent: #D4AF37;
  --bc-accent-hover: #C4A030;
  --bc-accent-glow: rgba(212, 175, 55, 0.28);
  --bc-accent-soft: rgba(212, 175, 55, 0.14);
  --bc-success: #4ade80;
  --bc-warning: #fbbf24;
  --bc-danger: #f87171;
  --bc-bg: #060A14;
  --bc-surface: #0B132B;
  --bc-card: #121C33;
  --bc-border: rgba(255, 255, 255, 0.1);
  --bc-border-strong: rgba(255, 255, 255, 0.16);
  --bc-hover: rgba(255, 255, 255, 0.06);
  --bc-heading: #ffffff;
  --bc-subtitle: #e8edf5;
  --bc-text: #d1d9e6;
  --bc-muted: #A8B2C4;
  --bc-caption: #A8B2C4;
  --bc-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
  --bc-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25);
  --bc-shadow-lg: 0 28px 72px rgba(0, 0, 0, 0.5), 0 10px 24px rgba(0, 0, 0, 0.3);
  --bc-shadow-glow: 0 0 100px rgba(212, 175, 55, 0.16);
  --bc-nav-bg: rgba(6, 10, 20, 0.86);
  --bc-glass: rgba(18, 28, 51, 0.65);
  --bc-glass-border: rgba(255, 255, 255, 0.1);
  --bc-hero-mesh:
    radial-gradient(ellipse 90% 70% at 10% 0%, rgba(212, 175, 55, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(11, 19, 43, 0.55) 0%, transparent 50%);
  --bc-grid-color: rgba(255, 255, 255, 0.035);
  --bc-section-alt: rgba(255, 255, 255, 0.03);
  --bc-toggler-filter: invert(1) brightness(0.9);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-devices { transform: none !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body.site-body {
  font-family: var(--bc-font-ui);
  background: var(--bc-bg);
  color: var(--bc-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

body.site-body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--bc-grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--bc-grid-color) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 20%, transparent 75%);
  opacity: 0.7;
}

.site-main { flex: 1; position: relative; z-index: 1; }

/* Typography */
.text-display {
  font-family: var(--bc-font-display);
  font-size: clamp(2.35rem, 5.8vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--bc-heading);
}

.text-heading,
.section-title,
.hero-title {
  font-family: var(--bc-font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--bc-heading);
}

.text-subtitle { font-size: 1.2rem; font-weight: 500; color: var(--bc-subtitle); line-height: 1.55; }
.text-body { color: var(--bc-text); font-size: 1rem; }
.text-bc-subtitle { color: var(--bc-subtitle); }
.text-bc-text { color: var(--bc-text); }
.text-bc-muted { color: var(--bc-muted) !important; }
.text-bc-caption { color: var(--bc-caption) !important; font-size: 0.875rem; }
.text-accent { color: var(--bc-accent) !important; }
.text-caption { font-size: 0.8125rem; color: var(--bc-caption); letter-spacing: 0.02em; }

h1, h2, h3, h4, h5 { font-family: var(--bc-font-display); color: var(--bc-heading); }

code, kbd, samp, pre, .font-mono {
  font-family: var(--bc-font-mono);
}

.section-eyebrow {
  color: var(--bc-accent);
  font-weight: 650;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
}

.section-lead {
  color: var(--bc-muted);
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-padding { padding: 6rem 0; }
.section-alt { background: var(--bc-section-alt); }

.glass {
  background: var(--bc-glass);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid var(--bc-glass-border);
}

/* Navbar */
.site-navbar {
  --nav-height: 76px;
  min-height: var(--nav-height);
  background: var(--bc-nav-bg);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  border-bottom: 1px solid var(--bc-border);
  z-index: 1030;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-navbar.is-scrolled {
  box-shadow: var(--bc-shadow);
  border-color: var(--bc-border-strong);
}

.site-navbar .container { min-height: var(--nav-height); }

.site-logo {
  height: 40px;
  width: auto;
  max-width: min(220px, 52vw);
  display: block;
  flex-shrink: 0;
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.nav-cta-mobile {
  white-space: nowrap;
}

.site-nav-link {
  color: var(--bc-muted) !important;
  font-weight: 550;
  font-size: 0.9375rem;
  padding: 0.5rem 0.875rem !important;
  position: relative;
  transition: color 0.2s ease;
}

.site-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.2rem;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background: var(--bc-accent);
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.site-nav-link:hover,
.site-nav-link.active { color: var(--bc-heading) !important; }
.site-nav-link:hover::after,
.site-nav-link.active::after { transform: scaleX(1); }

.site-navbar .navbar-toggler {
  border-color: var(--bc-border-strong);
  padding: 0.5rem 0.65rem;
}
.site-navbar .navbar-toggler-icon { filter: var(--bc-toggler-filter); }

/* Buttons — primário navy, secundário outline, destaque ouro (moderado) */
.btn.btn-bc-primary,
a.btn.btn-bc-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bc-primary);
  --bs-btn-border-color: var(--bc-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bc-primary-hover);
  --bs-btn-hover-border-color: var(--bc-primary-hover);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bc-primary-hover);
  --bs-btn-active-border-color: var(--bc-primary-hover);
  background: var(--bc-primary) !important;
  background-color: var(--bc-primary) !important;
  border: 1px solid var(--bc-primary) !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.55rem;
  border-radius: 10px;
  box-shadow: var(--bc-shadow-sm);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn.btn-bc-primary:hover,
.btn.btn-bc-primary:focus,
a.btn.btn-bc-primary:hover,
a.btn.btn-bc-primary:focus {
  color: #fff !important;
  background: var(--bc-primary-hover) !important;
  border-color: var(--bc-primary-hover) !important;
  transform: translateY(-1px);
  box-shadow: var(--bc-shadow);
}

.btn.btn-bc-primary:active,
a.btn.btn-bc-primary:active { transform: translateY(0); }

.btn.btn-bc-outline,
a.btn.btn-bc-outline {
  --bs-btn-color: var(--bc-primary);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: var(--bc-primary);
  --bs-btn-hover-color: var(--bc-primary);
  --bs-btn-hover-bg: rgba(11, 19, 43, 0.04);
  --bs-btn-hover-border-color: var(--bc-primary);
  background: transparent !important;
  border: 1px solid var(--bc-primary) !important;
  color: var(--bc-primary) !important;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.7rem 1.45rem;
  border-radius: 10px;
  transition: border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn.btn-bc-outline:hover,
.btn.btn-bc-outline:focus,
a.btn.btn-bc-outline:hover,
a.btn.btn-bc-outline:focus {
  border-color: var(--bc-primary) !important;
  color: var(--bc-primary) !important;
  background: rgba(11, 19, 43, 0.04) !important;
  transform: translateY(-1px);
  box-shadow: var(--bc-shadow-sm);
}

.btn.btn-bc-gold,
a.btn.btn-bc-gold {
  background: var(--bc-secondary) !important;
  border: 1px solid var(--bc-secondary) !important;
  color: var(--bc-primary) !important;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.55rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn.btn-bc-gold:hover,
.btn.btn-bc-gold:focus,
a.btn.btn-bc-gold:hover,
a.btn.btn-bc-gold:focus {
  background: var(--bc-accent-hover) !important;
  border-color: var(--bc-accent-hover) !important;
  color: var(--bc-primary) !important;
  transform: translateY(-1px);
  box-shadow: var(--bc-shadow-sm);
}

.btn.btn-bc-primary.btn-lg,
.btn.btn-bc-outline.btn-lg,
.btn.btn-bc-gold.btn-lg {
  padding: 0.9rem 1.85rem;
  font-size: 1.02rem;
  border-radius: 12px;
}

.btn.btn-bc-primary:focus-visible,
.btn.btn-bc-outline:focus-visible,
.btn.btn-bc-gold:focus-visible,
.theme-toggle:focus-visible,
.site-nav-link:focus-visible {
  outline: 2px solid var(--bc-support, #2563EB);
  outline-offset: 3px;
}

[data-theme="dark"] .btn.btn-bc-primary,
[data-theme="dark"] a.btn.btn-bc-primary {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #0B132B !important;
}

[data-theme="dark"] .btn.btn-bc-primary:hover,
[data-theme="dark"] a.btn.btn-bc-primary:hover {
  background: #F8FAFC !important;
  border-color: #F8FAFC !important;
  color: #0B132B !important;
}

[data-theme="dark"] .btn.btn-bc-outline,
[data-theme="dark"] a.btn.btn-bc-outline {
  border-color: rgba(255, 255, 255, 0.7) !important;
  color: #FFFFFF !important;
  background: transparent !important;
}

[data-theme="dark"] .btn.btn-bc-outline:hover,
[data-theme="dark"] a.btn.btn-bc-outline:hover {
  border-color: #FFFFFF !important;
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.theme-toggle {
  background: var(--bc-accent-soft);
  border: 1px solid var(--bc-border);
  color: var(--bc-heading);
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--bc-accent);
  transform: scale(1.06);
}

/* Hero */
.hero-section {
  position: relative;
  padding: 5.5rem 0 6.5rem;
  overflow: hidden;
  background: var(--bc-hero-mesh);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bc-bg);
  opacity: 0.35;
  z-index: 0;
}

.hero-section .container { position: relative; z-index: 2; }

.hero-glow {
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bc-accent-glow) 0%, transparent 68%);
  top: -25%;
  right: -12%;
  pointer-events: none;
  z-index: 1;
  filter: blur(48px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.05rem;
  background: var(--bc-accent-soft);
  border: 1px solid var(--bc-border);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 650;
  color: var(--bc-subtitle);
  margin-bottom: 1.6rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bc-accent);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--bc-subtitle);
  line-height: 1.7;
  max-width: 520px;
}

.hero-devices {
  position: relative;
  min-height: 420px;
  transition: transform 0.6s ease;
}

.hero-laptop {
  position: relative;
  z-index: 1;
  border-radius: 16px 16px 10px 10px;
  border: 1px solid var(--bc-border-strong);
  background: var(--bc-card);
  box-shadow: var(--bc-shadow-lg), var(--bc-shadow-glow);
  overflow: hidden;
  padding: 0.55rem;
}

.hero-laptop::before {
  content: '';
  display: block;
  height: 12px;
  margin-bottom: 0.4rem;
  background: radial-gradient(circle at 10px 50%, #ef4444 3px, transparent 4px),
    radial-gradient(circle at 24px 50%, #eab308 3px, transparent 4px),
    radial-gradient(circle at 38px 50%, #22c55e 3px, transparent 4px);
  opacity: 0.85;
}

.hero-phone {
  position: absolute;
  right: -4%;
  bottom: -6%;
  width: 38%;
  max-width: 190px;
  z-index: 2;
  border-radius: 28px;
  border: 3px solid var(--bc-border-strong);
  background: var(--bc-card);
  box-shadow: var(--bc-shadow-lg);
  overflow: hidden;
  padding: 0.35rem;
  transform: rotate(-4deg);
  transition: transform 0.4s ease;
}

.hero-phone:hover { transform: rotate(-2deg) translateY(-4px); }

.hero-laptop img,
.hero-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Cards */
.feature-card,
.plan-card-site,
.demo-card,
.login-card,
.testimonial-card,
.blog-card,
.stat-card-site,
.form-card-site,
.proof-card,
.case-card {
  background: var(--bc-card);
  border: 1px solid var(--bc-border);
  border-radius: 22px;
  padding: 2.15rem;
  box-shadow: var(--bc-shadow);
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover,
.plan-card-site:hover,
.demo-card:hover,
.login-card:hover,
.blog-card:hover,
.proof-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--bc-shadow-lg);
  border-color: var(--bc-border-strong);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.35rem;
  border: 1px solid var(--bc-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-icon.tint-gold { background: rgba(201, 162, 39, 0.14); color: var(--bc-accent); }
.feature-icon.tint-indigo { background: rgba(212, 175, 55, 0.14); color: #D4AF37; }
.feature-icon.tint-emerald { background: rgba(16, 185, 129, 0.14); color: #10b981; }
.feature-icon.tint-rose { background: rgba(244, 63, 94, 0.12); color: #f43f5e; }
.feature-icon.tint-sky { background: rgba(14, 165, 233, 0.14); color: #0ea5e9; }
.feature-icon.tint-violet { background: rgba(212, 175, 55, 0.14); color: #D4AF37; }
.feature-icon.tint-orange { background: rgba(249, 115, 22, 0.14); color: #f97316; }
.feature-icon.tint-teal { background: rgba(20, 184, 166, 0.14); color: #14b8a6; }

.feature-card:hover .feature-icon {
  transform: scale(1.08);
  box-shadow: 0 0 24px var(--bc-accent-glow);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 650;
  margin-bottom: 0.55rem;
}

.feature-card p { color: var(--bc-muted); font-size: 0.95rem; line-height: 1.65; }

/* Plans */
.plan-card-site { position: relative; }

.plan-card-site.is-featured {
  border-color: var(--bc-accent);
  box-shadow: var(--bc-shadow-lg), 0 0 0 1px var(--bc-accent-glow);
  background: linear-gradient(180deg, var(--bc-accent-soft) 0%, var(--bc-card) 28%);
}

@media (min-width: 992px) {
  .plan-card-site.is-featured { transform: scale(1.04); }
  .plan-card-site.is-featured:hover { transform: scale(1.04) translateY(-8px); }
}

.plan-price {
  font-family: var(--bc-font-display);
  font-size: 2.65rem;
  font-weight: 700;
  color: var(--bc-heading);
  letter-spacing: -0.03em;
  line-height: 1;
}

.plan-price small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--bc-muted);
  font-family: var(--bc-font-ui);
}

.plan-savings {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 8px;
  background: rgba(22, 163, 74, 0.12);
  color: var(--bc-success);
  font-size: 0.8125rem;
  font-weight: 650;
}

.plan-features-list li {
  color: var(--bc-text);
  font-size: 0.9375rem;
  padding: 0.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.plan-features-list .bi-check2 {
  color: var(--bc-accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.badge-soon {
  background: var(--bc-accent-soft);
  color: var(--bc-accent);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

.billing-toggle {
  display: inline-flex;
  padding: 0.3rem;
  border-radius: 14px;
  border: 1px solid var(--bc-border);
  background: var(--bc-surface);
  gap: 0.25rem;
}

.billing-toggle button {
  border: none;
  background: transparent;
  color: var(--bc-muted);
  font-weight: 650;
  font-size: 0.875rem;
  padding: 0.5rem 1.1rem;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}

.billing-toggle button.active {
  background: var(--bc-accent);
  color: #111;
}

.price-monthly.is-hidden,
.price-yearly.is-hidden { display: none !important; }

/* Stats / proof / testimonials */
.stat-card-site { text-align: center; padding: 1.85rem 1.5rem; }

.stat-number {
  font-family: var(--bc-font-display);
  font-size: 2.55rem;
  font-weight: 700;
  color: var(--bc-accent);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.proof-grid .proof-card { text-align: center; padding: 1.75rem 1.25rem; }
.proof-card .bi {
  font-size: 1.5rem;
  color: var(--bc-accent);
  margin-bottom: 0.75rem;
  display: block;
}

.testimonial-card { position: relative; }

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--bc-accent);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card p {
  color: var(--bc-text);
  font-size: 1rem;
  line-height: 1.75;
  padding-top: 1.6rem;
  position: relative;
  z-index: 1;
}

.testimonial-card footer strong { color: var(--bc-heading); }

.client-logo-wrap {
  padding: 1rem 1.5rem;
  background: var(--bc-card);
  border: 1px solid var(--bc-border);
  border-radius: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--bc-subtitle);
}

.client-logo-wrap:hover {
  border-color: var(--bc-border-strong);
  box-shadow: var(--bc-shadow);
}

.client-logo { height: 36px; width: auto; opacity: 0.9; }

/* FAQ */
.faq-accordion .accordion-item {
  background: transparent;
  border: none !important;
  margin-bottom: 0.85rem;
}

.faq-accordion .accordion-button {
  background: var(--bc-card);
  color: var(--bc-heading);
  font-weight: 650;
  font-size: 1rem;
  border: 1px solid var(--bc-border);
  border-radius: 16px !important;
  padding: 1.3rem 1.55rem;
  box-shadow: var(--bc-shadow-sm);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--bc-accent-soft);
  color: var(--bc-heading);
  border-color: var(--bc-accent);
  box-shadow: var(--bc-shadow);
}

.faq-accordion .accordion-button::after {
  filter: var(--bc-toggler-filter);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion .accordion-button:focus {
  box-shadow: var(--bc-shadow-sm), 0 0 0 2px var(--bc-accent-glow);
  border-color: var(--bc-accent);
}

.faq-accordion .accordion-body {
  background: var(--bc-card);
  color: var(--bc-text);
  border: 1px solid var(--bc-border);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 1.3rem 1.55rem;
  margin-top: -8px;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Demo carousel */
.demo-tab {
  border-radius: 100px !important;
  font-weight: 650;
  font-size: 0.875rem;
  padding: 0.55rem 1.3rem !important;
  transition: all 0.2s ease;
}

.demo-tab.active {
  background: var(--bc-accent) !important;
  color: #111 !important;
  border-color: var(--bc-accent) !important;
  box-shadow: 0 4px 18px var(--bc-accent-glow);
}

.demo-panel { transition: opacity 0.35s ease; }
.demo-panel.is-fading { opacity: 0; }

.demo-image-frame {
  border-radius: 18px;
  border: 1px solid var(--bc-border);
  overflow: hidden;
  box-shadow: var(--bc-shadow-lg);
  background: var(--bc-card);
}

.demo-image-frame img {
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: auto;
  display: block;
}

.demo-image-frame:hover img { transform: scale(1.04); }

.demo-carousel-nav {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.demo-carousel-nav button {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--bc-border-strong);
  background: var(--bc-card);
  color: var(--bc-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.demo-carousel-nav button:hover {
  border-color: var(--bc-accent);
  background: var(--bc-accent-soft);
}

/* Footer — navy premium */
.site-footer {
  background: #0B132B;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  padding: 4.5rem 0 2rem;
  margin-top: auto;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .site-logo-footer {
  height: 40px;
}

.site-footer .footer-brand-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}

.site-footer .footer-meta,
.site-footer .text-bc-caption {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.875rem;
}

.footer-heading {
  color: #FFFFFF;
  font-weight: 650;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  font-family: var(--bc-font-ui);
}

.footer-link {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
  display: inline-block;
}

.footer-link:hover { color: var(--bc-secondary); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.15s;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-social a:hover {
  color: var(--bc-secondary);
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 3rem;
}

.site-footer .form-control {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
}

.site-footer .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.site-footer .btn-bc-primary {
  background: var(--bc-secondary) !important;
  border-color: var(--bc-secondary) !important;
  color: #0B132B !important;
}

/* Forms */
.form-control, .form-select {
  background: var(--bc-surface);
  border: 1px solid var(--bc-border-strong);
  color: var(--bc-heading);
  border-radius: 12px;
  padding: 0.75rem 1.05rem;
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control::placeholder { color: var(--bc-caption); }

.form-control:focus, .form-select:focus {
  background: var(--bc-surface);
  border-color: var(--bc-accent);
  color: var(--bc-heading);
  box-shadow: 0 0 0 3px var(--bc-accent-soft);
}

.form-label {
  color: var(--bc-subtitle);
  font-weight: 550;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
}

/* Comparison table */
.comparison-table {
  background: var(--bc-card);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--bc-border);
  box-shadow: var(--bc-shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 1.15rem 1.3rem;
  border-color: var(--bc-border) !important;
  vertical-align: middle;
  color: var(--bc-text);
}

.comparison-table thead th {
  background: var(--bc-surface);
  color: var(--bc-heading);
  font-weight: 650;
}

.comparison-table tbody td:first-child {
  color: var(--bc-subtitle);
  font-weight: 550;
}

.blog-card h2 a { color: var(--bc-heading); transition: color 0.2s; }
.blog-card h2 a:hover { color: var(--bc-accent); }

.blog-content {
  color: var(--bc-text);
  font-size: 1.0625rem;
  line-height: 1.85;
}

.cta-section {
  background: #0B132B;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: none;
  color: #fff;
}

.cta-section .section-title { color: #fff; }
.cta-section .section-lead { color: rgba(255, 255, 255, 0.7); }

.plan-card-name {
  font-family: var(--bc-font-display);
  font-size: 1.35rem;
  font-weight: 750;
  margin: 0 0 0.65rem;
  color: var(--bc-heading);
}

.plan-card-desc {
  color: var(--bc-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
  min-height: 0;
}

.plan-card-trial {
  font-size: 0.875rem;
  color: var(--bc-muted);
  margin: 0.75rem 0 1rem;
}

.plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.plan-features-list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--bc-secondary);
}

.plan-limits-list {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--bc-border);
}

.security-block {
  height: 100%;
  padding: 1.75rem;
  border: 1px solid var(--bc-border);
  border-radius: 16px;
  background: var(--bc-surface);
}

.security-block-muted {
  background: var(--bc-bg);
}

.security-block-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.security-block-lead {
  color: var(--bc-muted);
  font-size: 0.95rem;
  margin-bottom: 1.35rem;
  line-height: 1.55;
}

.security-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.security-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.security-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--bc-primary);
}

.security-block-muted .security-list svg {
  color: var(--bc-muted);
}

.security-list strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
  color: var(--bc-heading);
}

.security-list p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--bc-muted);
  line-height: 1.55;
}

.footer-brand-name {
  font-family: var(--bc-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #FFFFFF;
  margin: 0;
}

/* Reveal: só anima com JS ativo — sem JS o conteúdo permanece visível */
html.bc-js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

html.bc-js .reveal.is-visible,
.reveal {
  opacity: 1;
  transform: translateY(0);
}

.site-main .alert {
  border-radius: 14px;
  border: 1px solid var(--bc-border);
}

[data-theme="dark"] .site-main .alert-success {
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.25);
}

[data-theme="dark"] .site-main .alert-danger,
[data-theme="dark"] .site-main .alert-error {
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
}

[data-theme="dark"] .site-main .alert-info {
  background: rgba(138, 122, 74, 0.12);
  color: #e0d4a8;
}

[data-theme="dark"] .btn-close { filter: invert(1); }

.breadcrumb-item a { color: var(--bc-muted); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--bc-accent); }
.breadcrumb-item.active { color: var(--bc-caption); }

.checkout-wrap .site-brand span { color: var(--bc-accent); }
.checkout-wrap .site-brand { color: var(--bc-heading); font-weight: 700; font-size: 1.5rem; text-decoration: none; }

@media (max-width: 991.98px) {
  .section-padding { padding: 4.25rem 0; }
  .hero-section { padding: 3.5rem 0 4rem; }
  .site-navbar .navbar-collapse {
    padding: 1rem 0 0.5rem;
    border-top: 1px solid var(--bc-border);
    margin-top: 0.5rem;
  }
  .nav-actions {
    width: 100%;
    flex-wrap: wrap;
  }
  .nav-actions .btn-bc-outline {
    flex: 1;
    justify-content: center;
  }
  .plan-card-site.is-featured { transform: none; }
  .plan-card-site.is-featured:hover { transform: translateY(-8px); }
  .hero-phone { width: 32%; right: 0; }
  .hero-devices { min-height: 320px; }
}

@media (max-width: 767.98px) {
  .section-padding { padding: 3.25rem 0; }
  .hero-section { padding: 2.75rem 0 3.25rem; }
  .feature-card, .plan-card-site, .testimonial-card, .proof-card { padding: 1.6rem; }
  .comparison-table { font-size: 0.85rem; }
  .hero-glow { width: 280px; height: 280px; right: -35%; }
  .hero-phone { display: none; }
  .btn.btn-bc-primary.btn-lg, .btn.btn-bc-outline.btn-lg {
    width: 100%;
    justify-content: center;
  }
  .hero-cta-row { flex-direction: column; }
}

/* —— Onda 3: Hero premium navy —— */
.hero-premium {
  position: relative;
  min-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0B132B;
  color: #FFFFFF;
}

.hero-premium-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-premium-texture {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("../img/hero-mark-texture.svg");
  background-repeat: repeat;
  background-size: 280px 280px;
}

.hero-premium-facet {
  position: absolute;
  width: 52%;
  height: 70%;
  top: -8%;
  right: -6%;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.07) 0%, transparent 42%),
    linear-gradient(320deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 78%);
}

.hero-premium-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.hero-premium-row {
  min-height: 820px;
  align-items: center !important;
}

.hero-premium-copy {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  will-change: transform, opacity;
}

.hero-premium-title {
  font-family: var(--bc-font-display);
  font-weight: 800;
  font-size: clamp(2.35rem, 4.6vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin: 0 0 2rem;
}

.hero-premium-title .hero-line {
  display: block;
}

.hero-premium-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34rem;
  margin: 0 0 2.75rem;
}

.hero-premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn.btn-hero-primary,
a.btn.btn-hero-primary {
  background: #FFFFFF !important;
  border: 1px solid #FFFFFF !important;
  color: #0B132B !important;
  font-weight: 650;
  border-radius: 10px;
  padding: 0.95rem 1.7rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.btn.btn-hero-primary:hover,
a.btn.btn-hero-primary:hover {
  background: #F8FAFC !important;
  color: #0B132B !important;
  transform: translateY(-1px);
}

.btn.btn-hero-secondary,
a.btn.btn-hero-secondary {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
  color: #FFFFFF !important;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.95rem 1.7rem;
}

.btn.btn-hero-secondary:hover,
a.btn.btn-hero-secondary:hover {
  border-color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #FFFFFF !important;
}

.hero-premium-chips {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}

.hero-premium-chips span {
  margin: 0 0.45rem;
  opacity: 0.5;
}

.hero-float-stage {
  position: relative;
  padding: 1rem 0 1rem 1rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-float-ui {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #0B132B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 64px rgba(0, 0, 0, 0.35),
    0 8px 20px rgba(0, 0, 0, 0.22);
  transform: translateY(0) rotate(-0.4deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s ease;
}

.hero-float-ui img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-float-stage.is-scrolled .hero-float-ui {
  transform: translateY(10px) rotate(0deg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 32px 80px rgba(0, 0, 0, 0.4),
    0 12px 28px rgba(0, 0, 0, 0.25);
}

.section-navy {
  background: #0B132B;
  color: rgba(255, 255, 255, 0.78);
}

.section-eyebrow-on-dark { color: rgba(212, 175, 55, 0.9) !important; }
.section-title-on-dark { color: #FFFFFF !important; }
.section-lead-on-dark { color: rgba(255, 255, 255, 0.65) !important; }

.credibility-item,
.problem-item,
.platform-pillar {
  height: 100%;
  padding: 1.5rem 0 0.35rem;
  border-top: 1px solid var(--bc-border);
}

.credibility-grid .col-md-6.col-lg-4:nth-child(n+10) {
  /* keep rhythm for trailing items */
}

.capability-group {
  height: 100%;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--bc-border);
  border-radius: 14px;
  background: var(--bc-surface);
}

.capability-group h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.capability-group-lead {
  color: var(--bc-muted);
  font-size: 0.95rem;
  margin-bottom: 1.15rem;
  line-height: 1.55;
}

.capability-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.capability-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--bc-heading);
  font-size: 0.95rem;
  font-weight: 550;
}

.capability-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bc-secondary);
}

.product-gallery .demo-thumb-card {
  width: 100%;
}

.credibility-item i,
.credibility-item svg {
  width: 22px;
  height: 22px;
  color: var(--bc-primary);
  margin-bottom: 1.1rem;
}

.credibility-item h3 {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
}

.credibility-item p {
  font-size: 0.9rem;
}

.credibility-item p,
.problem-item p,
.platform-pillar p {
  color: var(--bc-muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

.problem-item {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.problem-item h3 { color: #FFFFFF; }
.problem-item p { color: rgba(255, 255, 255, 0.62); }

.platform-pillar-index {
  display: block;
  font-family: var(--bc-font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--bc-secondary);
  margin-bottom: 1rem;
}

.segment-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem auto 0;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.segment-list li {
  border: 1px solid var(--bc-border);
  background: var(--bc-surface);
  border-radius: 10px;
  padding: 0.95rem 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--bc-heading);
  font-size: 0.95rem;
}

@media (max-width: 991.98px) {
  .hero-premium {
    min-height: 0;
    padding: 2.5rem 0 3rem;
  }
  .hero-premium-row { min-height: 0; }
  .hero-premium-inner { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .hero-premium-eyebrow { margin-bottom: 1.5rem; }
  .hero-premium-title { margin-bottom: 1.5rem; }
  .hero-premium-lead { margin-bottom: 2rem; }
  .hero-premium-actions {
    flex-direction: column;
  }
  .hero-premium-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-float-stage { padding: 2rem 0 0; }
  .hero-float-ui { transform: none; }
  .segment-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
  .segment-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-float-stage,
  .hero-float-ui { transition: none !important; transform: none !important; }
}


.hero-glow-xl {
  width: 520px;
  height: 520px;
  right: -8%;
  top: -10%;
  opacity: 0.55;
}

.hero-trust-line { display: flex; align-items: center; gap: 0.5rem; }

.btn-cta-pulse {
  box-shadow: var(--bc-shadow), 0 0 40px var(--bc-accent-glow);
  animation: ctaPulse 2.8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: var(--bc-shadow), 0 0 24px var(--bc-accent-glow); }
  50% { box-shadow: var(--bc-shadow-lg), 0 0 48px var(--bc-accent-glow); }
}

.device-frame-laptop,
.device-frame-phone {
  background: var(--bc-glass);
  border: 1px solid var(--bc-glass-border);
  backdrop-filter: blur(16px);
  box-shadow: var(--bc-shadow-lg);
}

.device-frame-laptop {
  border-radius: 18px;
  overflow: hidden;
}

.device-chrome {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid var(--bc-border);
}

.device-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
}

.device-chrome span:nth-child(1) { background: #ff5f57; }
.device-chrome span:nth-child(2) { background: #febc2e; }
.device-chrome span:nth-child(3) { background: #28c840; }

.device-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.device-frame-phone {
  border-radius: 28px;
  padding: 10px;
}

.device-frame-phone .device-screen {
  border-radius: 20px;
  overflow: hidden;
}

.benefit-card,
.trust-card {
  background: var(--bc-card);
  border: 1px solid var(--bc-border);
  border-radius: 20px;
  padding: 1.75rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.benefit-card:hover,
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bc-shadow);
  border-color: var(--bc-border-strong);
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bc-accent-soft);
  color: var(--bc-accent);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.comparison-table-v2 {
  background: var(--bc-card);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--bc-border);
}

.comparison-table-v2 th,
.comparison-table-v2 td {
  border-color: var(--bc-border) !important;
  padding: 0.9rem 1rem;
  vertical-align: middle;
}

.comparison-table-v2 th.is-highlight,
.comparison-table-v2 td.is-highlight {
  background: var(--bc-accent-soft);
}

.comparison-table-wrap { overflow-x: auto; }

.plan-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.plan-badge-popular,
.plan-badge-value,
.plan-badge-save {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}

.plan-badge-popular {
  background: var(--bc-accent);
  color: #111;
}

.plan-badge-value {
  background: rgba(212, 175, 55, 0.14);
  color: #D4AF37;
}

.plan-badge-save {
  background: rgba(16, 185, 129, 0.14);
  color: #10b981;
}

.testimonial-premium .testimonial-stars {
  color: var(--bc-accent);
  margin-bottom: 0.85rem;
  letter-spacing: 0.1em;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bc-accent), var(--bc-secondary));
  color: #111;
  font-weight: 700;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.video-preview-card,
.video-preview-thumb {
  border: 0;
  padding: 0;
  background: transparent;
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.video-preview-thumb img {
  width: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: var(--bc-shadow-lg);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 3rem;
  transition: background 0.2s;
}

.video-preview-thumb:hover .video-play-btn { background: rgba(0, 0, 0, 0.38); }

.video-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--bc-card);
  border: 2px dashed var(--bc-border-strong);
  border-radius: 20px;
  color: var(--bc-muted);
  gap: 0.5rem;
}

.video-placeholder-inner i { font-size: 3rem; color: var(--bc-accent); }

.demo-thumb-card,
.demo-gallery-item {
  border: 1px solid var(--bc-border);
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  background: var(--bc-card);
  width: 100%;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.demo-thumb-card:hover,
.demo-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--bc-shadow);
}

.demo-thumb-card img,
.demo-gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.demo-thumb-label {
  display: block;
  padding: 0.65rem 0.85rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: left;
}

.demo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.demo-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 55%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.demo-gallery-item:hover .demo-gallery-overlay { opacity: 1; }

.demo-image-zoom {
  border: 0;
  padding: 0;
  background: transparent;
  width: 100%;
  position: relative;
  cursor: zoom-in;
}

.demo-zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: var(--bc-nav-bg);
  border-top: 1px solid var(--bc-border);
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

.sticky-cta.is-visible { transform: translateY(0); }

.bc-lightbox,
.bc-video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-lightbox[hidden],
.bc-video-modal[hidden] { display: none !important; }

.bc-lightbox-backdrop,
.bc-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.bc-lightbox-dialog,
.bc-video-dialog {
  position: relative;
  z-index: 2;
  width: min(92vw, 1100px);
  max-height: 92vh;
  padding: 1rem;
}

.bc-lightbox-img {
  max-width: 100%;
  max-height: 72vh;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  box-shadow: var(--bc-shadow-lg);
}

.bc-lightbox-figure figcaption {
  color: #fff;
  text-align: center;
  margin-top: 1rem;
}

.bc-lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 3;
  border: 0;
  background: rgba(255,255,255,0.12);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  border: 0;
  background: rgba(255,255,255,0.12);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.bc-lightbox-prev { left: 0.25rem; }
.bc-lightbox-next { right: 0.25rem; }

.bc-video-dialog {
  background: var(--bc-card);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid var(--bc-border);
}

.comparison-table .is-highlight,
.comparison-table-v2 .is-highlight {
  background: var(--bc-accent-soft);
}

@media (prefers-reduced-motion: reduce) {
  .btn-cta-pulse { animation: none; }
}
