.pricing-card {
    position: relative;
    background: #f4f2f0;
    border-radius: 18px;
    padding: 35px 30px 30px;
    margin: 20px 10px;
    height: 100%;
    width: 100%;
    margin-left: -5%;
    
    overflow: hidden;
    border: 1px solid #e8e8e8;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #b87333;
}

/* Header */
.pricing-header {
    text-align: center;
    padding-bottom: 20px;
}
.pricing-bronze .pricing-price .amount,
.pricing-bronze .pricing-price .currency {
    color: #b87333;
}

.pricing-silver .pricing-price .period .amount,
.pricing-silver .pricing-price .currency {
    color: #9ea4aa;
}

.pricing-golden .pricing-price .amount,
.pricing-golden .pricing-price .currency {
    color: #c9a227;
}
.pricing-badge {
    display: inline-block;
    padding: 6px 15px;
    margin-bottom: 15px;
    border-radius: 20px;
    background: #f1e2d5;
    color: #8a4f25;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.pricing-header h3 {
    margin: 5px 0 10px;
    font-size: 27px;
    font-weight: 700;
}

.pricing-header p {
    margin: 0 auto;
    max-width: 300px;
    color: #777;
    line-height: 1.6;
    font-size: 15px;
}

/* Prix */
.pricing-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin: 15px 0 10px;
}

.pricing-price .currency {
    font-size: 22px;
    font-weight: 600;
    margin-right: 4px;
}

.pricing-price .amount {
    font-size: 55px;
    font-weight: 800;
    line-height: 1;
}

.pricing-price .period {
    margin-left: 6px;
    color: #777;
    font-size: 15px;
}

.pricing-summary {
    text-align: center;
    padding: 15px;
    margin: 20px 0;
    border-radius: 10px;
    background: #ebe7e4;
    font-size: 14px;
    font-weight: 600;
    color: #252b3dd6;
}

.pricing-features {
    margin-top: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid #eeeeee;
}

.feature:last-child {
    border-bottom: none;
}

.feature-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f1e2d5;
    color: #8a4f25;
    font-size: 16px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-content strong {
    font-size: 15px;
    font-weight: 700;
    color : #252b3dd6;
}

.feature-content span {
    color: #777;
    font-size: 13px;
    line-height: 1.5;
}

/* Bouton */
.pricing-action {
    margin-top: 25px;
}

.pricing-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    background: #b87333;
    color: #ffffff !important;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background: #8a4f25;
    transform: translateY(-2px);
}

.pricing-button i {
    transition: transform 0.3s ease;
}

.pricing-button:hover i {
    transform: translateX(5px);
}
.pricing-bronze::before {
    background: #b87333;
}

.pricing-bronze .pricing-badge,
.pricing-bronze .feature-icon {
    background: #f1e2d5;
    color: #8a4f25;
}

.pricing-bronze .pricing-button {
    background: #b87333;
}

.pricing-bronze .pricing-button:hover {
    background: #8a4f25;
}


.pricing-silver::before {
    background: #9ea4aa;
}

.pricing-silver .pricing-badge,
.pricing-silver .feature-icon {
    background: #e9ecef;
    color: #6c737a;
}

.pricing-silver .pricing-button {
    background: #8d949b;
}

.pricing-silver .pricing-button:hover {
    background: #6f767d;
}


.pricing-golden::before {
    background: #c9a227;
}

.pricing-golden .pricing-badge,
.pricing-golden .feature-icon {
    background: #f7edc8;
    color: #a17c00;
}

.pricing-golden .pricing-button {
    background: #c9a227;
}

.pricing-golden .pricing-button:hover {
    background: #a17c00;
}
.member-fiche-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
}

.member-fiche-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-fiche-box {
    position: relative;
    width: 100%;
    max-width: 620px;
    max-height: 85vh;
    padding: 45px 45px 40px;
    background: #f4f2f0;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    box-sizing: border-box;
    text-align: center;
}

.member-fiche-close {
    position: absolute;
    top: 15px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #f3f3f3;
    color: #555;
    font-size: 26px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}



.member-fiche-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.member-fiche-photo {
    width: 129px;
    height: 129px;
    margin-bottom: 20px;
    border-radius: 50%;
    padding: 5px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.member-fiche-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.member-fiche-header h2 {
    margin: 5px 0 8px;
    font-size: 28px;
    font-weight: 600;
    color: #252b3dd6;
}


.member-fiche-divider {
    width: 70px;
    height: 3px;
    margin: 22px auto 28px;
    border-radius: 3px;
    background: rgb(210, 161, 141);
}

.member-fiche-content {
    text-align: left;
}

.member-fiche-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.member-fiche-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 16px 18px;
    background: #f4f2f0;
    border-radius: 10px;
    color: #252b3dd6;
    font-size: 15px;
    line-height: 1.6;
}

:root {
    --bg: #ebe7e4;
    --bg-soft: #f3f0ed;
    --bg-deep: #e2ddd8;
    --card: #f7f5f2;
    --card-hover: #fffdfb;
    --ink: #211d1a;
    --ink-soft: #6f665e;
    --ink-faint: #9a9088;
    --line: rgba(33, 29, 26, 0.10);
    --line-strong: rgba(33, 29, 26, 0.18);
    --accent: #a06a45;
    --accent-deep: #7c4f30;
    --accent-soft: rgba(160, 106, 69, 0.12);
    --radius: 24px;
    --shadow: 0 1px 2px rgba(33,29,26,0.04), 0 12px 32px rgba(33,29,26,0.07);
    --shadow-lg: 0 2px 4px rgba(33,29,26,0.05), 0 24px 60px rgba(33,29,26,0.12);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-size: 1.06rem;
  }

  /* ---------- Fond : halos doux ---------- */
  .bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
      radial-gradient(ellipse 55% 40% at 50% -8%, rgba(255,255,255,0.9), transparent 70%),
      radial-gradient(ellipse 40% 32% at 88% 18%, rgba(160,106,69,0.08), transparent 70%),
      radial-gradient(ellipse 42% 34% at 8% 62%, rgba(33,29,26,0.05), transparent 70%),
      var(--bg);
  }
  .bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(33,29,26,0.05) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 0%, black, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 0%, black, transparent 80%);
    opacity: 0.5;
  }

  .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

  /* ---------- Navigation ---------- */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    background: rgba(235, 231, 228, 0.72);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
  }
  .logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(160,106,69,0.35);
  }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--ink); }

  /* ---------- Boutons ---------- */
  .btn {
    display: inline-block;
    padding: 11px 24px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--bg-soft);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.25s, background 0.25s;
  }
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(33,29,26,0.25);
  }
  .btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff;
  }
  .btn-accent:hover { box-shadow: 0 10px 28px rgba(160,106,69,0.4); }
  .btn-ghost {
    background: transparent;
    color: var(--ink);
    box-shadow: inset 0 0 0 1px var(--line-strong);
  }
  .btn-ghost:hover {
    box-shadow: inset 0 0 0 1px var(--ink);
    background: rgba(255,255,255,0.5);
  }

  /* ---------- Hero ---------- */
  header.hero { padding: 100px 0 80px; text-align: center; }
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 18px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--ink-soft);
    margin-bottom: 30px;
  }
  .badge .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
    animation: pulse 2.4s infinite;
  }
  @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

  h1 {
    font-size: clamp(2.5rem, 6vw, 4.3rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.08;
    max-width: 820px;
    margin: 0 auto 26px;
  }
  .accent-text {
    background: linear-gradient(100deg, var(--accent-deep), var(--accent) 55%, #c98d5f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero .sub {
    font-size: clamp(1.08rem, 2vw, 1.3rem);
    color: var(--ink-soft);
    max-width: 620px;
    margin: 0 auto 42px;
    font-weight: 400;
  }
  .hero .sub strong { color: var(--ink); font-weight: 600; }
  .hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .hero-actions .btn { padding: 14px 30px; font-size: 0.98rem; }

  /* ---------- Sections ---------- */
  section { padding: 84px 0; }
  .section-head { text-align: center; margin-bottom: 58px; }
  .kicker {
    color: var(--accent-deep);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
  }
  .section-head h2 {
    font-size: clamp(1.85rem, 4vw, 2.7rem);
    font-weight: 700;
    letter-spacing: -0.03em;
  }
  .section-head p {
    color: var(--ink-soft);
    max-width: 560px;
    margin: 16px auto 0;
    font-size: 1.12rem;
  }

  /* ---------- Piliers ---------- */
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .pillar {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.3s, background 0.3s;
  }
  .pillar:hover {
    transform: translateY(-6px);
    background: var(--card-hover);
    box-shadow: var(--shadow-lg);
  }
  .pillar .icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.45rem;
    margin-bottom: 22px;
    background: var(--accent-soft);
  }
  .pillar h3 { font-size: 1.22rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
  .pillar p { color: var(--ink-soft); font-size: 0.98rem; }

  /* ---------- Matériel ---------- */
  .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .device {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--shadow);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.3s, background 0.3s;
  }
  .device:hover {
    transform: translateY(-6px);
    background: var(--card-hover);
    box-shadow: var(--shadow-lg);
  }
  .device .chip {
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--bg-deep);
    color: var(--ink-soft);
  }
  .device .emoji { font-size: 2.1rem; }
  .device h3 { font-size: 1.18rem; font-weight: 700; letter-spacing: -0.02em; }
  .device p { color: var(--ink-soft); font-size: 0.92rem; flex: 1; }
  .device .use {
    font-size: 0.82rem;
    color: var(--ink);
    background: var(--bg-deep);
    border-radius: 12px;
    padding: 11px 13px;
    line-height: 1.5;
  }
  .device .use strong { color: var(--accent-deep); font-weight: 700; }

  /* ---------- Services ---------- */
  .services {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .service {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px 26px;
    box-shadow: var(--shadow);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.3s, background 0.3s;
  }
  .service:hover {
    transform: translateY(-4px);
    background: var(--card-hover);
    box-shadow: var(--shadow-lg);
  }
  .service .s-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    background: var(--accent-soft);
  }
  .service h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 6px; }
  .service p { color: var(--ink-soft); font-size: 0.95rem; }

  /* ---------- CTA ---------- */
  .cta {
    text-align: center;
    background:
      radial-gradient(ellipse 70% 100% at 50% 0%, rgba(160,106,69,0.10), transparent 70%),
      var(--card);
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 76px 36px;
    box-shadow: var(--shadow-lg);
  }
  .cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }
  .cta p { color: var(--ink-soft); max-width: 520px; margin: 0 auto 36px; font-size: 1.12rem; }
  .cta .btn { padding: 16px 40px; font-size: 1.02rem; }
  .cta .note { margin-top: 22px; font-size: 0.82rem; color: var(--ink-faint); }

  /* ---------- Footer ---------- */
  footer {
    border-top: 1px solid var(--line);
    padding: 42px 0;
    margin-top: 20px;
  }
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--ink-faint);
    font-size: 0.88rem;
  }
  .footer-inner .fl { display: flex; gap: 22px; }
  .footer-inner a { color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
  .footer-inner a:hover { color: var(--ink); }

  /* ---------- Révélation au scroll ---------- */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.3, 1); }
  .reveal.in { opacity: 1; transform: none; }

  /* ---------- Responsive ---------- */
  @media (max-width: 940px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: 1fr; }
    .nav-links a:not(.btn) { display: none; }
  }
  @media (max-width: 560px) {
    .grid-4 { grid-template-columns: 1fr; }
    .service-list { grid-template-columns: 1fr; }
    section { padding: 60px 0; }
    .cta { padding: 56px 24px; }
  }
