/**
 * Keeratin — Espace Pro — Page CSS v2.0
 * Design system : Bebas Neue + Inter, #0a0a0a / #C5A55A / #fff
 */

/* ═══════════ HERO ═══════════ */

.lcpro-hero {
  background: #0a0a0a;
  padding: 120px 40px 80px;
  text-align: center;
}
.lcpro-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.lcpro-hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C5A55A;
  margin-bottom: 24px;
}
.lcpro-hero-title {
  font-size: clamp(36px, 5vw, 64px) !important;
  color: #fff !important;
  margin: 0 0 32px !important;
}
.lcpro-gold {
  color: #C5A55A;
}
.lcpro-hero-line {
  width: 60px;
  height: 2px;
  background: #C5A55A;
  margin: 0 auto;
}

/* ═══════════ LAYOUT ═══════════ */

.lcpro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.lcpro-container--narrow {
  max-width: 720px;
}
.lcpro-section {
  padding: 80px 0;
}
.lcpro-section--white {
  background: #fff;
}
.lcpro-section--light {
  background: #FAFAFA;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.lcpro-section--dark {
  background: #0a0a0a;
}

/* ═══════════ AVANTAGES ═══════════ */

.lcpro-advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lcpro-adv-card {
  text-align: center;
  padding: 40px 20px;
}
.lcpro-adv-number {
  display: block;
  font-size: 40px !important;
  color: #C5A55A !important;
  margin-bottom: 12px;
}
.lcpro-adv-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 8px;
}
.lcpro-adv-card p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

/* ═══════════ AUTH GRID (inscription + connexion) ═══════════ */

.lcpro-auth-grid {
  display: grid;
  grid-template-columns: 1.4fr auto 1fr;
  gap: 48px;
  align-items: start;
}
.lcpro-auth-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 80px;
}
.lcpro-auth-divider-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, #e8e8e8, transparent);
}
.lcpro-auth-divider span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ═══════════ FORMS ═══════════ */

.lcpro-form-title {
  font-size: 28px !important;
  color: #1a1a1a !important;
  margin: 0 0 8px !important;
}
.lcpro-form-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #999;
  margin: 0 0 32px;
  font-weight: 300;
}
.lcpro-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.lcpro-field {
  margin-bottom: 16px;
}
.lcpro-field--full {
  margin-bottom: 16px;
}
.lcpro-field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.lcpro-hint {
  font-weight: 300;
  color: #999;
}
.lcpro-field input,
.lcpro-field select,
.lcpro-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e8e8e8;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.lcpro-field input:focus,
.lcpro-field select:focus,
.lcpro-field textarea:focus {
  border-color: #C5A55A;
}
.lcpro-field textarea {
  resize: vertical;
  min-height: 80px;
}
.lcpro-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23999' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.lcpro-separator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
}
.lcpro-separator::before,
.lcpro-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e8e8e8;
}
.lcpro-separator span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.lcpro-forgot {
  display: block;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999;
  text-decoration: none;
  text-align: center;
  transition: color 0.3s;
}
.lcpro-forgot:hover {
  color: #C5A55A;
}

.lcpro-login-benefit {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #f0f0f0;
}

/* ═══════════ BUTTONS ═══════════ */

.lcpro-btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.lcpro-btn--gold {
  background: #C5A55A;
  color: #0a0a0a;
}
.lcpro-btn--gold:hover {
  background: #d4b668;
  box-shadow: 0 8px 30px rgba(197, 165, 90, 0.25);
  transform: translateY(-2px);
}
.lcpro-btn--dark {
  background: #0a0a0a;
  color: #fff;
}
.lcpro-btn--dark:hover {
  background: #222;
}
.lcpro-btn--outline {
  background: transparent;
  border: 1px solid #e8e8e8;
  color: #1a1a1a;
}
.lcpro-btn--outline:hover {
  border-color: #C5A55A;
  color: #C5A55A;
}
.lcpro-btn--full {
  width: 100%;
  margin-top: 8px;
}

/* ═══════════ DASHBOARD PRO ═══════════ */

.lcpro-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lcpro-dashboard-card {
  padding: 40px 32px;
  border: 1px solid #f0f0f0;
  text-align: center;
}
.lcpro-dashboard-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: #C5A55A;
}
.lcpro-dashboard-icon svg {
  width: 100%;
  height: 100%;
}
.lcpro-dashboard-card h3 {
  font-size: 20px !important;
  color: #1a1a1a !important;
  margin: 0 0 12px !important;
}
.lcpro-dashboard-card p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.6;
  margin: 0 0 20px;
  font-weight: 300;
}

/* ═══════════ PENDING BOX ═══════════ */

.lcpro-pending-box {
  text-align: center;
  padding: 60px 40px;
  border: 1px solid #f0f0f0;
}
.lcpro-pending-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
}
.lcpro-pending-icon svg {
  width: 100%;
  height: 100%;
}
.lcpro-pending-box h2 {
  font-size: 28px !important;
  color: #1a1a1a !important;
  margin: 0 0 16px !important;
}
.lcpro-pending-box p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.7;
  margin: 0 0 8px;
}

/* ═══════════ ALERTS ═══════════ */

.lcpro-alert {
  padding: 20px 24px;
  margin: 32px auto;
  max-width: 720px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.lcpro-alert-error {
  background: #fff5f5;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.lcpro-alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

/* ═══════════ BOTTOM CTA ═══════════ */

.lcpro-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lcpro-bottom-title {
  font-size: clamp(28px, 3vw, 40px) !important;
  color: #fff !important;
  margin: 0 !important;
}
.lcpro-bottom-grid p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin: 0;
  font-weight: 300;
}

/* ═══════════ MUTED ═══════════ */

.lcpro-muted {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999;
  font-weight: 300;
}

/* ═══════════ BADGE INLINE (salon status in dashboard) ═══════════ */

.lcpro-badge-inline {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-top: 8px;
}
.lcpro-badge-inline--green {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.lcpro-badge-inline--orange {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

/* ═══════════ RESPONSIVE ═══════════ */

@media (max-width: 1024px) {
  .lcpro-auth-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .lcpro-auth-divider {
    flex-direction: row;
    padding: 32px 0;
  }
  .lcpro-auth-divider-line {
    width: 80px;
    height: 1px;
  }
  .lcpro-advantages {
    grid-template-columns: repeat(2, 1fr);
  }
  .lcpro-dashboard {
    grid-template-columns: 1fr;
  }
  .lcpro-bottom-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .lcpro-hero {
    padding: 100px 24px 60px;
  }
  .lcpro-container {
    padding: 0 20px;
  }
  .lcpro-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .lcpro-advantages {
    grid-template-columns: 1fr;
  }
  .lcpro-section {
    padding: 60px 0;
  }
}
