:root {
  --primary: #0d9488;
  --primary-dark: #0f766e;
  --secondary: #14b8a6;
  --bg: #f0fdfa;
  --surface: #ffffff;
  --text: #134e4a;
  --text-light: #5eead4;
  --muted: #6b7280;
  --border: rgba(13, 148, 136, 0.15);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

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

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

.preview-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  text-align: center;
  padding: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary.large {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-secondary {
  background: white;
  color: var(--text);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--border);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--primary);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tag {
  background: rgba(20, 184, 166, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  font-weight: 700;
}

.hero p {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 440px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -12px;
  background: linear-gradient(135deg, #ddd 0%, #bbb 100%);
}

.avatar:first-child {
  margin-left: 0;
}

.trust p {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
  border-radius: 24px;
}

.card-float {
  position: absolute;
  background: white;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.card-1 {
  top: 40px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.check {
  width: 24px;
  height: 24px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.card-2 {
  bottom: 60px;
  left: -30px;
  text-align: center;
}

.card-2 strong {
  display: block;
  font-size: 1.8rem;
  color: var(--primary);
}

.card-2 span {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* Equipe */
.equipe {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.equipe h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 48px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.praticien {
  background: var(--surface);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border);
}

.praticien-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ddd 0%, #bbb 100%);
  margin: 0 auto 20px;
}

.praticien h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.specialite {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.desc {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Services */
.services {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.services-header h2 {
  font-size: 2.2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  position: relative;
}

.service-card.featured {
  background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
  border: 2px solid var(--primary);
}

.service-card.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px dashed var(--border);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-icon.blue {
  background: #dbeafe;
}

.service-icon.teal {
  background: #ccfbf1;
}

.service-icon.green {
  background: #dcfce7;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.plus {
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
}

/* RDV Section */
.rdv-section {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.rdv-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 48px 60px;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rdv-content h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.rdv-content p {
  opacity: 0.9;
  margin-bottom: 20px;
}

.rdv-avantages {
  list-style: none;
  display: flex;
  gap: 24px;
}

.rdv-avantages li {
  font-size: 0.95rem;
}

.rdv-box .btn-primary {
  background: white;
  color: var(--primary);
}

/* Horaires */
.horaires {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.horaires-card {
  background: var(--surface);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
  max-width: 480px;
  margin: 0 auto;
}

.horaires-card h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  text-align: center;
}

.horaires-list {
  margin-bottom: 24px;
}

.jour {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.jour:last-child {
  border-bottom: none;
}

.contact-mini {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-mini p {
  margin: 4px 0;
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .team-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .rdv-box {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  
  .rdv-avantages {
    flex-direction: column;
    gap: 8px;
  }
  
  .header {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}
