/* SPOTSMINDER — styles partagés des vitrines SEO (/, /en/, /es/, /de/, /ja/, /zh/, /pt/, /ar/)
   Mobile-first, thème noir Instagram, aucun CDN. */
:root {
  --bg: #000000; --card: #161616; --line: #262626;
  --text: #fafafa; --muted: #a8a8a8; --accent: #0095f6;
  --insta: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
* { box-sizing: border-box; margin: 0; }
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/roboto-700-latin.woff2') format('woff2');
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.55;
}
.brand {
  font-family: 'Roboto', sans-serif; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
}
a { color: var(--accent); text-decoration: none; }

nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: calc(env(safe-area-inset-top) + 14px) 20px 14px;
  max-width: 1060px; margin: 0 auto;
}
nav .brand { font-size: 1.1rem; color: var(--text); }
nav a.login {
  padding: 8px 18px; border-radius: 999px; border: 1px solid var(--line);
  color: var(--text); font-size: 0.9rem; white-space: nowrap;
}

/* Barre de langues (liens crawlables vers les 8 vitrines) */
.lang-bar {
  display: flex; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 2px 20px 12px; max-width: 1060px; margin: 0 auto;
  scrollbar-width: none;
}
.lang-bar::-webkit-scrollbar { display: none; }
.lang-bar a {
  flex-shrink: 0; font-size: 0.75rem; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px;
  white-space: nowrap;
}
.lang-bar a.cur { color: var(--text); border-color: var(--accent); }

.hero {
  max-width: 1060px; margin: 0 auto; padding: 30px 20px 60px;
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 820px) { .hero { grid-template-columns: 1.1fr 0.9fr; padding-top: 50px; } }
.hero h1 { font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1.15; letter-spacing: -0.02em; }
.hero h1 .grad {
  background: var(--insta); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero p.sub { color: var(--muted); font-size: 1.08rem; margin: 18px 0 28px; max-width: 460px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 26px; border-radius: 12px;
  font-size: 1rem; font-weight: 700; cursor: pointer; border: none; text-align: center;
}
.btn.primary { background: var(--accent); color: #fff; }
.btn.ghost { background: var(--card); color: var(--text); border: 1px solid var(--line); }
.hero .note { color: var(--muted); font-size: 0.8rem; margin-top: 14px; }

/* ---------- Mockup téléphone (100 % CSS) ---------- */
.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: 290px; height: 590px; border-radius: 42px; background: #0a0a0a;
  border: 3px solid #2e2e2e; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  overflow: hidden; display: flex; flex-direction: column; position: relative;
  direction: ltr;
}
.ph-head {
  padding: 20px 14px 8px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line); background: #000;
}
.ph-head .brand { font-size: 0.78rem; }
.ph-head .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; }
.ph-stories { display: flex; gap: 10px; padding: 10px 12px; border-bottom: 1px solid var(--line); background: #000; }
.ph-story { text-align: center; font-size: 0.55rem; color: var(--text); }
.ph-story .ring {
  width: 44px; height: 44px; border-radius: 50%; padding: 2px; background: var(--insta); margin: 0 auto 3px;
}
.ph-story .inner {
  width: 100%; height: 100%; border-radius: 50%; background: var(--card);
  border: 2px solid #000; display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.ph-map {
  flex: 1; position: relative;
  background:
    radial-gradient(circle at 25% 30%, #dcecd8 0 14%, transparent 14.5%),
    radial-gradient(circle at 75% 60%, #e8e4d4 0 20%, transparent 20.5%),
    radial-gradient(circle at 55% 20%, #dcecd8 0 10%, transparent 10.5%),
    linear-gradient(160deg, #b8d9ea 0%, #a5cfe4 60%, #b3d6e9 100%);
}
.pin {
  position: absolute; width: 34px; height: 34px; border-radius: 50% 50% 50% 4px;
  background: #fff; border: 2.5px solid #dc2743; transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.pin span { transform: rotate(45deg); font-size: 16px; }
.ph-pill {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  width: 65%; border-radius: 999px; background: rgba(22, 22, 22, 0.55);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: flex; justify-content: space-around; padding: 8px 6px; font-size: 1rem;
}
.ph-pill .plus { border: 1.8px solid #fff; border-radius: 7px; padding: 0 8px; font-weight: 700; }

/* ---------- Sections ---------- */
section.features, section.privacy, section.pricing { max-width: 1060px; margin: 0 auto; padding: 20px 20px 30px; }
h2 { font-size: 1.6rem; letter-spacing: -0.01em; margin-bottom: 26px; text-align: center; }
.grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 20px;
}
.card .ico { font-size: 1.7rem; }
.card h3 { font-size: 1.02rem; margin: 10px 0 6px; }
.card p { color: var(--muted); font-size: 0.9rem; }

/* Gabarit capture d'écran (à remplacer par une vraie image) */
figure.shot { max-width: 720px; margin: 0 auto; padding: 10px 20px 34px; }
figure.shot .ph-box {
  border: 2px dashed var(--line); border-radius: 16px; aspect-ratio: 4 / 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; color: var(--muted); font-size: 0.85rem; text-align: center; padding: 20px;
}
figure.shot .ph-ico { font-size: 2rem; }
figure.shot img { width: 100%; height: auto; border-radius: 16px; display: block; }
figure.shot figcaption { color: var(--muted); font-size: 0.8rem; text-align: center; margin-top: 10px; }

/* Vie privée */
section.privacy .lead { color: var(--muted); text-align: center; margin: -14px 0 24px; }

/* Tarifs */
.price-row { display: grid; gap: 14px; grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
@media (min-width: 620px) { .price-row { grid-template-columns: 1fr 1fr; } }
.price {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px 20px; text-align: center;
}
.price.hl { border-color: var(--accent); }
.price .amount { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; }
.price .when { color: var(--text); font-size: 0.95rem; margin: 4px 0 10px; }
.price p { color: var(--muted); font-size: 0.88rem; }

/* Étapes */
section.steps { max-width: 720px; margin: 0 auto; padding: 40px 20px; }
.step { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.step .num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--insta); color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 1.05rem; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* FAQ */
section.faq { max-width: 720px; margin: 0 auto; padding: 10px 20px 40px; }
section.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 18px; margin-bottom: 10px;
}
section.faq summary { cursor: pointer; font-weight: 600; font-size: 0.98rem; }
section.faq details p { color: var(--muted); margin-top: 8px; font-size: 0.92rem; }

.final {
  text-align: center; padding: 40px 20px 70px; max-width: 640px; margin: 0 auto;
}
.final .langs { font-size: 1.3rem; letter-spacing: 4px; margin: 14px 0 26px; }
footer {
  border-top: 1px solid var(--line); color: var(--muted); text-align: center;
  font-size: 0.78rem; padding: 22px 20px calc(env(safe-area-inset-bottom) + 22px);
}
footer .alt-langs { margin-top: 8px; }
footer .alt-langs a { color: var(--muted); text-decoration: underline; }
