*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

:root {
  --bg:          #FFFFFF;
  --bg2:         #F8F9FB;
  --bg3:         #F0F2F5;
  --bg4:         #E8EBF0;
  --gold:        #A67C35;
  --gold-lt:     #C9A55A;
  --gold-dk:     #7A5A20;
  --gold-dim:    rgba(166,124,53,0.12);
  --gold-dim2:   rgba(166,124,53,0.22);
  --border:      rgba(0,0,0,0.10);
  --border2:     rgba(0,0,0,0.18);
  --border-gold: rgba(166,124,53,0.35);
  --text:        #111318;
  --muted:       #4B5563;
  --muted2:      #1F2937;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 1;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.logo-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted2);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 3rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--muted2);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--text); }

/* ── HERO ── */
.hero {
  padding: 240px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 160px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,165,90,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--text);
}

h1 span {
  color: var(--gold);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted2);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.btn-gold {
  background: var(--gold);
  color: #0C0F1A;
  border: none;
}

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--muted2);
  border: 1px solid var(--border2);
}

.btn-outline:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s;
}

.hero-card:hover { border-color: var(--border2); }

.hero-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.hero-app-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.hero-card-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.hero-card-text span {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-card-badge {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.badge-live {
  background: rgba(22,163,74,0.1);
  color: #16a34a;
  border: 1px solid rgba(22,163,74,0.3);
}

.badge-soon {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--border-gold);
}

/* ── STATS ── */
.stats-section {
  padding: 0 0 5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.stat {
  background: var(--bg2);
  padding: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── SECTION HEADER ── */
.section-head { margin-bottom: 3rem; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--muted2);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 480px;
}

/* ── APPS ── */
.apps-section { padding: 5rem 0; }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.app-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.app-card:hover {
  border-color: var(--border-gold);
}

.app-corner-logo {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  width: 80px;
  height: 80px;
  opacity: 0.85;
  transition: opacity 0.25s;
}

/*.app-card:hover .app-corner-logo { opacity: 0.3; }*/

.app-corner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
}

.app-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.tag-live {
  background: rgba(22,163,74,0.1);
  color: #16a34a;
  border: 1px solid rgba(22,163,74,0.3);
}

.tag-live .dot {
  background: #16a34a;
}

.tag-soon {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--border-gold);
}

.app-name {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.app-desc {
  color: var(--muted2);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.app-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--muted2);
  font-weight: 300;
}

.app-features li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}

.app-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.app-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}

.app-price small {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--muted);
  display: block;
  margin-top: 4px;
  letter-spacing: 0;
}

.store-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  transition: all 0.2s;
  border: none;
}

.store-btn:hover { transform: translateY(-1px); opacity: 0.9; }

.store-btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

.btn-appstore {
  background: #000000;
  color: #ffffff;
}

.btn-googleplay {
  background: #ffffff;
  color: #000000;
  border: 1px solid #D1D5DB;
}

.store-soon {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

/* ── VALEURS ── */
.values-section { padding: 5rem 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.2s;
}

.value-card:hover { border-color: var(--border-gold); }

.value-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}

.value-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.value-desc {
  font-size: 0.84rem;
  color: var(--muted2);
  line-height: 1.7;
  font-weight: 300;
}

/* ── MENTIONS LÉGALES ── */
.legal-section {
  padding: 5rem 0 6rem;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}

.legal-sidebar .section-title {
  font-size: 2rem;
}

.legal-sidebar p {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 1rem;
  line-height: 1.75;
}

.legal-blocks { display: grid; gap: 2rem; }

.legal-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.legal-block h3 {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.legal-block p {
  font-size: 0.875rem;
  color: var(--muted2);
  line-height: 1.75;
  font-weight: 300;
}

.legal-block strong { color: var(--text); font-weight: 500; }

.legal-block a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--border-gold);
  transition: border-color 0.2s;
}

.legal-block a:hover { border-color: var(--gold); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
}

.footer-links { display: flex; gap: 2rem; list-style: none; }

.footer-links a {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .apps-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .hero { padding: 200px 0 80px; }

  .stats-grid { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr; }

  .legal-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .nav-inner { padding: 0 1.25rem; height: 120px; }
  .mobile-menu { padding: 0.5rem 1.25rem; }

  .logo-img { width: 100px; height: 100px; }
  .logo { font-size: 0.95rem; }

  .hero { padding: 160px 0 60px; }

  h1 { font-size: 2rem; }

  .cta-row { flex-direction: column; }
  .btn { justify-content: center; }

  .app-card { padding: 1.5rem; }
  .app-footer { flex-direction: column; align-items: flex-start; }
  .store-links { flex-direction: column; width: 100%; }
  .store-btn { justify-content: center; }

  .value-card { padding: 1.5rem; }

  .legal-section { padding: 3rem 0 4rem; }
  .legal-block { padding: 1.25rem; }

  .section-title { font-size: 1.6rem; }
}