/* ── DealerPro Feature Pages — Shared Styles ── */
/* Fonts loaded via <link> tags in HTML for better performance */

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

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --accent: #009644;
  --accent-2: #18adc0;
  --accent-3: #ff6b6b;
  --accent-green: #00e88f;
  --accent-orange: #ff9f43;
  --accent-pink: #ff6b9d;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border: rgba(0,0,0,0.06);
  --feature-accent: var(--accent);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--feature-accent); border-radius: 3px; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  /* noise texture disabled for light theme */
  pointer-events: none;
  z-index: 9999;
}

.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,150,68,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,150,68,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 2rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 16px;
  color: var(--bg-primary);
}
.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text-primary); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; cursor: pointer; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  filter: drop-shadow(0 -1px 0 #e2e8f0);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #334155 !important;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown-menu a:hover {
  background: #f1f5f9;
  color: var(--feature-accent) !important;
}
.nav-dropdown-menu a::after { display: none !important; }
.dropdown-icon { font-size: 16px; width: 24px; text-align: center; flex-shrink: 0; }

.nav-cta {
  background: var(--accent);
  color: var(--bg-primary) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: #00a84d;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,150,68,0.3);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── FEATURE HERO ── */
.feature-hero {
  position: relative;
  padding: 140px 2rem 100px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.feature-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: float 8s ease-in-out infinite;
}
.feature-hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, color-mix(in srgb, var(--feature-accent) 12%, transparent), transparent 70%);
  top: 5%;
  right: 15%;
}
.feature-hero-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(24,173,192,0.08), transparent 70%);
  bottom: 10%;
  left: 10%;
  animation-delay: -4s;
}
.feature-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.feature-hero-content {
  animation: fadeUp 0.8s ease both;
}
.feature-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.feature-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.feature-breadcrumb a:hover { color: var(--feature-accent); }
.feature-breadcrumb .sep { opacity: 0.4; }
.feature-breadcrumb .current { color: var(--feature-accent); }

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: color-mix(in srgb, var(--feature-accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--feature-accent) 20%, transparent);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--feature-accent);
  margin-bottom: 24px;
}

.feature-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.feature-hero h1 .highlight {
  color: var(--feature-accent);
}

.feature-hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: var(--feature-accent);
  color: var(--bg-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--feature-accent) 30%, transparent);
  filter: brightness(1.15);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--feature-accent);
  background: color-mix(in srgb, var(--feature-accent) 5%, transparent);
  transform: translateY(-2px);
}

/* Hero Screenshot */
.feature-hero-visual {
  animation: fadeUp 0.8s ease 0.2s both;
  position: relative;
}
.screenshot-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.04);
}
.screenshot-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.05);
  border-bottom: 1px solid var(--border);
}
.screenshot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.screenshot-dot.red { background: #ff5f57; }
.screenshot-dot.yellow { background: #febc2e; }
.screenshot-dot.green { background: #28c840; }
.screenshot-url {
  flex: 1;
  margin-left: 12px;
  padding: 5px 12px;
  background: rgba(0,0,0,0.03);
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
}
.screenshot-body {
  padding: 24px;
  min-height: 340px;
  position: relative;
}

/* Floating glow behind screenshot */
.screenshot-frame::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--feature-accent) 8%, transparent), transparent 70%);
  z-index: -1;
  border-radius: 24px;
}

/* ── STATS BAR ── */
.stats-bar {
  padding: 60px 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--feature-accent);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── BENEFITS SECTION ── */
.benefits-section {
  padding: 120px 2rem;
}
.benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--feature-accent);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--feature-accent);
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--feature-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.benefit-card:hover {
  background: var(--bg-card-hover);
  border-color: color-mix(in srgb, var(--feature-accent) 15%, transparent);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.04);
}
.benefit-card:hover::before { opacity: 1; }

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--feature-accent) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── ALTERNATING FEATURE ROWS ── */
.feature-rows {
  padding: 60px 2rem 120px;
}
.feature-row {
  max-width: 1200px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-row-content { order: 2; }
.feature-row.reverse .feature-row-visual { order: 1; }

.feature-row-content {}
.feature-row-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--feature-accent);
  margin-bottom: 12px;
}
.feature-row-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.feature-row-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.98rem;
}
.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.feature-checklist li::before {
  content: '\2713';
  color: var(--feature-accent);
  font-weight: 700;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--feature-accent) 10%, transparent);
  border-radius: 6px;
  font-size: 12px;
  flex-shrink: 0;
}

.feature-row-visual {
  position: relative;
}
.mini-ui {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.04);
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 120px 2rem;
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary), var(--bg-primary));
}
.steps-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-container::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--feature-accent), transparent);
  opacity: 0.2;
}
.step-card {
  text-align: center;
  position: relative;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--feature-accent) 10%, transparent);
  border: 2px solid color-mix(in srgb, var(--feature-accent) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--feature-accent);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  background-color: var(--bg-secondary);
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── INTEGRATION / COMPARISON ── */
.comparison-section {
  padding: 120px 2rem;
}
.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.comp-row:last-child { border-bottom: none; }
.comp-row.header {
  background: var(--bg-card);
}
.comp-cell {
  padding: 18px 24px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
.comp-row.header .comp-cell {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.comp-cell:nth-child(2),
.comp-cell:nth-child(3) {
  justify-content: center;
  text-align: center;
}
.comp-check { color: var(--feature-accent); font-size: 18px; }
.comp-x { color: var(--text-muted); font-size: 14px; }
.comp-row:nth-child(even) { background: rgba(255,255,255,0.01); }
.comp-row:nth-child(odd) { background: rgba(0,0,0,0.02); }

/* ── CTA ── */
.feature-cta {
  padding: 120px 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--feature-accent) 6%, transparent) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.cta-inner h2 .highlight { color: var(--feature-accent); }
.cta-inner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── OTHER FEATURES ── */
.other-features {
  padding: 80px 2rem;
  border-top: 1px solid var(--border);
}
.other-features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.other-features h3 {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.other-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.other-feature-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s;
}
.other-feature-link:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.other-feature-link .ofl-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  padding: 60px 2rem 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-inner span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .feature-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .feature-hero-visual { max-width: 600px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse .feature-row-content { order: 1; }
  .feature-row.reverse .feature-row-visual { order: 2; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .other-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }
  .feature-hero { padding: 110px 1.5rem 60px; min-height: auto; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-container { grid-template-columns: 1fr; gap: 24px; }
  .steps-container::before { display: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .comparison-table { overflow-x: auto; }
  .comp-row { min-width: 500px; }
  .other-features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* Full Product Screenshot Section */
.product-screenshot {
  padding: 0 0 100px;
  position: relative;
}
.product-screenshot .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.product-screenshot .screenshot-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 40px 80px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.03);
  background: #f8f9fb;
}
.product-screenshot .screenshot-wrapper::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2, #18adc0));
  border-radius: 16px 16px 0 0;
  z-index: 2;
}
.product-screenshot .screenshot-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.product-screenshot .screenshot-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #0f172a;
  border-top: 1px solid #e2e6ed;
}
.product-screenshot .screenshot-label span {
  font-size: 13px;
  color: #6b7280;
}
.product-screenshot .screenshot-label .live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #e2e6ed;
}
.product-screenshot .screenshot-label .live-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.product-screenshot .screenshot-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 120px;
  background: radial-gradient(ellipse, var(--accent) 0%, transparent 70%);
  opacity: 0.06;
  pointer-events: none;
}
