/* ════════════════════════════════════════════════════════════════════
   SEEDANCE UNLIMITED — Landing  ·  "neon-studio dark" aesthetic
   Bricolage Grotesque display + Plus Jakarta Sans body · lime signature
   ════════════════════════════════════════════════════════════════════ */

:root {
  --bg:        #08090c;
  --bg-2:      #0d0f13;
  --surface:   #111319;
  --surface-2: #171a21;
  --line:      #21242c;
  --line-2:    #2c313b;
  --text:      #f2f4f7;
  --text-2:    #9ba3b0;
  --text-3:    #646b78;
  --accent:    #c2f74a;      /* lime signature */
  --accent-2:  #84e0c0;      /* mint secondary */
  --warm:      #ffb55c;      /* warm amber spark */
  --ink:       #0a0e03;      /* text on lime */
  --accent-soft: rgba(194,247,74,0.12);
  --error:     #ff7a7a;
  --ok:        #c2f74a;
  --lp-accent: var(--accent);  /* alias for inline var(--lp-accent) */

  --r-sm: 10px; --r: 16px; --r-lg: 22px; --r-pill: 999px;
  --maxw: 1140px; --h: 66px;
  --shadow:    0 10px 30px rgba(0,0,0,.45);
  --shadow-lg: 0 30px 80px -20px rgba(0,0,0,.7);
  --glow:      0 0 60px -12px rgba(194,247,74,.45);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; -webkit-text-size-adjust: 100%; touch-action: manipulation; }

body.lp-body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden; position: relative;
}
/* atmospheric grain + mesh */
body.lp-body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background:
    radial-gradient(60% 50% at 75% -5%, rgba(194,247,74,.10), transparent 60%),
    radial-gradient(55% 45% at 0% 8%, rgba(132,224,192,.08), transparent 60%);
}
body.lp-body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--accent); color: var(--ink); }

.lp-container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.lp-hidden { display: none !important; }

/* ════════════ HEADER ════════════ */
.lp-header { position: sticky; top: 0; z-index: 50; background: rgba(8,9,12,.6); backdrop-filter: saturate(160%) blur(18px); -webkit-backdrop-filter: saturate(160%) blur(18px); border-bottom: 1px solid var(--line); }
/* anchor-jump offset so section titles aren't hidden behind the sticky header */
#demo, #metode, #perbandingan, #harga, #faq { scroll-margin-top: 84px; }
.lp-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: var(--h); }
.lp-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -.02em; color: var(--text); }
.lp-brand strong, .lp-brand-text strong { color: var(--accent); }
.lp-brand-ico { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lp-brand-ico svg { width: 18px; height: 18px; }
.lp-brand-ico img { width: 100%; height: 100%; object-fit: contain; display: block; }
.lp-nav { display: none; gap: 30px; }
.lp-nav a { color: var(--text-2); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .15s; }
.lp-nav a:hover { color: var(--text); }
.lp-header-cta { display: inline-flex; align-items: center; gap: 8px; }

/* ════════════ BUTTONS ════════════ */
.lp-cta-primary, .lp-cta-secondary, .lp-cta-ghost, .lp-cta-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 15px; line-height: 1;
  padding: 14px 24px; border-radius: var(--r-pill); border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .14s var(--ease), box-shadow .2s, background .15s, border-color .15s, color .15s;
}
.lp-cta-primary { background: var(--accent); color: var(--ink); box-shadow: 0 8px 24px -8px rgba(194,247,74,.6); }
.lp-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(194,247,74,.7); }
.lp-cta-primary:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.lp-cta-secondary { background: var(--surface-2); color: var(--text); border-color: var(--line-2); }
.lp-cta-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.lp-cta-ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.lp-cta-ghost:hover { border-color: var(--accent); color: var(--accent); }
.lp-cta-gold { background: linear-gradient(135deg, #ffd98a, var(--warm)); color: #2a1700; box-shadow: 0 8px 24px -8px rgba(255,181,92,.5); }
.lp-cta-gold:hover { transform: translateY(-2px); }
.lp-cta-sm { padding: 9px 16px; font-size: 13px; }
.lp-cta-lg { padding: 16px 30px; font-size: 16px; }
.lp-cta-xl { padding: 18px 38px; font-size: 17px; }
.lp-cta-full { width: 100%; }

/* ════════════ TYPOGRAPHY / BADGES ════════════ */
.lp-h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 9vw, 72px); line-height: 1.02; letter-spacing: -0.035em; margin: 18px 0 16px; }
.lp-h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(27px, 5.5vw, 42px); line-height: 1.08; letter-spacing: -0.03em; margin: 12px 0 14px; }
.lp-h2-light { color: #fff; }
.lp-h2-sub, .lp-section-sub { color: var(--text-2); font-size: 16.5px; max-width: 620px; margin: 0 auto 32px; line-height: 1.6; text-align: center; }
.lp-accent { color: var(--accent); }
.lp-hint-center { text-align: center; color: var(--text-2); font-size: 14px; margin-top: 24px; }
.lp-section-head { margin-bottom: 6px; }

.lp-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: .02em; padding: 7px 14px; border-radius: var(--r-pill); margin-bottom: 4px; }
.lp-badge-accent { background: var(--accent-soft); color: var(--accent); border: 1px solid rgba(194,247,74,.28); }
.lp-badge-outline { background: var(--surface); color: var(--text-2); border: 1px solid var(--line); }
.lp-badge-warn { background: rgba(255,181,92,.12); color: var(--warm); border: 1px solid rgba(255,181,92,.28); }
.lp-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(194,247,74,.18); animation: lp-pulse 2s infinite; }
@keyframes lp-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.85); } }

/* ════════════ SECTIONS ════════════ */
.lp-section { padding: 64px 0; }
.lp-section-light { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].lp-revealed { opacity: 1; transform: none; }

/* ════════════ HERO ════════════ */
.lp-hero { padding: 48px 0 10px; position: relative; }
.lp-hero .lp-container { position: relative; z-index: 1; }
.lp-hero-sub { color: var(--text-2); font-size: clamp(16px, 2.4vw, 19px); max-width: 600px; margin: 0 auto 26px; line-height: 1.6; }
.lp-hero-sub strong { color: var(--text); font-weight: 600; }
.lp-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.lp-trust { color: var(--text-3); font-size: 13.5px; margin: 0; }
/* staggered hero entrance */
.lp-hero .lp-badge { animation: lp-rise .7s var(--ease) both; }
.lp-hero .lp-h1 { animation: lp-rise .7s var(--ease) .08s both; }
.lp-hero-sub { animation: lp-rise .7s var(--ease) .16s both; }
.lp-hero-cta { animation: lp-rise .7s var(--ease) .24s both; }
.lp-trust { animation: lp-rise .7s var(--ease) .32s both; }
@keyframes lp-rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.lp-hero-video-wrap { position: relative; margin-top: 34px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow-lg), var(--glow); aspect-ratio: 16/9; background: #000; animation: lp-rise .8s var(--ease) .4s both; }
.lp-hero-video { width: 100%; height: 100%; object-fit: cover; }
.lp-hero-video-badge { position: absolute; left: 14px; bottom: 14px; background: rgba(0,0,0,.55); backdrop-filter: blur(8px); color: #fff; font-size: 12px; font-weight: 600; padding: 7px 13px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.12); }
.lp-hero-caption { text-align: center; color: var(--text-3); font-size: 13px; margin: 16px 0 0; }

/* ════════════ STATS ════════════ */
.lp-stats { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.lp-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
.lp-stat { text-align: center; }
.lp-stat-num { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 6vw, 34px); color: var(--accent); line-height: 1; letter-spacing: -.02em; }
.lp-stat-label { display: block; font-size: 12.5px; color: var(--text-2); margin-top: 8px; }
.lp-stat-bump { animation: lp-bump .4s ease; }
@keyframes lp-bump { 0% { transform: scale(1); } 40% { transform: scale(1.16); } 100% { transform: scale(1); } }

/* ════════════ CARD BASE (shared look) ════════════ */
.lp-metode-card, .lp-problem, .lp-step, .lp-feature-card, .lp-mkt-step, .lp-testi-card, .lp-price-card, .lp-mkt-library, .lp-faq-item, .lp-pricing-notice {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--r);
  position: relative;
}
.lp-metode-card::after, .lp-feature-card::after, .lp-price-card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; border-radius: var(--r) var(--r) 0 0;
  background: linear-gradient(90deg, transparent, rgba(194,247,74,.4), transparent); opacity: .6;
}

/* ════════════ 3 METODE ════════════ */
.lp-metode-help { text-align: center; font-size: 14px; line-height: 1.6; color: var(--text-2); max-width: 660px; margin: 4px auto 4px; }
.lp-metode-help b { color: var(--text); }
.lp-metode-swipe { text-align: center; font-size: 12px; letter-spacing: .04em; color: var(--text-3); margin: 12px 0 -2px; }
/* swipe hint shown on desktop too (mode grid is a carousel at every size) */
/* 7-mode carousel arrows (desktop) */
.lp-metode-carousel { position: relative; }
.lp-metode-arrow { display: none; }
@media (min-width: 680px) {
  .lp-metode-arrow { display: flex; align-items: center; justify-content: center; position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 46px; height: 46px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line-2); color: var(--text); cursor: pointer; box-shadow: var(--shadow-lg); transition: background .18s, color .18s, border-color .18s; }
  .lp-metode-arrow:hover { background: var(--accent); color: var(--ink); border-color: transparent; }
  .lp-metode-arrow svg { width: 22px; height: 22px; }
  .lp-metode-arrow-prev { left: -14px; }
  .lp-metode-arrow-next { right: -14px; }
}

/* MOBILE: horizontal swipe carousel (one card at a time, peek next) */
.lp-metode-grid { display: flex; gap: 14px; margin-top: 10px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 28px 20px 32px;
  scroll-padding-left: 2px; scrollbar-width: none; }
.lp-metode-grid::-webkit-scrollbar { display: none; }
.lp-metode-card { position: relative; flex: 0 0 84%; scroll-snap-align: center;
  border-radius: var(--r-lg); padding: 24px 22px; display: flex; flex-direction: column; transition: transform .18s var(--ease), border-color .18s; }
.lp-metode-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.lp-metode-card-rec { border-color: rgba(194,247,74,.5); box-shadow: 0 0 30px -14px rgba(194,247,74,.5); }
/* unified label system: one pill row (max: ★ Rekomendasi / Baru / Beta) */
.lp-metode-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; min-height: 25px; }
.lp-metode-pill { font-size: 10.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: 3px 9px; border-radius: var(--r-pill); background: var(--surface); color: var(--text-2); border: 1px solid var(--line-2); white-space: nowrap; }
.lp-metode-pill-rec { background: var(--accent); color: var(--ink); border-color: transparent; }
.lp-metode-pill-new { color: var(--accent); border-color: rgba(194,247,74,.4); }
.lp-metode-pill-beta { color: #a78bff; border-color: rgba(167,139,255,.4); }
.lp-metode-num { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.lp-metode-title { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -.02em; margin: 0 0 5px; }
.lp-metode-tag { font-size: 13.5px; line-height: 1.5; color: var(--text-2); margin: 0 0 14px; min-height: 40px; }
/* meta chips (Setup · Resolusi · Kemampuan) — replaces the scattered badges */
.lp-metode-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 16px; }
.lp-metode-chip { font-size: 11.5px; font-weight: 600; color: var(--text); background: var(--accent-soft); border: 1px solid rgba(194,247,74,.22); padding: 4px 10px; border-radius: 8px; white-space: nowrap; }
.lp-metode-more { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--accent); text-decoration: none; }
.lp-metode-more:hover { text-decoration: underline; }
.lp-metode-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.lp-metode-list li { position: relative; padding-left: 28px; font-size: 14px; line-height: 1.55; color: var(--text-2); }
.lp-metode-list li b, .lp-metode-list li strong { color: var(--text); font-weight: 600; }
.lp-metode-list li::before { content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--accent-soft); box-shadow: inset 0 0 0 2px var(--accent); }
.lp-metode-badge { position: absolute; top: -12px; right: 20px; background: var(--accent); color: var(--ink); font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: var(--r-pill); box-shadow: var(--glow); }
.lp-section-cta { margin-top: 32px; text-align: center; }
.lp-metode-foot { text-align: center; margin-top: 16px; font-size: 14px; color: var(--text-2); }
.lp-metode-foot a { color: var(--accent); font-weight: 600; }

/* ── 3 METODE: redesign (section eyebrow · audience label · capability chips · labelled bullets) ── */
.lp-metode-eyebrow-top { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.lp-metode-eyebrow-top::before, .lp-metode-eyebrow-top::after { content: ""; width: 20px; height: 1px; background: currentColor; opacity: .45; }
.lp-metode-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--text-3); margin: 0 0 9px; }
.lp-metode-eyebrow::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex: none; }
.lp-metode-caps { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 16px; }
.lp-metode-cap { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--text); background: var(--surface); border: 1px solid var(--line-2); border-radius: 8px; padding: 6px 10px; }
.lp-metode-cap svg { width: 14px; height: 14px; color: var(--accent); flex: none; }
.lp-metode-klabel { display: block; font-family: var(--font-display); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
/* new card CTA: bottom-aligned; solid variant for the recommended mode */
.lp-metode-more-b { margin-top: auto; }
.lp-metode-more-solid { display: block; margin-top: auto; background: var(--accent); color: var(--ink); padding: 11px 16px; border-radius: 11px; text-align: center; }
.lp-metode-more-solid:hover { text-decoration: none; opacity: .92; }
/* consistent mode-card CTA: non-rec cards get a full-width outline button (rec keeps the solid fill) */
.lp-metode-more.lp-metode-more-b { display: block; text-align: center; padding: 11px 16px; border-radius: 11px; border: 1px solid var(--line-2); background: var(--surface); color: var(--accent); font-weight: 700; margin-top: auto; transition: background .16s, border-color .16s; }
.lp-metode-more.lp-metode-more-b:hover { background: var(--accent-soft); border-color: rgba(194,247,74,.35); text-decoration: none; }
/* redesign moves spec pills to the bottom of the card */
.lp-metode-spec { margin: 16px 0 18px; }

/* ════════════ PROBLEMS ════════════ */
.lp-problems { display: grid; grid-template-columns: 1fr; gap: 14px; }
.lp-problem { padding: 22px; }
.lp-problem-head { display: flex; align-items: center; gap: 13px; margin-bottom: 9px; }
.lp-problem-emoji { font-size: 26px; }
.lp-problem-head h3 { font-family: var(--font-display); font-size: 16px; margin: 0; font-weight: 700; letter-spacing: -.01em; }
.lp-problem p { color: var(--text-2); font-size: 14px; margin: 0; }

/* ════════════ STEPS ════════════ */
.lp-steps { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 10px; }
.lp-step { padding: 24px 22px; }
.lp-step-num { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; background: var(--accent); color: var(--ink); border-radius: 12px; font-family: var(--font-display); font-weight: 800; font-size: 17px; margin-bottom: 14px; box-shadow: var(--glow); }
.lp-step h3 { font-family: var(--font-display); font-size: 16px; margin: 0 0 6px; letter-spacing: -.01em; }
.lp-step p { color: var(--text-2); font-size: 14px; margin: 0; }

/* ════════════ COMPARISON TABLE ════════════ */
.lp-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); -webkit-overflow-scrolling: touch; }
.lp-table { width: 100%; border-collapse: collapse; min-width: 660px; font-size: 14px; }
.lp-table th, .lp-table td { padding: 15px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.lp-table thead th { background: var(--surface); color: var(--text-2); font-weight: 600; font-size: 13px; }
.lp-table tbody tr:last-child td { border-bottom: none; }
.lp-table td:first-child { color: var(--text-2); }
.lp-th-highlight { background: var(--accent-soft) !important; color: var(--accent) !important; font-family: var(--font-display); }
.lp-td-highlight { background: rgba(194,247,74,.05); color: var(--text); font-weight: 600; }
.lp-text-ok { color: var(--accent); }
.lp-text-error { color: var(--text-3); }
.lp-check-pill { display: inline-flex; width: 18px; height: 18px; align-items: center; justify-content: center; background: var(--accent); color: var(--ink); border-radius: 50%; font-size: 11px; margin-right: 5px; }

/* ════════════ FEATURES ════════════ */
.lp-features { display: grid; grid-template-columns: 1fr; gap: 14px; }
.lp-feature-card { padding: 24px 22px; transition: transform .18s var(--ease), border-color .18s; }
.lp-feature-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.lp-feature-ico { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; background: var(--accent-soft); color: var(--accent); border-radius: 14px; margin-bottom: 16px; }
.lp-feature-ico svg { width: 23px; height: 23px; }
.lp-feature-card h3 { font-family: var(--font-display); font-size: 17px; margin: 0 0 7px; letter-spacing: -.01em; }
.lp-feature-card p { color: var(--text-2); font-size: 14px; margin: 0; }

/* ════════════ MARKETING STUDIO ════════════ */
.lp-mkt-steps { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 10px 0 30px; }
.lp-mkt-step { display: flex; flex-direction: column; gap: 11px; padding: 24px 22px; }
.lp-mkt-step-num { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; background: var(--accent); color: var(--ink); border-radius: 10px; font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.lp-mkt-step-ico { display: none; }
.lp-mkt-step h3 { font-family: var(--font-display); font-size: 16px; margin: 0; letter-spacing: -.01em; }
.lp-mkt-step p { color: var(--text-2); font-size: 13.5px; margin: 0; }
.lp-mkt-examples-title { font-size: 15px; font-weight: 600; margin: 0 0 16px; color: var(--text-2); text-align: center; }
.lp-mkt-examples { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.lp-mkt-examples video { width: 100%; border-radius: var(--r); border: 1px solid var(--line); background: #000; aspect-ratio: 9/16; object-fit: cover; }
.lp-mkt-library { border-radius: var(--r-lg); padding: 24px; margin-top: 28px; }
.lp-mkt-library-head { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin: 0 0 16px; }
.lp-mkt-library-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-mkt-tag { background: var(--surface-2); border: 1px solid var(--line); color: var(--text-2); font-size: 13px; padding: 7px 13px; border-radius: var(--r-pill); }

/* ════════════ SHOWCASE ════════════ */
.lp-showcase { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.lp-showcase-item { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: #000; cursor: pointer; aspect-ratio: 9/16; transition: transform .18s var(--ease); }
.lp-showcase-item:hover { transform: scale(1.02); }
.lp-showcase-item video { width: 100%; height: 100%; object-fit: cover; }
.lp-showcase-tag { position: absolute; left: 9px; bottom: 9px; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: var(--r-pill); }
.lp-showcase-sound { position: absolute; top: 9px; right: 9px; width: 30px; height: 30px; border-radius: 50%; background: rgba(0,0,0,.5); color: #fff; border: 1px solid rgba(255,255,255,.14); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }

/* ════════════ TESTIMONIALS ════════════ */
.lp-testi-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.lp-testi-card { padding: 22px; }
.lp-testi-head { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
.lp-testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; flex-shrink: 0; font-family: var(--font-display); }
.lp-testi-avatar-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.lp-testi-name { font-weight: 600; font-size: 14px; }
.lp-testi-time { color: var(--text-3); font-size: 12px; }
.lp-testi-msg { color: var(--text-2); font-size: 14px; margin: 0; line-height: 1.65; }

/* ════════════ PRICING ════════════ */
.lp-price-switch { display: flex; width: fit-content; max-width: 100%; margin: 0 auto 28px; gap: 4px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 5px; }
.lp-switch-btn { border: none; background: transparent; color: var(--text-2); font-family: inherit; font-weight: 700; font-size: 14px; padding: 11px 22px; border-radius: var(--r-pill); cursor: pointer; transition: background .15s, color .15s; white-space: nowrap; }
.lp-switch-btn:hover { color: var(--text); }
.lp-switch-btn.active { background: var(--accent); color: var(--ink); box-shadow: 0 6px 18px -8px rgba(194,247,74,.6); }
.lp-price-card { border-radius: var(--r-lg); padding: 32px 26px; }
.lp-price-card-popular { border-color: rgba(194,247,74,.5); box-shadow: var(--glow); }
.lp-price-single { max-width: 440px; margin: 0 auto; }
.lp-price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: var(--r-pill); white-space: nowrap; }
.lp-price-badge-popular { background: var(--accent); color: var(--ink); box-shadow: var(--glow); }
.lp-price-header { text-align: center; margin-bottom: 22px; }
.lp-price-amount { display: flex; align-items: baseline; justify-content: center; gap: 5px; }
.lp-price-currency { font-size: 19px; color: var(--text-2); font-weight: 600; }
.lp-price-value { font-family: var(--font-display); font-size: clamp(40px, 11vw, 52px); font-weight: 800; color: var(--text); letter-spacing: -0.04em; line-height: 1; }
.lp-price-period { font-size: 15px; color: var(--text-2); }
.lp-price-tagline { font-size: 13.5px; color: var(--text-2); margin: 10px 0 0; }
.lp-price-features { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 12px; }
.lp-price-features li { position: relative; padding-left: 28px; font-size: 14px; color: var(--text-2); }
.lp-price-features li strong { color: var(--text); }
.lp-price-features li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 19px; height: 19px; display: inline-flex; align-items: center; justify-content: center; background: var(--accent); color: var(--ink); border-radius: 50%; font-size: 11px; font-weight: 800; }
.lp-pricing-fine { text-align: center; color: var(--text-3); font-size: 13px; margin: 20px auto 0; max-width: 440px; }
.lp-pricing-notice { display: flex; gap: 11px; align-items: flex-start; max-width: 560px; margin: 20px auto 0; border-radius: var(--r); padding: 15px 17px; font-size: 13px; color: var(--text-2); }
.lp-pricing-notice svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }

/* ════════════ FINAL CTA ════════════ */
.lp-final-cta { padding: 72px 0; position: relative; background:
  radial-gradient(70% 120% at 50% 0%, rgba(194,247,74,.12), transparent 60%), var(--bg-2);
  border-top: 1px solid var(--line); }
.lp-final-cta-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.lp-final-cta-sub { color: var(--text-2); font-size: 16.5px; margin: 14px 0 28px; }

/* ════════════ FAQ ════════════ */
.lp-faq-wrap { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 11px; }
.lp-faq-item { overflow: hidden; width: 100%; }
.lp-faq-item summary { list-style: none; cursor: pointer; padding: 18px 20px; font-family: var(--font-display); font-weight: 600; font-size: 15.5px; letter-spacing: -.01em; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after { content: "+"; color: var(--accent); font-size: 24px; font-weight: 400; line-height: 1; flex-shrink: 0; transition: transform .2s var(--ease); }
.lp-faq-item[open] summary::after { transform: rotate(45deg); }
.lp-faq-answer { padding: 0 20px 20px; color: var(--text-2); font-size: 14px; line-height: 1.75; }
.lp-faq-answer strong { color: var(--text); }
.lp-faq-answer em { color: var(--warm); font-style: normal; font-weight: 600; }

/* ════════════ FOOTER ════════════ */
.lp-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 44px 0 34px; }
.lp-footer-inner { display: flex; flex-direction: column; gap: 22px; }
.lp-footer-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; }
.lp-footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.lp-footer-links a { color: var(--text-2); text-decoration: none; font-size: 14px; }
.lp-footer-links a:hover { color: var(--accent); }
.lp-footer-meta { display: flex; flex-direction: column; gap: 10px; }
.lp-footer-copy { color: var(--text-3); font-size: 13px; }
.lp-footer-disclaimer { color: var(--text-3); font-size: 12px; line-height: 1.6; }

/* ════════════ CHECKOUT MODAL ════════════ */
.lp-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: flex-end; justify-content: center; padding: 0; }
.lp-modal[hidden] { display: none; }
.lp-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); backdrop-filter: blur(5px); animation: lp-fade .2s ease; }
@keyframes lp-fade { from { opacity: 0; } to { opacity: 1; } }
.lp-modal-card { position: relative; z-index: 1; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg) var(--r-lg) 0 0; width: 100%; max-width: 460px; max-height: 92vh; overflow-y: auto; padding: 28px 24px 24px; box-shadow: var(--shadow-lg); animation: lp-slide .26s var(--ease); }
@keyframes lp-slide { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.lp-modal-close { position: absolute; top: 13px; right: 13px; width: 34px; height: 34px; background: var(--surface-2); border: none; border-radius: 50%; color: var(--text-2); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.lp-modal-close:hover { color: var(--text); }
.lp-modal-head { margin-bottom: 18px; }
.lp-modal-head h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -.02em; margin: 0 0 6px; }
.lp-modal-sub { font-size: 13px; color: var(--text-2); margin: 0; }
.lp-modal-tier { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r); padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.lp-modal-tier-name { font-weight: 600; font-size: 14px; }
.lp-modal-tier-price { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--accent); }
.lp-modal-note { text-align: center; margin: 14px 0 0; font-size: 13px; color: var(--text-2); }
.lp-modal-note a { color: var(--accent); font-weight: 500; text-decoration: none; }

.lp-field { margin-bottom: 14px; position: relative; }
.lp-field label { display: block; font-size: 12px; font-weight: 600; color: var(--text-2); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.lp-field input { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r); font-size: 16px; background: var(--surface-2); color: var(--text); font-family: inherit; transition: border-color .15s, box-shadow .15s; }
.lp-field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.lp-password-wrap { position: relative; }
.lp-password-wrap input { padding-right: 44px; }
.lp-eye, .lp-eye-show, .lp-eye-hide { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; background: transparent; border: none; color: var(--text-3); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; }
.lp-eye:hover { color: var(--text); }
.lp-agree { display: flex; gap: 9px; align-items: flex-start; font-size: 12.5px; color: var(--text-2); margin: 4px 0 14px; line-height: 1.5; }
.lp-agree input { margin-top: 2px; accent-color: var(--accent); }
.lp-agree a { color: var(--accent); }
.lp-form-error { background: rgba(255,122,122,.1); border: 1px solid rgba(255,122,122,.25); color: var(--error); padding: 10px 12px; border-radius: var(--r); font-size: 13px; margin: 0 0 14px; }

/* ════════════ VIDEO MODAL ════════════ */
.lp-video-modal { position: fixed; inset: 0; z-index: 110; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,.92); padding: 16px; }
.lp-video-modal.lp-video-modal-open { display: flex; }
.lp-video-player { max-width: 100%; max-height: 86vh; border-radius: var(--r); background: #000; }
.lp-video-close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.12); border: none; color: #fff; font-size: 20px; cursor: pointer; }
.lp-video-unmute { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--ink); border: none; padding: 9px 18px; border-radius: var(--r-pill); cursor: pointer; font-size: 13px; font-weight: 700; display: none; }
.lp-video-unmute-show { display: inline-flex; }

/* ════════════ STICKY MOBILE CTA ════════════ */
.lp-sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: rgba(8,9,12,.92); backdrop-filter: blur(14px); border-top: 1px solid var(--line); padding: 11px 16px calc(11px + env(safe-area-inset-bottom)); display: flex; gap: 12px; align-items: center; justify-content: space-between; transform: translateY(130%); transition: transform .28s var(--ease); }
.lp-sticky-cta.lp-revealed { transform: none; }
.lp-sticky-cta .lp-cta-primary, .lp-sticky-cta .lp-final-cta-btn { flex: 1; }
.lp-sticky-info { display: flex; flex-direction: column; line-height: 1.12; flex-shrink: 0; }
.lp-sticky-from { font-size: 11px; color: var(--text-2, #8b909c); }
.lp-sticky-price { font-size: 17px; font-weight: 800; color: var(--text, #fff); white-space: nowrap; }
.lp-sticky-price small { font-size: 11px; font-weight: 500; opacity: .7; }

/* ════════════ MINI PRICE TEASER (early funnel) ════════════ */
.lp-miniprice-section { padding-top: 6px; padding-bottom: 6px; }
.lp-miniprice { display: flex; flex-direction: column; gap: 16px; background: var(--surface-1, rgba(255,255,255,.03)); border: 1px solid var(--line); border-radius: var(--r-lg, 20px); padding: 22px; text-align: center; }
.lp-miniprice-badge { display: inline-block; font-size: 12px; font-weight: 700; color: var(--accent, #c2f74a); margin-bottom: 8px; }
.lp-miniprice-amt { display: flex; align-items: baseline; justify-content: center; gap: 8px; flex-wrap: wrap; }
.lp-miniprice-amt s { font-size: 17px; opacity: .5; font-weight: 500; }
.lp-miniprice-amt b { font-size: 32px; font-weight: 800; color: var(--text, #fff); line-height: 1; }
.lp-miniprice-amt span { font-size: 14px; opacity: .7; }
.lp-miniprice-note { font-size: 12.5px; color: var(--text-2, #8b909c); margin-top: 8px; }
.lp-miniprice-cta { display: flex; flex-direction: column; gap: 9px; align-items: center; }
.lp-miniprice-cta .lp-cta-primary { width: 100%; }
.lp-miniprice-all { font-size: 13px; color: var(--text-2, #8b909c); text-decoration: underline; }
@media (min-width: 680px) {
  .lp-miniprice { flex-direction: row; align-items: center; justify-content: space-between; text-align: left; padding: 24px 30px; }
  .lp-miniprice-amt { justify-content: flex-start; }
  .lp-miniprice-cta { flex-shrink: 0; min-width: 236px; }
}

/* ════════════ IN-MODAL TIER SWITCH ════════════ */
.lp-modal-switch { display: flex; gap: 5px; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 12px; padding: 4px; margin-bottom: 12px; }
.lp-modal-switch-btn { flex: 1; padding: 9px 4px; border: 0; background: transparent; color: var(--text-2, #8b909c); font-size: 13px; font-weight: 700; border-radius: 9px; cursor: pointer; transition: background .16s var(--ease), color .16s var(--ease); }
.lp-modal-switch-btn:hover { color: var(--text, #fff); }
.lp-modal-switch-btn.active { background: var(--accent, #c2f74a); color: #0a0a0a; }
.lp-modal-permo { font-size: 12.5px; color: var(--text-2, #8b909c); margin: -4px 0 10px; text-align: right; }
.lp-modal-permo b { color: var(--text, #fff); font-weight: 700; }

/* ════════════════════════ RESPONSIVE ════════════════════════ */
@media (min-width: 680px) {
  .lp-container { padding: 0 28px; }
  .lp-stats-grid { grid-template-columns: repeat(4, 1fr); }
  .lp-problems, .lp-features { grid-template-columns: repeat(2, 1fr); }
  /* tablet+: keep the swipe carousel, ~2 cards visible */
  .lp-metode-card { flex: 0 0 46%; scroll-snap-align: start; }
  .lp-steps-4 { grid-template-columns: repeat(2, 1fr); }
  .lp-steps-3 { grid-template-columns: repeat(3, 1fr); }
  .lp-mkt-steps { grid-template-columns: repeat(2, 1fr); }
  .lp-mkt-examples { grid-template-columns: repeat(4, 1fr); }
  .lp-showcase { grid-template-columns: repeat(3, 1fr); }
  .lp-testi-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-modal { align-items: center; padding: 20px; }
  .lp-modal-card { border-radius: var(--r-lg); }
  .lp-footer-inner { flex-direction: row; justify-content: space-between; align-items: center; flex-wrap: wrap; }
}
@media (min-width: 1000px) {
  .lp-section { padding: 96px 0; }
  .lp-nav { display: flex; }
  .lp-hero { padding: 72px 0 10px; }
  .lp-steps-4 { grid-template-columns: repeat(4, 1fr); }
  /* desktop: swipe carousel, 3 cards visible at a time (slide for the rest) */
  .lp-metode-card { flex: 0 0 31%; }
  .lp-showcase { grid-template-columns: repeat(4, 1fr); }
  .lp-sticky-cta { display: none; }
}

/* ════════════ PROMO / COUNTDOWN BAR ════════════ */
.lp-promo { background: linear-gradient(90deg, rgba(194,247,74,.14), rgba(132,224,192,.10)); border-bottom: 1px solid var(--line); }
.lp-promo-inner { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 9px 20px; flex-wrap: wrap; }
.lp-promo-text { font-size: 13px; color: var(--text); }
.lp-promo-text strong { color: var(--accent); }
.lp-promo-time { font-family: var(--font-display); font-weight: 800; color: var(--accent); letter-spacing: .02em; font-variant-numeric: tabular-nums; }
.lp-promo-cta { font-size: 13px; font-weight: 700; color: var(--ink); background: var(--accent); padding: 5px 13px; border-radius: var(--r-pill); text-decoration: none; white-space: nowrap; }
.lp-promo-cta:hover { filter: brightness(1.08); }
@media (max-width: 560px) { .lp-promo-cta { display: none; } .lp-promo-inner { padding: 8px 16px; } }

/* ════════════ TRUST BAR ════════════ */
.lp-trustbar { border-bottom: 1px solid var(--line); background: var(--bg); }
.lp-trustbar-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 18px; padding: 22px 20px; }
.lp-trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-2); }
.lp-trust-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.lp-trust-item b { color: var(--text); font-weight: 600; }
@media (min-width: 760px) { .lp-trustbar-inner { grid-template-columns: repeat(4, 1fr); justify-items: center; } }

/* ════════════ CENTERED LAYOUT (match reference) — robust ════════════ */
.lp-hero .lp-container { text-align: center; }
.lp-hero-cta { justify-content: center; }
/* center ALL section text (intros) by default */
.lp-section > .lp-container { text-align: center; }
.lp-section > .lp-container > .lp-h2-sub,
.lp-section > .lp-container > .lp-section-sub { margin-left: auto; margin-right: auto; }
/* …then force card / data components back to LEFT-aligned content */
.lp-metode-card, .lp-problem, .lp-step, .lp-feature-card, .lp-mkt-step,
.lp-testi-card, .lp-faq-item, .lp-price-card, .lp-mkt-library, .lp-pricing-notice,
.lp-table, .lp-modal-card, .lp-price-features, .lp-metode-list { text-align: left; }
/* price header (the Rp value) stays centered */
.lp-price-card .lp-price-header { text-align: center; }


/* ════════════ MODEL MARQUEE ════════════ */
.lp-models-strip { padding: 24px 0; border-bottom: 1px solid var(--line); background: linear-gradient(90deg, rgba(194,247,74,.04), transparent 30%, transparent 70%, rgba(132,224,192,.04)); overflow: hidden; }
.lp-models-label { text-align: center; font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin: 0 0 16px; }
.lp-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.lp-marquee-track { display: inline-flex; gap: 12px; white-space: nowrap; animation: lp-scroll 34s linear infinite; }
.lp-marquee:hover .lp-marquee-track { animation-play-state: paused; }
@keyframes lp-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.lp-mchip { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--text); background: var(--surface); border: 1px solid var(--line-2); padding: 10px 18px; border-radius: var(--r-pill); flex-shrink: 0; }
.lp-mdot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* ════════════ HERO STUDIO MOCKUP ════════════ */
.lp-mockup { margin-top: 34px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-2); background: var(--surface); box-shadow: var(--shadow-lg), var(--glow); animation: lp-rise .8s var(--ease) .42s both; text-align: left; }
.lp-mock-bar { display: flex; align-items: center; gap: 12px; padding: 11px 16px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.lp-mock-dots { display: inline-flex; gap: 6px; flex-shrink: 0; }
.lp-mock-dots i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.lp-mock-dots i:nth-child(1){ background:#ff5f57 } .lp-mock-dots i:nth-child(2){ background:#febc2e } .lp-mock-dots i:nth-child(3){ background:#28c840 }
.lp-mock-url { flex: 1; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12.5px; color: var(--text-2); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 6px 14px; text-align: center; max-width: 300px; margin: 0 auto; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-mock-live { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text-2); white-space: nowrap; flex-shrink: 0; }
.lp-mock-livedot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(194,247,74,.2); animation: lp-pulse 2s infinite; }
.lp-mock-body { display: flex; min-height: 340px; }
.lp-mock-side { width: 178px; flex-shrink: 0; border-right: 1px solid var(--line); padding: 16px 12px; display: flex; flex-direction: column; gap: 3px; }
.lp-mock-slabel { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); margin-bottom: 6px; padding: 0 8px; }
.lp-mock-nav { font-size: 12.5px; color: var(--text-2); padding: 8px 11px; border-radius: 9px; white-space: nowrap; }
.lp-mock-nav.on { background: var(--accent-soft); color: var(--accent); font-weight: 600; }
.lp-mock-main { flex: 1; padding: 18px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.lp-mock-prompt { display: flex; align-items: center; gap: 8px; background: var(--surface-2); border: 1px solid var(--line-2); border-radius: 12px; padding: 12px 13px; }
.lp-mock-typed { font-size: 14px; color: var(--text); white-space: nowrap; overflow: hidden; max-width: 100%; }
.lp-mock-caret { width: 2px; height: 16px; background: var(--accent); flex-shrink: 0; animation: lp-blink 1s step-end infinite; margin-right: auto; }
@keyframes lp-blink { 50% { opacity: 0; } }
.lp-mock-gen { flex-shrink: 0; background: var(--accent); color: var(--ink); font-weight: 700; font-size: 13px; padding: 9px 16px; border-radius: var(--r-pill); }
.lp-mock-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.lp-mock-chips span { font-size: 12px; color: var(--text-2); background: var(--surface-2); border: 1px solid var(--line); padding: 6px 12px; border-radius: var(--r-pill); }
.lp-mock-chips span.on { background: var(--accent-soft); color: var(--accent); border-color: rgba(194,247,74,.3); font-weight: 600; }
.lp-mock-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; flex: 1; }
/* real generated-video demo inside the app mockup (replaces the fake render tiles) */
.lp-mock-video { position: relative; flex: 1; min-height: 200px; border-radius: 12px; overflow: hidden; background: #000; border: 1px solid var(--line); }
.lp-mock-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-mock-vtag { position: absolute; left: 10px; bottom: 10px; z-index: 2; font-size: 11px; font-weight: 600; color: #fff; background: rgba(0,0,0,.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); padding: 5px 10px; border-radius: 8px; border: 1px solid rgba(255,255,255,.14); }
.lp-mock-tile { position: relative; border-radius: 12px; overflow: hidden; min-height: 116px; display: flex; align-items: flex-end; padding: 10px; background-size: 200% 200%; animation: lp-pan 8s ease infinite; }
.lp-mock-tile.g1 { background-image: linear-gradient(135deg,#7b5cff,#c45cff,#5cc8ff); }
.lp-mock-tile.g2 { background-image: linear-gradient(135deg,#ff7a59,#ffb347,#ff5fa2); }
.lp-mock-tile.g3 { background-image: linear-gradient(135deg,#15d6c0,#1aa9d1,#3b5bff); }
.lp-mock-tile.g4 { background-image: linear-gradient(135deg,#5a6bff,#8b5cff,#c25cff); }
@keyframes lp-pan { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
.lp-mock-tile::before { content:""; position:absolute; inset:0; background:linear-gradient(110deg,transparent 25%,rgba(255,255,255,.14) 50%,transparent 75%); transform:translateX(-120%); animation:lp-shim 2.8s infinite; }
@keyframes lp-shim { to { transform: translateX(120%); } }
.lp-mock-mtag { position: relative; z-index: 2; font-size: 11px; font-weight: 600; color: #fff; background: rgba(0,0,0,.5); padding: 4px 9px; border-radius: 7px; }
/* rendering label sits ABOVE the progress bar (was full-inset-centered → overlapped the bar) */
.lp-mock-pct { position: absolute; left: 12px; bottom: 48px; z-index: 2; font-size: 12px; font-weight: 700; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.65); }
.lp-mock-prog { position: absolute; left: 12px; right: 12px; bottom: 40px; height: 4px; background: rgba(0,0,0,.4); border-radius: 3px; z-index: 2; overflow: hidden; }
.lp-mock-progbar { display: block; height: 100%; width: 30%; background: #fff; border-radius: 3px; animation: lp-prog 3.4s ease-in-out infinite; }
.lp-mock-progbar.r2 { animation-duration: 4.6s; }
@keyframes lp-prog { 0%{width:12%} 75%{width:86%} 100%{width:94%} }
.lp-mock-rendering { filter: saturate(.85) brightness(.8); }
@media (max-width: 620px) {
  .lp-mock-side { display: none; }
  .lp-mock-live { display: none; }
  .lp-mock-body { min-height: 300px; }
  .lp-mock-tile { min-height: 108px; }
  /* header: keep brand on one line, shrink CTAs so they don't squeeze it */
  .lp-header-inner { gap: 8px; }
  .lp-brand { font-size: 15px; gap: 7px; }
  .lp-brand-text { white-space: nowrap; }
  .lp-brand-ico { width: 28px; height: 28px; }
  .lp-header-cta { gap: 6px; }
  .lp-header-cta .lp-cta-sm { padding: 8px 12px; font-size: 12px; }
}

.lp-grid-3 { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 760px) { .lp-grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* ════════════ MARKETING STUDIO (2-col spotlight) ════════════ */
.lp-mkt-split { display: grid; grid-template-columns: 1fr; gap: 36px; text-align: left; align-items: center; }
.lp-mkt-left { text-align: left; }
.lp-mkt-left > .lp-badge { margin-bottom: 10px; }
.lp-mkt-left .lp-h2 { text-align: left; margin-top: 0; }
.lp-mkt-lead { color: var(--text-2); font-size: 16px; line-height: 1.6; margin: 0; }
.lp-mkt-flow { list-style: none; padding: 0; margin: 26px 0 26px; display: flex; flex-direction: column; gap: 20px; }
.lp-mkt-flow li { display: flex; gap: 15px; position: relative; }
.lp-mkt-flow li:not(:last-child)::before { content: ""; position: absolute; left: 17px; top: 38px; bottom: -20px; width: 2px; background: var(--line-2); }
.lp-mkt-fnum { position: relative; z-index: 1; flex-shrink: 0; width: 36px; height: 36px; border-radius: 11px; background: var(--accent); color: var(--ink); font-family: var(--font-display); font-weight: 800; font-size: 16px; display: inline-flex; align-items: center; justify-content: center; }
.lp-mkt-flow b { font-family: var(--font-display); font-size: 16px; letter-spacing: -.01em; color: var(--text); }
.lp-mkt-flow p { color: var(--text-2); font-size: 14px; line-height: 1.55; margin: 4px 0 0; }
.lp-mkt-vids { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.lp-mkt-vids .lp-showcase-item { aspect-ratio: 9/16; }
.lp-mkt-library { margin-top: 36px; }
@media (min-width: 900px) {
  .lp-mkt-split { grid-template-columns: 1.05fr 0.95fr; gap: 50px; }
  .lp-mkt-vids { gap: 14px; }
}

/* ════════════ BUY DISCLAIMER ════════════ */
.lp-buy-disclaimer { margin: 12px 0 0; font-size: 12px; line-height: 1.5; color: var(--text-3); text-align: center; }
.lp-buy-disclaimer a { color: var(--text-2); text-decoration: underline; text-underline-offset: 2px; }
.lp-buy-disclaimer a:hover { color: var(--accent); }

/* ════════════ SEAMLESS BACKGROUND (no section seams) ════════════ */
.lp-section-light { background: transparent !important; border-top: 0 !important; border-bottom: 0 !important; }
.lp-stats { background: transparent !important; border-top: 0 !important; border-bottom: 0 !important; }
.lp-trustbar { background: transparent !important; border-bottom: 0 !important; }
.lp-models-strip { background: transparent !important; border-bottom: 0 !important; }
/* subtle continuous vertical depth so the flat bg isn't dead — seamless, no bands */
body.lp-body::before {
  background:
    radial-gradient(70% 40% at 75% 0%, rgba(194,247,74,.09), transparent 60%),
    radial-gradient(60% 35% at 0% 6%, rgba(132,224,192,.07), transparent 60%),
    linear-gradient(180deg, #0a0b0f 0%, #08090c 40%, #090a0e 100%) !important;
}

/* ════════════ SPACING CONSISTENCY ════════════ */
.lp-metode-card, .lp-feature-card, .lp-problem, .lp-step, .lp-mkt-step, .lp-testi-card { padding: 24px 22px; }
.lp-metode-grid, .lp-problems, .lp-features, .lp-steps, .lp-testi-grid { gap: 16px; }

/* ════════════ COUPON / PRICING DISCOUNT ════════════ */
.lp-price-badges { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; white-space: nowrap; z-index: 2; }
.lp-price-badges .lp-price-badge { position: static; top: auto; left: auto; transform: none; }
.lp-price-badge-coupon { background: linear-gradient(135deg, var(--warm), #ff8a4c); color: #2a1700; }
.lp-price-strike { color: var(--text-3); font-size: 17px; text-decoration: line-through; text-align: center; opacity: .6; margin-bottom: 2px; font-weight: 600; }
.lp-coupon-line { margin: 14px auto 0; max-width: 400px; text-align: center; font-size: 12.5px; color: var(--accent); background: var(--accent-soft); border: 1px solid rgba(194,247,74,.25); border-radius: var(--r); padding: 9px 12px; }
.lp-coupon-line b, .lp-modal-coupon b { letter-spacing: .04em; }
.lp-price-tagline s { opacity: .55; }
.lp-modal-coupon { background: var(--accent-soft); border: 1px solid rgba(194,247,74,.28); color: var(--accent); border-radius: var(--r); padding: 10px 14px; font-size: 13px; margin-bottom: 16px; text-align: center; }
.lp-price-countdown { text-align: center; font-size: 13.5px; color: var(--text-2); margin: 4px 0 20px; }
.lp-price-countdown strong { color: var(--warm); }
.lp-price-countdown .lp-countdown { font-family: "JetBrains Mono", ui-monospace, monospace; font-weight: 700; color: var(--accent); letter-spacing: .02em; }

/* ════════════ PRICING CARD POLISH ════════════ */
.lp-price-card.lp-price-single { padding: 38px 28px 28px; }
.lp-price-badges { top: -15px; gap: 8px; }
.lp-price-header { margin-bottom: 26px; }
.lp-price-strike { font-size: 16px; margin-bottom: 1px; opacity: .5; }
.lp-price-value { line-height: .95; }
.lp-price-tagline { margin-top: 11px; font-size: 13px; }
.lp-price-tagline b { color: var(--text); font-weight: 700; }
.lp-coupon-line { margin: 16px auto 0; max-width: 330px; font-size: 12px; padding: 8px 12px; }

/* ════════════ PRICING CARD — CLEANER v2 ════════════ */
.lp-price-card.lp-price-single { padding: 30px 26px 26px; }
/* badges in-flow at top (no more floating-on-border) */
.lp-price-badges { position: static; transform: none; top: auto; left: auto; display: flex; gap: 8px; justify-content: center; margin: 0 0 20px; }
.lp-price-header { margin-bottom: 16px; }
.lp-price-strike { font-size: 15px; margin-bottom: 0; }
/* coupon: subtle one-liner, no heavy box */
.lp-coupon-line { background: transparent; border: none; padding: 0; margin: 12px auto 0; max-width: none; color: var(--text-3); font-size: 12px; }
.lp-coupon-line b { color: var(--accent); }
/* divider before features for clean structure */
.lp-price-features { border-top: 1px solid var(--line); padding-top: 22px; margin-top: 22px; }

/* ════════════ PROMO BAR: centered + frozen on mobile + table hint ════════════ */
.lp-promo-text { text-align: center; }
.lp-table-hint { display: none; }
@media (max-width: 620px) {
  /* Only the coupon bar stays pinned at the top on mobile (the bottom sticky CTA already covers the
     always-visible action). Solid/opaque background so page content never shows through it. */
  .lp-promo { position: sticky; top: 0; z-index: 60;
    background: linear-gradient(90deg, rgba(194,247,74,.16), rgba(132,224,192,.12)), #0b0e14; }
  /* main nav header is NOT sticky on mobile — it scrolls away with the page. */
  .lp-header { position: static; top: auto; }
  .lp-table-hint { display: block; text-align: center; font-size: 12px; color: var(--text-3); margin: 0 0 10px; }
}
