/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
  --brand:       #E31C5F;
  --brand-dark:  #b8144a;
  --brand-glow:  rgba(227, 28, 95, 0.25);
  --bg:          #080808;
  --surface:     #111111;
  --surface2:    #1a1a1a;
  --surface3:    #222222;
  --border:      rgba(255,255,255,0.07);
  --text:        #ffffff;
  --text-muted:  rgba(255,255,255,0.55);
  --text-faint:  rgba(255,255,255,0.28);
  --orange:      #FF6B35;
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
}

/* ── Utilitaires ────────────────────────────────────────────────────────── */
.text-brand  { color: var(--brand); }
.text-muted  { color: var(--text-muted); }
.text-orange { color: var(--orange); }

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* ── Header nav ─────────────────────────────────────────────────────────── */
.header-nav { display: flex; align-items: center; gap: 24px; }
.header-nav-link { font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.header-nav-link:hover { color: var(--text); }
@media (max-width: 600px) { .header-nav { display: none; } }

/* ── Search form ─────────────────────────────────────────────────────────── */
.search-form { margin: 20px 0 4px; }
.search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 18px;
  max-width: 520px;
  color: var(--text-muted);
}
.search-wrap:focus-within { border-color: var(--brand); }
.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 14px;
}
.search-input::placeholder { color: var(--text-muted); }
.search-clear { font-size: 13px; color: var(--text-muted); cursor: pointer; }
.search-clear:hover { color: var(--brand); }

/* ── Logo ───────────────────────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  height: 32px;
  width: auto;
}
.logo-img {
  height: 22px;
  width: auto;
}
.logo-sm .logo-icon { height: 26px; }
.logo-sm .logo-img  { height: 18px; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--brand);
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--surface3);
  color: var(--text);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: background 0.2s, transform 0.15s;
}
.btn-secondary:hover { background: var(--surface2); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

.btn-app {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s;
}
.btn-app:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

/* ── Badges ─────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-platform {
  background: rgba(255,255,255,0.08);
  color: var(--text-muted);
}
.badge-lg { font-size: 12px; padding: 5px 12px; }
.badge-trend {
  background: rgba(255, 107, 53, 0.15);
  color: var(--orange);
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(227,28,95,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, var(--brand-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(227,28,95,0.12);
  border: 1px solid rgba(227,28,95,0.3);
  color: var(--brand);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero-title .highlight { color: var(--brand); }
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Hero cards ─────────────────────────────────────────────────────────── */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.hero-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.hero-card:hover {
  border-color: rgba(227,28,95,0.35);
  transform: translateY(-3px);
}
.hero-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.hero-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.hero-card-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}
@media (max-width: 640px) {
  .hero-cards { grid-template-columns: 1fr; margin-top: 36px; }
}

/* ── Feed section ───────────────────────────────────────────────────────── */
.feed-section {
  padding: 60px 0 80px;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text);
}
.section-title .dot {
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}
.section-title .count {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

/* ── Video grid ─────────────────────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 600px)  { .video-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .video-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
@media (min-width: 1100px) { .video-grid { grid-template-columns: repeat(5, 1fr); } }

.video-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227,28,95,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.video-card-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--surface2);
  overflow: hidden;
}
.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.video-card:hover .video-card-thumb img { transform: scale(1.04); }
.thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface2);
}
.video-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 10px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  display: flex;
  gap: 5px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.video-card-body {
  padding: 10px 12px 12px;
}
.video-card-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

/* ── Pagination ─────────────────────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ── Video detail ───────────────────────────────────────────────────────── */
.video-detail { padding-bottom: 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0 16px;
  font-size: 13px;
  color: var(--text-faint);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--brand); }

.video-hero { padding: 20px 0 40px; }
.video-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 700px) {
  .video-hero-inner {
    grid-template-columns: 280px 1fr;
  }
}
@media (min-width: 900px) {
  .video-hero-inner { grid-template-columns: 340px 1fr; }
}

.video-thumb-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.video-store-btns {
  display: flex;
  gap: 10px;
}
.video-thumb-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--surface);
  max-width: 340px;
}
.video-thumb-link { display: block; width: 100%; height: 100%; }
.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s;
}
.video-thumb-link:hover .video-play-btn {
  background: rgba(227,28,95,0.8);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-embed-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: var(--radius);
}

.video-meta { display: flex; flex-direction: column; gap: 14px; }
.video-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.video-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.video-date {
  font-size: 13px;
  color: var(--text-faint);
}
.btn-watch {
  align-self: center;
  border-color: var(--border);
}

/* ── Creators section (home) ────────────────────────────────────────────── */
.creators-section { padding: 40px 0; border-top: 1px solid var(--border); }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.section-header .section-title { margin: 0; }
.creators-list { display: flex; flex-wrap: wrap; gap: 10px; }
.creator-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: border-color 0.2s, background 0.2s;
}
.creator-pill:hover { border-color: var(--brand); background: rgba(227,28,95,0.05); }
.creator-pill-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  flex-shrink: 0;
}
.creator-pill-handle { font-size: 13px; color: var(--text); }
.creator-pill-count { font-size: 11px; color: var(--text-muted); }

/* ── Creators page ──────────────────────────────────────────────────────── */
.creators-grid-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.creator-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.creator-card:hover { border-color: var(--brand); }
.creator-card-handle { font-size: 14px; font-weight: 600; color: var(--text); }
.creator-card-count { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
@media (max-width: 768px) { .creators-grid-page { grid-template-columns: repeat(2, 1fr); } }

/* ── Categories full page ───────────────────────────────────────────────── */
.categories-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.category-full-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}
.category-full-card:hover { border-color: var(--brand); background: rgba(227,28,95,0.04); }
.category-full-name { font-size: 15px; font-weight: 600; color: var(--text); }
@media (max-width: 768px) { .categories-full-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .categories-full-grid { grid-template-columns: 1fr; } }

/* ── Creator page ───────────────────────────────────────────────────────── */
.creator-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(227,28,95,0.08), rgba(227,28,95,0.04));
  border: 1px solid rgba(227,28,95,0.3);
  border-radius: var(--radius);
}
.creator-cta-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.creator-cta-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.creator-cta-btns { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 600px) {
  .creator-cta-banner { flex-direction: column; align-items: flex-start; }
}

.creator-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.creator-link:hover { color: var(--brand); }
.creator-link-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  flex-shrink: 0;
}

.creator-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0 8px;
}
.creator-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  flex-shrink: 0;
}
.creator-info .video-title { margin: 0; }
.creator-username { color: var(--text-muted); font-size: 13px; margin-top: 2px; }

/* ── Categories section ─────────────────────────────────────────────────── */
.categories-section { padding: 40px 0; border-top: 1px solid var(--border); }
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.category-chip {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.category-chip:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(227, 28, 95, 0.05);
}

/* ── Related sections ───────────────────────────────────────────────────── */
.related-section { padding: 40px 0; border-top: 1px solid var(--border); }
.section-title-link { font-size: 13px; font-weight: 500; color: var(--brand); margin-left: 12px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.related-card { display: flex; flex-direction: column; gap: 8px; }
.related-card:hover .related-title { color: var(--brand); }
.related-thumb {
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-title {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Products section ───────────────────────────────────────────────────── */
.products-section {
  padding: 20px 0 60px;
  border-top: 1px solid var(--border);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 600px)  { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }

.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(227,28,95,0.25);
  box-shadow: var(--shadow);
}
.product-card--exact { border-color: rgba(227,28,95,0.4); }
.product-card--exact:hover { border-color: var(--brand); }

.product-exact-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: 0.5px;
  z-index: 1;
}
.product-img-wrap {
  aspect-ratio: 1 / 1;
  background: var(--surface2);
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface2);
}
.product-body {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.product-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
}
.btn-buy {
  display: block;
  margin-top: auto;
  padding: 7px 0;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s;
}
.product-card:hover .btn-buy { background: var(--brand-dark); }

.empty-products {
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 15px;
}

/* ── App banner ─────────────────────────────────────────────────────────── */
.app-banner {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(227,28,95,0.08) 100%);
  border-top: 1px solid var(--border);
  padding: 60px 0;
  margin-top: 20px;
}
.app-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.app-banner-text h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 10px;
}
.app-banner-text p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 400px;
}
.app-banner-ctas {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── Payment page ───────────────────────────────────────────────────────── */
.payment-page { padding: 60px 0 80px; }
.payment-inner { max-width: 480px; }
.payment-header { text-align: center; margin-bottom: 36px; }
.payment-icon { font-size: 48px; margin-bottom: 12px; }
.payment-title { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.payment-sub { color: var(--text-muted); font-size: 15px; }
.payment-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.payment-price {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.price-amount { font-size: 48px; font-weight: 900; color: var(--brand); letter-spacing: -2px; }
.price-period { font-size: 18px; color: var(--text-muted); margin-left: 4px; }
.payment-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.payment-features li { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.check { color: #22c55e; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.paypal-wrap { margin-bottom: 20px; }
.payment-note { font-size: 12px; color: var(--text-faint); text-align: center; line-height: 1.6; }
.payment-note a { color: var(--brand); }
.payment-success {
  text-align: center;
  padding: 24px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 12px;
}
.success-icon { font-size: 36px; margin-bottom: 12px; }
.payment-success p { color: #22c55e; font-weight: 600; font-size: 15px; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-faint);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--brand); }
.footer-copy {
  font-size: 12px;
  color: var(--text-faint);
}

/* ── Responsive tweaks ──────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero { padding: 60px 0 80px; }
  .hero-title { letter-spacing: -1px; }
  .app-banner-inner { flex-direction: column; text-align: center; }
  .app-banner-text p { margin: 0 auto; }
  .app-banner-ctas { justify-content: center; }
  .video-hero-inner { grid-template-columns: 1fr; }
  .video-thumb-wrap { max-width: 220px; margin: 0 auto; }
}

/* Policy page */
.policy-page { padding: 48px 0 80px; }
.policy-title { font-size: clamp(24px, 4vw, 36px); font-weight: 800; margin-bottom: 8px; }
.policy-updated { color: var(--text-muted); font-size: 13px; margin-bottom: 48px; }
.policy-section { margin-bottom: 36px; }
.policy-section h2 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.policy-section p, .policy-section li { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.policy-section ul { padding-left: 20px; margin: 8px 0; }
.policy-section li { margin-bottom: 6px; }
.policy-section a { color: var(--brand); }

/* ── Header nav highlight ───────────────────────────────────────────────── */
.header-nav-link--highlight {
  color: var(--brand) !important;
  font-weight: 600;
}
.header-nav-link--highlight:hover { opacity: 0.8; }

/* ── Zounko Link page ───────────────────────────────────────────────────── */
.zl-page { padding-bottom: 80px; }

/* Hero */
.zl-hero { padding: 80px 0 60px; text-align: center; }
.zl-hero-badge {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.zl-hero-title {
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.zl-gradient {
  background: linear-gradient(135deg, var(--brand), #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.zl-hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.zl-hero-url {
  display: inline-flex;
  align-items: center;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 16px;
  margin-bottom: 32px;
  font-family: monospace;
}
.zl-url-prefix { color: var(--text-muted); }
.zl-url-handle { color: var(--brand); font-weight: 700; }
.zl-cta {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  transition: opacity 0.2s, transform 0.2s;
}
.zl-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Mockup */
.zl-mockup-section { padding: 0 0 60px; }
.zl-mockup {
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.zl-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.zl-mockup-dot { width: 8px; height: 8px; background: var(--border); border-radius: 50%; }
.zl-mockup-url { font-size: 12px; color: var(--text-muted); font-family: monospace; }
.zl-mockup-profile { text-align: center; padding: 24px 16px 16px; }
.zl-mockup-avatar {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--brand), #ff6b9d);
  border-radius: 50%;
  margin: 0 auto 10px;
}
.zl-mockup-name { font-size: 15px; font-weight: 700; color: var(--text); }
.zl-mockup-count { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.zl-mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px;
}
.zl-mockup-card {
  background: var(--surface2);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.zl-mockup-thumb {
  height: 100px;
  background: var(--surface3);
}
.zl-thumb-1 { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.zl-thumb-2 { background: linear-gradient(135deg, #1e3a2f, #0d2818); }
.zl-thumb-3 { background: linear-gradient(135deg, #2e1a1a, #3e1616); }
.zl-thumb-4 { background: linear-gradient(135deg, #1a2e2e, #0d2424); }
.zl-mockup-info { padding: 8px 10px; }
.zl-mockup-line {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 6px;
}
.zl-line-long { width: 85%; }
.zl-line-med  { width: 65%; }
.zl-line-short { width: 45%; margin-bottom: 0; }

/* Features */
.zl-features { padding: 60px 0; }
.zl-section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
  text-align: center;
}
.zl-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .zl-features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .zl-features-grid { grid-template-columns: 1fr; } }
.zl-feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s;
}
.zl-feature-card:hover { border-color: rgba(227,28,95,0.3); }
.zl-feature-icon { font-size: 28px; margin-bottom: 12px; }
.zl-feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.zl-feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Comparison table */
.zl-compare { padding: 60px 0; }
.zl-table-wrap { overflow-x: auto; }
.zl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.zl-table th, .zl-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.zl-table th:first-child, .zl-table td:first-child {
  text-align: left;
  color: var(--text-muted);
}
.zl-table thead th {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--surface);
}
.zl-th-highlight {
  color: var(--brand) !important;
  background: rgba(227,28,95,0.08) !important;
}
.zl-td-yes { color: var(--brand); font-weight: 700; font-size: 16px; }
.zl-td-no { color: var(--text-faint); font-size: 16px; }
.zl-td-partial { color: var(--text-muted); font-size: 12px; }
.zl-table tbody tr:hover td { background: var(--surface); }

/* Steps */
.zl-how { padding: 60px 0; }
.zl-steps { display: flex; flex-direction: column; gap: 24px; max-width: 680px; margin: 0 auto; }
.zl-step { display: flex; gap: 20px; align-items: flex-start; }
.zl-step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.zl-step-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.zl-step-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Final CTA */
.zl-final-cta {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(227,28,95,0.12), rgba(227,28,95,0.04));
  border: 1px solid rgba(227,28,95,0.2);
  border-radius: 24px;
}
.zl-final-inner { padding: 60px 40px; text-align: center; }
.zl-final-inner h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 800; margin-bottom: 12px; }
.zl-final-inner p { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; }
.zl-cta-big {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 44px;
  border-radius: 50px;
  transition: opacity 0.2s, transform 0.2s;
}
.zl-cta-big:hover { opacity: 0.9; transform: translateY(-2px); }
.policy-section code { background: var(--surface); padding: 2px 6px; border-radius: 4px; font-size: 13px; color: var(--text); }

/* ── Header — lien Vendre ─────────────────────────────────────────────── */
.header-nav-link--sell {
  color: var(--orange) !important;
  font-weight: 600;
}
.header-nav-link--sell:hover { color: #ff8c5a !important; }

/* ── Page Vendre ──────────────────────────────────────────────────────── */
.sell-page { padding-bottom: 0; }

.sell-hero { padding: 80px 0 72px; text-align: center; }
.sell-hero-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brand); margin-bottom: 16px; }
.sell-hero-title { font-size: clamp(32px, 6vw, 58px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.sell-hero-sub { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto 36px; line-height: 1.6; }
.sell-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.sell-section { padding: 72px 0; }
.sell-section--alt { background: var(--surface); }
.sell-section-title { font-size: clamp(22px, 4vw, 32px); font-weight: 800; text-align: center; margin-bottom: 48px; }

.sell-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.sell-card { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.sell-card-icon { font-size: 32px; margin-bottom: 14px; }
.sell-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.sell-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.sell-card p em { color: var(--text); font-style: normal; font-weight: 600; }

.sell-steps { display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap; justify-content: center; }
.sell-step { flex: 1; min-width: 200px; max-width: 280px; text-align: center; }
.sell-step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.sell-step-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.sell-step-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.sell-step-arrow { font-size: 24px; color: var(--text-faint); margin-top: 14px; flex-shrink: 0; }
@media (max-width: 600px) { .sell-step-arrow { display: none; } }

.sell-pricing { display: flex; justify-content: center; }
.sell-price-card { background: var(--surface2); border: 1px solid var(--brand); border-radius: var(--radius); padding: 40px 36px; max-width: 400px; width: 100%; text-align: center; box-shadow: 0 0 40px var(--brand-glow); }
.sell-price-amount { font-size: 56px; font-weight: 800; color: var(--brand); line-height: 1; }
.sell-price-period { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; }
.sell-price-features { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.sell-price-features li { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.sell-check { color: #22c55e; font-size: 15px; flex-shrink: 0; }
.sell-price-cta { width: 100%; text-align: center; justify-content: center; display: block; padding: 14px; font-size: 16px; }
.sell-price-note { font-size: 12px; color: var(--text-faint); margin-top: 14px; }

.sell-faq-wrap { max-width: 720px; margin: 0 auto; }
.sell-faq { display: flex; flex-direction: column; gap: 24px; }
.sell-faq-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.sell-faq-item p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.sell-faq-item a { color: var(--brand); }

.sell-cta-section { padding: 80px 0; text-align: center; background: linear-gradient(to bottom, var(--surface), var(--bg)); }
.sell-cta-title { font-size: clamp(24px, 4vw, 36px); font-weight: 800; margin-bottom: 14px; }
.sell-cta-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }

/* ── Comment ça marche ───────────────────────────────────────────────────── */
.how-page { padding: 60px 0 80px; }
.how-hero { text-align: center; margin-bottom: 40px; }
.how-hero-badge { display: inline-block; background: var(--brand); color: #fff; font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em; }
.how-title { font-size: clamp(28px, 5vw, 48px); font-weight: 800; margin-bottom: 16px; }
.how-sub { font-size: 16px; color: var(--text-muted); max-width: 520px; margin: 0 auto 32px; line-height: 1.6; }

.how-cta-top { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.btn-store { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; border-radius: 12px; font-size: 15px; font-weight: 700; text-decoration: none; transition: opacity 0.2s; }
.btn-store:hover { opacity: 0.85; }
.btn-store--apple { background: #000; color: #fff; }
.btn-store--google { background: var(--brand); color: #fff; }

.how-urgency { text-align: center; background: #fff3e0; border: 1px solid #ffcc80; border-radius: var(--radius); padding: 14px 20px; max-width: 600px; margin: 0 auto 48px; font-size: 14px; font-weight: 600; color: #e65100; }

.how-steps { display: flex; flex-direction: column; gap: 32px; max-width: 680px; margin: 0 auto 60px; }
.how-step { display: flex; gap: 24px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.how-step-num { width: 44px; height: 44px; flex-shrink: 0; background: var(--brand); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: #fff; }
.how-step-body h2 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.how-step-body p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.how-cta { text-align: center; padding: 48px 32px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); max-width: 520px; margin: 0 auto; }
.how-cta h2 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.how-cta p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.how-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
