/* ============================================================
   VELVETTOUCH — Homepage Sections
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 4rem) 2rem 5rem;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(74,14,143,0.07) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 88%, rgba(74,158,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 88% 18%, rgba(74,14,143,0.07) 0%, transparent 50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--violet-pale);
  color: var(--violet);
  border: 1px solid rgba(74,14,143,0.2);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before { content: '✦'; color: var(--accent); }

.hero h1 {
  max-width: 760px;
  margin: 0 auto 1.2rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-sub {
  font-size: 1.05rem;
  color: #555;
  max-width: 460px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-sub strong { color: var(--violet); }

.hero .btn {
  animation: fadeUp 0.6s 0.3s ease both;
}

/* Card visual */
.hero-card {
  margin-top: 4rem;
  width: 340px;
  height: 200px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-light) 55%, var(--accent) 100%);
  box-shadow: 0 32px 80px rgba(74,14,143,0.3), 0 0 0 1px rgba(255,255,255,0.08) inset;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.hero-card::after {
  content: '';
  position: absolute; bottom: -30px; left: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.card-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.card-logo span { font-style: italic; color: var(--gold-light); }
.card-chip {
  width: 36px; height: 26px;
  background: var(--gold-light);
  border-radius: 4px;
  opacity: 0.85;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.card-name {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.card-nfc {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.card-nfc::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 50%;
}

/* ── NETWORKING ───────────────────────────────────────────── */

.networking {
  background: var(--noir);
  color: var(--blanc);
}
.networking .section-label { color: var(--accent); }
.networking h2 { color: var(--blanc); }
.networking .section-sub { color: rgba(255,255,255,0.6); font-family: var(--font-body); }

.networking-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--gris-moyen);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.video-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(74,14,143,0.15) 0%, transparent 60%);
}
.play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: transform var(--ease);
}
.play-btn:hover { transform: scale(1.1); }
.play-btn::after { content: '▶'; color: #fff; font-size: 1.1rem; margin-left: 4px; }

/* ─── TROIS CARTES MINIMALISTES ─── */
.cards-mockups {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
  align-items: stretch;
}

.mockup-card {
  flex: 1;
  max-width: 150px;
  min-width: 100px;
  background: var(--ink-2);
  border-radius: var(--r-sm);
  padding: 0.8rem 0.6rem 0.6rem;
  border: 1px solid var(--w08);
  transition: all 0.4s var(--ease-out);
  position: relative;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mockup-card:hover {
  border-color: var(--w20);
  background: var(--ink-3);
  transform: translateY(-3px);
}

/* Card inner */
.mockup-card-inner {
  width: 100%;
  aspect-ratio: 85.6 / 54;
  border-radius: 4px;
  padding: 0.5rem 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background: #0b0b0d;
  border: 1px solid rgba(255,255,255,0.05);
}

/* PRO card */
.mockup-card--pro .mockup-card-inner {
  background: #0b0b0d;
  border-color: rgba(255,255,255,0.06);
}

/* MENU card */
.mockup-card--menu .mockup-card-inner {
  background: linear-gradient(155deg, #0c0c0f 0%, #121215 100%);
  border-color: rgba(255,255,255,0.05);
  border-top-color: rgba(240,237,230,0.06);
}

/* ENTREPRISE card */
.mockup-card--entreprise .mockup-card-inner {
  background: linear-gradient(155deg, #0e0e12 0%, #141418 100%);
  border-color: rgba(200,216,240,0.05);
}

/* Card elements */
.mockup-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.mockup-chip {
  width: 12px;
  height: 8px;
  border-radius: 1px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.mockup-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
}

.mockup-brand {
  font-family: 'Satoshi', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.02em;
}

.mockup-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.mockup-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.3rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.15);
}

.mockup-nfc {
  opacity: 0.12;
  flex-shrink: 0;
}

/* Menu specific */
.mockup-menu-group {
  display: flex;
  align-items: center;
  gap: 5px;
}

.mockup-menu-sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.05);
}

/* Logo placeholder */
.mockup-logo-box {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  background: rgba(200,216,240,0.03);
  border: 1px dashed rgba(200,216,240,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-logo-box span {
  font-family: 'Inter', sans-serif;
  font-size: 0.35rem;
  color: rgba(200,216,240,0.15);
}

/* Name label below card */
.mockup-name-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 0.5rem;
  transition: color 0.3s;
}

.mockup-card:hover .mockup-name-label {
  color: rgba(255,255,255,0.8);
}

/* ── DUAL (PARTAGE / COLLECTE) ────────────────────────────── */

.dual-section {
  background: rgba(4,13,42,0.4);
  text-align: center;
}
.dual-section h2 { color: #ffffff !important; }
.dual-section h2 {
  max-width: 640px;
  margin: 0 auto var(--space-lg);
}
.dual-phones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 680px;
  margin: 0 auto;
}

.phone-mockup {
  background: var(--gris-fonce);
  border-radius: 28px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
}
.phone-screen {
  background: linear-gradient(160deg, var(--violet) 0%, var(--gris-moyen) 100%);
  border-radius: 18px;
  padding: 1.5rem 1rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.profile-pic {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.8;
  margin: 0 auto;
}
.profile-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.18);
}
.profile-line.short { width: 60%; margin: 0 auto; }
.profile-line.full  { width: 100%; }
.profile-btn {
  background: var(--accent);
  border-radius: 6px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.phone-label {
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--blanc);
  font-weight: 600;
}

/* ─── PRICING CARD HEADER ─── */
.price-card-header {
  margin-bottom: 1.5rem;
}
.price-card-pill {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.6rem;
  border-radius: 1px;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.price-card h3 {
  font-family: 'Satoshi', system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.price-card h3 em {
  font-style: normal;
  color: var(--cream);
}
.price-card.featured h3 em {
  color: var(--cream);
}

/* ── PRICING GRID ─────────────────────────────────────────── */

.pricing {
  background: rgba(7,18,40,0.5);
}
.pricing h2 { color: #ffffff !important; }
.pricing .section-label { color: var(--accent) !important; }
.pricing .section-sub { color: var(--blanc-70) !important; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* ── ENTERPRISE GRID ──────────────────────────────────────── */

.enterprise {
  background: rgba(4,13,42,0.4);
}
.enterprise h2 { color: #ffffff !important; }
.enterprise .section-sub { color: var(--blanc-70) !important; }
.enterprise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.ent-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.ent-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.ent-feat {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.ent-check { color: var(--accent); flex-shrink: 0; }

/* ── TESTIMONIALS GRID ────────────────────────────────────── */

.temoignages {
  background: rgba(7,18,40,0.5);
}
.temoignages h2 { color: #ffffff !important; }
.temoignages .section-sub { color: var(--blanc-70) !important; }
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 900px) {
  .networking-inner   { grid-template-columns: 1fr; gap: 2.5rem; }
  .pricing-grid       { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .enterprise-grid    { grid-template-columns: 1fr; }
  .temoignages-grid   { grid-template-columns: 1fr; }
  .dual-phones        { grid-template-columns: 1fr; max-width: 280px; }
  .hero-card          { width: 280px; height: 165px; }
  .cards-mockups      { flex-direction: column; align-items: center; gap: 1rem; }
  .mockup-card        { max-width: 180px; width: 100%; }
}