/* ============================================================
   STELVAR — refonte
   Tokens repris de client2.0 / base.css
   ============================================================ */
:root {
  --bg: #080808;
  --surface: #111214;
  --border: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(243, 210, 79, 0.28);
  --text: #f7f1da;
  --muted: #b7a97b;
  --muted-2: #8e825f;
  --brand: #f3d24f;
  --font: "Manrope", "Avenir Next", sans-serif;
  --content: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.container { width: min(var(--content), calc(100% - 48px)); margin: 0 auto; }

::selection { background: rgba(243, 210, 79, 0.25); color: #fff; }

/* ============================================================
   NAV
   ============================================================ */
.topnav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .35s ease;
}
.topnav.is-scrolled { background: rgba(5, 5, 6, 0.92); }
.topnav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  transition: padding .35s ease;
}
.topnav.is-scrolled .topnav-inner { padding: 11px 0; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-word {
  font-weight: 800; font-size: 17px; letter-spacing: 0.16em; color: var(--text);
}
.brand-word.small { font-size: 14px; }
.brand-logo {
  display: block;
  height: 42px;
  width: auto;
  transition: height .35s ease;
}
.topnav.is-scrolled .brand-logo { height: 34px; }
.brand-logo.small { height: 30px; }
.nav-links { display: flex; align-items: center; gap: 4px; position: relative; }
.nav-links a {
  position: relative; z-index: 1;
  font-size: 14px; font-weight: 600; color: var(--muted);
  padding: 9px 18px; border-radius: 999px;
  transition: color .25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.is-active { color: var(--brand); }
.nav-pill {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.04);
  left: 0; width: 0; opacity: 0;
  transition:
    left .4s cubic-bezier(0.3, 0.7, 0.2, 1),
    width .4s cubic-bezier(0.3, 0.7, 0.2, 1),
    opacity .3s ease;
  pointer-events: none;
}
.nav-cta {
  font-size: 13.5px; font-weight: 700; color: var(--brand);
  border: 1px solid var(--border-gold);
  border-radius: 999px; padding: 9px 20px;
  transition: background .2s ease, color .2s ease;
}
.nav-cta:hover { background: var(--brand); color: #121212; }

.topnav-tools { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  display: flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.05em;
}
.lang-switch a {
  color: var(--muted-2);
  padding: 4px 2px;
  transition: color .2s ease;
}
.lang-switch a:hover { color: var(--text); }
.lang-switch a.on { color: var(--brand); }
.lang-switch .sep-slash { color: var(--muted-2); opacity: 0.5; }

/* ---- menu mobile (façon Apple) ---- */
.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 42px; height: 42px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
}
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(6, 6, 7, 0.9);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  display: flex; align-items: center; justify-content: center;
  padding-top: 60px;
  opacity: 0; visibility: hidden;
  transition: opacity .4s ease, visibility .4s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }

.mobile-menu-links {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; text-align: center;
}
.mobile-menu-links a {
  font-size: 30px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--text);
  padding: 10px 24px;
  opacity: 0; transform: translateY(16px);
  transition: color .2s ease;
}
.mobile-menu-links a:hover, .mobile-menu-links a.is-active { color: var(--brand); }
@keyframes menu-link-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
body.menu-open .mobile-menu-links a {
  animation: menu-link-in .45s cubic-bezier(0.2, 0.6, 0.2, 1) both;
}
body.menu-open .mobile-menu-links a:nth-child(1) { animation-delay: .06s; }
body.menu-open .mobile-menu-links a:nth-child(2) { animation-delay: .11s; }
body.menu-open .mobile-menu-links a:nth-child(3) { animation-delay: .16s; }
body.menu-open .mobile-menu-links a:nth-child(4) { animation-delay: .21s; }
body.menu-open .mobile-menu-links a:nth-child(5) { animation-delay: .26s; }
body.menu-open .mobile-menu-links a:nth-child(6) { animation-delay: .31s; }
.mobile-menu-links a.mobile-menu-cta {
  margin-top: 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  padding: 14px 34px;
  transition: background .2s ease, color .2s ease;
}
.mobile-menu-links a.mobile-menu-cta:hover,
.mobile-menu-links a.mobile-menu-cta:active {
  background: var(--brand);
  color: #121212;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - 65px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 70px 24px 40px;
}
.hero.short { min-height: 0; padding: 110px 24px 30px; }
.hero h1 {
  font-size: clamp(48px, 7.6vw, 94px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 34px;
  max-width: 44ch;
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 26px; margin-bottom: 20px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--brand);
  color: #121212; font-weight: 700; font-size: 15.5px;
  border: none; cursor: pointer;
  border-radius: 999px; padding: 15px 30px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(243, 210, 79, 0.28);
}
.link-more {
  font-size: 15.5px; font-weight: 600; color: var(--brand);
  display: inline-flex; align-items: center; gap: 7px;
}
.link-more:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---- carte NFC 3D ---- */
.hero-stage {
  position: relative;
  margin-top: 44px;
  perspective: 1400px;
  width: min(560px, 90vw);
  height: 470px;
}
.stage-glow {
  position: absolute; inset: 12% 6% 2%;
  background: radial-gradient(ellipse 52% 50% at 50% 52%, rgba(243, 210, 79, 0.2), transparent 70%);
  filter: blur(18px);
  animation: glow-pulse 5.5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.72; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.04); }
}
.nfc-card {
  position: absolute; left: 50%; top: 50%;
  width: 262px; height: 417px;
  transform: translate(-50%, -50%) rotateX(8deg) rotateY(-13deg) rotateZ(2deg);
  transform-style: preserve-3d;
  border-radius: 16px;
  filter:
    drop-shadow(0 50px 70px rgba(0, 0, 0, 0.6))
    drop-shadow(0 16px 30px rgba(0, 0, 0, 0.45));
  transition: transform .35s ease;
  will-change: transform;
  animation: cardfloat 8s ease-in-out infinite;
}
.card-img {
  width: 100%; height: 100%;
  display: block;
}
@keyframes cardfloat {
  0%, 100% { transform: translate(-50%, -50%) rotateX(8deg) rotateY(-13deg) rotateZ(2deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotateX(8deg) rotateY(-13deg) rotateZ(2deg) translateY(-10px); }
}
.nfc-card::before {
  content: ""; position: absolute; inset: 1px; border-radius: 16px;
  background: linear-gradient(115deg, transparent 32%, rgba(243, 210, 79, 0.10) 46%, rgba(255, 233, 163, 0.18) 50%, rgba(243, 210, 79, 0.10) 54%, transparent 68%);
  background-size: 260% 100%;
  animation: sheen 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes sheen {
  0%, 100% { background-position: 120% 0; }
  50% { background-position: -20% 0; }
}

/* --- vraies cartes d'avis Google qui poppent en cascade autour de la carte --- */
.review-notif {
  position: absolute;
  width: 224px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
  padding: 13px 15px;
  text-align: left;
  z-index: 3;
  opacity: 0;
  animation:
    notif-pop .62s cubic-bezier(0.22, 0.9, 0.24, 1.14) var(--d, 0s) both,
    notif-float 7s ease-in-out calc(var(--d, 0s) + 0.9s) infinite;
}
.rn-pos-1 { right: -24px; bottom: 32px; }
.rn-pos-2 { left: -30px; top: 24px; }
.rn-pos-3 { right: -42px; top: 116px; }
@keyframes notif-pop {
  0% { opacity: 0; transform: scale(0.8) translateY(16px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes notif-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.rn-head { display: flex; align-items: center; gap: 9px; }
.rn-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: #5b6b9e; color: #fff;
  font-weight: 600; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rn-meta { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.rn-name { font-size: 13px; font-weight: 600; color: #202124; }
.rn-sub { font-size: 11px; color: #5f6368; }
.rn-google { margin-left: auto; display: flex; flex-shrink: 0; }
.rn-stars { color: #fbbc04; font-size: 14px; letter-spacing: 1.5px; margin: 9px 0 4px; }
.rn-text { margin: 0; font-size: 12.5px; line-height: 1.45; color: #3c4043; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 150px 0; }
.section-tight { padding: 110px 0; }

.kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 22px; display: block;
}

.statement { text-align: center; }
.statement h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.12;
  margin: 0; text-wrap: balance;
}
.statement h2 span { color: var(--brand); }

.how { text-align: center; }
.how h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.12;
  margin: 0 0 80px; text-wrap: balance;
}
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.how-item { text-align: center; }
.how-num {
  font-size: 13px; font-weight: 800; letter-spacing: 0.2em;
  color: var(--muted-2); display: block; margin-bottom: 18px;
}
.how-item h3 {
  font-size: 21px; font-weight: 800; letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.how-item p {
  font-size: 15px; line-height: 1.6; color: var(--muted);
  margin: 0 auto; max-width: 30ch;
}

/* ---- grande image ---- */
.bigimg-wrap { width: min(1280px, calc(100% - 48px)); margin: 0 auto; }
.bigimg {
  position: relative;
  min-height: clamp(460px, 66vw, 780px);
  display: flex; align-items: flex-end; justify-content: center;
}
/* Look "placeholder" uniquement quand aucune vraie photo n'est en place */
.bigimg:has(.img-note) {
  border-radius: 28px;
  overflow: hidden;
  min-height: clamp(380px, 55vw, 620px);
  border: 1px solid var(--border);
  background:
    radial-gradient(100% 80% at 50% 20%, rgba(243, 210, 79, 0.06), transparent 60%),
    linear-gradient(170deg, #151618 0%, #0a0b0c 100%);
}
/* Vraie photo : se fond dans le noir de la page, aucun cadre, aucun bord net */
.bigimg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 64%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 64%, transparent 100%);
}
.bigimg.contain .bigimg-photo {
  object-fit: contain;
  -webkit-mask-image: none;
  mask-image: none;
}
.bigimg-shade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--bg) 90%);
  pointer-events: none;
}
.bigimg .img-note {
  position: absolute; top: 18px; right: 20px;
  font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 700;
  background: rgba(8, 8, 8, 0.55); border: 1px solid var(--border);
  padding: 5px 10px; border-radius: 999px;
}
.bigimg-caption {
  position: relative; z-index: 1;
  padding: 0 24px 54px;
  text-align: center;
}
.bigimg-caption h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800; letter-spacing: -0.025em;
  margin: 0 0 8px; text-wrap: balance;
}
.bigimg-caption p { font-size: 16px; color: var(--muted); margin: 0; }

/* ---- vitrine produit : image détourée qui flotte sur le noir (façon Apple) ---- */
.showcase { text-align: center; }
.showcase-media {
  width: min(340px, 72%);
  margin: 0 auto 46px;
  filter:
    drop-shadow(0 50px 70px rgba(0, 0, 0, 0.6))
    drop-shadow(0 16px 30px rgba(0, 0, 0, 0.45));
  animation: showcase-float 8s ease-in-out infinite;
}
@keyframes showcase-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.showcase-media img { width: 100%; display: block; }
.showcase h2 {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.08;
  margin: 0 0 14px; text-wrap: balance;
}
.showcase p {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--muted); margin: 0 auto; max-width: 40ch;
}
@media (prefers-reduced-motion: reduce) {
  .showcase-media { animation: none; }
}

/* ---- statistique ---- */
.stat { text-align: center; }
.stat-num {
  font-size: clamp(90px, 14vw, 170px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
  display: block; margin-bottom: 18px;
}
.stat p {
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--muted); margin: 0; font-weight: 500;
}

/* ---- secteurs ---- */
.sectors { text-align: center; }
.sectors p {
  font-size: clamp(24px, 3.4vw, 44px);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.35;
  color: var(--muted-2);
  margin: 0; text-wrap: balance;
}
.sectors p b { color: var(--text); font-weight: 800; }
.sectors .sep { color: var(--brand); padding: 0 6px; }

/* ---- témoignage ---- */
.quote { text-align: center; max-width: 760px; margin: 0 auto; }
.quote .stars { color: var(--brand); font-size: 17px; letter-spacing: 4px; display: block; margin-bottom: 30px; }
.quote blockquote {
  font-size: clamp(21px, 2.6vw, 32px);
  font-weight: 700; letter-spacing: -0.015em; line-height: 1.4;
  margin: 0 0 28px; text-wrap: balance;
}
.quote-author { font-size: 14px; color: var(--muted-2); font-weight: 600; }
.quote-author b { color: var(--muted); display: block; font-size: 15px; margin-bottom: 3px; }

/* ---- FAQ ---- */
.faq-head { text-align: center; margin-bottom: 60px; }
.faq-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800; letter-spacing: -0.025em; margin: 0;
}
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 4px; text-align: left;
  color: var(--text); font-size: 16.5px; font-weight: 700;
  transition: color .2s ease;
}
.faq-q:hover { color: var(--brand); }
.faq-icon {
  flex-shrink: 0; color: var(--muted-2); font-size: 20px; font-weight: 400;
  transition: transform .3s ease, color .3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--brand); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p {
  margin: 0; padding: 0 40px 26px 4px;
  font-size: 15px; line-height: 1.7; color: var(--muted);
}

/* ---- CTA final ---- */
.finale { text-align: center; padding: 160px 0 150px; }
.finale h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
  margin: 0 0 34px; text-wrap: balance;
}
.finale .hero-actions { justify-content: center; margin-bottom: 0; }

/* ============================================================
   FORMULAIRE (contact)
   ============================================================ */
.form-wrap { max-width: 640px; margin: 0 auto; }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin-bottom: 26px;
}
.form-grid label {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--muted); text-align: left;
}
.form-grid label.full { grid-column: 1 / -1; }
.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  resize: vertical;
}
.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(243, 210, 79, 0.08);
}
.form-actions { text-align: center; }
.form-message.success {
  margin-bottom: 26px;
  padding: 15px 18px;
  border-radius: 14px;
  background: rgba(151, 231, 168, 0.08);
  border: 1px solid rgba(151, 231, 168, 0.3);
  color: #97e7a8;
  font-weight: 700;
  font-size: 14.5px;
  text-align: center;
}
.field-error {
  color: #ff9d9d;
  font-size: 12.5px;
  font-weight: 600;
}
.form-note { margin-top: 20px; font-size: 13px; color: var(--muted-2); }
.form-note a { color: var(--brand); }

/* ============================================================
   BOUTIQUE / PRODUITS
   ============================================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}
.product-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #101113 0%, #0a0b0c 100%);
  transition: transform .3s ease, border-color .3s ease;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--border-gold); }
.product-media {
  position: relative;
  height: 240px;
  background:
    radial-gradient(90% 90% at 50% 20%, rgba(243, 210, 79, 0.05), transparent 60%),
    linear-gradient(165deg, #16171a 0%, #0b0c0e 100%);
  display: flex; align-items: center; justify-content: center;
}
.product-media svg { opacity: 0.28; }
.soon-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand);
  background: rgba(243, 210, 79, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  padding: 6px 13px;
}
.product-body { padding: 22px 24px 26px; text-align: left; }
.product-body h3 {
  font-size: 17.5px; font-weight: 800; letter-spacing: -0.01em;
  margin: 0 0 6px; color: var(--text);
}
.product-body .product-desc {
  font-size: 13.5px; line-height: 1.55; color: var(--muted);
  margin: 0 0 18px;
}
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.btn-order {
  display: inline-block;
  border: 1px solid var(--border-gold);
  color: var(--brand);
  font-size: 13.5px; font-weight: 700;
  border-radius: 999px; padding: 10px 22px;
  transition: background .2s ease, color .2s ease;
}
.btn-order:hover { background: var(--brand); color: #121212; }
.product-price {
  font-size: 13.5px; font-weight: 700; color: var(--muted-2);
  letter-spacing: 0.02em;
}
.shop-note {
  text-align: center;
  margin-top: 56px;
  font-size: 15px; color: var(--muted);
}
.shop-note a { color: var(--brand); font-weight: 700; }
.shop-note a:hover { text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 860px) {
  .shop-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GUIDE — structure identique à guide.php
   ============================================================ */
.guide-page {
  width: min(680px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}
.guide-page .brand { margin-bottom: 28px; }
.guide-page h1 {
  font-size: clamp(36px, 6vw, 54px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 12px;
}
.guide-page h2 {
  font-size: clamp(24px, 4vw, 33px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 12px;
}
.guide-intro,
.guide-subtext,
.guide-step-text,
.guide-final p {
  color: var(--muted);
  line-height: 1.75;
}
.guide-intro { margin: 0; max-width: 46ch; font-size: 16px; }

.guide-main-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.guide-main-btn {
  position: relative;
  padding: 0 2px 12px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.2s ease;
}
.guide-main-btn::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease;
}
.guide-main-btn:hover { color: var(--brand); }
.guide-main-btn.active { color: var(--brand); }
.guide-main-btn.active::after { background: var(--brand); }

.guide-section { margin-top: 54px; }
.guide-main-panel, .guide-panel { display: none; }
.guide-main-panel.is-visible, .guide-panel.is-visible { display: block; }
.guide-installation-overview .guide-subtext { margin: 10px 0 24px; }

.guide-subnav { display: flex; gap: 10px; flex-wrap: wrap; }

.guide-steps { margin: 20px 0 0; padding: 0; list-style: none; }
.guide-step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.guide-step:first-child { border-top: 0; padding-top: 0; }
.guide-step-number {
  color: var(--brand);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
}
.guide-step-text { margin: 0; }
.guide-step-text strong { color: var(--text); }
.guide-inline-link { color: var(--brand); text-decoration: none; }
.guide-inline-link:hover { color: #ffe07a; }

.guide-placeholder {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 934 / 2024;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(243, 210, 79, 0.25);
  border-radius: 12px;
  overflow: hidden;
  margin: 10px 0 24px;
}
.guide-placeholder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-toggle {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 24px;
}
.device-btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand);
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
}
.device-btn.active { background: var(--brand); color: #080808; }
.device-content { display: none; }
.device-content.is-visible { display: block; }

.guide-final { margin-top: 54px; text-align: center; }
.guide-final p { max-width: 40ch; margin: 0 auto 24px; }
.guide-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--brand);
  color: #080808;
  font-weight: 800;
}

@media (max-width: 640px) {
  .guide-page {
    width: min(680px, calc(100% - 24px));
    padding-top: 32px;
    padding-bottom: 56px;
  }
  .guide-step { grid-template-columns: 28px minmax(0, 1fr); gap: 12px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer { border-top: 1px solid var(--border); padding: 42px 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.footer-links { display: flex; gap: 28px; font-size: 13.5px; color: var(--muted-2); }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12.5px; color: var(--muted-2); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px 28px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a {
  font-size: 12.5px; color: var(--muted-2);
  transition: color .2s ease;
}
.footer-legal a:hover { color: var(--brand); }
@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-legal { gap: 14px 22px; }
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  body.menu-open .mobile-menu-links a { opacity: 1; transform: none; }
  .review-notif { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .topnav-inner .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .how-grid { grid-template-columns: 1fr; gap: 56px; }
  .section { padding: 100px 0; }
  .section-tight { padding: 80px 0; }
  .finale { padding: 110px 0 100px; }
  .nfc-card { width: 220px; height: 350px; }
  .hero-stage { height: 410px; }
  .review-notif { width: 168px; padding: 11px 12px; }
  .rn-pos-1 { right: -6px; bottom: 16px; }
  .rn-pos-2 { left: -6px; top: 14px; }
  .rn-desktop { display: none; }
  .rn-name { font-size: 12px; }
  .rn-sub { font-size: 10px; }
  .rn-text { font-size: 11.5px; }
  .rn-avatar { width: 26px; height: 26px; font-size: 12px; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .form-grid { grid-template-columns: 1fr; }
}
