/* ---------- RESET SIMPLE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #241c23;
  background-color: #fff7fa;
}

/* ---------- VARIABLES ---------- */
:root {
  --pink-light: #f9c7d9;
  --pink-soft: #ffd9e8;
  --pink-strong: #e15a94;
  --peach: #f29a8e;
  --text-main: #241c23;
  --bg-soft: #fff7fa;
  --white: #ffffff;
  --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.05);
  --radius-lg: 1.5rem;
}

/* ---------- LAYOUT ---------- */

.container {
  width: min(1100px, 100% - 2rem);
  margin: 0 auto;
}

/* ---------- HEADER ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 250, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0;
}

.logo img {
  height: 80px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--text-main);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-strong), var(--peach));
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ---------- BUTTONS ---------- */

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink-strong), var(--peach));
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.btn-outline {
  background: transparent;
  color: var(--pink-strong);
  border: 1px solid var(--pink-strong);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--pink-strong);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--pink-strong);
  border: 2px solid var(--pink-strong);
  box-shadow: 0 4px 15px rgba(225, 90, 148, 0.15);
}

.btn-secondary:hover {
  background: var(--pink-strong);
  color: white;
  border-color: var(--pink-strong);
}

.btn-link {
  border: none;
  background: transparent;
  color: var(--pink-strong);
  text-decoration: underline;
  font-weight: 500;
}

/* ---------- NAV TOGGLE (MOBILE) ---------- */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
}

/* ---------- HERO ---------- */

.hero {
  padding: 4rem 0 3rem;
  background: radial-gradient(circle at top left, var(--pink-soft), var(--bg-soft));
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 3rem;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: #7f6075;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  margin: 0.5rem 0;
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 30rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-illustration {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffd9e8, #f29a8e);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- HERO CAROUSEL  ---------- */
.hero-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 520px;
  max-width: 60vw;
}
.carousel {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 12px 40px rgba(36,28,35,0.08), 0 6px 18px rgba(225,90,148,0.06);
  background: linear-gradient(180deg, rgba(255,217,233,0.35), rgba(242,154,142,0.08));
}
.carousel-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.carousel-list {
  display: flex;
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.carousel-item {
  min-width: 100%;
  height: 100%;
  flex: 0 0 100%;
}
.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  color: var(--pink-strong);
  font-size: 1.6rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.carousel-btn:hover { background: var(--pink-soft); }
.carousel-btn.prev { left: 0.8rem; }
.carousel-btn.next { right: 0.8rem; }
.carousel-dots {
  position: absolute;
  bottom: 0.7rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.dot {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 2px solid rgba(255,255,255,0.9);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.dot.active { background: var(--pink-strong); border-color: var(--pink-strong); }

/* Responsive adjustments for hero */
@media (max-width: 1100px) {
  .hero-carousel-wrapper { max-width: 42vw; }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-carousel-wrapper { width: 100%; max-width: 100%; }
  .carousel-btn { width: 2rem; height: 2rem; font-size: 1.2rem; }
}
@media (max-width: 600px) {
  .hero { padding: 2.6rem 0 1.6rem; }
  .hero-kicker { font-size: 0.7rem; }
  .hero-subtitle { max-width: 100%; }
  .hero-carousel-wrapper { order: -1; }
}

/* ---------- GENERAL SECTIONS ---------- */

.section {
  padding: 4rem 0;
}

.section-soft {
  background-color: #ffe9f3;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header.left {
  text-align: left;
}

.section-header h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 0.98rem;
  color: #5c4a56;
}

/* ---------- CARDS SOINS ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-soft), var(--peach));
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.card-link {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-strong), var(--peach));
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(225, 90, 148, 0.2);
  align-self: flex-start;
}

.card-link:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(225, 90, 148, 0.35);
}

/* ---------- DETAILS SOINS ---------- */

.soin-detail {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: #ffeef6;
}

.soin-detail h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.soin-detail ul {
  margin-left: 1.2rem;
  margin-bottom: 0.75rem;
  list-style: disc;
}

/* ---------- TEAM ---------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.team-photo {
  width: 100%;
  height: 180px;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--pink-soft), var(--peach));
  margin-bottom: 1rem;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: #7f6075;
  margin-bottom: 0.5rem;
}

/* ---------- INFOS PRATIQUES ---------- */

.infos-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: start;
}

.infos-list {
  list-style: none;
}

.infos-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.infos-list a {
  color: var(--pink-strong);
}

.infos-map .map-placeholder {
  height: 220px;
  border-radius: 1.2rem;
  background: repeating-linear-gradient(
    135deg,
    #ffe1f0,
    #ffe1f0 10px,
    #ffd0e7 10px,
    #ffd0e7 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  color: #7f6075;
}

.infos-map iframe {
  height: 300px;
  border-radius: 1.2rem;
}

/* ---------- CONTACT ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.rdv-options {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rdv-method h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.phone-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.phone-card {
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--pink-soft), #fff5fa);
  border-radius: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.phone-card:hover {
  border-color: var(--pink-strong);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 90, 148, 0.15);
}

.phone-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pink-strong);
  margin-bottom: 0.5rem;
}

.phone-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

.doctolib-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #0596DE, #0575B3);
  color: white;
  border-radius: 1rem;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(5, 150, 222, 0.3);
}

.doctolib-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(5, 150, 222, 0.4);
}

/* État désactivé pour le bouton Doctolib (lien bientôt disponible) */
.doctolib-btn.disabled {
  pointer-events: none;
  opacity: 0.65;
  cursor: default;
  box-shadow: none;
}

/* Styles pour la page Mentions légales */
.content-page h2 {
  color: var(--text-main);
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
}

.content-page p {
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.content-page a {
  color: var(--pink-strong);
  text-decoration: underline;
}

.legal-version {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #6b6b6b;
  text-align: right;
}

/* Cadre léger autour du contenu pour la lisibilité */
.content-page {
  background: linear-gradient(180deg, rgba(255,245,250,0.6), rgba(255,250,250,0.8));
  padding: 1.8rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(225,90,148,0.06);
}

@media (min-width: 900px) {
  .content-page {
    padding: 2.4rem 3rem;
  }
  .content-page h2 {
    font-size: 1.6rem;
  }
}

.doctolib-icon {
  font-size: 1.5rem;
}

.contact-form {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* Inputs textuels uniquement */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="password"],
textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #f0bfd3;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  background-color: #fff;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--pink-strong);
  box-shadow: 0 0 0 2px rgba(225, 90, 148, 0.15);
}

/* Checkbox styling and consent label layout */
input[type="checkbox"] {
  width: auto;
  height: auto;
  accent-color: var(--pink-strong);
  margin-right: 0.5rem;
  transform: scale(1.05);
  vertical-align: middle;
}

.consent {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.form-note {
  font-size: 0.8rem;
  color: #7f6075;
  margin-top: 0.5rem;
}

/* ---------- FOOTER ---------- */

.site-footer {
  padding: 1.5rem 0;
  background-color: #241c23;
  color: #fce5f1;
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer a {
  color: #ffd9e8;
  text-decoration: none;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .hero-content,
  .cards-grid,
  .team-grid,
  .infos-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .header-rdv {
    display: none;
  }

  .main-nav {
    position: absolute;
    inset: 100% 0 auto;
    background-color: rgba(255, 247, 250, 0.97);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
  }

  .main-nav.open {
    max-height: 300px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 0.75rem 1rem 1rem;
    align-items: flex-start;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero-illustration {
    width: 260px;
    height: 260px;
  }

  .section {
    padding: 3rem 0;
  }
}

/* ---------- NOUVEAUX STYLES MULTI-PAGES ---------- */

/* Page Hero (header de pages) */
.page-hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--bg-soft) 100%);
  text-align: center;
}

.page-hero h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--text-main);
}

.page-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #5c4a56;
}

/* Navigation active state */
.main-nav a.active {
  color: var(--pink-strong);
  font-weight: 600;
}

.main-nav a.active::after {
  width: 100%;
}

/* Team Preview (page accueil) */
.team-preview {
  max-width: 700px;
  margin: 2rem auto;
  text-align: center;
}

.team-preview-text {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Profils kinés (kines.html) */
.kine-profile {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.kine-photo-large {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-soft), var(--peach));
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.kine-photo-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kine-content h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.kine-title {
  font-size: 1.1rem;
  color: var(--pink-strong);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.kine-contact {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.kine-contact a {
  color: var(--pink-strong);
  text-decoration: none;
  font-weight: 500;
}

.kine-contact a:hover {
  text-decoration: underline;
}

.kine-bio {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.kine-content h3 {
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
  color: var(--text-main);
}

.diplomes-list {
  list-style: none;
  padding: 0;
}

.diplomes-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.diplomes-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink-strong);
  font-weight: bold;
}

/* Separator */
.separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-light), transparent);
  margin: 3rem 0;
}

/* Content Page Styles (pages de soins) */
.content-page {
  max-width: 900px;
  margin: 0 auto;
}

.content-block {
  margin-bottom: 3rem;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-strong), var(--peach));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.content-block h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.content-block h3 {
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
  color: var(--text-main);
}

.content-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Indications Grid */
.indications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.indication-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

.indication-item h3 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem 0;
  color: var(--pink-strong);
}

.indication-item p {
  font-size: 0.95rem;
  margin: 0;
}

/* Objectives List */
.objectives-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.objectives-list li {
  padding: 1rem 1.5rem;
  margin-bottom: 0.75rem;
  background: var(--white);
  border-radius: 0.75rem;
  border-left: 4px solid var(--pink-strong);
  box-shadow: var(--shadow-soft);
  font-size: 1rem;
}

/* Techniques Grid */
.techniques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.technique-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.technique-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem 0;
  color: var(--pink-strong);
}

.technique-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* Prise en charge list (périnatalité) */
.prise-en-charge-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.prise-en-charge-list li {
  padding: 1.2rem;
  margin-bottom: 1rem;
  background: #ffeef6;
  border-radius: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.prise-en-charge-list strong {
  display: block;
  color: var(--pink-strong);
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, #fff5fa, #ffe9f3);
  padding: 1.5rem;
  border-radius: 1rem;
  border-left: 4px solid var(--peach);
  margin: 2rem 0;
}

.info-box p {
  margin: 0;
  font-size: 0.95rem;
}

/* Quote Section */
.quote-section {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--pink-soft), rgba(255, 217, 232, 0.3));
  border-radius: 1.5rem;
  margin: 3rem 0;
}

.quote-section p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-main);
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  transition: background-color 0.2s ease;
  font-family: inherit;
}

.faq-question:hover {
  background-color: #fff7fa;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--pink-strong);
  transition: transform 0.3s ease;
  font-weight: 300;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-answer.open {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5c4a56;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Responsive Multi-pages */
@media (max-width: 900px) {
  .kine-profile {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .kine-photo-large {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }

  .indications-grid,
  .techniques-grid {
    grid-template-columns: 1fr;
  }

  .phone-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding: 3rem 0 2rem;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .content-block h2 {
    font-size: 1.6rem;
  }

  .quote-section p {
    font-size: 1.1rem;
  }
}
