/* =========================================
   REFLEXOLOGIE RODEZ — MIREILLE DELONCA FABRE
   Stylesheet principal
   ========================================= */

/* ---- Variables ---- */
:root {
  --primary:        #3d6b4f;
  --primary-light:  #5a8f6f;
  --primary-dark:   #2c5038;
  --secondary:      #c4895a;
  --secondary-light:#d9a87a;
  --accent:         #e8d5b7;
  --accent-light:   #f5efe3;
  --bg:             #faf9f6;
  --bg-alt:         #f0ece3;
  --text:           #2a2a2a;
  --text-light:     #5a5a5a;
  --text-muted:     #999;
  --white:          #ffffff;
  --border:         #e0d8cc;
  --shadow-sm:      0 2px 8px rgba(0,0,0,.06);
  --shadow:         0 4px 24px rgba(0,0,0,.09);
  --shadow-lg:      0 8px 48px rgba(0,0,0,.13);
  --radius-sm:      6px;
  --radius:         12px;
  --radius-lg:      20px;
  --radius-full:    100px;
  --ease:           cubic-bezier(.4,0,.2,1);
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Lato', 'Helvetica Neue', Arial, sans-serif;
  --container:      1180px;
  --header-h:       72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--primary-dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .pretitle {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: .75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,107,79,.35);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}
.btn-secondary:hover {
  background: #b37a4e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,137,90,.35);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: .6rem 1.4rem; font-size: .85rem; }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--ease) .25s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.card-icon {
  width: 56px; height: 56px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

/* ---- Badge ---- */
.badge {
  display: inline-block;
  padding: .3rem .8rem;
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge-green { background: rgba(61,107,79,.12); color: var(--primary); }
.badge-sand  { background: rgba(196,137,90,.15); color: var(--secondary); }

/* ===============================
   HEADER & NAVIGATION
   =============================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,249,246,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow .3s var(--ease);
}
.header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.logo-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--secondary);
}

.nav { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  padding: .5rem .85rem;
  border-radius: var(--radius-full);
  font-size: .92rem;
  font-weight: 700;
  color: var(--text-light);
  transition: all .2s var(--ease);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(61,107,79,.08);
}
.nav-cta {
  margin-left: .5rem;
  background: var(--primary);
  color: var(--white) !important;
  padding: .55rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 700;
  transition: all .25s var(--ease);
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  box-shadow: 0 4px 14px rgba(61,107,79,.35);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===============================
   HERO — HOME
   =============================== */
.hero {
  min-height: calc(100vh - var(--header-h));
  background:
    linear-gradient(135deg, rgba(44,80,56,.91) 0%, rgba(61,107,79,.86) 50%, rgba(74,124,92,.82) 100%),
    url('../img/reflexo_slider071.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(196,137,90,.18) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,.04)'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-pretitle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;

  /* Responsive */
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  line-height: 1.2;

  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary-light);
  margin-bottom: 1.5rem;
}

.hero-pretitle::before {
  content: '';
  display: inline-block;

  /* Trait proportionné + responsive */
  width: clamp(28px, 3.2vw, 48px);
  height: clamp(2px, 0.2vw, 3px);

  background: var(--secondary-light);
  border-radius: 999px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}
.hero-trust-item i { color: var(--secondary-light); font-size: 1rem; }

/* ---- Stats bar ---- */
.stats-bar {
  background: var(--white);
  border-bottom: 3px solid var(--accent);
  padding: 1.8rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: .5rem; }
.stat-value {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* ---- Conditions ---- */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.condition-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: all .25s var(--ease);
  cursor: default;
}
.condition-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.condition-icon {
  font-size: 1.6rem;
  width: 44px;
  text-align: center;
  flex-shrink: 0;
}
.condition-card h4 { font-size: .95rem; margin-bottom: .15rem; }
.condition-card p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ---- Process steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.step { text-align: center; position: relative; }
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -1.25rem;
  width: 2.5rem; height: 2px;
  background: linear-gradient(90deg, var(--border), transparent);
}
.step-number {
  width: 72px; height: 72px;
  margin: 0 auto 1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.step-number::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(61,107,79,.15);
  z-index: -1;
}
.step h3 { margin-bottom: .75rem; }
.step p { color: var(--text-light); font-size: .95rem; }

/* ---- About section ---- */
.about-content { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; }
.about-image-wrap {
  position: relative;
}
.about-image {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
}
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #c9ddd3 0%, #e8d5b7 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--primary-dark);
  font-size: .9rem;
  text-align: center;
  padding: 2rem;
}
.about-image-placeholder i { font-size: 4rem; opacity: .5; }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 160px;
}
.about-badge-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .25rem;
}
.about-badge-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.about-text .pretitle {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: .75rem;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--text-light); }
.about-values { display: flex; flex-direction: column; gap: .75rem; margin: 2rem 0; }
.about-value {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text);
}
.about-value i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--accent);
  line-height: .8;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  pointer-events: none;
}
.testimonial-stars { color: #f59e0b; margin-bottom: 1rem; font-size: .9rem; }
.testimonial-text { color: var(--text-light); font-style: italic; margin-bottom: 1.5rem; padding-top: 1rem; font-size: .95rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .9rem; margin-bottom: .1rem; }
.testimonial-location { font-size: .8rem; color: var(--text-muted); }

/* ---- Pricing cards ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 2px solid var(--border);
  text-align: center;
  transition: all .25s var(--ease);
  position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(61,107,79,.04) 0%, var(--white) 100%);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: .35rem 1rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.pricing-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; margin-bottom: .5rem; }
.pricing-desc { font-size: .9rem; color: var(--text-muted); margin-bottom: 2rem; }
.pricing-price {
  margin-bottom: 2rem;
}
.pricing-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.pricing-currency {
  font-size: 1.5rem;
  vertical-align: super;
  margin-right: .2rem;
}
.pricing-period { font-size: .85rem; color: var(--text-muted); margin-top: .25rem; }
.pricing-features { text-align: left; margin-bottom: 2rem; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-feature i { color: var(--primary); font-size: .9rem; flex-shrink: 0; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196,137,90,.2) 0%, transparent 60%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  transition: background .2s var(--ease);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-question.open { color: var(--primary); }
.faq-chevron { transition: transform .3s var(--ease); color: var(--text-muted); flex-shrink: 0; }
.faq-question.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
}
.faq-answer.open { max-height: 400px; }
.faq-answer-inner { padding: 0 1.5rem 1.5rem; color: var(--text-light); font-size: .95rem; line-height: 1.8; }

/* ---- Info card (contact/hours) ---- */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.info-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: .25rem;
}
.info-card-sub { font-size: .85rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.info-row {
  display: flex;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.info-row:last-child { border-bottom: none; }
.info-row-icon { color: var(--secondary); font-size: 1rem; flex-shrink: 0; width: 20px; margin-top: 3px; }
.info-row-label { font-weight: 700; min-width: 90px; color: var(--text); }
.info-row-value { color: var(--text-light); }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 700; }
.hours-time { color: var(--text-light); }
.hours-closed { color: var(--text-muted); font-style: italic; }

/* ---- Map placeholder ---- */
.map-placeholder {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--accent) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--primary-dark);
  border: 1px solid var(--border);
  margin-top: 2rem;
  text-align: center;
  padding: 2rem;
}
.map-placeholder i { font-size: 3rem; color: var(--primary-light); }

/* ---- Contact form ---- */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label { font-size: .85rem; font-weight: 700; color: var(--text); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(61,107,79,.1);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ---- Page hero (internal) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,213,183,.12) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .pretitle {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--secondary-light);
  margin-bottom: 1rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,.35); }

/* ---- Soin cards ---- */
.soin-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.soin-card:last-child { border-bottom: none; }
.soin-card.reverse { direction: rtl; }
.soin-card.reverse > * { direction: ltr; }
.soin-visual {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--accent) 0%, #d5e8da 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 4rem;
  overflow: hidden;
}
.soin-visual-label { font-size: .85rem; font-weight: 700; color: var(--primary-dark); opacity: .7; }
.soin-visual--img {
  padding: 0;
  background: none;
}
.soin-visual--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform .4s var(--ease);
}
.soin-visual--img:hover img { transform: scale(1.03); }
.soin-content .pretitle {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: .75rem;
}
.soin-content h2 { margin-bottom: 1rem; }
.soin-content p { color: var(--text-light); margin-bottom: 1rem; }
.soin-features { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.25rem; }
.soin-feature {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-light);
}
.soin-feature i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

/* ---- Highlight box ---- */
.highlight-box {
  background: linear-gradient(135deg, rgba(61,107,79,.08) 0%, rgba(196,137,90,.06) 100%);
  border: 1px solid rgba(61,107,79,.2);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
}
.highlight-box p { margin: 0; color: var(--text); }
.highlight-box strong { color: var(--primary-dark); }

/* ---- Tip box ---- */
.tip-box {
  background: rgba(196,137,90,.08);
  border: 1px solid rgba(196,137,90,.25);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1rem;
}
.tip-box-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.tip-box p { margin: 0; color: var(--text-light); font-size: .95rem; }

/* ---- Zone image ---- */
.zones-image {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--accent) 100%);
  aspect-ratio: 3/2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid var(--border);
  text-align: center;
  padding: 2rem;
}
.zones-image i { font-size: 4rem; color: var(--primary-light); }
.zones-image p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* ---- Phone CTA ---- */
.phone-cta {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.phone-cta p { color: rgba(255,255,255,.8); margin-bottom: 1rem; }
.phone-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.phone-number a { color: inherit; }
.phone-number a:hover { color: var(--accent); }

/* ---- Footer ---- */
.footer {
  background: #1e3329;
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-name { color: var(--accent); font-size: 1.2rem; }
.footer-brand .logo-title { color: rgba(255,255,255,.45); }
.footer-brand p {
  font-size: .9rem;
  margin-top: 1.25rem;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
}
.footer-col h4 {
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color .2s var(--ease);
}
.footer-links a:hover { color: var(--secondary-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .85rem;
}
.footer-contact-item i { color: var(--secondary-light); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,.75); }
.footer-contact-item a:hover { color: var(--secondary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.gap-1 { gap: 1rem; }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp .6s var(--ease) both; }
.fade-in-1 { animation-delay: .1s; }
.fade-in-2 { animation-delay: .2s; }
.fade-in-3 { animation-delay: .3s; }
.fade-in-4 { animation-delay: .4s; }

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-content { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 3.5rem 0; }

  /* Nav */
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: .25rem;
    box-shadow: var(--shadow);
    transform: translateY(-110%);
    transition: transform .35s var(--ease);
    z-index: 999;
  }
  .nav.open { transform: translateY(0); }
  .nav-link { padding: .85rem 1rem; border-radius: var(--radius-sm); }
  .nav-cta { text-align: center; padding: .9rem 1rem; margin-left: 0; margin-top: .5rem; }
  .hamburger { display: flex; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .step:not(:last-child)::after { display: none; }
  .about-content { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 320px; margin: 0 auto; }
  .about-badge { right: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .soin-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .soin-card.reverse { direction: ltr; }

  /* Hero */
  .hero { padding: 3rem 0; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-content { max-width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }

  /* Conditions */
  .conditions-grid { grid-template-columns: 1fr; }

  /* Phone */
  .phone-number { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .btn-lg { padding: 1rem 1.75rem; font-size: .95rem; }
  .hero h1 { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ===============================
   TIMELINE (mon-experience)
   =============================== */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 88px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-light), var(--accent));
}
.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0 2rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 0;
  position: relative;
  z-index: 1;
}
.timeline-year {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  padding: .3rem .6rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  margin-top: .2rem;
}
.timeline-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.timeline-content::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 1.1rem;
  width: 16px; height: 16px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
}
.timeline-icon {
  font-size: 1.6rem;
  margin-bottom: .75rem;
}
.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: .6rem;
  color: var(--primary-dark);
}
.timeline-content p {
  color: var(--text-light);
  font-size: .93rem;
  margin: 0;
  line-height: 1.75;
}

@media (max-width: 600px) {
  .timeline::before { left: 0; width: 2px; }
  .timeline-item { grid-template-columns: 1fr; padding-left: 1.5rem; }
  .timeline-marker { align-items: flex-start; margin-bottom: .5rem; }
  .timeline-year { font-size: .78rem; }
  .timeline-content::before { left: -1.75rem; }
}

/* ===============================
   FLOATING CTA BUTTON (mobile)
   =============================== */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  background: var(--secondary);
  color: var(--white);
  padding: .9rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  box-shadow: 0 6px 24px rgba(196,137,90,.5);
  white-space: nowrap;
  align-items: center;
  gap: .6rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), opacity .25s var(--ease);
}
.floating-cta:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 10px 32px rgba(196,137,90,.6);
}
.floating-cta.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(80px);
}

/* Show only on mobile */
@media (max-width: 768px) {
  .floating-cta { display: flex; }
  /* Give extra bottom padding to body so content isn't hidden behind the button */
  body { padding-bottom: 5rem; }
  .footer { padding-bottom: 5rem; }
}

/* ---- Back to top ---- */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: .9rem;
  box-shadow: var(--shadow);
  transition: all .25s var(--ease);
  cursor: pointer;
}
.back-to-top:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.back-to-top.visible { display: flex; }
