/* ============================================================
   CABINET ORELIA — STYLES LANDING
   ============================================================ */

/* ===== HERO ===== */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-ornament {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 132, 63, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 880px;
}
.hero-title {
  margin: 16px 0 24px;
  font-size: clamp(40px, 7vw, 84px);
  letter-spacing: -0.03em;
}
.hero-sub {
  max-width: 640px;
  margin-bottom: 40px;
}
.hero-sub strong {
  color: var(--navy);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.hero-stats strong {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  color: var(--ocre);
  line-height: 1;
}
.hero-stats span {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .hero-stats > div:nth-child(3) {
    grid-column: 1 / -1;
  }
}

/* ===== SECTORS ===== */
.sectors {
  background: var(--ivory-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.sectors-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
  margin-bottom: 24px;
}
.sectors-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.sectors-grid span {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--navy);
  opacity: 0.7;
}

@media (max-width: 640px) {
  .sectors-grid { gap: 16px 24px; }
  .sectors-grid span { font-size: 18px; }
}

/* ===== PROBLEM ===== */
.problem-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem-text h2 {
  margin: 16px 0 24px;
}
.problem-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-list li {
  display: flex;
  gap: 16px;
  font-size: 16px;
  color: var(--text);
}
.problem-list li span {
  color: var(--ocre);
  font-weight: 600;
  flex-shrink: 0;
}
.problem-visual {
  text-align: center;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: var(--ocre-bg);
  border-radius: 50%;
  opacity: 0.5;
}
.problem-card-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 96px;
  font-weight: 500;
  color: var(--ocre);
  line-height: 1;
  position: relative;
}
.problem-card-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 12px 0 24px;
  position: relative;
}
.problem-card-meta {
  display: block;
  font-size: 14px;
  color: var(--text-soft);
  font-style: italic;
  position: relative;
}
.problem-card-source {
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 16px;
}

@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== SERVICES ===== */
.services {
  background: var(--ivory-soft);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all .3s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--ocre-pale);
}
.service-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ocre);
  margin-bottom: 12px;
}
.service-card h3 {
  margin-bottom: 12px;
}
.service-card p {
  margin-bottom: 20px;
}
.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.service-card ul li {
  font-size: 14px;
  color: var(--text-soft);
  padding-left: 20px;
  position: relative;
}
.service-card ul li::before {
  content: '○';
  position: absolute;
  left: 0;
  color: var(--ocre);
}

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

/* ===== PROCESS ===== */
.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  counter-reset: process;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line) 20%, var(--line) 80%, transparent 100%);
  z-index: 0;
}
.process-steps li {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--ivory);
  border: 1px solid var(--ocre);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ocre);
  margin-bottom: 24px;
}
.process-steps h3 {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
}

/* ===== PRICING ===== */
.pricing-teaser {
  background: var(--ivory-soft);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.pricing-card-featured {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--ocre);
  transform: scale(1.02);
}
.pricing-card-featured h3 { color: var(--ivory); }
.pricing-card-featured .pricing-tagline,
.pricing-card-featured ul li { color: rgba(245, 241, 232, 0.7); }
.pricing-card-featured ul li::before { color: var(--ocre-soft); }
.pricing-card-featured:hover { transform: scale(1.02) translateY(-4px); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ocre);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 999px;
}
.pricing-card h3 {
  margin-bottom: 4px;
}
.pricing-tagline {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 15px;
  margin-bottom: 24px;
}
.pricing-price {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pricing-price sup {
  font-size: 24px;
  font-weight: 500;
  top: -16px;
}
.pricing-price span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-soft);
  margin-left: 4px;
}
/* Couleurs forcées sur la carte Premium (fond marine) - DOIT être après .pricing-price */
.pricing-card-featured .pricing-price,
.pricing-card-featured .pricing-price sup {
  color: var(--ivory);
}
.pricing-card-featured .pricing-price span {
  color: rgba(245, 241, 232, 0.65);
}
.pricing-card ul {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-card ul li {
  font-size: 14px;
  padding-left: 24px;
  position: relative;
  color: var(--text);
}
.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ocre);
  font-weight: 600;
}
.pricing-foot {
  text-align: center;
  font-size: 13px;
  color: var(--text-soft);
  font-style: italic;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  text-align: center;
  background: var(--ivory);
}
.testimonial-quote {
  margin-top: 24px;
}
.testimonial-quote p {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.4;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-quote footer cite {
  font-style: normal;
  font-size: 14px;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 0 0 80px;
}
.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 132, 63, 0.15) 0%, transparent 70%);
}
.cta-box .eyebrow { color: var(--ocre-soft); }
.cta-box h2 {
  color: var(--ivory);
  margin: 16px 0 16px;
}
.cta-box p { color: rgba(245, 241, 232, 0.8); }
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  position: relative;
}
.cta-box .btn-ghost {
  border-color: var(--ivory);
  color: var(--ivory);
}
.cta-box .btn-ghost:hover {
  background: var(--ivory);
  color: var(--navy);
}

@media (max-width: 640px) {
  .cta-box { padding: 56px 24px; }
}
