    :root {
      --beige: #FFFBED;
      --beige-dark: #f0edd8;
      --turquoise: #54E5FF;
      --turquoise-light: #96eeff;
      --blue: #1a9ab5;
      --pink: #FC27D4;
      --pink-soft: #fdd6f7;
      --text: #1a1a2e;
      --text-light: #5a5a7a;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--beige);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; justify-content: space-between; align-items: center;
      padding: 1.2rem 4rem;
      background: rgba(255,251,237,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(58,181,176,0.18);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 600; letter-spacing: 0.04em;
      color: var(--blue);
    }
    .nav-logo span { color: var(--pink); font-style: italic; }
    .nav-links { display: flex; gap: 2.4rem; list-style: none; }
    .nav-links a {
      font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em;
      text-transform: uppercase; text-decoration: none;
      color: var(--text-light);
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--turquoise); }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: grid; place-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 80px;
    }

    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background:
        linear-gradient(to bottom, rgba(20,10,30,0.45) 0%, rgba(20,10,30,0.25) 50%, rgba(245,239,230,0.7) 100%),
        url("images/hero-background.jpg") center center / cover no-repeat;
    }

    /* Floating circles decoration */
    .hero-bg::before, .hero-bg::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      opacity: 0.15;
    }
    .hero-bg::before {
      width: 520px; height: 520px;
      top: -100px; right: -100px;
      background: #54E5FF;
      animation: floatA 8s ease-in-out infinite;
    }
    .hero-bg::after {
      width: 300px; height: 300px;
      bottom: 60px; left: -60px;
      background: #FC27D4;
      animation: floatB 10s ease-in-out infinite;
    }

    @keyframes floatA { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-30px) scale(1.04)} }
    @keyframes floatB { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(20px) scale(0.97)} }

    .hero-content {
      position: relative; z-index: 1;
      text-align: center;
      padding: 2rem;
      max-width: 100%;
      box-sizing: border-box;
      overflow: hidden;
      animation: fadeUp 1.1s ease both;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(36px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-tag {
      display: inline-block;
      white-space: nowrap;
      font-size: 0.75rem; font-weight: 500; letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--turquoise);
      border: 1px solid var(--turquoise);
      padding: 0.4rem 1.2rem; border-radius: 100px;
      margin-bottom: 2rem;
      animation: fadeUp 1.1s 0.2s ease both;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.6rem, 8vw, 7rem);
      font-weight: 300; line-height: 1.05;
      color: #fff;
      margin-bottom: 1rem;
      word-break: break-word;
      overflow-wrap: break-word;
      animation: fadeUp 1.1s 0.35s ease both;
    }
    .hero-title em {
      font-style: italic;
      color: var(--pink);
    }

    .hero-sub {
      font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.85);
      max-width: 480px; margin: 0 auto 2.6rem;
      line-height: 1.7;
      animation: fadeUp 1.1s 0.5s ease both;
    }

    .hero-cta {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
      animation: fadeUp 1.1s 0.65s ease both;
    }
    .btn-primary {
      background: var(--pink);
      color: #fff; font-family: 'Jost', sans-serif;
      font-size: 0.82rem; font-weight: 500; letter-spacing: 0.14em;
      text-transform: uppercase; text-decoration: none;
      padding: 1rem 2.4rem; border-radius: 100px;
      border: none; cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 8px 28px rgba(252,39,212,0.35);
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(252,39,212,0.45); }

    .btn-secondary {
      background: var(--blue);
      white-space: nowrap;
      color: #fff; font-family: 'Jost', sans-serif;
      font-size: 0.82rem; font-weight: 500; letter-spacing: 0.14em;
      text-transform: uppercase; text-decoration: none;
      padding: 1rem 2.4rem; border-radius: 100px;
      border: 1.5px solid var(--blue);
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
    }
    .btn-secondary:hover { background: transparent; color: var(--blue); }

    .scroll-hint {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
      color: var(--text-light); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
      animation: fadeUp 1.4s 1s ease both;
    }
    .scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, #54E5FF, transparent);
      animation: scrollPulse 2s ease infinite;
    }
    @keyframes scrollPulse { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.1)} }

    /* ── SECTIONS SHARED ── */
    section { padding: 6rem 2rem; }
    .section-tag {
      display: inline-block;
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--turquoise); margin-bottom: 0.8rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      font-weight: 300; line-height: 1.15; color: var(--blue);
      margin-bottom: 1.2rem;
    }
    .section-title em { font-style: italic; color: var(--pink); }

    /* ── SERVICES ── */
    #services {
      background: linear-gradient(135deg, rgba(84,229,255,0.06) 0%, rgba(252,39,212,0.04) 100%);
    }
    .services-inner { max-width: 1100px; margin: 0 auto; }
    .services-header { text-align: center; margin-bottom: 4rem; }
    .services-header p { color: var(--text-light); max-width: 520px; margin: 0 auto; line-height: 1.7; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.8rem;
    }
    /* ── FLIP CARDS ── */
    .service-card {
      perspective: 1000px;
      height: 220px;
      cursor: pointer;
    }
    .service-card-inner {
      position: relative; width: 100%; height: 100%;
      transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
      transform-style: preserve-3d;
    }
    .service-card.flipped .service-card-inner {
      transform: rotateY(180deg);
    }
    .service-card-front,
    .service-card-back {
      position: absolute; inset: 0;
      border-radius: 20px;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 2rem;
      text-align: center;
    }
    .service-card-front {
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(58,181,176,0.15);
      box-shadow: 0 4px 20px rgba(44,110,138,0.07);
      gap: 1rem;
    }
    .service-card-front::after {
      content: '✦ Découvrir';
      position: absolute; bottom: 1.1rem;
      font-size: 0.7rem; letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--pink); opacity: 0.7;
      font-family: 'Jost', sans-serif;
    }
    .service-card-back {
      background: linear-gradient(135deg, #1a9ab5 0%, #FC27D4 100%);
      transform: rotateY(180deg);
      box-shadow: 0 8px 30px rgba(44,110,138,0.18);
    }
    .service-card-back p {
      font-size: 0.92rem; color: #fff; line-height: 1.75;
    }
    .service-card-back .back-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; font-weight: 600;
      color: #fff; margin-bottom: 0.7rem;
      opacity: 0.85;
    }
    .service-icon {
      width: 64px; height: 64px;
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem;
      flex-shrink: 0;
    }
    .service-icon svg {
      width: 32px; height: 32px;
    }
    .service-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 600; color: var(--blue);
    }

    /* ── ABOUT ── */
    #about {
      background: var(--beige);
    }
    .about-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; flex-direction: column; align-items: center; gap: 3rem; text-align: center;
    }
    .about-visual {
      position: relative;
      width: 320px;
      height: 320px;
      flex-shrink: 0;
    }
    .about-blob {
      width: 100%; height: 100%;
      max-width: 440px;
      border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
      background: linear-gradient(135deg, #54E5FF 0%, #FC27D4 100%);
      opacity: 0.18;
    }
    .about-photo-placeholder {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; font-style: italic; color: var(--blue);
      text-align: center; padding: 2rem;
    }
    .about-accent {
      position: absolute; bottom: -20px; right: -20px;
      width: 120px; height: 120px; border-radius: 50%;
      background: var(--pink); opacity: 0.15;
    }
    .about-content { text-align: center; }
    .about-content p {
      font-size: 1rem; color: var(--text-light); line-height: 1.8;
      margin-bottom: 1.2rem;
    }
    .about-content p strong { color: var(--blue); font-weight: 500; }
    .about-stats {
      display: flex; gap: 2.4rem; margin-top: 2.4rem;
      justify-content: center;
    }
    .stat { }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem; font-weight: 600; color: var(--pink);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase;
    }

    /* ── TESTIMONIALS ── */
    #testimonials {
      background: linear-gradient(160deg, #1a1a2e 0%, #0d2233 100%);
      color: #fff;
    }
    #testimonials .section-tag { color: var(--turquoise-light); }
    #testimonials .section-title { color: #fff; }
    #testimonials .section-title em { color: var(--pink); }

    .testimonials-inner { max-width: 1100px; margin: 0 auto; }
    .testimonials-header { text-align: center; margin-bottom: 4rem; }
    .testimonials-header p { color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto; line-height: 1.7; }

    .testimonials-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.8rem;
    }
    .testi-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px; padding: 2.4rem 2rem;
      transition: background 0.3s;
    }
    .testi-card:hover { background: rgba(255,255,255,0.14); }
    .testi-stars { font-size: 1.1rem; margin-bottom: 1rem; color: var(--pink); }
    .testi-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem; font-style: italic; font-weight: 300;
      line-height: 1.6; color: rgba(255,255,255,0.9);
      margin-bottom: 1.5rem;
    }
    .testi-author {
      display: flex; align-items: center; gap: 0.8rem;
    }
    .testi-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: linear-gradient(135deg, #54E5FF, #FC27D4);
      display: flex; align-items: center; justify-content: center;
      font-weight: 500; font-size: 0.9rem; color: #fff;
    }
    .testi-name { font-weight: 500; font-size: 0.9rem; color: #fff; }
    .testi-dest { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; }

    /* ── CONTACT ── */
    #contact { background: var(--beige); }
    .contact-inner {
      max-width: 700px; margin: 0 auto; text-align: center;
    }
    .contact-inner > p {
      color: var(--text-light); line-height: 1.7; margin-bottom: 3rem; font-size: 1rem;
    }
    .contact-form {
      display: flex; flex-direction: column; gap: 1.2rem;
      text-align: left;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .form-group label {
      display: block; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-light); margin-bottom: 0.5rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; padding: 0.95rem 1.2rem;
      background: rgba(255,255,255,0.7);
      border: 1.5px solid rgba(58,181,176,0.25);
      border-radius: 12px;
      font-family: 'Jost', sans-serif; font-size: 0.95rem; color: var(--text);
      outline: none; transition: border-color 0.3s;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--turquoise); }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-submit {
      text-align: center; margin-top: 0.8rem;
    }

    /* ── CONTACT OPTIONS ── */
    .contact-options { text-align: left; }
    .contact-option--form {
      background: rgba(255,255,255,0.7);
      border: 1.5px solid rgba(84,229,255,0.25);
      border-radius: 20px;
      padding: 2rem;
      margin-bottom: 0;
    }
    .contact-option-header {
      display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
    }
    .contact-option-icon {
      width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .contact-option-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; font-weight: 600; color: var(--blue); margin-bottom: 0.2rem;
    }
    .contact-option-sub { font-size: 0.88rem; color: var(--text-light); }
    .contact-divider {
      text-align: center; position: relative; margin: 1.8rem 0;
      color: var(--text-light); font-size: 0.85rem; letter-spacing: 0.1em;
    }
    .contact-divider::before {
      content: ''; position: absolute; top: 50%; left: 0; right: 0;
      height: 1px; background: rgba(84,229,255,0.3);
    }
    .contact-divider span { background: var(--beige); padding: 0 1rem; position: relative; }
    .contact-direct {
      display: flex; flex-direction: column; gap: 1rem;
    }
    .contact-direct-link {
      display: flex; align-items: center; gap: 1rem;
      background: rgba(255,255,255,0.7);
      border: 1.5px solid rgba(84,229,255,0.25);
      border-radius: 16px; padding: 1.2rem 1.5rem;
      text-decoration: none; color: var(--text);
      transition: border-color 0.3s, transform 0.2s;
    }
    .contact-direct-link:hover { border-color: var(--turquoise); transform: translateY(-2px); }
    .contact-direct-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.2rem; }
    .contact-direct-value { font-size: 1rem; font-weight: 500; color: var(--text); }

    /* ── FAQ ── */
    #faq { background: var(--beige-dark); }
    .faq-inner { max-width: 760px; margin: 0 auto; }
    .faq-header { text-align: center; margin-bottom: 3rem; }
    .faq-list { display: flex; flex-direction: column; gap: 1rem; }

    .faq-item {
      background: rgba(255,255,255,0.7);
      border: 1.5px solid rgba(84,229,255,0.2);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color 0.3s;
    }
    .faq-item:hover { border-color: rgba(84,229,255,0.5); }

    .faq-question {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.4rem 1.8rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-weight: 600; color: var(--text);
      text-align: left; gap: 1rem;
    }
    .faq-icon {
      font-size: 1.4rem; color: var(--blue); font-weight: 300;
      transition: transform 0.3s; flex-shrink: 0;
    }
    .faq-question.open .faq-icon { transform: rotate(45deg); }

    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
      padding: 0 1.8rem;
    }
    .faq-answer.open {
      max-height: 600px;
      padding: 0 1.8rem 1.4rem;
    }
    .faq-answer p {
      font-size: 0.93rem; line-height: 1.8; color: var(--text-light);
    }

    .faq-forfaits {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem;
      margin-top: 1rem;
    }
    .forfait {
      background: linear-gradient(135deg, #e0faff, #b8f3ff);
      border-radius: 12px; padding: 1rem 1.2rem; text-align: center;
    }
    .forfait-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; font-weight: 600; color: var(--blue);
      margin-bottom: 0.2rem;
    }
    .forfait-duration { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.5rem; }
    .forfait-price { font-size: 1.3rem; font-weight: 600; color: var(--pink); }

    @media (max-width: 600px) {
      .faq-forfaits { grid-template-columns: 1fr 1fr; }
      .faq-question { font-size: 1rem; padding: 1.2rem 1.2rem; }
      .faq-answer { padding: 0 1.2rem; }
      .faq-answer.open { padding: 0 1.2rem 1.2rem; }
    }

    /* ── COMMENT ÇA MARCHE ── */
    #process {
      background: var(--beige);
    }
    .process-inner {
      max-width: 760px;
      margin: 0 auto;
    }
    .process-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .process-timeline {
      position: relative;
      padding-left: 0;
    }
    .process-timeline::before {
      content: '';
      position: absolute;
      left: 27px;
      top: 20px;
      bottom: 20px;
      width: 2px;
      background: linear-gradient(to bottom, var(--blue), var(--pink) 50%, var(--blue));
      opacity: 0.4;
    }
    .process-step {
      display: flex;
      gap: 28px;
      align-items: flex-start;
      margin-bottom: 40px;
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .process-step.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .process-num {
      flex-shrink: 0;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      border: none;
      background: linear-gradient(135deg, #e0faff, #b8f3ff);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--blue);
      position: relative;
      z-index: 1;
      transition: background 0.3s, color 0.3s, transform 0.2s;
      box-shadow: 0 4px 14px rgba(26,154,181,0.2);
    }
    .process-step:nth-child(even) .process-num {
      background: linear-gradient(135deg, #fce8fc, #f9bff5);
      color: var(--pink);
      box-shadow: 0 4px 14px rgba(252,39,212,0.2);
    }
    .process-step:hover .process-num {
      transform: scale(1.1);
    }
    .process-body {
      padding-top: 10px;
      flex: 1;
    }
    .process-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--blue);
      margin-bottom: 6px;
    }
    .process-step:nth-child(even) .process-title {
      color: var(--pink);
    }
    .process-desc {
      font-size: 0.88rem;
      font-weight: 300;
      color: var(--text-light);
      line-height: 1.75;
    }
    .process-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 10px;
    }
    .process-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--blue);
      background: linear-gradient(135deg, #e0faff, #b8f3ff);
      padding: 4px 12px;
      border-radius: 20px;
    }
    .process-tag.pink {
      color: var(--pink);
      background: linear-gradient(135deg, #fce8fc, #f9bff5);
    }
    @media (max-width: 500px) {
      .process-timeline::before { left: 22px; }
      .process-num { width: 44px; height: 44px; font-size: 1rem; }
      .process-step { gap: 18px; }
    }

    /* ── MODALE FORFAITS ── */
    .modal-overlay {
      display: none;
      position: fixed; inset: 0; z-index: 999;
      background: rgba(20,10,30,0.6);
      backdrop-filter: blur(6px);
      align-items: center; justify-content: center;
      padding: 1.5rem;
    }
    .modal-overlay.open { display: flex; }

    .modal {
      background: var(--beige);
      border-radius: 24px;
      padding: 2.5rem 2rem;
      max-width: 520px; width: 100%;
      position: relative;
      animation: modalIn 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
      max-height: 90vh; overflow-y: auto;
    }
    @keyframes modalIn {
      from { opacity: 0; transform: scale(0.88) translateY(20px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }
    .modal-close {
      position: absolute; top: 1.2rem; right: 1.4rem;
      background: none; border: none; cursor: pointer;
      font-size: 1.5rem; color: var(--text-light);
      line-height: 1; transition: color 0.2s;
    }
    .modal-close:hover { color: var(--text); }
    .modal-tag {
      font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--blue);
      margin-bottom: 0.5rem;
    }
    .modal-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem; font-weight: 300;
      color: var(--text); margin-bottom: 0.4rem; line-height: 1.2;
    }
    .modal-title em { font-style: italic; color: var(--pink); }
    .modal-sub {
      font-size: 0.85rem; color: var(--text-light);
      margin-bottom: 1.8rem; line-height: 1.6;
    }
    .modal-forfaits {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem;
      margin-bottom: 1.5rem;
    }
    .modal-forfait {
      background: rgba(255,255,255,0.8);
      border: 1.5px solid rgba(84,229,255,0.25);
      border-radius: 16px; padding: 1.2rem 1rem;
      text-align: center;
      transition: border-color 0.3s, transform 0.2s;
    }
    .modal-forfait:hover { border-color: var(--turquoise); transform: translateY(-2px); }
    .modal-forfait-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; font-weight: 600; color: var(--blue); margin-bottom: 0.2rem;
    }
    .modal-forfait-duration { font-size: 0.76rem; color: var(--text-light); margin-bottom: 0.6rem; }
    .modal-forfait-price { font-size: 1.4rem; font-weight: 600; color: var(--pink); }
    .modal-note {
      font-size: 0.8rem; color: var(--text-light); line-height: 1.65;
      padding: 1rem 1.2rem;
      background: linear-gradient(135deg, #e0faff, #b8f3ff);
      border-radius: 12px;
    }
    .btn-forfaits {
      background: var(--beige);
      color: var(--text);
      font-family: 'Jost', sans-serif;
      font-size: 0.82rem; font-weight: 500; letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 1rem 2.4rem; border-radius: 100px;
      border: 1.5px solid rgba(255,255,255,0.5);
      cursor: pointer;
      transition: background 0.3s, border-color 0.3s;
      white-space: nowrap;
    }
    .btn-forfaits:hover { background: #fff; border-color: #fff; }

    /* ── FOOTER ── */
    footer {
      background: var(--text);
      color: rgba(255,255,255,0.5);
      text-align: center;
      padding: 2.5rem;
      font-size: 0.82rem; letter-spacing: 0.06em;
    }
    footer span { color: #FC27D4; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .about-inner { grid-template-columns: 1fr; gap: 3rem; }
      .form-row { grid-template-columns: 1fr; }
      .about-stats { gap: 1.5rem; }
      section { padding: 4rem 1.4rem; }
    }
