/*
Theme Name: MRH Partners
Theme URI: https://mrh-partners.ma
Author: MRH Partners
Author URI: https://mrh-partners.ma
Description: Système d'acquisition clients pour les entrepreneurs sérieux du nord du Maroc.
Version: 1.0.0
License: All Rights Reserved
Text Domain: mrh-partners
*/

/* ═══════════════════════════════════════════
   BASE
═══════════════════════════════════════════ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: #FAFAFA;
  color: #1F1F1F;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: 'Sora', sans-serif; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(31,31,31,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ═══════════════════════════════════════════
   LABEL PILL
═══════════════════════════════════════════ */
.mrh-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #148EF1;
  border: 1px solid rgba(20, 142, 241, 0.3);
  background: rgba(20, 142, 241, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
}
.mrh-label::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #148EF1;
  animation: mrh-pulse 2s ease infinite;
}
.mrh-label--dark {
  color: #FAFAFA;
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}
.mrh-label--dark::before { background: #148EF1; }

@keyframes mrh-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.mrh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #148EF1;
  color: #FAFAFA;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgba(20, 142, 241, 0.30);
  transition: background 0.22s cubic-bezier(0.25,0.46,0.45,0.94),
              transform  0.22s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.22s cubic-bezier(0.25,0.46,0.45,0.94);
}
.mrh-btn-primary:hover {
  background: #2F64C4;
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(47, 100, 196, 0.40);
  color: #FAFAFA;
}
.mrh-btn-primary:active { transform: scale(0.99); }

.mrh-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
  transition: background 0.22s cubic-bezier(0.25,0.46,0.45,0.94),
              transform  0.22s cubic-bezier(0.25,0.46,0.45,0.94);
  width: 100%;
  max-width: 480px;
}
.mrh-btn-whatsapp:hover {
  background: #1da851;
  transform: scale(1.02);
  color: #fff;
}

/* ═══════════════════════════════════════════
   CARDS
═══════════════════════════════════════════ */
.mrh-card {
  background: #FAFAFA;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(47,100,196,0.08), 0 1px 4px rgba(0,0,0,0.04);
}
.mrh-card-dark {
  background: #2A2A2A;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.mrh-truth-card {
  background: #FAFAFA;
  border: 1px solid #E0E0E0;
  border-left: 4px solid #2F64C4;
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
}
.mrh-step-card {
  background: #F4F4F4;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.22s cubic-bezier(0.25,0.46,0.45,0.94),
              transform  0.22s cubic-bezier(0.25,0.46,0.45,0.94);
}
.mrh-step-card:hover {
  box-shadow: 0 8px 32px rgba(47,100,196,0.13);
  transform: translateY(-2px);
}
.mrh-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(47,100,196,0.1);
  color: #2F64C4;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.mrh-trait-card {
  background: #FAFAFA;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.mrh-trait-card:hover {
  border-color: #2F64C4;
  box-shadow: 0 4px 20px rgba(47,100,196,0.1);
}
.mrh-icon-box {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(47,100,196,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   VALUE STACK (OFFRE)
═══════════════════════════════════════════ */
.mrh-value-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mrh-value-row:last-child { border-bottom: none; }
.mrh-value-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(20,142,241,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════════
   FORM
═══════════════════════════════════════════ */
.mrh-form-input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 14px 18px;
  color: #FAFAFA;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.22s;
}
.mrh-form-input::placeholder { color: rgba(255,255,255,0.35); }
.mrh-form-input:focus {
  border-color: #148EF1;
  box-shadow: 0 0 0 3px rgba(20,142,241,0.15);
}
.mrh-form-label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.45);
  margin-bottom: 8px;
}

/* ═══════════════════════════════════════════
   PHOTO BG UTILITY
═══════════════════════════════════════════ */
.mrh-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════════ */
.mrh-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.mrh-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   STICKY COLUMN (desktop only)
═══════════════════════════════════════════ */
@media (min-width: 768px) {
  .mrh-sticky-col { position: sticky; top: 100px; }
}

/* ═══════════════════════════════════════════
   MISC
═══════════════════════════════════════════ */
section { position: relative; overflow: hidden; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #F4F4F4; }
::-webkit-scrollbar-thumb { background: rgba(47,100,196,0.3); border-radius: 3px; }
