/* =============================================
   CapCut Pro — Mieru Creative Market
   Vanilla CSS — Dark Cinematic + Gold Hemat
   No Tailwind, no framework, <20KB
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@600&display=swap');

:root {
  --bg: #0a0a0b;
  --bg-soft: #111113;
  --bg-elevated: #1a1a1e;
  --accent: #00d4a4;
  --accent-hover: #00b88e;
  --accent-soft: rgba(0,212,164,0.1);
  --gold: #f59e0b;
  --gold-soft: #fef3c7;
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --border: #27272a;
  --border-light: #3f3f46;
  --success: #22c55e;
  --shadow: 0 8px 32px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.25);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-accent: 0 4px 16px rgba(0,212,164,0.28);
  --shadow-gold: 0 8px 32px rgba(245,158,11,0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 64px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
@media(min-width:768px){ .container{ padding:0 24px; } }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(10,10,11,0.82); backdrop-filter: blur(16px) saturate(1.15); -webkit-backdrop-filter: blur(16px) saturate(1.15); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 20px; }
@media(max-width:767px){ .header-inner{ height: 56px; gap: 12px; } }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img{ height: 34px; width: auto; display: block; }
@media(max-width:480px){ .logo img{ height: 30px; } }
.header-cta{ font-size:13px !important; font-weight:700 !important; padding:8px 16px !important; min-height:38px !important; border-radius:var(--radius-full) !important; display:inline-flex; align-items:center; gap:7px; }
.header-cta img{ width: 17px !important; height: 17px !important; }

.nav { display: none; align-items: center; gap: 28px; font-size: 13.5px; font-weight: 500; letter-spacing: -0.01em; }
.nav a{ color: var(--text-muted); padding: 4px 0; position: relative; transition: color 0.2s; }
.nav a:hover{ color: var(--text); }
.nav a::after{ content:''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--accent); transform: scaleX(0); transition: transform 0.25s var(--ease-expo); transform-origin: left; }
.nav a:hover::after{ transform: scaleX(1); }
@media(min-width:768px){ .nav{ display: flex; } }
/* -- Button system — Mieru (WA green = primary, ghost = secondary) -- */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:9px; font-weight:700; font-size:14px; letter-spacing:-0.01em; border-radius:var(--radius-full); padding:13px 24px; min-height:46px; cursor:pointer; border:1px solid transparent; transition: transform 0.28s var(--ease-expo), box-shadow 0.28s var(--ease-expo), background 0.22s, border-color 0.22s, color 0.22s; white-space:nowrap; }
.btn:active{ transform: translateY(0) scale(0.98); }
.btn:focus-visible{ outline:2px solid var(--accent); outline-offset:2px; }
.btn-primary{ background:#25D366; color:#fff; box-shadow:0 6px 20px rgba(37,211,102,0.32), 0 1px 0 rgba(255,255,255,0.14) inset; position:relative; overflow:hidden; }
.btn-primary::after{ content:""; position:absolute; inset:0; background:linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent); transform:translateX(-100%); transition: transform 0.6s var(--ease-expo); }
.btn-primary:hover::after{ transform:translateX(100%); }
.btn-primary:hover{ background:#1fb954; transform:translateY(-2px); box-shadow:0 10px 28px rgba(37,211,102,0.42), 0 1px 0 rgba(255,255,255,0.16) inset; }
.btn-wa{ background:#25D366 !important; color:#fff !important; box-shadow:0 6px 20px rgba(37,211,102,0.32), 0 1px 0 rgba(255,255,255,0.14) inset !important; border-radius:var(--radius-full) !important; font-weight:700 !important; }
.btn-checkout:hover, .btn-wa:hover{ background:#1fb954 !important; transform:translateY(-2px); box-shadow:0 10px 28px rgba(37,211,102,0.42) !important; }
.btn-checkout{ background:#25D366; color:#fff; box-shadow:0 6px 20px rgba(37,211,102,0.32); }
.btn-checkout:hover{ background:#1fb954; transform:translateY(-2px); box-shadow:0 10px 28px rgba(37,211,102,0.42); }
.btn-wa img{ width:18px; height:18px; object-fit:contain; }
.btn-ghost{ background:rgba(255,255,255,0.06); color:var(--text); border-color:var(--border-light); backdrop-filter: blur(8px); }
.btn-ghost:hover{ background:rgba(255,255,255,0.10); border-color:var(--text-dim); color:#fff; transform:translateY(-1px); box-shadow:0 6px 18px rgba(0,0,0,0.22); }
.btn-sm{ padding:10px 18px; font-size:13px; min-height:42px; }
.btn-lg{ padding:15px 28px; font-size:15px; min-height:50px; }
@media(max-width:480px){ .btn{ padding:12px 18px; font-size:13.5px; min-height:44px; } .btn-lg{ padding:14px 22px; } }

/* Hero */
.hero { padding: 40px 0 48px; position: relative; overflow: hidden; }
.hero::before { content:''; position:absolute; inset:0; background: radial-gradient(600px 300px at 70% 0%, rgba(0,212,164,0.08), transparent 70%), radial-gradient(500px 400px at 0% 100%, rgba(245,158,11,0.06), transparent 60%); pointer-events:none; }
.hero-grid { display: grid; gap: 36px; position: relative; }
@media(min-width:900px){ .hero-grid{ grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 48px; } .hero{ padding: 64px 0 72px; } }
.eyebrow { display:inline-flex; align-items:center; gap:8px; font-size:12px; font-weight:600; letter-spacing:0.04em; text-transform:uppercase; color: var(--accent); background: var(--accent-soft); border: 1px solid rgba(0,212,164,0.2); padding: 6px 14px; border-radius: var(--radius-full); font-family: 'JetBrains Mono', monospace; }
.dot { width:7px; height:7px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ transform:scale(1); opacity:1;} 50%{ transform:scale(1.25); opacity:0.7; } }
.hero h1 { font-family: 'Space Grotesk', sans-serif; font-weight:700; font-size: clamp(32px,5vw,52px); line-height:1.05; letter-spacing:-0.03em; margin:16px 0 14px; }
.hero h1 span { color: var(--accent); }
.hero-sub { color: var(--text-muted); font-size: clamp(15px,2vw,17px); line-height:1.6; max-width: 52ch; }
.price-row { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin:20px 0 8px; }
.price-slash { color: var(--text-dim); text-decoration: line-through; font-size: 15px; }
.price-now { font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:28px; color: var(--text); }
.badge { display:inline-flex; align-items:center; font-family:'JetBrains Mono',monospace; font-size:11px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; background: var(--gold); color: var(--bg); padding:5px 12px; border-radius: var(--radius-full); }
.hero-cta { display:flex; flex-wrap:wrap; gap:12px; margin:20px 0 16px; }
.hero-cta .btn { flex: 1 1 160px; }
@media(min-width:480px){ .hero-cta .btn{ flex:0 1 auto; } }
.trust-row { display:flex; align-items:center; gap:12px; flex-wrap:wrap; font-size:13px; color: var(--text-muted); }
.trust-row strong { color: var(--text); }
.stars { color: var(--gold); letter-spacing: 1px; }
.hero-visual { position: relative; }
.hero-img { border-radius: var(--radius-xl); overflow: hidden; border:1px solid var(--border); box-shadow: var(--shadow); background: var(--bg-soft); }
.hero-img img { width:100%; height:auto; }
.hero-glow { position:absolute; inset:auto -20% -20% -20%; height: 60%; background: radial-gradient(ellipse at center, rgba(0,212,164,0.15), transparent 70%); pointer-events:none; filter: blur(20px); }


.hero-pain{ font-size:12.5px; font-weight:600; color:var(--gold); letter-spacing:0.02em; margin-bottom:6px; }
.hero-benefits{ display:flex; flex-wrap:wrap; gap:8px 16px; margin:14px 0 4px; list-style:none; padding:0; }
.hero-benefits li{ display:flex; align-items:center; gap:6px; font-size:13px; font-weight:600; color:var(--text); background:var(--bg-soft); border:1px solid var(--border); border-radius:999px; padding:6px 12px; }
.hb-check{ width:16px; height:16px; border-radius:50%; background:var(--success); color:#fff; display:flex; align-items:center; justify-content:center; font-size:10px; font-weight:700; flex-shrink:0; }
.price-note{ font-size:11px; font-weight:600; color:var(--success); background:rgba(34,197,94,0.1); border:1px solid rgba(34,197,94,0.18); padding:4px 10px; border-radius:999px; }
.btn-wa-ghost{ display:inline-flex; align-items:center; gap:8px; font-size:13.5px; font-weight:600; color:var(--text); background:transparent; border:1.5px solid var(--border-light); border-radius:999px; padding:12px 20px; min-height:46px; transition:all 0.25s var(--ease-expo); }
.btn-wa-ghost:hover{ background:var(--bg-soft); border-color:#25D366; color:#25D366; transform:translateY(-1px); box-shadow:0 4px 16px rgba(37,211,102,0.14); }
.btn-wa-ghost img{ width:16px; height:16px; object-fit:contain; }

.pricing-stack{ background:var(--bg); border:1px solid var(--border); border-radius:12px; padding:14px 16px; margin:14px 0 2px; display:grid; gap:8px; }
.stack-row{ display:flex; justify-content:space-between; align-items:center; font-size:13px; color:var(--text-muted); }
.stack-row.highlight{ background:rgba(0,212,164,0.06); border:1px solid rgba(0,212,164,0.14); border-radius:8px; padding:8px 10px; margin:2px 0; color:var(--text); font-weight:600; }
.stk-slash{ text-decoration:line-through; color:var(--text-dim); }
.stk-disc{ color:var(--success); font-weight:600; }
.stk-code{ color:var(--accent); }
.stk-code strong{ color:var(--text); }
.stack-note{ font-size:11.5px; color:var(--text-dim); text-align:center; border-top:1px dashed var(--border); padding-top:8px; margin-top:2px; }

.pricing-trust{ display:flex; flex-wrap:wrap; justify-content:center; gap:8px 14px; margin:14px 0 0; font-size:12px; color:var(--text-muted); }
.pricing-trust li{ display:flex; align-items:center; gap:6px; }


.promo-urgency{ background:linear-gradient(135deg, rgba(245,158,11,0.10), rgba(245,158,11,0.04)); border:1px solid rgba(245,158,11,0.22); border-radius:14px; padding:14px 16px; display:grid; gap:10px; }
.urgency-head{ font-size:12.5px; font-weight:700; color:var(--gold); display:flex; align-items:center; gap:8px; }
.urgency-dot{ width:8px; height:8px; border-radius:50%; background:var(--gold); box-shadow:0 0 0 6px rgba(245,158,11,0.15); animation:pulse 2s infinite; }
.countdown{ font-family:"JetBrains Mono",monospace; font-weight:700; letter-spacing:0.03em; color:var(--text); background:var(--bg); border:1px solid var(--border); padding:2px 8px; border-radius:6px; font-size:12px; }
.slot-bar{ height:8px; background:var(--bg-elevated); border:1px solid var(--border); border-radius:999px; overflow:hidden; }
.slot-fill{ height:100%; background:linear-gradient(90deg, var(--gold), #fbbf24); border-radius:999px; transition:width 0.6s var(--ease-expo); }
.slot-text{ font-size:11.5px; color:var(--text-muted); display:flex; align-items:center; gap:6px; flex-wrap:wrap; }
.slot-code{ font-family:"JetBrains Mono",monospace; font-weight:700; background:var(--bg); border:1px solid var(--border); padding:2px 8px; border-radius:6px; color:var(--text); }
.copy-code{ font-size:11px; font-weight:600; background:var(--bg-soft); border:1px solid var(--border); border-radius:6px; padding:4px 10px; cursor:pointer; color:var(--text-muted); transition:all 0.2s; }
.copy-code:hover{ border-color:var(--accent); color:var(--accent); }

/* Trust bar */
.trust-bar { border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:18px 0; background: var(--bg-soft); }
.trust-bar-inner { display:flex; align-items:center; justify-content:center; gap:8px; flex-wrap:wrap; font-size:13px; color: var(--text-dim); text-align:center; }
.trust-bar strong { color: var(--text-muted); font-weight:600; }

/* Sections */
.section { padding: 48px 0; }
@media(min-width:768px){ .section{ padding:72px 0; } }
.section-head { text-align:center; max-width:640px; margin:0 auto 36px; }
.section-head h2 { font-family:'Space Grotesk',sans-serif; font-weight:700; font-size: clamp(24px,3vw,32px); letter-spacing:-0.02em; line-height:1.2; }
.section-head p { color: var(--text-muted); margin-top:10px; font-size:15px; }
.kicker { font-family:'JetBrains Mono',monospace; font-size:11px; letter-spacing:0.08em; text-transform:uppercase; color: var(--accent); margin-bottom:8px; }

/* Problem vs Solution */
.compare-grid { display:grid; gap:16px; }
@media(min-width:700px){ .compare-grid{ grid-template-columns:1fr 1fr; gap:20px; } }
.compare-card { background: var(--bg-soft); border:1px solid var(--border); border-radius: var(--radius-lg); padding:22px; }
.compare-card.pro { border-color: rgba(245,158,11,0.25); background: linear-gradient(135deg, var(--bg-soft), #1e1a0f); box-shadow: var(--shadow-gold); }
.compare-card h3 { font-family:'Space Grotesk',sans-serif; font-size:16px; font-weight:700; margin-bottom:14px; display:flex; align-items:center; gap:8px; }
.compare-card ul li { display:flex; gap:10px; font-size:14px; color: var(--text-muted); padding:7px 0; border-bottom:1px solid var(--border); }
.compare-card ul li:last-child{ border:none; }
.compare-card.pro ul li{ color: var(--text); }
.icon-x { color: #ef4444; } .icon-check { color: var(--success); }

/* Features */
.features-grid { display:grid; gap:16px; }
@media(min-width:640px){ .features-grid{ grid-template-columns:repeat(2,1fr); } }
@media(min-width:900px){ .features-grid{ grid-template-columns:repeat(3,1fr); gap:20px; } }
.feature-card { background: var(--bg-soft); border:1px solid var(--border); border-radius: var(--radius-lg); padding:20px; transition: transform 0.3s var(--ease-expo), box-shadow 0.3s var(--ease-expo); }
.feature-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); border-color: var(--border-light); }
.feat-icon { width:44px; height:44px; border-radius:10px; background: var(--accent-soft); border:1px solid rgba(0,212,164,0.15); display:flex; align-items:center; justify-content:center; color: var(--accent); margin-bottom:12px; }
.feature-card h3 { font-family:'Space Grotesk',sans-serif; font-size:15px; font-weight:700; margin-bottom:6px; }
.feature-card p { font-size:13px; color: var(--text-muted); line-height:1.5; }
.collapse { margin-top:20px; }
.collapse summary { cursor:pointer; font-size:14px; font-weight:600; color: var(--text-muted); display:flex; align-items:center; gap:8px; }
.collapse summary:hover { color: var(--text); }
.collapse[open] summary{ margin-bottom:12px; }
.feat-list { display:grid; gap:8px; }
@media(min-width:600px){ .feat-list{ grid-template-columns:1fr 1fr; } }
.feat-list li { font-size:13px; color: var(--text-muted); display:flex; gap:8px; }

/* Comparison table */
.table-wrap { overflow-x:auto; -webkit-overflow-scrolling:touch; border:1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-soft); }
table { width:100%; border-collapse:collapse; min-width:520px; }
th, td { padding:14px 16px; text-align:left; font-size:14px; border-bottom:1px solid var(--border); }
th { font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:13px; text-transform:uppercase; letter-spacing:0.04em; color: var(--text-muted); background: var(--bg-elevated); }
th.gold { color: var(--gold); }
td:last-child { background: rgba(245,158,11,0.06); font-weight:600; }
tr:last-child td{ border:none; }

/* How it works */
.steps { display:grid; gap:20px; position:relative; }
@media(min-width:700px){ .steps{ grid-template-columns:repeat(3,1fr); gap:24px; } .steps::before{ display:none !important; content:none !important; } .steps.steps-new::before,.steps-new::before{ display:none !important; content:none !important; } }
.step { text-align:center; position:relative; background: var(--bg); }
.step-num { width:56px; height:56px; border-radius:50%; background: var(--accent); color: var(--bg); display:flex; align-items:center; justify-content:center; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:18px; margin:0 auto 14px; border:4px solid var(--bg); position:relative; z-index:1; }
.step h3 { font-family:'Space Grotesk',sans-serif; font-size:15px; font-weight:700; margin-bottom:6px; }
.step p { font-size:13px; color: var(--text-muted); }

/* Cara Pakai — steps-new (no garis) */
.steps-new { display:flex; flex-direction:column; gap:14px; }
.step-new { display:flex; align-items:center; gap:16px; background: var(--bg-soft); border:1px solid var(--border); border-radius: var(--radius-lg); padding:18px 20px; transition: all 0.2s var(--ease-expo); }
.step-new:hover{ border-color: var(--border-light); transform: translateY(-1px); box-shadow: var(--shadow-card); }
.step-icon { width:44px; height:44px; min-width:44px; border-radius:50%; background: var(--bg-elevated); border:1px solid var(--border-light); color: var(--text); display:flex; align-items:center; justify-content:center; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:14px; flex-shrink:0; }
.step-icon-accent { background: var(--accent); color: var(--bg); border-color: var(--accent); box-shadow: 0 6px 18px rgba(0,212,164,0.35); }
.step-new h3 { font-family:'Space Grotesk',sans-serif; font-size:14.5px; font-weight:700; line-height:1.3; }
.step-new p { font-size:12.5px; color: var(--text-muted); margin-top:3px; line-height:1.5; }
.step-arrow { display:none; }
@media(min-width:768px){
  .steps-new{ display:grid; grid-template-columns: 1fr 40px 1fr 40px 1fr; gap:12px; align-items:stretch; }
  .step-new{ flex-direction:column; text-align:center; justify-content:flex-start; align-items:center; padding:26px 18px 20px; min-height:148px; gap:0; }
  .step-new .step-icon{ width:52px; height:52px; min-width:52px; font-size:15px; margin-bottom:14px; }
  .step-new h3{ font-size:15px; margin-bottom:6px; }
  .step-new p{ font-size:13px; }
  .step-arrow{ display:flex; align-items:center; justify-content:center; color: var(--text-dim); font-size:18px; font-weight:300; }
}

/* Persona chips */
.chips { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; }
@media(min-width:600px){ .chips{ grid-template-columns:repeat(3,1fr); } }
@media(min-width:900px){ .chips{ grid-template-columns:repeat(5,1fr); } }
.chip { background: var(--bg-elevated); border:1px solid var(--border); border-radius: var(--radius-full); padding:10px 14px; font-size:13px; font-weight:500; text-align:center; color: var(--text-muted); }

/* Testimonials */
.t-grid { display:grid; gap:16px; }
@media(min-width:700px){ .t-grid{ grid-template-columns:repeat(3,1fr); gap:20px; } }
.t-card { background: var(--bg-soft); border:1px solid var(--border); border-radius: var(--radius-lg); padding:20px; }
.t-head { display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.t-avatar { width:44px; height:44px; border-radius:50%; object-fit:cover; background: var(--bg-elevated); }
.t-name { font-weight:700; font-size:14px; }
.t-role { font-size:12px; color: var(--text-muted); }
.t-stars { color: var(--gold); font-size:12px; letter-spacing:1px; margin-bottom:8px; }
.t-quote { font-size:13px; color: var(--text-muted); line-height:1.6; }

/* Pricing */
.pricing-wrap { display:flex; justify-content:center; }
.pricing-card { background: linear-gradient(135deg, var(--bg-soft), #1e1a0f); border:1px solid rgba(245,158,11,0.22); border-radius: var(--radius-xl); padding:28px 24px; max-width:480px; width:100%; position:relative; box-shadow: var(--shadow-gold); text-align:center; }
.pricing-badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background: var(--gold); color: var(--bg); font-family:'JetBrains Mono',monospace; font-size:11px; font-weight:700; letter-spacing:0.06em; padding:5px 16px; border-radius: var(--radius-full); white-space:nowrap; }
.pricing-card h3 { font-family:'Space Grotesk',sans-serif; font-size:20px; font-weight:700; margin-bottom:4px; }
.pricing-sub { font-size:13px; color: var(--text-muted); margin-bottom:18px; }
.pricing-price { display:flex; align-items:baseline; justify-content:center; gap:10px; margin-bottom:18px; flex-wrap:wrap; }
.pricing-list { text-align:left; margin:0 auto 20px; max-width:320px; }
.pricing-list li { display:flex; gap:10px; font-size:14px; padding:8px 0; border-bottom:1px solid var(--border); }
.pricing-list li:last-child{ border:none; }
.pricing-foot { font-size:12px; color: var(--text-dim); margin-top:14px; }
.urgency { font-size:13px; color: var(--gold); font-weight:600; margin-top:12px; }

/* FAQ */
.faq-wrap { max-width:720px; margin:0 auto; display:grid; gap:12px; }
.faq-wrap details { background: var(--bg-soft); border:1px solid var(--border); border-radius: var(--radius-md); overflow:hidden; }
.faq-wrap summary { padding:16px 18px; font-weight:600; font-size:14px; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:12px; list-style:none; }
.faq-wrap summary::-webkit-details-marker{ display:none; }
.faq-wrap summary:hover{ background: var(--bg-elevated); }
.faq-wrap details[open] summary{ border-bottom:1px solid var(--border); }
.faq-answer { padding:14px 18px; font-size:13px; color: var(--text-muted); line-height:1.6; }
.chev { transition: transform 0.25s var(--ease-expo); flex-shrink:0; }
details[open] .chev{ transform: rotate(180deg); }

/* Final CTA */
.cta-final { background: var(--bg-soft); border-top:1px solid var(--border); border-bottom:1px solid var(--border); text-align:center; }
.cta-final h2 { font-family:'Space Grotesk',sans-serif; font-size: clamp(24px,3vw,32px); font-weight:700; letter-spacing:-0.02em; }
.cta-final p { color: var(--text-muted); margin:10px auto 22px; max-width:56ch; }
.cta-row { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* Footer — premium editorial luxe */
.footer{ background:var(--bg); border-top:1px solid var(--border); padding:48px 0 32px; position:relative; }
.footer::before{ content:""; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg, transparent 0%, var(--border) 18%, var(--border-light) 50%, var(--border) 82%, transparent 100%); }
.footer-inner{ display:flex; flex-direction:column; align-items:center; gap:20px; text-align:center; }
.footer-logo{ display:inline-flex; align-items:center; text-decoration:none; }
.footer-logo img{ height:28px; width:auto; filter:none; opacity:1; }
.footer-nav{ display:flex; flex-wrap:wrap; justify-content:center; gap:8px 24px; font-size:13px; font-weight:500; }
.footer-nav a{ color:var(--text-muted); padding:6px 2px; border-bottom:1px solid transparent; transition:color 0.2s, border-color 0.2s; }
.footer-nav a:hover{ color:var(--text); border-color:var(--accent); }
.footer-meta{ display:flex; flex-direction:column; align-items:center; gap:8px; width:100%; border-top:1px solid var(--border); padding-top:18px; margin-top:4px; }
.footer-copy{ font-size:12px; color:var(--text-dim); letter-spacing:0.02em; }
.footer-copy a{ color:var(--text-muted); border-bottom:1px solid transparent; transition:color 0.2s, border-color 0.2s; }
.footer-copy a:hover{ color:var(--text); border-color:var(--border-light); }
.footer-badges{ display:flex; align-items:center; gap:8px; flex-wrap:wrap; justify-content:center; font-size:11px; color:var(--text-dim); }
.footer-badges span{ display:inline-flex; align-items:center; gap:6px; background:var(--bg-soft); border:1px solid var(--border); border-radius:999px; padding:5px 10px; }
.disclaimer{ font-size:11px; color:var(--text-dim); opacity:0.8; line-height:1.65; max-width:560px; }
.back{ margin-top:28px; }
.callout .btn{ margin-top:4px; }
@media(min-width:768px){
  .footer{ padding:56px 0 36px; }
  .footer-inner{ gap:22px; }
  .footer-logo img{ height:30px; }
  .footer-nav{ gap:10px 28px; font-size:13.5px; }
  .footer-meta{ flex-direction:row; justify-content:space-between; text-align:left; gap:16px; }
  .disclaimer{ text-align:center; }
}
@media(max-width:767px){
  .disclaimer{ font-size:10.5px; }
  .footer-badges span{ font-size:10.5px; }
}

/* Sticky mobile */
.sticky-cta{ position:fixed; bottom:0; left:0; right:0; background:rgba(17,17,19,0.96); backdrop-filter:blur(14px) saturate(1.1); -webkit-backdrop-filter:blur(14px) saturate(1.1); border-top:1px solid var(--border); padding:12px 16px max(12px, env(safe-area-inset-bottom)); display:flex; align-items:center; justify-content:space-between; gap:12px; z-index:9999; box-shadow:0 -6px 28px rgba(0,0,0,0.36); }
.sticky-price { display:flex; align-items:baseline; gap:8px; }
.sticky-price .slash{ font-size:12px; color: var(--text-dim); text-decoration: line-through; }
.sticky-price .now{ font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:18px; }
@media(min-width:768px){ .sticky-cta{ display:none; } }
body.has-sticky{ padding-bottom:72px; }
@media(min-width:768px){ body.has-sticky{ padding-bottom:0; } }

/* Animations */
@keyframes fadeUp { from{ opacity:0; transform:translateY(16px);} to{ opacity:1; transform:translateY(0);} }
.fade-up { opacity:0; animation: fadeUp 0.6s var(--ease-expo) forwards; }
.d1{ animation-delay:0.08s;} .d2{ animation-delay:0.16s;} .d3{ animation-delay:0.24s;} .d4{ animation-delay:0.36s;} .d5{ animation-delay:0.48s;} .d6{ animation-delay:0.60s;}
.reveal { opacity:0; transform:translateY(14px); transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo); }
.reveal.in-view{ opacity:1; transform:none; }
@media(prefers-reduced-motion:reduce){ .fade-up,.reveal{ animation:none; opacity:1; transform:none; } .dot{ animation:none; } }

/* Helpers */
.muted{ color: var(--text-muted); }
