/* ============================================================
   Kirim Digital ID — Landing Page v3.3 (High-Conversion)
   Namespace: .ddc-lp-*
   Theme: cyan-emerald gradient, glassmorphism, modern dark+light
   ============================================================ */

:root {
  --lp-bg: #06091a;
  --lp-bg-alt: #0a1023;
  --lp-card: rgba(20, 26, 48, 0.7);
  --lp-card-solid: #131a2e;
  --lp-border: rgba(255, 255, 255, 0.08);
  --lp-border-strong: rgba(255, 255, 255, 0.16);
  --lp-text: #e6edf7;
  --lp-text-dim: #94a3b8;
  --lp-text-mute: #64748b;
  --lp-primary: #06b6d4;
  --lp-primary-2: #0891b2;
  --lp-accent: #10b981;
  --lp-accent-2: #059669;
  --lp-danger: #f43f5e;
  --lp-warn: #f59e0b;
  /* Shopee brand accent — used subtly for badges & CTAs targeting Shopee sellers */
  --lp-shopee: #ee4d2d;
  --lp-shopee-2: #ff6b3d;
  --lp-shopee-dark: #d63f1f;
  --lp-grad-h1: linear-gradient(135deg, #22d3ee 0%, #10b981 50%, #06b6d4 100%);
  --lp-grad-cta: linear-gradient(135deg, #06b6d4, #10b981);
  --lp-grad-cta-hover: linear-gradient(135deg, #22d3ee, #34d399);
  --lp-grad-shopee: linear-gradient(135deg, #ee4d2d 0%, #ff6b3d 100%);
  --lp-grad-shopee-cta: linear-gradient(135deg, #ee4d2d 0%, #f97316 50%, #ee4d2d 100%);
  --lp-shadow-card: 0 8px 30px rgba(0, 0, 0, 0.35);
  --lp-shadow-glow: 0 0 60px rgba(6, 182, 212, 0.18);
}

/* Light mode = when <html> does NOT have .dark class (default site convention)
   v3.6.4: extended to ALSO scope .ddc-lp-footer because footer is a SIBLING of
   <main class="ddc-lp">, not a descendant, so the original .ddc-lp-only selector
   left footer text variables stuck on dark defaults (white-on-white in light mode). */
html:not(.dark) .ddc-lp,
html:not(.dark) .ddc-lp-footer,
html[data-theme="light"] .ddc-lp,
html[data-theme="light"] .ddc-lp-footer,
.light .ddc-lp,
.light .ddc-lp-footer,
.ddc-lp.light,
.ddc-lp-footer.light {
  --lp-bg: #f8fafc;
  --lp-bg-alt: #ffffff;
  --lp-card: rgba(255, 255, 255, 0.9);
  --lp-card-solid: #ffffff;
  --lp-border: rgba(15, 23, 42, 0.08);
  --lp-border-strong: rgba(15, 23, 42, 0.16);
  --lp-text: #0f172a;
  --lp-text-dim: #475569;
  --lp-text-mute: #64748b;
  --lp-shadow-card: 0 8px 30px rgba(15, 23, 42, 0.08);
  --lp-shadow-glow: 0 0 60px rgba(6, 182, 212, 0.12);
}

/* ============================================================
   GLOBAL CONTAINER
   ============================================================ */
.ddc-lp {
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  position: relative;
}

.ddc-lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ============================================================
   HERO
   ============================================================ */
.ddc-lp-hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
}

.ddc-lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.15), transparent 50%);
}

.ddc-lp-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: lp-blob 18s ease-in-out infinite;
  z-index: 0;
}
.ddc-lp-hero-blob.blob-1 {
  width: 500px; height: 500px;
  top: -100px; left: -150px;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
}
.ddc-lp-hero-blob.blob-2 {
  width: 400px; height: 400px;
  top: 200px; right: -100px;
  background: radial-gradient(circle, #10b981, transparent 70%);
  animation-delay: -6s;
}
.ddc-lp-hero-blob.blob-3 {
  width: 350px; height: 350px;
  bottom: -100px; left: 40%;
  background: radial-gradient(circle, #8b5cf6, transparent 70%);
  animation-delay: -12s;
  opacity: 0.3;
}

.ddc-lp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
html:not(.dark) .ddc-lp-hero-grid {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
}

.ddc-lp-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ddc-lp-hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: lp-slide-up 0.7s ease both;
}

.ddc-lp-hero-right {
  position: relative;
  animation: lp-slide-up 0.9s ease both;
}

/* HERO TYPOGRAPHY */
.ddc-lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #22d3ee;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  width: max-content;
}
html:not(.dark) .ddc-lp-eyebrow {
  background: rgba(6, 182, 212, 0.08);
  color: #0891b2;
}

.ddc-lp-h1 {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lp-text);
  margin: 0;
}
.ddc-lp-h1-grad {
  background: var(--lp-grad-h1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.ddc-lp-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--lp-text-dim);
  margin: 0;
  max-width: 560px;
}

.ddc-lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.ddc-lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--lp-border-strong);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.ddc-lp-btn.primary {
  background: var(--lp-grad-cta);
  color: white;
  border: none;
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.35);
}
.ddc-lp-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(6, 182, 212, 0.5);
  background: var(--lp-grad-cta-hover);
}
.ddc-lp-btn.ghost {
  background: transparent;
  color: var(--lp-text);
  border-color: var(--lp-border-strong);
}
.ddc-lp-btn.ghost:hover {
  border-color: #22d3ee;
  color: #22d3ee;
  background: rgba(6, 182, 212, 0.05);
}
.ddc-lp-btn.large {
  padding: 18px 32px;
  font-size: 17px;
  border-radius: 14px;
}

.ddc-lp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--lp-text-mute);
}
.ddc-lp-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ddc-lp-trust-item i {
  color: #10b981;
}

/* SOCIAL PROOF */
.ddc-lp-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  margin-top: 12px;
  max-width: 480px;
}
.ddc-lp-avatars {
  display: flex;
}
.ddc-lp-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lp-grad-cta);
  border: 2px solid var(--lp-bg);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.ddc-lp-avatar:first-child { margin-left: 0; background: linear-gradient(135deg, #f43f5e, #e11d48); }
.ddc-lp-avatar:nth-child(2) { background: linear-gradient(135deg, #f59e0b, #d97706); }
.ddc-lp-avatar:nth-child(3) { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.ddc-lp-avatar:nth-child(4) { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.ddc-lp-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 1px;
}
.ddc-lp-social-text {
  font-weight: 700;
  font-size: 14px;
  color: var(--lp-text);
}
.ddc-lp-social-sub {
  font-size: 12px;
  color: var(--lp-text-mute);
  margin-top: 2px;
}

/* ============================================================
   HERO MOCK (Dashboard preview)
   ============================================================ */
.ddc-lp-mock {
  background: linear-gradient(180deg, #1a2138, #0f1424);
  border: 1px solid var(--lp-border-strong);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--lp-shadow-card), var(--lp-shadow-glow);
  position: relative;
  z-index: 2;
  transform: perspective(1500px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.ddc-lp-mock:hover {
  transform: perspective(1500px) rotateY(0deg) rotateX(0deg);
}
html:not(.dark) .ddc-lp-mock {
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
}

.ddc-lp-mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--lp-border);
  background: rgba(255, 255, 255, 0.02);
}
.ddc-lp-mock-header .dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.ddc-lp-mock-header .dot.red { background: #ef4444; }
.ddc-lp-mock-header .dot.amber { background: #f59e0b; }
.ddc-lp-mock-header .dot.green { background: #10b981; }
.ddc-lp-mock-header .url {
  margin-left: 12px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  font-size: 12px;
  color: var(--lp-text-dim);
  font-family: 'JetBrains Mono', monospace;
}
html:not(.dark) .ddc-lp-mock-header .url { background: rgba(15, 23, 42, 0.05); }

.ddc-lp-mock-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ddc-lp-mock-hero {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(16, 185, 129, 0.12));
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 18px;
  border-radius: 12px;
}
.ddc-lp-mock-hero .label {
  font-size: 11px;
  color: var(--lp-text-dim);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.ddc-lp-mock-hero .label i { color: #10b981; margin-right: 4px; }
.ddc-lp-mock-hero .amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--lp-text);
}
.ddc-lp-mock-hero .meta {
  font-size: 12px;
  color: var(--lp-text-dim);
  margin-top: 4px;
}
.ddc-lp-mock-hero .meta .green { color: #10b981; font-weight: 600; }

.ddc-lp-mock-kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ddc-lp-mock-kpi .kpi-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--lp-border);
  padding: 12px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
html:not(.dark) .ddc-lp-mock-kpi .kpi-card {
  background: rgba(15, 23, 42, 0.02);
}
.ddc-lp-mock-kpi .kpi-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 12px;
  margin-bottom: 4px;
}
.ddc-lp-mock-kpi .kpi-l {
  font-size: 10px;
  color: var(--lp-text-mute);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ddc-lp-mock-kpi .kpi-v {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-text);
}

.ddc-lp-mock-chart {
  height: 120px;
  position: relative;
  padding: 8px 4px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
}
html:not(.dark) .ddc-lp-mock-chart { background: rgba(15, 23, 42, 0.02); }
.ddc-lp-mock-chart .chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100%;
  padding: 4px;
}
.ddc-lp-mock-chart .chart-bars span {
  flex: 1;
  background: linear-gradient(180deg, #22d3ee, #06b6d4);
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
  animation: lp-bar-grow 1s ease both;
}
.ddc-lp-mock-chart .chart-bars span:nth-child(n) {
  animation-delay: calc(var(--i, 0) * 0.05s);
}
.ddc-lp-mock-chart .chart-line {
  position: absolute;
  left: 8px; right: 8px;
  top: 35%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #10b981, #34d399, #10b981, transparent);
  opacity: 0.7;
  filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.5));
}

.ddc-lp-mock-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  animation: lp-pulse 2s ease-in-out infinite;
}

/* FLOATING CARDS */
.ddc-lp-floating-card {
  position: absolute;
  background: var(--lp-card-solid);
  border: 1px solid var(--lp-border-strong);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  z-index: 3;
  animation: lp-float 4s ease-in-out infinite;
}
.ddc-lp-floating-card .t {
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-text);
}
.ddc-lp-floating-card .s {
  font-size: 11px;
  color: var(--lp-text-dim);
}
.ddc-lp-floating-card.card-1 {
  bottom: 30px;
  left: -30px;
  animation-delay: 0s;
}
.ddc-lp-floating-card.card-2 {
  top: 20px;
  right: -20px;
  animation-delay: -2s;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.ddc-lp-stats {
  padding: 40px 0;
  background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.05), transparent);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}
.ddc-lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.ddc-lp-stat .v {
  font-size: 32px;
  font-weight: 800;
  background: var(--lp-grad-h1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.ddc-lp-stat .l {
  font-size: 13px;
  color: var(--lp-text-dim);
  margin-top: 6px;
  font-weight: 500;
}

/* ============================================================
   GENERAL SECTION
   ============================================================ */
.ddc-lp-section {
  padding: 100px 0;
  position: relative;
}
.ddc-lp-section-alt {
  background: var(--lp-bg-alt);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}
.ddc-lp-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.ddc-lp-section-head.center { text-align: center; }

.ddc-lp-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.ddc-lp-tag.danger {
  background: rgba(244, 63, 94, 0.1);
  color: #f43f5e;
  border: 1px solid rgba(244, 63, 94, 0.3);
}
.ddc-lp-tag.info {
  background: rgba(6, 182, 212, 0.1);
  color: #22d3ee;
  border: 1px solid rgba(6, 182, 212, 0.3);
}
.ddc-lp-tag.success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.ddc-lp-tag.shopee {
  background: rgba(238, 77, 45, 0.1);
  color: #ee4d2d;
  border: 1px solid rgba(238, 77, 45, 0.35);
  box-shadow: 0 4px 12px rgba(238, 77, 45, 0.12);
}
.ddc-lp-tag.shopee i { color: #ee4d2d; margin-right: 4px; }

.ddc-lp-h2 {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lp-text);
  margin: 0 0 14px;
}
.ddc-lp-h2-grad {
  background: var(--lp-grad-h1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ddc-lp-h2-strike {
  position: relative;
  color: #f43f5e;
}
.ddc-lp-h2-strike::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  top: 50%;
  height: 4px;
  background: #f43f5e;
  transform: rotate(-3deg);
}

.ddc-lp-section-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--lp-text-dim);
  margin: 0;
}

/* ============================================================
   COMPARE (Problem vs Solution)
   ============================================================ */
.ddc-lp-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 60px;
}

.ddc-lp-compare-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ddc-lp-compare-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-card);
}
.ddc-lp-compare-card.bad {
  border-color: rgba(244, 63, 94, 0.25);
  background: linear-gradient(180deg, rgba(244, 63, 94, 0.04), transparent);
}
.ddc-lp-compare-card.good {
  border: 2px solid rgba(16, 185, 129, 0.4);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.06), transparent);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
}

.ddc-lp-compare-ribbon {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--lp-grad-cta);
  color: white;
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.ddc-lp-compare-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ddc-lp-compare-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.ddc-lp-compare-icon.bad {
  background: rgba(244, 63, 94, 0.15);
  color: #f43f5e;
}
.ddc-lp-compare-icon.good {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}
.ddc-lp-compare-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--lp-text);
}
.ddc-lp-compare-sub {
  font-size: 13px;
  color: var(--lp-text-dim);
  margin-top: 2px;
}

.ddc-lp-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ddc-lp-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--lp-text-dim);
  line-height: 1.5;
}
.ddc-lp-compare-list li i {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  margin-top: 2px;
}
.ddc-lp-compare-card.bad li i {
  background: rgba(244, 63, 94, 0.15);
  color: #f43f5e;
}
.ddc-lp-compare-card.good li i {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}
.ddc-lp-compare-list strong {
  color: var(--lp-text);
  font-weight: 700;
}

.ddc-lp-compare-cost {
  margin-top: auto;
  padding: 18px;
  border-radius: 12px;
  text-align: center;
}
.ddc-lp-compare-cost.bad {
  background: rgba(244, 63, 94, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.25);
}
.ddc-lp-compare-cost.good {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.ddc-lp-compare-cost-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--lp-text-dim);
  text-transform: uppercase;
}
.ddc-lp-compare-cost-value {
  font-size: 32px;
  font-weight: 800;
  margin: 4px 0;
}
.ddc-lp-compare-card.bad .ddc-lp-compare-cost-value { color: #f43f5e; }
.ddc-lp-compare-card.good .ddc-lp-compare-cost-value { color: #10b981; }
.ddc-lp-compare-cost-value span { font-size: 16px; opacity: 0.6; margin-left: 2px; }
.ddc-lp-compare-cost-sub {
  font-size: 12px;
  color: var(--lp-text-mute);
}

/* ROI CALCULATOR */
.ddc-lp-roi {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.06), rgba(16, 185, 129, 0.06));
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}
.ddc-lp-roi-head {
  margin-bottom: 30px;
}
.ddc-lp-roi-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.ddc-lp-roi-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.ddc-lp-roi-card {
  background: var(--lp-card-solid);
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 20px;
}
.ddc-lp-roi-card .l {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--lp-text-mute);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ddc-lp-roi-card .v {
  font-size: 24px;
  font-weight: 800;
  color: var(--lp-text);
}
.ddc-lp-roi-card .s {
  font-size: 12px;
  color: var(--lp-text-dim);
  margin-top: 4px;
}
.ddc-lp-roi-card.big .v {
  font-size: 32px;
  background: var(--lp-grad-h1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ddc-lp-roi-card.big {
  border: 2px solid rgba(16, 185, 129, 0.5);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}
.ddc-lp-roi-op {
  font-size: 28px;
  font-weight: 800;
  color: var(--lp-text-mute);
}

/* ============================================================
   LIVE DEMO
   ============================================================ */
.ddc-lp-demo {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

/* Browser frame */
.ddc-lp-demo-browser {
  background: var(--lp-card-solid);
  border: 1px solid var(--lp-border-strong);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--lp-shadow-card);
}
.ddc-lp-demo-browser-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--lp-border);
  background: rgba(255, 255, 255, 0.02);
}
.ddc-lp-demo-browser-head .dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.ddc-lp-demo-browser-head .dot.red { background: #ef4444; }
.ddc-lp-demo-browser-head .dot.amber { background: #f59e0b; }
.ddc-lp-demo-browser-head .dot.green { background: #10b981; }
.ddc-lp-demo-browser-head .url {
  margin-left: 8px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  font-size: 12px;
  color: var(--lp-text-dim);
  font-family: 'JetBrains Mono', monospace;
  flex: 1;
}
html:not(.dark) .ddc-lp-demo-browser-head .url { background: rgba(15, 23, 42, 0.04); }

/* Shop simulation inner */
.ddc-lp-demo-shop {
  padding: 0;
  background: linear-gradient(180deg, #0a1023, #131a2e 50%, #0a1023);
}
html:not(.dark) .ddc-lp-demo-shop {
  background: linear-gradient(180deg, #f8fafc, #ffffff 50%, #f8fafc);
}

.ddc-lp-demo-shop-header {
  padding: 24px;
  text-align: center;
  background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
  color: white;
}
.ddc-lp-demo-shop-logo {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  font-size: 28px;
}
.ddc-lp-demo-shop-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}
.ddc-lp-demo-shop-sub {
  font-size: 13px;
  opacity: 0.92;
}

.ddc-lp-demo-shop-inner {
  padding: 28px 24px 24px;
}

.ddc-lp-demo-shop-card {
  background: var(--lp-card-solid);
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 24px;
}
.ddc-lp-demo-shop-card-head {
  text-align: center;
  margin-bottom: 18px;
}
.ddc-lp-demo-shop-card-head h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-text);
  margin: 0 0 4px;
}
.ddc-lp-demo-shop-card-head p {
  font-size: 13px;
  color: var(--lp-text-dim);
  margin: 0;
}

.ddc-lp-demo-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ddc-lp-demo-form input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--lp-border-strong);
  border-radius: 12px;
  color: var(--lp-text);
  font-size: 15px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
html:not(.dark) .ddc-lp-demo-form input {
  background: #ffffff;
  border-color: #e2e8f0;
}
.ddc-lp-demo-form input:focus {
  outline: none;
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}
.ddc-lp-demo-form input::placeholder { color: var(--lp-text-mute); }

.ddc-lp-demo-cta {
  width: 100%;
  padding: 16px 20px;
  background: var(--lp-grad-shopee);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(238, 77, 45, 0.35);
  position: relative;
  overflow: hidden;
}
.ddc-lp-demo-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.ddc-lp-demo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(238, 77, 45, 0.5);
}
.ddc-lp-demo-cta:hover::before { transform: translateX(100%); }

.ddc-lp-demo-result {
  margin-top: 16px;
  min-height: 0;
}
.ddc-lp-demo-result:empty { display: none; }
.ddc-lp-demo-result .result-card {
  padding: 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: lp-slide-up 0.4s ease;
}
.ddc-lp-demo-result .result-card.paid {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.35);
}
.ddc-lp-demo-result .result-card.pending {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.35);
}
.ddc-lp-demo-result .result-card.notfound {
  background: rgba(244, 63, 94, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.35);
}
.ddc-lp-demo-result .result-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.ddc-lp-demo-result .result-head i { font-size: 18px; }
.ddc-lp-demo-result .result-card.paid .result-head { color: #10b981; }
.ddc-lp-demo-result .result-card.pending .result-head { color: #f59e0b; }
.ddc-lp-demo-result .result-card.notfound .result-head { color: #f43f5e; }
.ddc-lp-demo-result .result-body {
  font-size: 13px;
  color: var(--lp-text-dim);
  line-height: 1.5;
}
.ddc-lp-demo-result .result-file {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  font-size: 13px;
}
html:not(.dark) .ddc-lp-demo-result .result-file { background: #ffffff; }
.ddc-lp-demo-result .result-file .fname {
  font-weight: 600;
  color: var(--lp-text);
}
.ddc-lp-demo-result .result-file .fsize {
  margin-left: auto;
  color: var(--lp-text-mute);
  font-size: 12px;
}
.ddc-lp-demo-result .result-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--lp-grad-cta);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

.ddc-lp-demo-shop-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--lp-border);
}
.ddc-lp-demo-shop-foot .item {
  text-align: center;
  font-size: 11px;
  color: var(--lp-text-mute);
}
.ddc-lp-demo-shop-foot .item i {
  display: block;
  font-size: 16px;
  color: #10b981;
  margin-bottom: 4px;
}

/* DEMO SIDE */
.ddc-lp-demo-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ddc-lp-demo-side-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--lp-text);
  margin: 0;
}
.ddc-lp-demo-side-sub {
  font-size: 14px;
  color: var(--lp-text-dim);
  margin: 0 0 8px;
  line-height: 1.5;
}

.ddc-lp-demo-samples {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ddc-lp-demo-sample {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(8px);
}
.ddc-lp-demo-sample:hover {
  border-color: #06b6d4;
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(6, 182, 212, 0.15);
}
.ddc-lp-demo-sample .sample-state {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 999px;
  width: max-content;
}
.ddc-lp-demo-sample .sample-state.paid {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}
.ddc-lp-demo-sample .sample-state.pending {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}
.ddc-lp-demo-sample .sample-state.notfound {
  background: rgba(244, 63, 94, 0.15);
  color: #f43f5e;
}
.ddc-lp-demo-sample .sample-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-text);
  letter-spacing: 0.3px;
}
.ddc-lp-demo-sample .sample-desc {
  font-size: 12px;
  color: var(--lp-text-dim);
  line-height: 1.4;
}

.ddc-lp-demo-note {
  padding: 14px;
  background: rgba(6, 182, 212, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 10px;
  font-size: 12px;
  color: var(--lp-text-dim);
  line-height: 1.5;
}
.ddc-lp-demo-note i { color: #22d3ee; margin-right: 4px; }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.ddc-lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ddc-lp-feature {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ddc-lp-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.1);
}
.ddc-lp-feature.primary {
  border-color: rgba(6, 182, 212, 0.35);
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.05), transparent);
}
.ddc-lp-feature.highlight {
  border-color: rgba(16, 185, 129, 0.4);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08), transparent);
}
.ddc-lp-feature h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-text);
  margin: 0;
}
.ddc-lp-feature p {
  font-size: 14px;
  color: var(--lp-text-dim);
  line-height: 1.55;
  margin: 0;
}
.ddc-lp-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--lp-grad-cta);
  color: white;
  font-size: 20px;
}
.ddc-lp-feature.primary .ddc-lp-feature-icon {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}
.ddc-lp-feature.highlight .ddc-lp-feature-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}
.ddc-lp-feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 3px 8px;
  border-radius: 999px;
}
.ddc-lp-feature-badge.new {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.ddc-lp-feature-badge.ai {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

/* ============================================================
   STEPS
   ============================================================ */
.ddc-lp-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.ddc-lp-step {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
}
.ddc-lp-step:hover { transform: translateY(-4px); }
.ddc-lp-step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--lp-grad-cta);
  color: white;
  font-weight: 800;
  font-size: 13px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(6, 182, 212, 0.4);
}
.ddc-lp-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(6, 182, 212, 0.12);
  color: #22d3ee;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin: 0 auto 12px;
}
.ddc-lp-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-text);
  margin: 0 0 6px;
}
.ddc-lp-step p {
  font-size: 13px;
  color: var(--lp-text-dim);
  line-height: 1.5;
  margin: 0;
}
.ddc-lp-step-arrow {
  font-size: 22px;
  color: var(--lp-text-mute);
  text-align: center;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ddc-lp-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ddc-lp-testi {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ddc-lp-testi:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-card);
  border-color: rgba(6, 182, 212, 0.3);
}
.ddc-lp-testi p {
  font-size: 15px;
  color: var(--lp-text);
  line-height: 1.6;
  margin: 0;
}
.ddc-lp-testi-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 1px;
}
.ddc-lp-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--lp-border);
  margin-top: auto;
}
.ddc-lp-testi-author .av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--lp-grad-cta);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.ddc-lp-testi-author .n {
  font-weight: 700;
  font-size: 14px;
  color: var(--lp-text);
}
.ddc-lp-testi-author .r {
  font-size: 12px;
  color: var(--lp-text-mute);
  margin-top: 1px;
}

/* ============================================================
   PRICING
   ============================================================ */
.ddc-lp-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.ddc-lp-price-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.ddc-lp-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-card);
}
.ddc-lp-price-card.featured {
  border: 2px solid rgba(6, 182, 212, 0.5);
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.08), transparent);
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.18);
  transform: scale(1.04);
}
.ddc-lp-price-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}
.ddc-lp-price-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-grad-cta);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.45);
  white-space: nowrap;
}
.ddc-lp-price-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-text);
}
.ddc-lp-price-tag {
  font-size: 13px;
  color: var(--lp-text-dim);
}
.ddc-lp-price-amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--lp-text);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.ddc-lp-price-amount .curr {
  font-size: 18px;
  font-weight: 600;
  color: var(--lp-text-dim);
}
.ddc-lp-price-amount .per {
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-text-mute);
}
.ddc-lp-price-card.featured .ddc-lp-price-amount {
  background: var(--lp-grad-h1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ddc-lp-price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--lp-card-solid);
  border: 1px solid var(--lp-border-strong);
  color: var(--lp-text);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s ease;
}
.ddc-lp-price-btn:hover {
  border-color: #06b6d4;
  color: #22d3ee;
  background: rgba(6, 182, 212, 0.05);
}
.ddc-lp-price-card.featured .ddc-lp-price-btn {
  background: var(--lp-grad-cta);
  color: white;
  border: none;
  box-shadow: 0 6px 18px rgba(6, 182, 212, 0.3);
}
.ddc-lp-price-card.featured .ddc-lp-price-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(6, 182, 212, 0.4);
}
.ddc-lp-price-feat {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ddc-lp-price-feat li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--lp-text-dim);
  line-height: 1.45;
}
.ddc-lp-price-feat li i {
  flex-shrink: 0;
  color: #10b981;
  margin-top: 3px;
  font-size: 12px;
}

.ddc-lp-pricing-guarantee {
  text-align: center;
  padding: 24px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 14px;
  font-size: 14px;
  color: var(--lp-text-dim);
  margin-top: 12px;
}
.ddc-lp-pricing-guarantee i {
  color: #10b981;
  font-size: 18px;
  margin-right: 8px;
}
.ddc-lp-pricing-guarantee strong { color: var(--lp-text); }

/* ============================================================
   FAQ
   ============================================================ */
.ddc-lp-faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ddc-lp-faq-item {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s ease;
}
.ddc-lp-faq-item[open] {
  border-color: rgba(6, 182, 212, 0.3);
}
.ddc-lp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15px;
  color: var(--lp-text);
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: color 0.2s ease;
}
.ddc-lp-faq-item summary::-webkit-details-marker { display: none; }
.ddc-lp-faq-item summary::after {
  content: '+';
  margin-left: auto;
  font-size: 22px;
  font-weight: 300;
  color: var(--lp-text-mute);
  transition: transform 0.2s ease;
}
.ddc-lp-faq-item[open] summary::after {
  content: '−';
  color: #06b6d4;
}
.ddc-lp-faq-item summary:hover { color: #22d3ee; }
.ddc-lp-faq-body {
  padding: 0 22px 22px;
  font-size: 14px;
  color: var(--lp-text-dim);
  line-height: 1.6;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.ddc-lp-final-cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ddc-lp-final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(6, 182, 212, 0.2), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(16, 185, 129, 0.18), transparent 60%);
}
.ddc-lp-final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: var(--lp-card);
  border: 1px solid var(--lp-border-strong);
  border-radius: 24px;
  backdrop-filter: blur(12px);
}
.ddc-lp-final-cta-grad {
  background: var(--lp-grad-h1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ddc-lp-final-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--lp-text-mute);
}
.ddc-lp-final-trust .item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ddc-lp-final-trust .item i { color: #10b981; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes lp-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}
@keyframes lp-slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes lp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
@keyframes lp-bar-grow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); transform-origin: bottom; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ddc-lp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .ddc-lp-hero { padding: 60px 0 80px; }
  .ddc-lp-h1 { font-size: 44px; }
  .ddc-lp-h2 { font-size: 34px; }
  .ddc-lp-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .ddc-lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .ddc-lp-steps { grid-template-columns: 1fr 1fr; }
  .ddc-lp-step-arrow { display: none; }
  .ddc-lp-testi-grid { grid-template-columns: 1fr; }
  .ddc-lp-demo { grid-template-columns: 1fr; }
  .ddc-lp-pricing { grid-template-columns: 1fr; gap: 16px; }
  .ddc-lp-price-card.featured { transform: none; }
  .ddc-lp-price-card.featured:hover { transform: translateY(-4px); }
  .ddc-lp-roi-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ddc-lp-roi-op { transform: rotate(90deg); }
  .ddc-lp-floating-card.card-1 { left: 0; bottom: 10px; }
  .ddc-lp-floating-card.card-2 { right: 0; top: 0; }
}

@media (max-width: 720px) {
  .ddc-lp-container { padding: 0 16px; }
  .ddc-lp-h1 { font-size: 34px; }
  .ddc-lp-h2 { font-size: 26px; }
  .ddc-lp-sub { font-size: 16px; }
  .ddc-lp-section-sub { font-size: 15px; }
  .ddc-lp-section { padding: 70px 0; }
  .ddc-lp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ddc-lp-stat .v { font-size: 26px; }
  .ddc-lp-features-grid { grid-template-columns: 1fr; }
  .ddc-lp-steps { grid-template-columns: 1fr; }
  .ddc-lp-compare { grid-template-columns: 1fr; gap: 20px; }
  .ddc-lp-mock-kpi { grid-template-columns: 1fr 1fr; }
  .ddc-lp-floating-card { display: none; }
  .ddc-lp-mock { transform: none; }
  .ddc-lp-roi { padding: 24px; }
  .ddc-lp-final-cta-inner { padding: 40px 24px; }
  .ddc-lp-cta-row .ddc-lp-btn { width: 100%; justify-content: center; }
  .ddc-lp-btn.large { padding: 14px 22px; font-size: 15px; }
}

/* ============================================================
   v3.3.1 ADDITIONS — Shopee accent + UX improvements
   ============================================================ */

/* ---------- DEMO: How-to step strip ---------- */
.ddc-lp-demo-howto {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto 36px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(238, 77, 45, 0.06), rgba(6, 182, 212, 0.06));
  border: 1px solid rgba(238, 77, 45, 0.18);
  border-radius: 16px;
}
.ddc-lp-demo-howto-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--lp-card-solid);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 12px 14px;
  flex: 1;
}
.ddc-lp-demo-howto-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--lp-grad-shopee);
  color: white;
  font-weight: 800;
  font-size: 15px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(238, 77, 45, 0.35);
}
.ddc-lp-demo-howto-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  color: var(--lp-text-dim);
  line-height: 1.35;
}
.ddc-lp-demo-howto-text strong {
  font-size: 13px;
  color: var(--lp-text);
  font-weight: 700;
}
.ddc-lp-demo-howto-arrow {
  display: grid;
  place-items: center;
  color: #ee4d2d;
  font-size: 18px;
  animation: lp-arrow-bounce 1.4s ease-in-out infinite;
}
@keyframes lp-arrow-bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* ---------- DEMO: Side panel head & badge ---------- */
.ddc-lp-demo-side-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(238, 77, 45, 0.08), rgba(238, 77, 45, 0.02));
  border: 1px solid rgba(238, 77, 45, 0.25);
  border-radius: 14px;
  position: relative;
  margin-bottom: 4px;
}
.ddc-lp-demo-side-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lp-grad-shopee);
  color: white;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  width: max-content;
  box-shadow: 0 4px 10px rgba(238, 77, 45, 0.35);
  animation: lp-pulse-orange 2.5s ease-in-out infinite;
}
@keyframes lp-pulse-orange {
  0%, 100% { box-shadow: 0 4px 10px rgba(238, 77, 45, 0.35); }
  50% { box-shadow: 0 4px 20px rgba(238, 77, 45, 0.55); }
}

/* "Klik untuk coba" tap hint */
.ddc-lp-demo-sample .sample-tap {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ee4d2d;
  text-transform: uppercase;
  margin-bottom: 2px;
  opacity: 0.85;
}
.ddc-lp-demo-sample .sample-tap i {
  animation: lp-tap-wiggle 1.6s ease-in-out infinite;
}
@keyframes lp-tap-wiggle {
  0%, 100% { transform: rotate(0); }
  50% { transform: rotate(-15deg); }
}
.ddc-lp-demo-sample:hover {
  border-color: #ee4d2d;
  box-shadow: 0 8px 22px rgba(238, 77, 45, 0.18);
}
.ddc-lp-demo-sample:hover .sample-id { color: #ee4d2d; }

/* Demo browser url ribbon with Shopee tint */
.ddc-lp-demo-browser-head .url {
  color: #10b981;
  font-weight: 600;
}

/* Form label styling */
.ddc-lp-demo-form label {
  font-size: 12px;
  font-weight: 700;
  color: var(--lp-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: -4px;
}
.ddc-lp-demo-form .hint {
  font-size: 11px;
  color: var(--lp-text-mute);
  margin: -4px 0 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ddc-lp-demo-form .hint i { color: #ee4d2d; }

/* ---------- PRICING: Urgency banner + countdown ---------- */
.ddc-lp-urgency {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  margin: 24px auto 0;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(238, 77, 45, 0.1), rgba(245, 158, 11, 0.1));
  border: 1px solid rgba(238, 77, 45, 0.3);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.ddc-lp-urgency::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(238, 77, 45, 0.08), transparent);
  animation: lp-shimmer 3s ease-in-out infinite;
}
@keyframes lp-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.ddc-lp-urgency-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--lp-grad-shopee);
  color: white;
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(238, 77, 45, 0.4);
  position: relative;
  z-index: 1;
}
.ddc-lp-urgency-text {
  flex: 1;
  position: relative;
  z-index: 1;
}
.ddc-lp-urgency-text > strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-text);
  display: block;
  margin-bottom: 6px;
}
.ddc-lp-countdown {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ddc-lp-countdown .box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 10px;
  background: var(--lp-card-solid);
  border: 1px solid rgba(238, 77, 45, 0.3);
  border-radius: 8px;
  min-width: 48px;
}
.ddc-lp-countdown .box b {
  font-size: 18px;
  font-weight: 800;
  color: #ee4d2d;
  line-height: 1;
  font-family: 'JetBrains Mono', monospace;
}
.ddc-lp-countdown .box em {
  font-size: 9px;
  font-weight: 600;
  font-style: normal;
  color: var(--lp-text-mute);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.ddc-lp-countdown .sep {
  font-weight: 800;
  color: #ee4d2d;
  font-size: 18px;
}
.ddc-lp-urgency-cta {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.ddc-lp-urgency-cta .slot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(238, 77, 45, 0.12);
  color: #ee4d2d;
  border: 1px solid rgba(238, 77, 45, 0.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.ddc-lp-urgency-cta .slot b { font-weight: 800; font-size: 13px; }

/* ---------- PRICING: New card design ---------- */
.ddc-lp-price-discount {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.35);
  transform: rotate(4deg);
  z-index: 2;
}
.ddc-lp-price-discount.big {
  background: var(--lp-grad-shopee);
  font-size: 11px;
  padding: 6px 12px;
  box-shadow: 0 4px 14px rgba(238, 77, 45, 0.5);
  animation: lp-discount-pulse 2s ease-in-out infinite;
}
@keyframes lp-discount-pulse {
  0%, 100% { transform: rotate(4deg) scale(1); }
  50% { transform: rotate(4deg) scale(1.08); }
}

.ddc-lp-price-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ddc-lp-price-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}
.ddc-lp-price-icon.rintisan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}
.ddc-lp-price-icon.juragan {
  background: var(--lp-grad-shopee);
  box-shadow: 0 6px 16px rgba(238, 77, 45, 0.4);
}
.ddc-lp-price-icon.bisnis {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.ddc-lp-price-amount-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px dashed var(--lp-border);
  border-bottom: 1px dashed var(--lp-border);
}
.ddc-lp-price-old {
  font-size: 16px;
  color: var(--lp-text-mute);
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
  font-weight: 500;
}
.ddc-lp-price-card .ddc-lp-price-amount {
  font-size: 44px;
  font-weight: 800;
  color: var(--lp-text);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.ddc-lp-price-card .ddc-lp-price-amount .curr {
  font-size: 18px;
  font-weight: 600;
  color: var(--lp-text-dim);
  margin-right: 4px;
}
.ddc-lp-price-card .ddc-lp-price-amount .per {
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-text);
}
.ddc-lp-price-card .ddc-lp-price-amount .per small {
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-text-mute);
  margin-left: 2px;
}
.ddc-lp-price-card.featured .ddc-lp-price-amount {
  background: var(--lp-grad-shopee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ddc-lp-price-card.featured .ddc-lp-price-amount .curr,
.ddc-lp-price-card.featured .ddc-lp-price-amount .per,
.ddc-lp-price-card.featured .ddc-lp-price-amount .per small {
  background: var(--lp-grad-shopee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ddc-lp-price-save {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #10b981;
  margin-top: 2px;
}
.ddc-lp-price-save i { font-size: 10px; }
.ddc-lp-price-save.featured {
  color: #ee4d2d;
}

.ddc-lp-price-feat-head {
  font-size: 12px;
  font-weight: 700;
  color: var(--lp-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: -4px;
}

/* Featured card uses Shopee accent for ribbon */
.ddc-lp-price-card.featured {
  border-color: rgba(238, 77, 45, 0.45);
  background: linear-gradient(180deg, rgba(238, 77, 45, 0.08), transparent 60%);
  box-shadow: 0 14px 40px rgba(238, 77, 45, 0.18);
}
.ddc-lp-price-card.featured .ddc-lp-price-ribbon {
  background: var(--lp-grad-shopee);
  box-shadow: 0 4px 14px rgba(238, 77, 45, 0.5);
  font-size: 11px;
  padding: 7px 18px;
}
.ddc-lp-price-card.featured .ddc-lp-price-ribbon i { margin-right: 4px; }
.ddc-lp-price-card.featured .ddc-lp-price-btn.primary {
  background: var(--lp-grad-shopee);
  box-shadow: 0 6px 18px rgba(238, 77, 45, 0.4);
}
.ddc-lp-price-card.featured .ddc-lp-price-btn.primary:hover {
  box-shadow: 0 10px 26px rgba(238, 77, 45, 0.55);
}

/* Trust strip below pricing */
.ddc-lp-pricing-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1000px;
  margin: 32px auto 16px;
  padding: 20px 24px;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.ddc-lp-pricing-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--lp-text-dim);
  line-height: 1.4;
}
.ddc-lp-pricing-trust .trust-item i {
  font-size: 14px;
  color: #10b981;
  flex-shrink: 0;
}
.ddc-lp-pricing-trust .trust-item strong {
  color: var(--lp-text);
  font-weight: 700;
}

/* ---------- FOOTER (Simple & Modern v3.3.1) ---------- */
.ddc-lp-footer {
  background: linear-gradient(180deg, transparent, rgba(238, 77, 45, 0.03));
  border-top: 1px solid var(--lp-border);
  padding: 60px 0 0;
  position: relative;
  margin-top: 40px;
}
.ddc-lp-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(238, 77, 45, 0.5), rgba(6, 182, 212, 0.5), transparent);
}
.ddc-lp-footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
}
.ddc-lp-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ddc-lp-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ddc-lp-footer-logo .logo-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--lp-grad-shopee);
  color: white;
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(238, 77, 45, 0.35);
}
.ddc-lp-footer-logo .logo-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--lp-text);
  letter-spacing: -0.01em;
}
.ddc-lp-footer-logo .logo-tag {
  font-size: 11px;
  color: var(--lp-text-mute);
  font-weight: 500;
  margin-top: 1px;
}
.ddc-lp-footer-desc {
  font-size: 13px;
  color: var(--lp-text-dim);
  line-height: 1.6;
  margin: 0;
  max-width: 360px;
}
.ddc-lp-footer-desc .shopee-mark {
  color: #ee4d2d;
  font-weight: 700;
}
.ddc-lp-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.ddc-lp-footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--lp-card-solid);
  border: 1px solid var(--lp-border);
  color: var(--lp-text-dim);
  display: grid;
  place-items: center;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.ddc-lp-footer-social a:hover {
  background: var(--lp-grad-shopee);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(238, 77, 45, 0.35);
}

.ddc-lp-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.ddc-lp-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ddc-lp-footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-text);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}
.ddc-lp-footer-col a,
.ddc-lp-footer-col span {
  font-size: 13px;
  color: var(--lp-text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ddc-lp-footer-col a:hover {
  color: #ee4d2d;
}
.ddc-lp-footer-col a i,
.ddc-lp-footer-col span i {
  font-size: 12px;
  color: var(--lp-text-mute);
  width: 14px;
}
.ddc-lp-footer-col .ddc-lp-footer-loc { cursor: default; }

.ddc-lp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--lp-border);
  font-size: 12px;
}
.ddc-lp-footer-copy {
  color: var(--lp-text-mute);
}
.ddc-lp-footer-copy strong { color: var(--lp-text); }
.ddc-lp-footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ddc-lp-footer-links a {
  color: var(--lp-text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}
.ddc-lp-footer-links a:hover { color: #ee4d2d; }
.ddc-lp-footer-links span { color: var(--lp-text-mute); }

/* Hero CTA primary stays cyan-emerald, but add subtle Shopee glow on the eyebrow */
.ddc-lp-eyebrow {
  background: linear-gradient(135deg, rgba(238, 77, 45, 0.12), rgba(6, 182, 212, 0.12));
  border-color: rgba(238, 77, 45, 0.3);
  color: #ee4d2d;
}
html.dark .ddc-lp-eyebrow {
  color: #ff8a5c;
}

/* ---------- RESPONSIVE for v3.3.1 additions ---------- */
@media (max-width: 1024px) {
  .ddc-lp-demo-howto {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ddc-lp-demo-howto-arrow { transform: rotate(90deg); }
  .ddc-lp-urgency {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
  .ddc-lp-urgency-text { width: 100%; text-align: center; }
  .ddc-lp-countdown { justify-content: center; }
  .ddc-lp-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ddc-lp-pricing-trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .ddc-lp-urgency {
    padding: 14px 16px;
    gap: 12px;
  }
  .ddc-lp-countdown .box { min-width: 42px; padding: 5px 8px; }
  .ddc-lp-countdown .box b { font-size: 16px; }
  .ddc-lp-footer-cols { grid-template-columns: 1fr 1fr; }
  .ddc-lp-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .ddc-lp-pricing-trust {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .ddc-lp-price-card .ddc-lp-price-amount { font-size: 38px; }
}


/* ============================================================
   v3.3.3 — REALISTIC INTERACTIVE COMPARISON
   Photographic split-screen with real human scenes + interactive controls
   ============================================================ */

/* ===== Container ===== */
.ddc-lp-real {
  position: relative;
  margin: 0 0 64px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(2, 6, 23, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
  backdrop-filter: blur(14px);
}
html:not(.dark) .ddc-lp-real {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.99));
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

/* ===== Header (title + controls) ===== */
.ddc-lp-real-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px 20px;
  flex-wrap: wrap;
}
.ddc-lp-real-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #f97316;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
  margin-bottom: 10px;
}
.ddc-lp-real-eyebrow i { color: #ee4d2d; animation: real-eyebrow-pulse 1.6s ease-in-out infinite; }
@keyframes real-eyebrow-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.12); }
}
.ddc-lp-real-title h3 {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* ===== Interactive Controls ===== */
.ddc-lp-real-controls {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.ddc-lp-real-ctrl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #cbd5e1;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ddc-lp-real-ctrl:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.ddc-lp-real-ctrl.is-active {
  color: #fff;
  background: linear-gradient(135deg, #ee4d2d, #ff6b3d);
  box-shadow: 0 4px 12px rgba(238, 77, 45, 0.4);
}
.ddc-lp-real-ctrl i { font-size: 11px; }

/* ===== Split layout ===== */
.ddc-lp-real-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  min-height: 540px;
  background: #000;
}

/* ===== Scene (each side) ===== */
.ddc-lp-real-scene {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  isolation: isolate;
}

/* Photo as background */
.ddc-lp-real-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ddc-lp-real-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease-out;
}
.ddc-lp-real-scene:hover .ddc-lp-real-photo img {
  transform: scale(1.04);
}
/* Photo overlay (gradient tint) */
.ddc-lp-real-photo-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ddc-lp-real-photo-overlay.bad {
  background:
    linear-gradient(180deg, rgba(127, 29, 29, 0.0) 0%, rgba(15, 23, 42, 0.85) 100%),
    linear-gradient(135deg, rgba(220, 38, 38, 0.18) 0%, rgba(0, 0, 0, 0.45) 100%);
}
.ddc-lp-real-photo-overlay.good {
  background:
    linear-gradient(180deg, rgba(6, 95, 70, 0.0) 0%, rgba(2, 44, 34, 0.82) 100%),
    linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(6, 78, 59, 0.4) 100%);
}

/* ===== Scene Chip (top-left tag) ===== */
.ddc-lp-real-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  border-radius: 999px;
  backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}
.ddc-lp-real-chip.bad {
  background: rgba(220, 38, 38, 0.25);
  box-shadow: 0 4px 18px rgba(220, 38, 38, 0.3);
}
.ddc-lp-real-chip.good {
  background: rgba(16, 185, 129, 0.25);
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.3);
}
.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: real-chip-pulse 1.4s ease-in-out infinite;
}
.ddc-lp-real-chip.bad .chip-dot { background: #f87171; color: #f87171; }
.ddc-lp-real-chip.good .chip-dot { background: #34d399; color: #34d399; }
@keyframes real-chip-pulse {
  0%, 100% { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
  50% { box-shadow: 0 0 0 6px transparent; opacity: 0.6; }
}

/* ===== Clock (top-right) ===== */
.ddc-lp-real-clock {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}
.ddc-lp-real-clock i { font-size: 11px; opacity: 0.7; }
.ddc-lp-real-clock.good i { color: #94a3b8; }
.ddc-lp-real-clock .clock-val { letter-spacing: 0.05em; }
.ddc-lp-real-clock small {
  font-size: 9px;
  opacity: 0.7;
  font-family: inherit;
  font-weight: 600;
}

/* ===== LEFT: Floating chat notifications ===== */
.ddc-lp-real-chats {
  position: absolute;
  top: 70px;
  left: 18px;
  right: 18px;
  z-index: 8;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.ddc-lp-real[data-state="pause"] .real-chat { animation-play-state: paused !important; }

.real-chat {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  border-left: 3px solid #ef4444;
  opacity: 0;
  transform: translateX(-30px);
  animation: real-chat-in 6s var(--d, 0s) ease-in-out infinite;
  max-width: 320px;
}
.real-chat.warn { border-left-color: #f59e0b; }
@keyframes real-chat-in {
  0% { opacity: 0; transform: translateX(-30px) scale(0.92); }
  8% { opacity: 1; transform: translateX(0) scale(1); }
  60% { opacity: 1; transform: translateX(0) scale(1); }
  72% { opacity: 0; transform: translateX(20px) scale(0.96); }
  100% { opacity: 0; transform: translateX(-30px) scale(0.92); }
}
.real-chat-avatar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ee4d2d, #ff6b3d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}
.real-chat.warn .real-chat-avatar {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  animation: real-chat-shake 0.4s ease-in-out infinite;
}
@keyframes real-chat-shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}
.real-chat-body { flex: 1; min-width: 0; }
.real-chat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 2px;
}
.real-chat-head span {
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
}
.real-chat-head small {
  font-size: 9px;
  color: #64748b;
  font-weight: 600;
}
.real-chat-msg {
  font-size: 12px;
  color: #334155;
  line-height: 1.35;
  font-weight: 500;
}

/* ===== LEFT: Unread badge ===== */
.ddc-lp-real-unread {
  position: absolute;
  bottom: 90px;
  right: 18px;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(220, 38, 38, 0.95);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.5);
  animation: real-unread-shake 0.6s ease-in-out infinite;
}
.ddc-lp-real[data-state="pause"] .ddc-lp-real-unread { animation-play-state: paused; }
@keyframes real-unread-shake {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  25% { transform: translateX(-2px) rotate(-1deg); }
  75% { transform: translateX(2px) rotate(1deg); }
}
.ddc-lp-real-unread i { font-size: 18px; }
.ddc-lp-real-unread strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}
.ddc-lp-real-unread small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 2px;
}

/* ===== RIGHT: Automation flow card ===== */
.ddc-lp-real-auto {
  position: absolute;
  top: 70px;
  left: 18px;
  right: 18px;
  z-index: 8;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(16, 185, 129, 0.15);
  backdrop-filter: blur(8px);
  max-width: 380px;
  margin: 0 auto;
}
.real-auto-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.1);
}
.real-auto-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #059669;
  text-transform: uppercase;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  animation: real-live-pulse 1.2s ease-in-out infinite;
  box-shadow: 0 0 0 0 #10b981;
}
@keyframes real-live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  100% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}
.real-auto-count {
  font-size: 11px;
  color: #475569;
  font-weight: 600;
}
.real-auto-count strong {
  color: #0f172a;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.real-auto-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.real-auto-step {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  opacity: 0;
  transform: translateX(-10px);
  animation: real-step-in 6s ease-out infinite;
}
.real-auto-step[data-step="1"] { animation-delay: 0s; }
.real-auto-step[data-step="2"] { animation-delay: 0.6s; }
.real-auto-step[data-step="3"] { animation-delay: 1.2s; }
.ddc-lp-real[data-state="pause"] .real-auto-step { animation-play-state: paused; }
@keyframes real-step-in {
  0% { opacity: 0; transform: translateX(-10px); }
  6% { opacity: 1; transform: translateX(0); }
  75% { opacity: 1; transform: translateX(0); }
  90% { opacity: 0.3; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(-10px); }
}
.step-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.step-icon.shopee { background: linear-gradient(135deg, #ee4d2d, #ff6b3d); }
.step-icon.ddc { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.step-icon.ok { background: linear-gradient(135deg, #10b981, #059669); }
.step-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}
.step-text small {
  display: block;
  font-size: 10px;
  color: #64748b;
  font-weight: 600;
  margin-top: 1px;
}
.step-tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transform: scale(0);
  animation: real-tick-pop 6s ease-out infinite;
}
.real-auto-step[data-step="1"] .step-tick { animation-delay: 0.3s; }
.real-auto-step[data-step="2"] .step-tick { animation-delay: 0.9s; }
.real-auto-step[data-step="3"] .step-tick { animation-delay: 1.5s; }
.ddc-lp-real[data-state="pause"] .step-tick { animation-play-state: paused; }
@keyframes real-tick-pop {
  0%, 4% { transform: scale(0); }
  10% { transform: scale(1.3); }
  14%, 75% { transform: scale(1); }
  92%, 100% { transform: scale(0); }
}

.real-auto-line {
  height: 14px;
  margin-left: 17px;
  border-left: 2px dashed rgba(16, 185, 129, 0.3);
  position: relative;
}
.real-auto-line span {
  position: absolute;
  left: -3px;
  top: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: real-line-drop 6s ease-in infinite;
}
.real-auto-line:nth-of-type(2) span { animation-delay: 0.6s; }
.real-auto-line:nth-of-type(4) span { animation-delay: 1.2s; }
.ddc-lp-real[data-state="pause"] .real-auto-line span { animation-play-state: paused; }
@keyframes real-line-drop {
  0%, 4% { top: 0; opacity: 0; }
  8% { opacity: 1; }
  16% { top: 100%; opacity: 0; }
  100% { top: 100%; opacity: 0; }
}

/* ===== RIGHT: Earnings ticker (bottom right) ===== */
.ddc-lp-real-earn {
  position: absolute;
  bottom: 90px;
  right: 18px;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.95);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
  animation: real-earn-rise 3s ease-out infinite;
}
.ddc-lp-real[data-state="pause"] .ddc-lp-real-earn { animation-play-state: paused; }
@keyframes real-earn-rise {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.ddc-lp-real-earn i { font-size: 18px; }
.ddc-lp-real-earn strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ddc-lp-real-earn small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  opacity: 0.92;
  margin-top: 2px;
}

/* ===== Bottom result strip (each scene) ===== */
.ddc-lp-real-result {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding: 14px 20px;
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ddc-lp-real-result.bad {
  background: linear-gradient(180deg, rgba(127, 29, 29, 0.0), rgba(127, 29, 29, 0.92));
}
.ddc-lp-real-result.good {
  background: linear-gradient(180deg, rgba(6, 95, 70, 0.0), rgba(6, 95, 70, 0.92));
}
.result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.result-stat {
  text-align: center;
  color: #fff;
}
.result-stat strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.result-stat small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 3px;
  text-transform: lowercase;
}

/* ===== Center divider ===== */
.ddc-lp-real-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  z-index: 5;
}
.ddc-lp-real-divider::before,
.ddc-lp-real-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}
.ddc-lp-real-divider::before { top: 0; bottom: 50%; margin-bottom: 50px; }
.ddc-lp-real-divider::after { top: 50%; margin-top: 50px; bottom: 0; }

.vs-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.vs-ring-progress {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  transform-origin: 50% 50%;
  transform: rotate(-90deg);
  animation: vs-ring-fill 4s ease-in-out infinite;
}
.ddc-lp-real[data-state="pause"] .vs-ring-progress { animation-play-state: paused; }
@keyframes vs-ring-fill {
  0% { stroke-dashoffset: 226; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 226; }
}
.vs-core {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #ee4d2d, #10b981);
  box-shadow: 0 8px 24px rgba(238, 77, 45, 0.4), 0 -2px 12px rgba(16, 185, 129, 0.3);
  animation: vs-core-pulse 2s ease-in-out infinite;
}
.ddc-lp-real[data-state="pause"] .vs-core { animation-play-state: paused; }
@keyframes vs-core-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ===== Bottom CTA strip ===== */
.ddc-lp-real-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 32px;
  background: linear-gradient(90deg, rgba(238, 77, 45, 0.08), rgba(16, 185, 129, 0.08));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}
.ddc-lp-real-cta-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 600;
}
.ddc-lp-real-cta-left i {
  color: #ee4d2d;
  animation: real-hand-wiggle 1.4s ease-in-out infinite;
}
@keyframes real-hand-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}
.ddc-lp-real-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #ee4d2d, #ff6b3d);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(238, 77, 45, 0.45);
  transition: all 0.25s ease;
}
.ddc-lp-real-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(238, 77, 45, 0.6);
}
.ddc-lp-real-cta-btn i { transition: transform 0.2s ease; }
.ddc-lp-real-cta-btn:hover i { transform: translateX(4px); }

/* ===== Interactive states (hover/play/pause) ===== */
.ddc-lp-real:hover .ddc-lp-real-photo img { transform: scale(1.03); }
.ddc-lp-real[data-state="pause"] .real-chat,
.ddc-lp-real[data-state="pause"] .chip-dot,
.ddc-lp-real[data-state="pause"] .live-dot,
.ddc-lp-real[data-state="pause"] .ddc-lp-real-eyebrow i {
  animation-play-state: paused !important;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .ddc-lp-real-header { padding: 22px 20px 14px; }
  .ddc-lp-real-title h3 { font-size: 20px; }
  .ddc-lp-real-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
  }
  .ddc-lp-real-scene { min-height: 440px; }
  .ddc-lp-real-divider {
    width: 100%;
    height: 80px;
    flex-direction: row;
  }
  .ddc-lp-real-divider::before,
  .ddc-lp-real-divider::after {
    width: auto;
    height: 1px;
    left: 0;
    right: 0;
    transform: none;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  }
  .ddc-lp-real-divider::before { top: 50%; bottom: auto; right: 50%; margin-right: 50px; left: 0; margin-bottom: 0; }
  .ddc-lp-real-divider::after { top: 50%; bottom: auto; left: 50%; margin-left: 50px; right: 0; margin-top: 0; }
  .ddc-lp-real-cta { padding: 18px 20px; }
  .ddc-lp-real-cta-left { font-size: 13px; }
}

@media (max-width: 720px) {
  .ddc-lp-real { border-radius: 20px; }
  .ddc-lp-real-header { padding: 18px 16px 12px; flex-direction: column; align-items: stretch; }
  .ddc-lp-real-title h3 { font-size: 17px; }
  .ddc-lp-real-controls { width: 100%; justify-content: center; }
  .ddc-lp-real-ctrl { padding: 8px 10px; font-size: 11px; flex: 1; justify-content: center; }
  .ddc-lp-real-scene { min-height: 400px; }
  .ddc-lp-real-chats { top: 60px; left: 12px; right: 12px; gap: 6px; }
  .real-chat { max-width: 100%; padding: 8px 10px; gap: 8px; }
  .real-chat-avatar { width: 26px; height: 26px; font-size: 10px; }
  .real-chat-head span { font-size: 10px; }
  .real-chat-msg { font-size: 11px; }
  .ddc-lp-real-auto { top: 60px; left: 12px; right: 12px; padding: 12px 14px; }
  .real-auto-step { grid-template-columns: 30px 1fr auto; gap: 8px; padding: 6px 0; }
  .step-icon { width: 30px; height: 30px; font-size: 12px; border-radius: 10px; }
  .step-text strong { font-size: 12px; }
  .step-text small { font-size: 9px; }
  .ddc-lp-real-chip { font-size: 10px; padding: 6px 10px; top: 14px; left: 14px; }
  .ddc-lp-real-clock { font-size: 11px; padding: 6px 10px; top: 14px; right: 14px; }
  .ddc-lp-real-unread,
  .ddc-lp-real-earn {
    bottom: 80px;
    right: 12px;
    padding: 10px 12px;
    gap: 8px;
  }
  .ddc-lp-real-unread strong,
  .ddc-lp-real-earn strong { font-size: 16px; }
  .ddc-lp-real-unread small,
  .ddc-lp-real-earn small { font-size: 9px; }
  .ddc-lp-real-result { padding: 10px 14px; }
  .result-stat strong { font-size: 13px; }
  .result-stat small { font-size: 9px; }
  .ddc-lp-real-cta { padding: 16px; flex-direction: column; align-items: stretch; }
  .ddc-lp-real-cta-btn { justify-content: center; }
  .vs-core { width: 48px; height: 48px; font-size: 14px; }
  .vs-ring { width: 64px; height: 64px; }
}

/* ===== Light mode adjustments ===== */
html:not(.dark) .ddc-lp-real-title h3 { color: #fff; } /* container is dark in both modes */
html:not(.dark) .ddc-lp-real-ctrl { color: #cbd5e1; }
html:not(.dark) .ddc-lp-real-cta-left { color: #cbd5e1; }

/* ============================================================
   v3.4.0 — PAS HIGH-CONVERSION STRUCTURE
   Problem-Agitate-Solution framework styling
   ============================================================ */

/* ===== PAS Step Badge (P, A, S, ★, ?, →) ===== */
.ddc-lp-pas-step {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.dark .ddc-lp-pas-step {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.ddc-lp-pas-step .pas-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.35);
}
.ddc-lp-pas-step.danger .pas-letter {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}
.ddc-lp-pas-step.success .pas-letter {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}
.ddc-lp-pas-step.warn .pas-letter {
  background: linear-gradient(135deg, #ee4d2d, #ff6b3d);
  box-shadow: 0 4px 12px rgba(238, 77, 45, 0.4);
}
.ddc-lp-pas-step .pas-divider {
  width: 1px;
  height: 20px;
  background: rgba(15, 23, 42, 0.12);
}
.dark .ddc-lp-pas-step .pas-divider { background: rgba(255, 255, 255, 0.12); }
.ddc-lp-pas-step .pas-name {
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}
.dark .ddc-lp-pas-step .pas-name { color: #cbd5e1; }

/* ===== PAS-P: Problem Checklist ===== */
.ddc-lp-pas-p { position: relative; }
.ddc-lp-pcheck {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 12px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.ddc-lp-pcheck-item {
  display: grid;
  grid-template-columns: 32px 40px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff;
  border: 2px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  font-family: inherit;
}
.dark .ddc-lp-pcheck-item {
  background: rgba(30, 41, 59, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
}
.ddc-lp-pcheck-item:hover {
  border-color: rgba(239, 68, 68, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(239, 68, 68, 0.12);
}
.ddc-lp-pcheck-item.is-checked {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(220, 38, 38, 0.04));
  border-color: #ef4444;
  box-shadow: 0 8px 22px rgba(239, 68, 68, 0.18);
}
.dark .ddc-lp-pcheck-item.is-checked {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(127, 29, 29, 0.25));
}
.pc-box {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 2px solid rgba(15, 23, 42, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  background: #fff;
  transition: all 0.2s ease;
}
.dark .pc-box { background: rgba(15, 23, 42, 0.6); border-color: rgba(255, 255, 255, 0.2); }
.pc-box i { opacity: 0; transform: scale(0.5); transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1); }
.ddc-lp-pcheck-item.is-checked .pc-box {
  background: #ef4444;
  border-color: #ef4444;
}
.ddc-lp-pcheck-item.is-checked .pc-box i {
  opacity: 1;
  transform: scale(1);
}
.pc-emoji { font-size: 28px; line-height: 1; text-align: center; }
.pc-body { min-width: 0; }
.pc-body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 4px;
}
.dark .pc-body strong { color: #f1f5f9; }
.pc-body small {
  display: block;
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}
.dark .pc-body small { color: #94a3b8; }

/* ===== PAS-P: Tally result ===== */
.ddc-lp-pcheck-result {
  margin: 28px auto 0;
  max-width: 720px;
  padding: 20px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.02));
  border: 1px dashed rgba(15, 23, 42, 0.15);
  text-align: center;
  transition: all 0.3s ease;
}
.dark .ddc-lp-pcheck-result {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 255, 255, 0.15);
}
.ddc-lp-pcheck-result.urgent {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.06));
  border-color: #ef4444;
  border-style: solid;
}
.ddc-lp-pcheck-result.urgent .pc-tally-count strong { color: #dc2626; }
.pc-tally {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.pc-tally-count strong {
  font-size: 36px;
  font-weight: 900;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.dark .pc-tally-count strong { color: #f1f5f9; }
.pc-tally-count {
  font-size: 18px;
  font-weight: 700;
  color: #64748b;
}
.pc-tally-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}
.dark .pc-tally-label { color: #94a3b8; }
.pc-tally-msg {
  font-size: 14px;
  color: #475569;
  font-weight: 500;
  line-height: 1.5;
}
.dark .pc-tally-msg { color: #cbd5e1; }
.pc-tally-msg strong { color: #ef4444; font-weight: 700; }

/* ===== PAS-S: Solution Reveal Bridge ===== */
.ddc-lp-reveal {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #f1f5f9;
}
html:not(.dark) .ddc-lp-reveal {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}
.ddc-lp-reveal-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.reveal-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.reveal-blob.b1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
  animation: reveal-blob-float 18s ease-in-out infinite;
}
.reveal-blob.b2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -150px;
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
  animation: reveal-blob-float 22s ease-in-out infinite reverse;
}
@keyframes reveal-blob-float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(40px, -30px); }
  66% { transform: translate(-30px, 40px); }
}
.reveal-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.ddc-lp-reveal-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.ddc-lp-reveal-inner .ddc-lp-pas-step {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(16, 185, 129, 0.3);
}
.ddc-lp-reveal-inner .ddc-lp-pas-step .pas-name { color: #cbd5e1; }
.ddc-lp-reveal-inner .ddc-lp-pas-step .pas-divider { background: rgba(255, 255, 255, 0.18); }

.ddc-lp-reveal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #fbbf24;
  text-transform: uppercase;
  margin: 16px 0 10px;
}
.ddc-lp-reveal-eyebrow i {
  animation: reveal-sparkle 1.8s ease-in-out infinite;
}
@keyframes reveal-sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.3) rotate(180deg); opacity: 0.7; }
}
.ddc-lp-reveal-h {
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}
.ddc-lp-reveal-h .reveal-brand {
  display: block;
  background: linear-gradient(135deg, #06b6d4 0%, #10b981 50%, #ee4d2d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: reveal-gradient-shift 6s ease-in-out infinite;
  background-size: 200% 200%;
}
@keyframes reveal-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.ddc-lp-reveal-h small {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #94a3b8;
  text-transform: uppercase;
  margin-top: 12px;
}
.ddc-lp-reveal-tagline {
  font-size: 17px;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 24px auto 48px;
  max-width: 720px;
}
.ddc-lp-reveal-tagline strong { color: #fff; }

/* Reveal pillars 3-col */
.ddc-lp-reveal-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 40px;
}
.ddc-lp-reveal-pillar {
  position: relative;
  padding: 28px 24px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  text-align: left;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}
.ddc-lp-reveal-pillar:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.rp-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.1em;
}
.rp-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.rp-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.rp-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.55;
}

.ddc-lp-reveal-cta { margin-top: 16px; }
.ddc-lp-reveal-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
  transition: all 0.25s ease;
}
.ddc-lp-reveal-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(16, 185, 129, 0.55);
}
.ddc-lp-reveal-btn .bounce {
  animation: reveal-arrow-bounce 1.4s ease-in-out infinite;
}
@keyframes reveal-arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ===== Inline Stats (moved after testimonials) ===== */
.ddc-lp-stats.inline {
  margin-top: 48px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.06), rgba(16, 185, 129, 0.06));
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 20px;
}
.dark .ddc-lp-stats.inline {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(16, 185, 129, 0.08));
  border-color: rgba(16, 185, 129, 0.25);
}

/* ===== Final CTA: Decision Matrix ===== */
.ddc-lp-final-choice {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  max-width: 820px;
  margin: 36px auto 36px;
  text-align: left;
}
.ddc-lp-final-choice-col {
  padding: 22px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}
.ddc-lp-final-choice-col.bad {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(127, 29, 29, 0.12));
  border-color: rgba(239, 68, 68, 0.25);
  filter: grayscale(0.2);
}
.ddc-lp-final-choice-col.good {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(6, 78, 59, 0.18));
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2);
}
.ddc-lp-final-choice-col.good:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(16, 185, 129, 0.3);
}
/* v3.6.4: use theme-aware --lp-text instead of hardcoded #fff so light mode reads correctly */
.ddc-lp-final-choice-col .choice-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--lp-text);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--lp-border-strong);
}
.ddc-lp-final-choice-col.bad .choice-head i { color: #f87171; }
.ddc-lp-final-choice-col.good .choice-head i { color: #34d399; font-size: 16px; }
.ddc-lp-final-choice-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* v3.6.4: was rgba(255,255,255,0.85) — unreadable in light mode */
.ddc-lp-final-choice-col li {
  font-size: 13px;
  color: var(--lp-text-dim);
  line-height: 1.4;
  padding-left: 0;
}
/* v3.6.4: VS divider — soften via --lp-text-mute so it reads in both modes */
.ddc-lp-final-choice-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--lp-text-mute);
  opacity: 0.65;
  letter-spacing: 0.06em;
  font-family: 'JetBrains Mono', monospace;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .ddc-lp-pcheck { grid-template-columns: 1fr; gap: 12px; }
  .ddc-lp-reveal-pillars { grid-template-columns: 1fr; }
  .ddc-lp-reveal { padding: 60px 0; }
  .ddc-lp-reveal-h { font-size: 38px; }
  .ddc-lp-final-choice {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ddc-lp-final-choice-vs {
    padding: 8px 0;
    font-size: 16px;
  }
  .ddc-lp-stats.inline { padding: 20px 16px; margin-top: 32px; }
}
@media (max-width: 560px) {
  .ddc-lp-pcheck-item {
    grid-template-columns: 28px 32px 1fr;
    gap: 10px;
    padding: 14px 14px;
  }
  .pc-emoji { font-size: 22px; }
  .pc-body strong { font-size: 13px; }
  .pc-body small { font-size: 11px; }
  .pc-tally-count strong { font-size: 28px; }
  .ddc-lp-reveal-eyebrow { font-size: 11px; }
  .ddc-lp-reveal-h { font-size: 32px; }
  .ddc-lp-reveal-h small { font-size: 11px; letter-spacing: 0.2em; }
  .ddc-lp-reveal-tagline { font-size: 15px; }
  .ddc-lp-reveal-btn { padding: 14px 20px; font-size: 13px; }
  .ddc-lp-pas-step { font-size: 12px; padding: 6px 12px 6px 6px; gap: 8px; }
  .ddc-lp-pas-step .pas-letter { width: 26px; height: 26px; font-size: 13px; }
  .ddc-lp-pas-step .pas-name { font-size: 11px; }
}

/* ============================================================
   v3.4.1 — MOBILE/TABLET FEATURES COMPACT MODE
   Hide paragraph + bullet list on small screens to reduce
   reading fatigue. Show only icon + name (premium grid card).
   ============================================================ */
@media (max-width: 1024px) {
  /* Hide verbose content on tablet/mobile */
  .ddc-lp-feature p,
  .ddc-lp-feature ul {
    display: none !important;
  }
  /* Compact card — icon + title only, centered */
  .ddc-lp-feature {
    padding: 18px 14px;
    text-align: center;
    align-items: center;
    gap: 10px;
    min-height: 140px;
    justify-content: center;
  }
  .ddc-lp-feature-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    margin: 0 auto;
  }
  .ddc-lp-feature h3 {
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
    text-align: center;
  }
  .ddc-lp-feature-badge {
    position: static;
    margin-top: 4px;
    font-size: 9px;
    padding: 2px 7px;
    align-self: center;
  }
  /* Tablet: 3 columns for nicer balance */
  .ddc-lp-features-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px;
  }
}
@media (max-width: 720px) {
  .ddc-lp-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .ddc-lp-feature {
    padding: 16px 10px;
    min-height: 120px;
    gap: 8px;
  }
  .ddc-lp-feature-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .ddc-lp-feature h3 {
    font-size: 12.5px;
    line-height: 1.25;
  }
  .ddc-lp-feature-badge {
    font-size: 8px;
    padding: 2px 6px;
    letter-spacing: 0.4px;
  }
}
@media (max-width: 380px) {
  .ddc-lp-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }
  .ddc-lp-feature {
    padding: 14px 8px;
    min-height: 110px;
  }
  .ddc-lp-feature h3 {
    font-size: 11.5px;
  }
}
