/* Souple et Libre - Specialized Styling (2026 Edition) */

:root {
  --sl-primary: #C2185B;
  /* Magenta */
  --sl-secondary: #F5B041;
  /* Golden Yellow */
  --sl-accent: #f3ac63;
  /* Soft Orange */
  --sl-text: #2c2e35;
  --sl-bg-light: #fef4f7;
  --sl-glass: rgba(255, 255, 255, 0.85);
  --sl-glass-dark: rgba(0, 0, 0, 0.4);
}

.sl-page {
  font-family: var(--font-primary);
  color: var(--sl-text);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Hero Section - 2026 Premium Look */
.sl-hero {
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 4rem 1rem;
  position: relative;
  background-attachment: fixed;
  background-color: #2c2e35;
  /* Dark fallback */
}

.sl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(194, 24, 91, 0.6) 0%, rgba(44, 46, 53, 0.8) 100%);
  z-index: 1;
}

.sl-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.sl-logo {
  max-width: 200px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.sl-hero h1 {
  font-size: clamp(2.2rem, 7vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.sl-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  opacity: 0.95;
  margin-bottom: 3rem;
  font-weight: 500;
  max-width: 700px;
  margin-inline: auto;
}

/* Countdown 2026 */
.sl-countdown {
  background: rgba(255, 255, 255, 0.95);
  padding: 1.5rem 2.5rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--sl-primary);
}

.sl-countdown p {
  color: var(--sl-primary);
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.sl-countdown.minimal {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  margin-bottom: 0;
  margin-top: 1.5rem;
}

.sl-countdown.minimal p {
  color: white;
  opacity: 0.9;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.sl-timer {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.sl-timer-item {
  color: var(--sl-text);
  display: flex;
  flex-direction: column;
}

.sl-timer-item span:first-child {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.sl-countdown.minimal .sl-timer-item span:first-child {
  color: white;
  font-size: 1.5rem;
}

.sl-timer-item span:last-child {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.7;
}

.sl-countdown.minimal .sl-timer-item span:last-child {
  color: white;
  opacity: 0.8;
  font-size: 0.55rem;
}

/* Content Sections */
.sl-main-content {
  padding: 5rem 0;
  background: white;
}

.sl-section {
  max-width: 800px;
  margin: 0 auto var(--spacing-3xl);
}

.sl-section ul,
.sl-highlight ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  list-style-type: disc;
}

.sl-section li,
.sl-highlight li {
  margin-bottom: 0.75rem;
}

.sl-main-content h2 {
  font-size: 2.5rem;
  color: var(--sl-primary);
  margin-top: 4rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.sl-main-content h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--sl-secondary);
  border-radius: 2px;
}

.sl-main-content blockquote {
  border-left: none;
  padding: 2.5rem;
  font-style: italic;
  margin: 3rem 0;
  background: var(--sl-bg-light);
  border-radius: 30px;
  position: relative;
  font-size: 1.25rem;
  color: var(--sl-primary);
}

.sl-main-content blockquote::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  opacity: 0.2;
  font-family: serif;
}

/* Marketing Highlight Box */
.sl-highlight {
  background: #fff8fb;
  border: 2px dashed var(--sl-primary);
  padding: 2.5rem;
  border-radius: 24px;
  margin: 3rem 0;
}

/* Inscription Card - High Conversion */
.sl-inscription {
  background: #fdf2f7;
  padding: 6rem 0;
}

.sl-offer-card {
  background: white;
  color: var(--sl-text);
  max-width: 650px;
  margin: 0 auto;
  padding: 4rem 3rem;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(194, 24, 91, 0.15);
  text-align: center;
  border: 1px solid rgba(194, 24, 91, 0.1);
}

.sl-offer-card h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 900;
}

.sl-price {
  margin: 2.5rem 0;
  background: var(--sl-bg-light);
  padding: 2rem;
  border-radius: 24px;
}

.sl-price .amount {
  font-size: 5.5rem;
  font-weight: 950;
  color: var(--sl-primary);
  line-height: 1;
  letter-spacing: -3px;
}

.sl-payment-plan {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sl-secondary);
  margin-top: 1rem;
}

.sl-features {
  list-style: none;
  text-align: left;
  margin: 3rem 0;
}

.sl-features li {
  padding: 0.75rem 0 0.75rem 2.5rem;
  position: relative;
  font-weight: 500;
  font-size: 1.1rem;
}

.sl-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  background: var(--sl-primary);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.btn-primary.btn-xl {
  background: linear-gradient(135deg, var(--sl-primary) 0%, #901345 100%);
  color: white;
  font-size: 1.4rem;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  font-weight: 800;
  box-shadow: 0 15px 30px rgba(194, 24, 91, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  width: 100%;
}

.btn-primary.btn-xl:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(194, 24, 91, 0.4);
}

.sl-guarantee-badge {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.guarantee-img {
  max-width: 130px;
}

.sl-guarantee {
  font-size: 1rem;
  font-weight: 600;
  color: var(--sl-text);
  opacity: 0.8;
}

/* Portrait Image - Wrapped Version */
.sl-portrait-img {
  float: right;
  max-width: 250px;
  border-radius: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  margin: 0 0 1.5rem 1.5rem;
  border: 6px solid white;
}

@media (max-width: 600px) {
  .sl-portrait-img {
    float: none;
    display: block;
    margin: 2rem auto;
    max-width: 100%;
  }
}

/* Pricing Plans Layout */
.sl-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.sl-pricing-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sl-pricing-card.featured {
  border-color: var(--sl-primary);
  background: var(--sl-bg-light);
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(194, 24, 91, 0.08);
  z-index: 2;
}

.sl-pricing-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--sl-text);
}

.sl-pricing-card .price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--sl-primary);
  margin-bottom: 0.5rem;
}

.sl-pricing-card .subtitle {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.sl-pricing-card .btn {
  margin-top: auto;
  padding: 1rem;
  font-size: 1rem;
}

/* Steps / Program Inclusions */
.sl-program-inclusions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
  text-align: left;
}

.sl-inclusion-item {
  background: #f9f9fb;
  padding: 1.5rem;
  border-radius: 20px;
  display: flex !important;
  /* Ensure flex */
  gap: 1.25rem;
  align-items: flex-start;
  height: 100%;
}

.sl-inclusion-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.sl-inclusion-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--sl-primary);
}

.sl-inclusion-text p {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.8;
}

/* Minimal Header for Replay/Internal Pages */
.sl-minimal-header {
  background: var(--sl-primary);
  padding: 3rem 0 2rem;
  color: white;
  text-align: center;
}

.sl-minimal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.sl-minimal-content .sl-subtitle {
  margin-bottom: 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

.sl-main-content.minimal-padding {
  padding-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sl-minimal-header {
    padding: 2rem 0 1.5rem;
  }

  .sl-minimal-content h1 {
    font-size: 1.8rem;
  }

  .sl-main-content.minimal-padding {
    padding-top: 1.5rem;
  }

  .sl-hero {
    min-height: 70vh;
    padding: 2rem 1rem;
  }

  .sl-hero-content {
    padding: 2.5rem 1.5rem;
    border-radius: 30px;
  }

  .sl-price .amount {
    font-size: 4rem;
  }

  .sl-offer-card {
    padding: 3rem 1.5rem;
  }
}