/* Mafate.DJ — Section styles (continued) */

/* ────────────────────────────────────────────────────── */
/* SECTIONS GENERIC                                       */
/* ────────────────────────────────────────────────────── */
.section {
  padding: 140px 0;
  position: relative;
}
.section-cream {
  background: var(--cream);
  color: var(--black);
}
.section-cream h2, .section-cream h3 { color: var(--black); }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  margin-bottom: 24px;
}
.section-cream .section-eyebrow { color: var(--yellow-deep); }
.section:not(.section-cream) .section-eyebrow { color: var(--yellow); }
.section-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: currentColor;
}

h2.section-title {
  font-size: clamp(36px, 5.2vw, 72px);
  max-width: 900px;
  margin-bottom: 20px;
  letter-spacing: -0.035em;
}
.section-intro {
  font-size: 20px;
  color: rgba(10,10,10,0.65);
  max-width: 640px;
  line-height: 1.5;
}
.section:not(.section-cream) .section-intro { color: rgba(245,242,232,0.65); }

/* ────────────────────────────────────────────────────── */
/* FACTURATION — pédagogique                              */
/* ────────────────────────────────────────────────────── */
.fact {
  position: relative;
}
.fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 80px;
  align-items: start;
}
@media (max-width: 980px) { .fact-grid { grid-template-columns: 1fr; gap: 48px; } }

.fact-countdown {
  background: var(--black);
  color: var(--cream);
  border-radius: 24px;
  padding: 40px;
  position: sticky; top: 120px;
}
.fact-countdown-label {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--yellow);
  text-transform: uppercase;
}
.fact-countdown-date {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 14px; line-height: 1;
}
.fact-countdown-year {
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: 56px; font-weight: 700;
  letter-spacing: -0.03em;
}
.fact-countdown-clock {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(245,242,232,0.15);
}
.clock-unit {
  text-align: center;
  background: rgba(252,194,71,0.1);
  border-radius: 12px;
  padding: 14px 8px;
}
.clock-num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.clock-label {
  font-size: 10px; font-weight: 600;
  color: rgba(245,242,232,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}

.fact-points {
  display: flex; flex-direction: column;
  gap: 20px;
}
.fact-point {
  display: flex; gap: 20px;
  padding: 24px 28px;
  border: 1px solid var(--cream-2);
  border-radius: 18px;
  transition: border-color .2s, transform .2s;
  background: white;
}
.fact-point:hover { border-color: var(--yellow-deep); transform: translateX(4px); }
.fact-point-num {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  color: var(--yellow-deep);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  width: 42px;
}
.fact-point-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.fact-point-desc {
  font-size: 15px;
  color: rgba(10,10,10,0.6);
  line-height: 1.5;
}

/* ────────────────────────────────────────────────────── */
/* FEATURES — bento                                       */
/* ────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 80px;
}
.feat {
  background: var(--ink);
  border: 1px solid rgba(245,242,232,0.08);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  min-height: 320px;
  display: flex; flex-direction: column;
}
.feat:hover {
  border-color: rgba(252,194,71,0.4);
  transform: translateY(-4px);
}
.feat-wide-1 { grid-column: span 4; }
.feat-wide-2 { grid-column: span 2; }
.feat-wide-3 { grid-column: span 3; min-height: 380px; }
.feat-wide-4 { grid-column: span 3; min-height: 380px; }
.feat-wide-5 { grid-column: span 2; }
.feat-wide-6 { grid-column: span 4; }
@media (max-width: 980px) {
  .features-grid { grid-template-columns: 1fr; }
  .feat { grid-column: span 1 !important; }
}

.feat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(252,194,71,0.12);
  color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.feat h3 {
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}
.feat p {
  font-size: 15px;
  color: rgba(245,242,232,0.6);
  max-width: 440px;
  line-height: 1.55;
}
.feat-visual {
  margin-top: auto;
  padding-top: 24px;
}

/* Bento — bookings preview */
.bento-booking {
  background: var(--black);
  border: 1px solid rgba(245,242,232,0.1);
  border-radius: 14px;
  padding: 16px;
  display: flex; align-items: center; gap: 14px;
  margin-top: 12px;
}
.bento-booking + .bento-booking { margin-top: 10px; }
.bento-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.bento-dot.pending { background: var(--yellow); }
.bento-title { font-size: 15px; font-weight: 600; color: var(--cream); }
.bento-meta { font-size: 12px; color: rgba(245,242,232,0.5); margin-top: 2px; }
.bento-amount { margin-left: auto; font-weight: 700; color: var(--yellow); font-size: 15px; font-family: var(--font-display); }

/* Bento — invoice pill */
.bento-invoice {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--black);
  border: 1px solid var(--yellow);
  padding: 10px 14px;
  border-radius: 10px;
  margin-top: 8px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--yellow);
}

/* Bento — compliance badges */
.bento-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.bento-badge {
  background: rgba(45,190,108,0.12);
  color: var(--green);
  border: 1px solid rgba(45,190,108,0.25);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ────────────────────────────────────────────────────── */
/* PRICING                                                */
/* ────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-footnote {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(10,10,10,0.55);
  text-align: center;
}
.section:not(.section-cream) .pricing-footnote { color: rgba(245,242,232,0.55); }

.billing-toggle {
  display: inline-flex;
  margin: 48px auto 0;
  padding: 5px;
  background: rgba(10,10,10,0.06);
  border: 1px solid rgba(10,10,10,0.08);
  border-radius: 999px;
  gap: 2px;
  position: relative;
}
.section:not(.section-cream) .billing-toggle {
  background: rgba(245,242,232,0.06);
  border-color: rgba(245,242,232,0.1);
}
/* center it */
.billing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.billing-toggle-wrap .billing-toggle {
  margin: 0;
}
.section .container > .billing-toggle { display: inline-flex; }
.pricing-grid { /* keep */ }
.section .billing-toggle {
  display: flex;
  margin: 48px auto 0 auto;
  width: max-content;
}
.billing-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: rgba(10,10,10,0.55);
  padding: 10px 20px;
  border-radius: 999px;
  transition: color .15s, background .15s;
  line-height: 1;
  white-space: nowrap;
}
.section:not(.section-cream) .billing-btn { color: rgba(245,242,232,0.55); }
.billing-btn:hover { color: var(--black); }
.section:not(.section-cream) .billing-btn:hover { color: var(--cream); }
.billing-btn.active {
  background: var(--black);
  color: var(--yellow);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.billing-save {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(252,194,71,0.18);
  color: var(--yellow);
}
.billing-btn:not(.active) .billing-save {
  background: rgba(45,190,108,0.15);
  color: #1E8B4E;
}
.section:not(.section-cream) .billing-btn:not(.active) .billing-save {
  color: #3DD58B;
  background: rgba(45,190,108,0.18);
}
.price {
  background: white;
  border: 1px solid var(--cream-2);
  border-radius: 24px;
  padding: 40px 36px;
  display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.price:hover { transform: translateY(-4px); border-color: var(--yellow-deep); box-shadow: 0 20px 40px rgba(10,10,10,0.08); }
.price.featured {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
  position: relative;
}
.price.featured::before {
  content: 'LE PLUS CHOISI';
  position: absolute;
  top: -12px; left: 36px;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  border-radius: 6px;
}
.price-name {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  letter-spacing: -0.02em;
}
.price-tagline {
  font-size: 14px;
  color: rgba(10,10,10,0.55);
  margin-top: 6px;
}
.price.featured .price-tagline { color: rgba(245,242,232,0.6); }
.price-amount {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 700;
  letter-spacing: -0.04em;
  margin-top: 32px;
  line-height: 1;
}
.price-amount .currency {
  font-size: 32px; vertical-align: top;
  margin-right: 4px;
  color: rgba(10,10,10,0.5);
}
.price.featured .price-amount .currency { color: rgba(245,242,232,0.5); }
.price-period {
  font-size: 15px;
  color: rgba(10,10,10,0.5);
  margin-top: 4px;
}
.price.featured .price-period { color: rgba(245,242,232,0.5); }
.price-features {
  margin-top: 32px;
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 15px;
}
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.45;
}
.price-features code {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  background: rgba(10, 10, 10, 0.06);
  color: var(--black);
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: -0.01em;
}
.price.featured .price-features code {
  background: rgba(245, 242, 232, 0.12);
  color: var(--cream);
}
.price-check {
  color: var(--yellow-deep);
  flex-shrink: 0;
  margin-top: 2px;
}
.price.featured .price-check { color: var(--yellow); }
.price-cta {
  margin-top: auto;
  padding-top: 32px;
}
.price-cta-btn {
  width: 100%;
  padding: 14px 20px;
  background: var(--black);
  color: var(--cream);
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: background .15s, transform .15s;
  text-align: center;
  display: block;
}
.price-cta-btn:hover { transform: translateY(-1px); background: var(--grey-2); }
.price.featured .price-cta-btn {
  background: var(--yellow);
  color: var(--black);
}
.price.featured .price-cta-btn:hover { background: var(--yellow-deep); }

/* ────────────────────────────────────────────────────── */
/* FAQ                                                    */
/* ────────────────────────────────────────────────────── */
.faq-grid {
  max-width: 820px;
  margin: 80px auto 0;
  display: flex; flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid rgba(245,242,232,0.12);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.015em;
  transition: color .2s;
}
.faq-q:hover { color: var(--yellow); }
.faq-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(245,242,232,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-left: 20px;
  transition: transform .3s, background .2s, border-color .2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  color: rgba(245,242,232,0.65);
  font-size: 16px;
  line-height: 1.6;
  padding: 0 40px 0 0;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 28px;
}

/* ────────────────────────────────────────────────────── */
/* CTA BAND                                               */
/* ────────────────────────────────────────────────────── */
.cta-band {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-band-inner {
  background: var(--yellow);
  color: var(--black);
  border-radius: 32px;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}
.cta-band-inner::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  pointer-events: none;
}
.cta-band-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 30px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  z-index: 1;
}
.cta-band-eyebrow::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green, #2dbe6c);
  box-shadow: 0 0 0 0 rgba(45,190,108,0.6);
  animation: cta-eyebrow-pulse 2s infinite;
}
@keyframes cta-eyebrow-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(45,190,108,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(45,190,108,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,190,108,0); }
}
.cta-band h2 {
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.04em;
  max-width: 800px;
  color: var(--black);
}
.cta-band p {
  font-size: 19px;
  margin-top: 20px;
  max-width: 560px;
  color: rgba(10,10,10,0.7);
}
.cta-band .btn-primary {
  background: var(--black);
  color: var(--yellow);
  margin-top: 40px;
}
.cta-band .btn-primary:hover {
  box-shadow: 0 14px 40px rgba(10,10,10,0.35);
}

/* ────────────────────────────────────────────────────── */
/* WAITLIST form                                          */
/* ────────────────────────────────────────────────────── */
.waitlist-form {
  margin-top: 36px;
  max-width: 560px;
  display: flex; gap: 10px;
  background: var(--black);
  padding: 8px;
  border-radius: 16px;
}
.waitlist-form input {
  flex: 1;
  padding: 14px 18px;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: inherit;
  font-size: 16px;
  outline: none;
}
.waitlist-form input::placeholder { color: rgba(245,242,232,0.4); }
.waitlist-form button {
  background: var(--yellow);
  color: var(--black);
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: background .15s;
  white-space: nowrap;
}
.waitlist-form button:hover { background: var(--yellow-deep); }
.waitlist-form.success {
  background: rgba(45,190,108,0.15);
  border: 1px solid var(--green);
}
.cta-band .waitlist-form input { color: var(--cream); }

/* ────────────────────────────────────────────────────── */
/* FOOTER                                                 */
/* ────────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--cream);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(245,242,232,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,242,232,0.08);
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.footer-logo { height: 40px; margin-bottom: 20px; }
.footer-tagline {
  font-size: 14px;
  color: rgba(245,242,232,0.55);
  max-width: 320px;
  line-height: 1.5;
}
.footer-col-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(245,242,232,0.65);
  transition: color .15s;
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: rgba(245,242,232,0.5);
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom-links { display: flex; gap: 28px; }

/* ────────────────────────────────────────────────────── */
/* REVEAL ANIMATION                                       */
/* ────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ────────────────────────────────────────────────────── */
/* DOC MODAL (legal, CGU, privacy, about, contact, ...)   */
/* ────────────────────────────────────────────────────── */
.doc-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: doc-modal-in .22s ease-out;
}
.doc-modal[hidden] { display: none; }
@keyframes doc-modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.doc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.doc-modal-card {
  position: relative;
  background: var(--cream);
  color: var(--black);
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 22px;
  padding: 40px 44px 36px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: doc-modal-card-in .28s cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(10, 10, 10, 0.25) transparent;
}
@keyframes doc-modal-card-in {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.doc-modal-close {
  position: sticky;
  float: right;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(10, 10, 10, 0.06);
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
  margin: -8px -12px 0 12px;
}
.doc-modal-close:hover { background: rgba(10, 10, 10, 0.14); }

.doc-modal-eyebrow {
  display: inline-block;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
  padding: 5px 10px;
  background: rgba(10, 10, 10, 0.06);
  border-radius: 999px;
  margin-bottom: 14px;
}
.doc-modal-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 20px;
  color: var(--black);
}
.doc-modal-body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(10, 10, 10, 0.82);
}
.doc-modal-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 26px 0 10px;
}
.doc-modal-body p { margin: 0 0 12px; }
.doc-modal-body ul {
  margin: 0 0 14px;
  padding-left: 20px;
}
.doc-modal-body li { margin-bottom: 6px; }
.doc-modal-body a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(10, 10, 10, 0.35);
  transition: text-decoration-color .15s ease;
}
.doc-modal-body a:hover { text-decoration-color: var(--black); }
.doc-modal-body em { color: rgba(10, 10, 10, 0.55); font-style: normal; font-size: 13px; }
.doc-modal-body strong { color: var(--black); }

body.doc-modal-open { overflow: hidden; }

@media (max-width: 640px) {
  .doc-modal { padding: 12px; }
  .doc-modal-card { padding: 28px 22px 24px; border-radius: 18px; }
  .doc-modal-body { font-size: 14.5px; }
}
