/*
Theme Name: DropCloner
Theme URI: https://dropcloner.com/
Author: DropCloner
Author URI: https://dropcloner.com/
Description: Production theme for DropCloner — from Allegro to your own WooCommerce shop in 48h. Crypto-only, no KYC, no FIAT. Ported 1:1 from the locked flow.html design (Linear + Stripe inspired). Pairs with dropcloner-lead-engine plugin for full functionality; works as a standalone landing without the plugin.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: Proprietary
License URI: https://dropcloner.com/license
Text Domain: dropcloner-theme
Tags: woocommerce, landing-page, crypto, one-column, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* =========================================================
   DESIGN TOKENS — Linear + Stripe inspired
   ========================================================= */
:root {
  --bg: #ffffff;
  --bg-elevated: #fafafa;
  --bg-subtle: #f6f8fa;
  --bg-soft: #f5f4ff;

  --border: #e3e8ee;
  --border-strong: #c1c9d2;
  --border-accent: #d6d3ff;

  --text: #0a0e27;
  --text-2: #525f7f;
  --text-3: #8792a2;
  --text-muted: #a3acb9;

  --accent: #635bff;
  --accent-hover: #5346e8;
  --accent-light: #f5f4ff;
  --accent-dark: #4f46e5;

  --success: #10b981;
  --success-bg: #ecfdf5;
  --warning: #f59e0b;
  --warning-bg: #fffbeb;
  --error: #ef4444;

  --shadow-xs: 0 1px 1px rgba(15,23,42,.04), 0 1px 2px rgba(15,23,42,.06);
  --shadow-sm: 0 1px 2px rgba(15,23,42,.05), 0 2px 4px rgba(15,23,42,.04);
  --shadow-md: 0 4px 8px -2px rgba(15,23,42,.08), 0 2px 4px -2px rgba(15,23,42,.04);
  --shadow-lg: 0 12px 24px -6px rgba(15,23,42,.10), 0 4px 8px -4px rgba(15,23,42,.06);
  --shadow-xl: 0 20px 40px -8px rgba(15,23,42,.14), 0 8px 16px -8px rgba(15,23,42,.08);
  --shadow-accent: 0 0 0 4px rgba(99,91,255,0.10);

  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 8px;
  --r-xl: 12px;
  --r-2xl: 16px;
  --r-3xl: 20px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: 'cv11', 'ss01';
  padding-top: 64px;
}

img { max-width: 100%; display: block; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000; height: 64px;
}
.nav-in {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.brand-mark {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 2px 4px rgba(99,91,255,0.3), 0 0 0 1px rgba(99,91,255,0.2);
  position: relative;
}
.brand-mark svg { width: 16px; height: 16px; }
.nav-links { display: flex; gap: 4px; flex: 1; }
.nav-link {
  color: var(--text-2); text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 6px 12px; border-radius: var(--r-md); transition: all 120ms;
}
.nav-link:hover { color: var(--text); background: var(--bg-subtle); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-login { color: var(--text-2); text-decoration: none; font-size: 14px; font-weight: 500; }
.nav-login:hover { color: var(--text); }
.nav-cta {
  background: var(--text); color: white;
  padding: 8px 14px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: all 120ms;
}
.nav-cta:hover { background: #1a1f36; transform: translateY(-1px); }

/* =========================================================
   COMMON
   ========================================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-md { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-loose { padding: 128px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  background: var(--accent-light); color: var(--accent);
  border: 1px solid var(--border-accent); border-radius: 99px;
  font-size: 12px; font-weight: 500;
  margin-bottom: 24px;
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

h1 {
  font-size: 64px; line-height: 1.05; letter-spacing: -0.035em; font-weight: 700;
  color: var(--text); margin-bottom: 24px;
}
h1 .gradient {
  background: linear-gradient(135deg, var(--accent) 0%, #a855f7 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
h2 {
  font-size: 44px; line-height: 1.1; letter-spacing: -0.03em; font-weight: 700;
  margin-bottom: 16px;
}
h3 { font-size: 22px; line-height: 1.25; letter-spacing: -0.015em; font-weight: 600; }
h4 { font-size: 17px; line-height: 1.35; font-weight: 600; }

.lede { font-size: 20px; line-height: 1.5; color: var(--text-2); }
.section-intro { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-intro h2 { margin-bottom: 16px; }
.section-intro .lede { font-size: 18px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: inherit; font-size: 15px; font-weight: 500; letter-spacing: -0.005em;
  padding: 11px 20px; border-radius: var(--r-lg); border: 1px solid transparent;
  cursor: pointer; transition: all 120ms ease; text-decoration: none; line-height: 1.4;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: white;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -1px 0 rgba(0,0,0,0.1);
}
.btn-primary:hover {
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -1px 0 rgba(0,0,0,0.1);
  transform: translateY(-1px);
}
.btn-secondary {
  background: white; color: var(--text); border-color: var(--border);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover { background: var(--bg-subtle); border-color: var(--border-strong); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: var(--bg-subtle); }
.btn-lg { padding: 14px 24px; font-size: 16px; border-radius: var(--r-lg); }
.btn-xl { padding: 16px 28px; font-size: 17px; border-radius: var(--r-xl); font-weight: 600; }
.btn-arrow { display: inline-block; transition: transform 120ms; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* =========================================================
   SECTION 1 — HERO
   ========================================================= */
.hero {
  padding: 80px 0 96px;
  background: radial-gradient(ellipse at top, rgba(99,91,255,0.06) 0%, transparent 50%), var(--bg);
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px;
  align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.hero h1 { font-size: 60px; margin-bottom: 20px; }
.hero .lede { margin-bottom: 32px; }

.hero-form {
  display: flex; gap: 8px; margin-bottom: 16px;
  background: white; padding: 6px;
  border: 2px solid var(--accent);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(99,91,255,0.10);
  max-width: 520px;
  position: relative;
  animation: heroFormPulse 2.4s ease-in-out infinite;
}
@keyframes heroFormPulse {
  0%, 100% { box-shadow: var(--shadow-md), 0 0 0 4px rgba(99,91,255,0.10); }
  50% { box-shadow: var(--shadow-lg), 0 0 0 8px rgba(99,91,255,0.18); }
}
.hero-form::before {
  content: '👇 Wklej URL Twojego profilu sprzedawcy Allegro';
  position: absolute;
  top: -36px; left: 16px;
  background: var(--text);
  color: white;
  padding: 5px 12px;
  border-radius: var(--r-md);
  font-size: 12px; font-weight: 600;
  white-space: nowrap;
  animation: hintBob 2s ease-in-out infinite;
}
.hero-form::after {
  content: '';
  position: absolute;
  top: -8px; left: 28px;
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--text);
}
@keyframes hintBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.hero-form input {
  flex: 1; border: none; outline: none;
  padding: 12px 14px; font-family: inherit; font-size: 15px;
  color: var(--text); background: transparent;
  font-weight: 500;
}
.hero-form input::placeholder {
  color: var(--text-3);
  animation: placeholderShift 5s ease-in-out infinite;
}
@keyframes placeholderShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-form .btn {
  flex-shrink: 0;
  position: relative;
}
.hero-form .btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), #a855f7, var(--accent));
  background-size: 200% 100%;
  z-index: -1;
  opacity: 0;
  animation: btnGlowShift 3s linear infinite;
  filter: blur(8px);
}
.hero-form:hover .btn::after, .hero-form:focus-within .btn::after {
  opacity: 0.6;
}
@keyframes btnGlowShift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* Hero form help — collapsible tutorial */
.hero-form-help {
  max-width: 520px;
  margin-bottom: 12px;
}
.hero-form-help-toggle {
  background: transparent;
  border: none;
  color: var(--accent);
  font-family: inherit;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 150ms;
}
.hero-form-help-toggle:hover {
  text-decoration-color: var(--accent);
}
.hero-form-help-content {
  display: none;
  margin-top: 8px;
  padding: 16px 18px;
  background: var(--accent-light);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-lg);
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
}
.hero-form-help-content.is-open { display: block; }
.hero-form-help-content ol {
  margin: 0; padding-left: 22px;
}
.hero-form-help-content li {
  margin-bottom: 6px;
}
.hero-form-help-content code {
  background: white;
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: var(--r-sm);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
}

.hero-trust {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-2);
  margin-top: 18px;
}
.hero-trust-item { display: flex; align-items: center; gap: 6px; }
.hero-trust-icon { color: var(--success); width: 16px; height: 16px; flex-shrink: 0; }

/* Dashboard mockup (right side) */
.mockup-wrap {
  position: relative;
  perspective: 1200px;
}
.mockup {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-2xl); box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: rotateY(-3deg) rotateX(2deg);
}
.mockup-header {
  background: var(--bg-subtle);
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.mockup-url {
  flex: 1; text-align: center;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--text-3); background: white;
  padding: 3px 10px; border-radius: var(--r-sm);
}
.mockup-body { padding: 20px; background: var(--bg-elevated); }
.mockup-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.mockup-shop-name { font-weight: 700; font-size: 17px; }
.mockup-pill {
  background: var(--success-bg); color: var(--success);
  padding: 3px 8px; border-radius: 99px; font-size: 10px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}
.mockup-pill-dot {
  width: 5px; height: 5px; background: var(--success); border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.mockup-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.mockup-stat {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 10px;
}
.mockup-stat-label { font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.mockup-stat-value { font-size: 15px; font-weight: 700; color: var(--text); }
.mockup-stat-trend { font-size: 10px; color: var(--success); font-weight: 500; }

.mockup-chart {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px; margin-bottom: 14px;
  height: 88px; display: flex; align-items: flex-end; gap: 4px;
}
.mockup-bar {
  flex: 1; background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 2px 2px 0 0;
  opacity: 0.9;
}

.mockup-list {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 10px;
}
.mockup-list-row {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; gap: 10px;
  padding: 6px 4px; font-size: 11px;
}
.mockup-list-row + .mockup-list-row { border-top: 1px solid var(--bg-subtle); }
.mockup-list-name { color: var(--text); font-weight: 500; }
.mockup-list-time { color: var(--text-3); font-family: 'JetBrains Mono', monospace; font-size: 10px; }
.mockup-list-amt { color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; }

/* =========================================================
   SECTION 2 — TRUST BAR
   ========================================================= */
.trust-section {
  padding: 32px 0 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}
.trust-header {
  text-align: center;
  font-size: 13px; color: var(--text-3);
  font-weight: 500; letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.trust-header strong { color: var(--text); font-weight: 700; font-variant-numeric: tabular-nums; }
.trust-rating {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: 4px;
  color: var(--text);
}
.trust-rating-stars { color: #f59e0b; font-size: 12px; letter-spacing: 1px; }

.trust-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 56px; flex-wrap: wrap;
  opacity: 0.65;
}
.trust-logo {
  font-size: 18px; font-weight: 700;
  color: var(--text-2); letter-spacing: -0.02em;
}
.trust-logo-icon {
  display: inline-block; margin-right: 6px; vertical-align: -2px;
}

/* =========================================================
   SECTION 3 — HOW IT WORKS
   ========================================================= */
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.how-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 32px 28px;
  position: relative;
  transition: all 200ms;
}
.how-step:hover { border-color: var(--border-accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.how-step-num {
  position: absolute; top: 20px; right: 24px;
  font-size: 48px; font-weight: 800; line-height: 1;
  color: var(--bg-subtle);
  letter-spacing: -0.05em;
}
.how-step-icon {
  width: 44px; height: 44px;
  background: var(--accent-light); color: var(--accent);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.how-step h3 { margin-bottom: 8px; }
.how-step p { font-size: 14px; color: var(--text-2); line-height: 1.55; }
.how-step-tag {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 5px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--accent); background: var(--accent-light);
  padding: 3px 8px; border-radius: var(--r-sm);
}

/* =========================================================
   SECTION 4 — BENTO FEATURES
   ========================================================= */
.bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento-cell {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 28px;
  transition: all 200ms;
}
.bento-cell:hover { border-color: var(--border-accent); }
.bento-cell-big { grid-column: span 2; grid-row: span 1; }
.bento-cell-tall { grid-row: span 2; }

.bento-icon {
  width: 36px; height: 36px;
  background: var(--accent-light); color: var(--accent);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.bento-cell h4 { margin-bottom: 6px; font-size: 16px; }
.bento-cell p { font-size: 13px; color: var(--text-2); line-height: 1.5; }

.bento-big-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: center;
}
.bento-big-content h3 { font-size: 22px; margin-bottom: 8px; }
.bento-big-content p { font-size: 14px; color: var(--text-2); margin-bottom: 16px; }

.bento-feature-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: var(--success-bg); color: var(--success);
  border-radius: 99px; font-size: 11px; font-weight: 600;
  margin-bottom: 14px;
}
.bento-visual {
  background: var(--bg-subtle);
  border-radius: var(--r-lg);
  padding: 16px; min-height: 140px;
  position: relative; overflow: hidden;
}
.bento-mini-stats {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.bento-mini-stat {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 8px 10px;
  font-size: 11px; color: var(--text-2);
}
.bento-mini-stat strong { color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; }

/* =========================================================
   SECTION 5 — PRICING
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1320px; margin: 0 auto;
}

/* Free Sample HERO — dominujacy banner przed pricing tiers */
.free-sample-hero {
  max-width: 1200px; margin: 0 auto 40px;
  background: linear-gradient(135deg, var(--accent-light) 0%, white 50%, #ecfdf5 100%);
  border: 2px solid var(--accent);
  border-radius: var(--r-3xl);
  padding: 40px 48px;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 32px; align-items: center;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 40px rgba(99,91,255,0.12), 0 0 0 1px rgba(99,91,255,0.08);
}
.free-sample-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(99,91,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.free-sample-hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.free-sample-hero > * { position: relative; z-index: 1; }
.free-sample-icon-wrap {
  width: 96px; height: 96px;
  background: white;
  border: 2px solid var(--accent-border);
  border-radius: var(--r-2xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
  transform: rotate(-6deg);
  transition: transform 300ms;
}
.free-sample-hero:hover .free-sample-icon-wrap { transform: rotate(0deg) scale(1.05); }
.free-sample-content { min-width: 0; }
.free-sample-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: var(--success); color: white;
  border-radius: 99px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(16,185,129,0.3);
}
.free-sample-badge-dot {
  width: 6px; height: 6px; background: white; border-radius: 50%;
  animation: livePulse 1.6s ease-in-out infinite;
}
.free-sample-hero h3 {
  font-size: 36px; font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.05;
  margin-bottom: 12px;
}
.free-sample-hero h3 .price {
  background: linear-gradient(135deg, var(--accent) 0%, #10b981 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.free-sample-hero p {
  font-size: 15px; color: var(--text);
  line-height: 1.55; margin: 0;
}
.free-sample-hero p strong { color: var(--accent); font-weight: 600; }
.free-sample-features {
  display: flex; gap: 18px; margin-top: 14px;
  flex-wrap: wrap;
}
.free-sample-feature {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-2);
  font-weight: 500;
}
.free-sample-feature svg { color: var(--success); width: 14px; height: 14px; flex-shrink: 0; }
.free-sample-cta-wrap {
  display: flex; flex-direction: column; gap: 8px;
  align-items: stretch;
  flex-shrink: 0;
}
.free-sample-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  padding: 18px 32px;
  border-radius: var(--r-xl);
  font-size: 16px; font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 12px 24px rgba(99,91,255,0.3), 0 0 0 1px rgba(99,91,255,0.5);
  transition: all 150ms;
  white-space: nowrap;
}
.free-sample-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(99,91,255,0.4), 0 0 0 1px rgba(99,91,255,0.6);
}
.free-sample-cta-note {
  text-align: center;
  font-size: 11px; color: var(--text-3);
  font-weight: 500;
}

/* Old free-banner (deprecated, kept for compat if needed) */
.free-banner { display: none; }

/* OR separator między Free Sample a paid tiers */
.pricing-or {
  max-width: 1200px; margin: 0 auto 28px;
  display: flex; align-items: center; gap: 20px;
}
.pricing-or-line {
  flex: 1; height: 1px; background: var(--border);
}
.pricing-or-text {
  font-size: 11px; font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Crypto badge */
.crypto-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #f7931a 0%, #627eea 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-size: 11px; font-weight: 700;
  padding: 0; margin-top: 8px;
  letter-spacing: 0.02em;
}
.crypto-pill svg { color: var(--text-2); width: 12px; height: 12px; flex-shrink: 0; }

.crypto-payment-bar {
  max-width: 1200px; margin: 32px auto 0;
  text-align: center;
  padding: 20px;
  background: var(--bg-subtle);
  border: 1px dashed var(--border);
  border-radius: var(--r-xl);
  font-size: 13px; color: var(--text-2);
}
.crypto-payment-bar strong { color: var(--text); }
.crypto-icons {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0 12px; vertical-align: middle;
}
.crypto-icon {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 600; color: var(--text);
  font-size: 13px;
}
.crypto-icon-mark {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: white; font-size: 13px; font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.crypto-icon-mark svg { width: 22px; height: 22px; }
.crypto-icon { font-size: 14px; font-weight: 600; gap: 8px; }
.crypto-btc { background: #f7931a; }
.crypto-eth { background: #627eea; }
.crypto-usdt { background: #26a17b; }
.crypto-sol { background: linear-gradient(135deg, #9945ff 0%, #14f195 100%); }
.crypto-xmr { background: #f26822; }

/* =========================================================
   RETENTION — Add-ons + Refill + Affiliate
   ========================================================= */
.retention-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1200px; margin: 0 auto;
}
.retention-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 28px 24px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.retention-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  pointer-events: none;
}
.retention-card > * { position: relative; }
.retention-icon {
  width: 44px; height: 44px;
  background: var(--accent-light); color: var(--accent);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.retention-card h3 {
  font-size: 18px; margin-bottom: 6px; letter-spacing: -0.01em;
}
.retention-card p {
  font-size: 13px; color: var(--text-2); line-height: 1.55;
  margin-bottom: 16px; flex: 1;
}
.retention-list { list-style: none; margin-bottom: 0; }
.retention-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0;
  border-top: 1px dashed var(--border);
  font-size: 13px;
}
.retention-list li:first-child { border-top: none; padding-top: 4px; }
.retention-list-name { color: var(--text-2); }
.retention-list-price {
  color: var(--accent); font-weight: 600;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  white-space: nowrap;
}
.retention-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 8px;
  background: var(--success-bg); color: var(--success);
  border-radius: 99px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 12px;
}
.retention-tag.is-warning { background: var(--warning-bg); color: var(--warning); }

.tier {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 22px 16px;
  display: flex; flex-direction: column;
  position: relative;
  transition: all 200ms;
}
.tier-popular {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent);
  transform: scale(1.02);
  background: linear-gradient(180deg, var(--accent-light) 0%, white 8%, white 100%);
}
.tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  padding: 5px 12px; border-radius: 99px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.02em;
  box-shadow: 0 4px 10px rgba(99,91,255,0.3);
  white-space: nowrap;
}
.tier-name {
  font-size: 13px; font-weight: 700; color: var(--text);
  margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em;
}
.tier-tagline {
  font-size: 12px; color: var(--text-2); margin-bottom: 16px;
  min-height: 32px; line-height: 1.4;
}
.tier-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 2px;
}
.tier-price-amount {
  font-size: 32px; font-weight: 700; letter-spacing: -0.025em;
  color: var(--text); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.tier-price-period { font-size: 12px; color: var(--text-3); font-weight: 500; }
.tier-price-note { font-size: 11px; color: var(--text-3); margin-bottom: 18px; min-height: 16px; }
.tier-once-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--success-bg); color: var(--success);
  padding: 2px 7px; border-radius: var(--r-sm);
  font-size: 10px; font-weight: 700; letter-spacing: 0.03em;
  margin-left: 4px; vertical-align: 2px;
}

.tier-cta {
  width: 100%; margin-bottom: 20px;
}
.tier-features {
  list-style: none; flex: 1;
}
.tier-features-title {
  font-size: 11px; font-weight: 700; color: var(--text);
  margin-bottom: 10px; letter-spacing: 0.05em; text-transform: uppercase;
}
.tier-feat {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: 11.5px; color: var(--text-2); line-height: 1.4;
  padding: 4px 0;
}
.tier-feat-icon {
  width: 13px; height: 13px;
  color: var(--accent); flex-shrink: 0; margin-top: 2px;
}
.tier-feat strong { color: var(--text); font-weight: 600; }

/* =========================================================
   DISCLAIMER MODAL
   ========================================================= */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(10, 14, 39, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 2000;
  padding: 24px;
}
.modal-backdrop.is-open { display: flex; }
.modal {
  background: white;
  border-radius: var(--r-2xl);
  max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(10,14,39,0.4), 0 0 0 1px var(--border);
  position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 28px; height: 28px;
  background: var(--bg-subtle); border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
}
.modal-close:hover { background: var(--border); color: var(--text); }
.modal-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: var(--warning-bg); color: var(--warning);
  border: 1px solid #fde68a;
  border-radius: 99px;
  font-size: 11px; font-weight: 600;
  margin-bottom: 14px;
}
.modal h3 {
  font-size: 22px; margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.modal-tier-summary {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 16px; margin-bottom: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.modal-tier-summary-name { font-weight: 600; font-size: 14px; }
.modal-tier-summary-price {
  font-size: 18px; font-weight: 700; color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.modal-disclaimer {
  background: var(--warning-bg);
  border: 1px solid #fde68a;
  border-radius: var(--r-lg);
  padding: 16px;
  font-size: 13px; line-height: 1.6;
  color: var(--text);
  margin-bottom: 20px;
}
.modal-disclaimer strong { color: #92400e; }
.modal-checkbox {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 16px;
  cursor: pointer;
}
.modal-checkbox input {
  margin-top: 2px;
  accent-color: var(--accent);
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.modal-checkbox label {
  font-size: 13px; color: var(--text);
  line-height: 1.5;
  cursor: pointer;
}
.modal-cta {
  width: 100%;
}
.modal-cta:disabled {
  opacity: 0.5; cursor: not-allowed; transform: none;
}

/* =========================================================
   SECTION 6 — TESTIMONIALS
   ========================================================= */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testimonial {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 28px;
  display: flex; flex-direction: column;
}
.testimonial-revenue {
  display: inline-flex; align-items: baseline; gap: 4px;
  background: var(--success-bg);
  padding: 8px 12px; border-radius: var(--r-md);
  margin-bottom: 20px; align-self: flex-start;
}
.testimonial-revenue-amount {
  font-size: 22px; font-weight: 700; color: var(--success);
  font-variant-numeric: tabular-nums; letter-spacing: -0.015em;
}
.testimonial-revenue-period { font-size: 12px; color: var(--success); font-weight: 500; }
.testimonial-quote {
  font-size: 15px; color: var(--text); line-height: 1.55;
  flex: 1; margin-bottom: 20px;
}
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #a855f7 100%);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 600; font-size: 14px;
  flex-shrink: 0;
}
.testimonial-person-name { font-size: 14px; font-weight: 600; color: var(--text); }
.testimonial-person-meta { font-size: 12px; color: var(--text-3); }

/* =========================================================
   SECTION 7 — FAQ
   ========================================================= */
.faq { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.faq-q {
  width: 100%; background: transparent; border: none;
  font-family: inherit; cursor: pointer;
  padding: 20px 0; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-size: 16px; font-weight: 600; color: var(--text);
  letter-spacing: -0.005em;
}
.faq-q-icon {
  width: 20px; height: 20px;
  color: var(--text-3);
  transition: transform 200ms;
  flex-shrink: 0;
}
.faq-item.is-open .faq-q-icon { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 250ms ease, padding 250ms ease;
  font-size: 14px; color: var(--text-2); line-height: 1.6;
}
.faq-item.is-open .faq-a {
  max-height: 300px;
  padding: 0 0 20px;
}

/* =========================================================
   SECTION 8 — FINAL CTA
   ========================================================= */
.final-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, #0a0e27 0%, #1e1b4b 50%, #4c1d95 100%);
  color: white; text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(99,91,255,0.4) 0%, transparent 60%);
}
.final-cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding: 0 24px; }
.final-cta h2 { color: white; font-size: 48px; margin-bottom: 16px; letter-spacing: -0.035em; }
.final-cta p { color: #c4b5fd; font-size: 18px; margin-bottom: 32px; line-height: 1.5; }
.final-cta-form {
  display: flex; gap: 8px; max-width: 480px; margin: 0 auto;
  background: white; padding: 6px;
  border-radius: var(--r-xl);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.final-cta-form input {
  flex: 1; border: none; outline: none;
  padding: 10px 12px; font-family: inherit; font-size: 15px;
  color: var(--text); background: transparent;
}
.final-cta-trust {
  margin-top: 24px; display: flex; justify-content: center; gap: 20px;
  font-size: 13px; color: #c4b5fd; flex-wrap: wrap;
}
.final-cta-trust span { display: flex; align-items: center; gap: 6px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.footer-links { display: flex; gap: 24px; font-size: 13px; }
.footer-links a { color: var(--text-2); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-3); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1280px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .tier-popular { transform: none; }
}
@media (max-width: 1000px) {
  h1, .hero h1 { font-size: 44px !important; }
  h2 { font-size: 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .mockup-wrap { max-width: 480px; margin: 0 auto; }
  .mockup { transform: none; }
  .how-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-cell-big, .bento-cell-tall { grid-column: span 1; grid-row: span 1; }
  .bento-big-content { grid-template-columns: 1fr; }
  .free-sample-hero { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; gap: 20px; }
  .free-sample-icon-wrap { margin: 0 auto; transform: rotate(0deg); }
  .free-sample-hero h3 { font-size: 28px; }
  .free-sample-features { justify-content: center; }
  .free-sample-cta { width: 100%; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .retention-grid { grid-template-columns: 1fr; gap: 16px; }
  .nav-links { display: none; }
  .final-cta h2 { font-size: 32px; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .hero h1 { font-size: 36px !important; }
  h2 { font-size: 26px; }
  .hero-form, .final-cta-form { flex-direction: column; padding: 8px; }
  .hero-form .btn, .final-cta-form .btn { width: 100%; }
  .trust-logos { gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .crypto-payment-bar { font-size: 12px; }
  .crypto-icons { display: flex; flex-wrap: wrap; justify-content: center; margin: 8px 0; }
}
