/* ═══════════════════════════════════════════════════════
   WaxScan — Website Stylesheet
   Design: dark vinyl (#1a1a1a) + gold (#c9a84c)
   Fonts: Inter (body) · Playfair Display (headings)
   ═══════════════════════════════════════════════════════ */
/* Google Fonts are loaded via <link> in each HTML page for better performance */

/* ─── CSS Variables ───────────────────────────────────── */
:root {
  --black:       #1a1a1a;
  --groove:      #2d2d2d;
  --groove-2:    #383838;
  --groove-3:    #222222;
  --gold:        #c9a84c;
  --gold-light:  #e8c96d;
  --gold-dim:    rgba(201, 168, 76, 0.12);
  --gold-border: rgba(201, 168, 76, 0.25);
  --cream:       #faf7f0;
  --muted:       #888888;
  --dim:         rgba(250, 247, 240, 0.6);
  --border-soft: rgba(255, 255, 255, 0.06);
  --radius:      16px;
  --radius-sm:   10px;
  --radius-xs:   8px;
  --shadow:      0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-sm:   0 4px 16px rgba(0, 0, 0, 0.4);
}

/* ─── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--black);
  color: var(--cream);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ─── Typography ──────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; }
h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.4rem, 6vw, 3.8rem); }
h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.7rem, 4vw, 2.4rem); }
h3 { font-family: 'Inter', sans-serif; font-size: 1.15rem; font-weight: 700; }

/* ─── Layout Helpers ──────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }

/* ─── Navigation ──────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  color: var(--cream);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 8px;
}
.nav-logo-text { color: var(--cream); }
.nav-logo-text em { color: var(--gold); font-style: normal; }
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); opacity: 1; }

/* Language Switcher */
.lang-switcher { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.lang-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 20px;
  transition: all 0.2s;
  letter-spacing: 0.04em;
}
.lang-btn.active {
  background: var(--gold);
  color: var(--black);
}
.lang-sep { color: var(--groove-2); font-size: 0.75rem; }

/* ─── Hero ────────────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  padding: 6px 18px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow::before { content: '●'; font-size: 0.5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 { color: var(--cream); margin-bottom: 20px; max-width: 720px; margin-left: auto; margin-right: auto; }
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

/* Store Badges */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 68px;
}

/* Coming soon text (replaces store badges) */
.hero-coming-soon {
  display: inline-block;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px dashed var(--gold-border);
  border-radius: 30px;
  padding: 8px 20px;
  margin-bottom: 52px;
  opacity: 0.85;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--groove);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  padding: 13px 22px;
  transition: all 0.2s;
  text-decoration: none;
}
.store-badge:hover { border-color: var(--gold); transform: translateY(-2px); opacity: 1; }
.store-badge.coming-soon { opacity: 0.5; pointer-events: none; border-style: dashed; }
.store-badge-icon { font-size: 26px; line-height: 1; }
.store-badge-text { text-align: left; }
.store-badge-sub { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 2px; }
.store-badge-name { font-size: 0.95rem; font-weight: 700; color: var(--cream); display: block; }

/* Image-based store badges */
.store-badge-img {
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.store-badge-img img {
  display: block;
  height: 56px;
  width: auto;
  border-radius: 12px;
}
.store-badge-img:hover { transform: translateY(-2px); filter: drop-shadow(0 4px 14px rgba(201,168,76,0.3)); }
.store-badge-img.coming-soon { opacity: 0.45; pointer-events: none; }

/* Phone mockup */
.phone-mockup-wrap { display: flex; justify-content: center; }
.phone-mockup {
  width: 250px;
  height: 500px;
  background: var(--groove-3);
  border: 2px solid var(--gold-border);
  border-radius: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 5px;
  background: var(--groove-2);
  border-radius: 3px;
}
.phone-mockup-inner { text-align: center; padding: 20px; }
.phone-mockup-vinyl {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #1e1e1e 0deg, #2a2a2a 10deg, #1e1e1e 20deg, #2a2a2a 30deg,
    #1e1e1e 40deg, #2a2a2a 50deg, #1e1e1e 60deg, #2a2a2a 70deg,
    #1e1e1e 80deg, #2a2a2a 90deg, #1e1e1e 100deg, #2a2a2a 110deg,
    #1e1e1e 120deg, #2a2a2a 130deg, #1e1e1e 140deg, #2a2a2a 150deg,
    #1e1e1e 160deg, #2a2a2a 170deg, #1e1e1e 180deg, #2a2a2a 190deg,
    #1e1e1e 200deg, #2a2a2a 210deg, #1e1e1e 220deg, #2a2a2a 230deg,
    #1e1e1e 240deg, #2a2a2a 250deg, #1e1e1e 260deg, #2a2a2a 270deg,
    #1e1e1e 280deg, #2a2a2a 290deg, #1e1e1e 300deg, #2a2a2a 310deg,
    #1e1e1e 320deg, #2a2a2a 330deg, #1e1e1e 340deg, #2a2a2a 350deg,
    #1e1e1e 360deg
  );
  margin: 0 auto 10px;
  position: relative;
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
  animation: spin 6s linear infinite;
}
.phone-mockup-vinyl::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid var(--gold);
}
.phone-mockup-label { font-size: 0.7rem; color: var(--muted); text-align: center; line-height: 1.5; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ─── Section Header ──────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 { color: var(--cream); margin-bottom: 14px; }
.section-header p { color: var(--muted); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ─── Features Grid ───────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 18px;
}
.feature-card {
  background: var(--groove);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s, transform 0.2s;
}
.feature-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.feature-icon {
  width: 46px; height: 46px;
  background: var(--gold-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.feature-card h3 { color: var(--cream); margin-bottom: 8px; font-size: 1rem; }
.feature-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ─── How It Works ────────────────────────────────────── */
#how { background: var(--groove-3); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-border) 20%, var(--gold-border) 80%, transparent);
}
.step { text-align: center; }
.step-number {
  width: 56px; height: 56px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.15);
  position: relative;
  z-index: 1;
}
.step h3 { color: var(--cream); margin-bottom: 10px; }
.step p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ─── Data Sources ────────────────────────────────────── */
.sources-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.source-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--groove);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
}
.source-badge:hover { border-color: var(--gold-border); color: var(--cream); }
.source-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}
/* Logo légèrement plus haut que large (ex: MusicBrainz 960×1089) — on fixe la hauteur */
.source-logo--tall {
  width: auto;
  height: 22px;
}

/* ─── Pricing ─────────────────────────────────────────── */
#pricing { background: var(--groove); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: start;
}
.plan-card {
  background: var(--black);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color 0.3s;
}
.plan-card:hover { border-color: var(--gold-border); }
.plan-card.highlight { border-color: var(--gold); }
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-icon { font-size: 28px; line-height: 1; }
.plan-name { font-size: 0.95rem; font-weight: 700; color: var(--cream); }
.plan-price { display: flex; align-items: baseline; gap: 4px; }
.plan-price-amount { font-size: 2rem; font-weight: 800; color: var(--gold); font-family: 'Playfair Display', serif; }
.plan-price-period { font-size: 0.85rem; color: var(--muted); }
.plan-divider { height: 1px; background: var(--border-soft); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.85rem; color: var(--muted); line-height: 1.5;
}
.plan-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }.plan-feat-off::before { content: '×' !important; color: var(--muted) !important; }
.plan-feat-off { opacity: 0.45; }
.plan-badge--trial {
  background: rgba(100, 200, 140, 0.15);
  color: #7ed3a8;
  border: 1px solid rgba(100, 200, 140, 0.3);
}
.plan-equiv { font-size: 0.82rem; color: var(--gold); opacity: 0.85; margin-top: -6px; }

/* ─── Scan Packs ──────────────────────────────────── */
.packs-header { text-align: center; margin-top: 72px; margin-bottom: 32px; }
.packs-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--cream);
  margin: 8px 0 10px;
}
.packs-sub { font-size: 0.9rem; color: var(--muted); max-width: 520px; margin: 0 auto; }
.packs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
}
@media (max-width: 800px) { .packs-grid { grid-template-columns: repeat(2, 1fr); } }
.pack-card {
  background: var(--black);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  text-align: center;
  transition: border-color 0.3s, transform 0.2s;
}
.pack-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.pack-card--best { border-color: var(--gold); padding-top: 28px; }
.pack-name { font-size: 0.85rem; font-weight: 700; color: var(--cream); text-transform: uppercase; letter-spacing: 0.06em; }
.pack-scans-count {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  margin-top: 4px;
}
.pack-per-scan { font-size: 0.7rem; color: var(--muted); }
.pack-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border-soft);
}
.packs-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 22px;
  opacity: 0.65;
  font-style: italic;
}
/* ─── CTA Section ─────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 { color: var(--cream); margin-bottom: 14px; }
.cta-section p { color: var(--muted); margin-bottom: 36px; font-size: 1rem; max-width: 450px; margin-left: auto; margin-right: auto; }

/* ─── Footer ──────────────────────────────────────────── */
footer {
  background: var(--groove-3);
  border-top: 1px solid var(--gold-border);
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-brand-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; max-width: 280px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--cream); opacity: 1; }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }

/* ─── Legal Pages ─────────────────────────────────────── */
.legal-header {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--gold-border);
  margin-bottom: 56px;
}
.legal-header .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--muted);
  margin-bottom: 20px;
}
.legal-header .breadcrumb a { color: var(--muted); transition: color 0.2s; }
.legal-header .breadcrumb a:hover { color: var(--gold); opacity: 1; }
.legal-header .breadcrumb span { color: var(--groove-2); }
.legal-header h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--cream); margin-bottom: 10px; }
.legal-header .last-updated { font-size: 0.85rem; color: var(--muted); }

.legal-body { padding-bottom: 80px; }
.legal-content { max-width: 780px; }

.legal-section { margin-bottom: 44px; }
.legal-section-heading {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold-border);
}
.legal-num {
  width: 30px; height: 30px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xs);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}
.legal-section-heading h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
}
.legal-section h3 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 22px 0 10px;
  font-family: 'Inter', sans-serif;
}
.legal-section p {
  color: rgba(250, 247, 240, 0.78);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-section ul {
  list-style: none;
  margin: 8px 0 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.legal-section ul li {
  display: flex; align-items: flex-start; gap: 8px;
  color: rgba(250, 247, 240, 0.72);
  font-size: 0.875rem;
  line-height: 1.7;
}
.legal-section ul li::before { content: '•'; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.legal-section strong { color: var(--cream); font-weight: 600; }

/* Info card inside legal pages */
.info-card {
  background: var(--groove);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 14px 0;
}
.info-card .company-name { font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.info-card .row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; font-size: 0.875rem; }
.info-card .row-label { color: var(--muted); font-weight: 600; min-width: 90px; flex-shrink: 0; }
.info-card .row-value { color: var(--cream); }

/* Email button */
.email-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xs);
  padding: 10px 16px;
  color: var(--gold);
  font-size: 0.875rem; font-weight: 600;
  margin: 6px 0;
  transition: background 0.2s;
}
.email-btn:hover { background: rgba(201, 168, 76, 0.2); opacity: 1; }

/* Table */
.legal-table-wrap { overflow-x: auto; margin: 16px 0; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 0.83rem; }
.legal-table th {
  background: var(--groove); color: var(--gold);
  padding: 10px 14px; text-align: left;
  font-weight: 700; border-bottom: 1px solid var(--gold-border);
  white-space: nowrap;
}
.legal-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-soft);
  color: rgba(250, 247, 240, 0.75);
  vertical-align: top;
  line-height: 1.55;
}
.legal-table tr:last-child td { border-bottom: none; }

/* Pricing cards in legal */
.legal-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin: 14px 0; }
.legal-plan {
  background: var(--groove);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.legal-plan.highlight { border-color: var(--gold); }
.legal-plan-icon { font-size: 22px; margin-bottom: 8px; }
.legal-plan-name { font-size: 0.85rem; font-weight: 700; color: var(--cream); margin-bottom: 4px; }
.legal-plan-price { font-size: 1.25rem; font-weight: 800; color: var(--gold); font-family: 'Playfair Display', serif; margin-bottom: 4px; }
.legal-plan-desc { font-size: 0.78rem; color: var(--muted); }

/* Warning / info note */
.note-box {
  background: rgba(201, 168, 76, 0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  padding: 14px 18px;
  margin: 14px 0;
  font-size: 0.875rem;
  color: rgba(250, 247, 240, 0.8);
  line-height: 1.7;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .steps-grid::before { display: none; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { gap: 16px; }
  .nav-links li.hide-mobile { display: none; }
  .hero { padding: 64px 0 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .legal-content { max-width: 100%; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 2rem; }
  .store-badges { flex-direction: column; align-items: center; }
  .store-badge { width: 100%; max-width: 280px; justify-content: center; }
  .nav-links li { display: none; }
  .nav-links li:last-child { display: flex; }
}

/* ═══════════════════════════════════════════════════════
   FEATURE HIGHLIGHTS (3-col hero cards)
═══════════════════════════════════════════════════════ */
.features-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.highlight-card {
  background: var(--groove);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.highlight-card:first-child { border-top: 2px solid var(--gold); }
.highlight-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(201,168,76,0.12);
  display: flex; align-items: center; justify-content: center;
}
.highlight-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.highlight-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--cream); }
.highlight-card > p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.feature-list {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 7px;
}
.feature-list li {
  font-size: 0.82rem; color: var(--muted);
  padding-left: 16px; position: relative;
}
.feature-list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   ALL FEATURES SECTION (categorized grid)
═══════════════════════════════════════════════════════ */
#all-features { background: var(--groove); }
.feat-category { margin-top: 56px; }
.feat-category-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
}
.feat-cat-icon { width: 20px; height: 20px; stroke: var(--gold); flex-shrink: 0; }
.feat-category-title {
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--gold); margin: 0;
}
.feat-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 12px;
}
.feat-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px;
  background: var(--black);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.feat-item:hover { border-color: var(--gold-border); }
.feat-item > svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }
.feat-item strong { display: block; font-size: 0.86rem; color: var(--cream); margin-bottom: 4px; font-weight: 600; }
.feat-item span { font-size: 0.79rem; color: var(--muted); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════
   OFFLINE SECTION
═══════════════════════════════════════════════════════ */
.offline-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.offline-text .section-eyebrow { margin-bottom: 12px; }
.offline-text h2 { font-size: 2.4rem; line-height: 1.2; margin: 0 0 16px; }
.offline-text > p { color: var(--muted); font-size: 0.93rem; line-height: 1.7; margin-bottom: 32px; }
.offline-features { display: flex; flex-direction: column; gap: 16px; }
.offline-feat { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--cream); }
.offline-feat > svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; }
.offline-phone-card {
  background: var(--groove);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 380px;
  margin: 0 auto;
}
.offline-status {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  font-size: 0.82rem; color: var(--gold);
  margin-bottom: 20px;
}
.offline-status > svg { width: 15px; height: 15px; stroke: var(--gold); }
.offline-items { display: flex; flex-direction: column; gap: 8px; }
.offline-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--black);
  border-radius: 8px;
  font-size: 0.82rem; color: var(--cream);
}
.offline-item.done { opacity: 0.65; }
.offline-item > svg { width: 15px; height: 15px; flex-shrink: 0; }
.offline-item.pending > svg { stroke: var(--muted); }
.offline-item.done > svg { stroke: #10b981; }
.offline-item > span:first-of-type { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.offline-item-badge {
  font-size: 0.7rem; padding: 2px 8px; border-radius: 6px;
  background: rgba(255,255,255,0.06); color: var(--muted); flex-shrink: 0;
}
.offline-item-badge.done { background: rgba(16,185,129,0.15); color: #10b981; }
.offline-sep {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  font-size: 0.78rem; color: #10b981;
  border-radius: 6px;
  background: rgba(16,185,129,0.08);
}
.offline-sep > svg { width: 13px; height: 13px; stroke: #10b981; }

/* ═══════════════════════════════════════════════════════
   MEDIA SECTION (Spotify / YouTube)
═══════════════════════════════════════════════════════ */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.media-card {
  background: var(--groove);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.media-logo { display: flex; align-items: center; }
.media-logo img { height: 40px; width: auto; object-fit: contain; }
.media-logo.yt img { height: 34px; }
.media-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--cream); margin-bottom: 10px; }
.media-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   SELL & EXPORT SECTION
═══════════════════════════════════════════════════════ */
.bg-groove { background: var(--groove); }
.sell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.sell-card {
  background: var(--black);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sell-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(201,168,76,0.12);
  display: flex; align-items: center; justify-content: center;
}
.sell-icon svg { width: 26px; height: 26px; stroke: var(--gold); }
.sell-service {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.07em;
}
.sell-service-logo { height: 20px; width: auto; object-fit: contain; }
.sell-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--cream); margin-bottom: 10px; line-height: 1.4; }
.sell-body p { font-size: 0.86rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.sell-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.sell-features li {
  font-size: 0.82rem; color: var(--muted);
  padding-left: 16px; position: relative;
}
.sell-features li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   FOR WHOM SECTION
═══════════════════════════════════════════════════════ */
.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.profile-card {
  background: var(--groove);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s;
}
.profile-card:hover { border-color: var(--gold-border); }
.profile-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(201,168,76,0.12);
  display: flex; align-items: center; justify-content: center;
}
.profile-icon svg { width: 26px; height: 26px; stroke: var(--gold); }
.profile-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--cream); }
.profile-card > p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
.profile-list {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 7px;
}
.profile-list li {
  font-size: 0.82rem; color: var(--muted);
  padding-left: 16px; position: relative;
}
.profile-list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — new sections
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-highlights { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .features-highlights { grid-template-columns: 1fr; }
  .offline-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .media-grid { grid-template-columns: 1fr; }
  .sell-grid { grid-template-columns: 1fr; }
  .forwhom-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .feat-items-grid { grid-template-columns: 1fr; }
  .offline-text h2 { font-size: 1.9rem; }
}
